*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1A3A8F;
  --blue-light: #2B4FBF;
  --blue-dark: #0F2560;
  --accent: #3B6AE8;
  --text: #1A1A2E;
  --text-muted: #5A5A7A;
  --bg: #F8F9FF;
  --white: #ffffff;
  --border: #E2E6F3;
  --card-bg: #FFFFFF;
  --section-bg: #F0F3FF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 76px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 100%;
  box-sizing: border-box;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.navbar-logo {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.navbar-logo svg { width: 20px; height: 20px; stroke: white; fill: none; }

.navbar-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-nav a:hover { color: var(--text); }

.navbar-cta {
  background: linear-gradient(135deg, #3B6AE8 0%, #1A3A8F 100%) !important;
  color: white !important;
  padding: 0.75rem 1.75rem !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: all 0.2s !important;
}

.navbar-cta:hover { background: linear-gradient(135deg, #2B5AD8 0%, #0F2A7F 100%) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  z-index: 9999;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: absolute;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger span:nth-child(1) { transform: translateY(-7px); }
.hamburger span:nth-child(2) { transform: translateY(0); }
.hamburger span:nth-child(3) { transform: translateY(7px); }

.hamburger.open span:nth-child(1) { transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: white;
  padding: 1rem 2rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }

/* ─── HERO ─── */
.hero {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-text-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 580px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-img {
  position: absolute;
  inset: 0;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 85%;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 6rem 2rem 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: white;
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: white;
}

.hero p {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero .btn-primary {
  background: linear-gradient(135deg, #3B6AE8 0%, #1A3A8F 100%);
  border: none;
  color: white;
  border-radius: 8px;
}
.hero .btn-primary:hover { background: linear-gradient(135deg, #2B5AD8 0%, #0F2A7F 100%); }

.hero .btn-outline {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.45);
  color: white;
  border-radius: 8px;
}
.hero .btn-outline:hover { background: rgba(255,255,255,0.25); }

.hero-mobile-img { display: none; }

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #3B6AE8 0%, #1A3A8F 100%);
  color: white;
  font-size: 0.95rem;
  line-height: 1.5;
}
.btn-primary:hover { background: linear-gradient(135deg, #2B5AD8 0%, #0F2A7F 100%); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ─── BENEFICIARIES BAR ─── */
.beneficiaries {
  background: var(--white);
  padding: 3rem 2rem;
  border-bottom: 1px solid var(--border);
}

.bene-grid {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.bene-card {
  background: linear-gradient(160deg, #ffffff 60%, #f4f7ff 100%);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  border: none;
  position: relative;
  box-shadow: 0 4px 20px rgba(59,106,232,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
}
.bene-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(59,106,232,0.45) 0%, rgba(59,106,232,0.08) 60%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.bene-card:hover {
  box-shadow: 0 16px 40px rgba(59,106,232,0.14);
  transform: translateY(-4px);
}
.bene-card:hover::before {
  background: linear-gradient(135deg, rgba(59,106,232,0.7) 0%, rgba(59,106,232,0.15) 60%, transparent 100%);
}

.bene-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(59,106,232,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

.bene-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; }

.bene-card h3 { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.2rem; color: var(--blue); }
.bene-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ─── SECTION COMMONS ─── */
section { padding: 7rem 2rem; }

.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-title em { font-style: normal; color: var(--accent); }

.section-desc {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 2;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ─── MISJA ─── */
.mission { background: white; }
.onas2-hero { background: #EEF2FF; }

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.mission-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}
.mission-link:hover { text-decoration: underline; }

.mission-pillars { display: flex; flex-direction: column; gap: 1rem; }

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #dde5ff 100%);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.pillar-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: rgba(59,106,232,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.pillar-icon svg { width: 19px; height: 19px; stroke: var(--accent); fill: none; }

.pillar h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.2rem; }
.pillar p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }

.mission-quote {
  background: transparent;
  color: var(--accent);
  border: none;
  padding: 1rem 0;
  margin-top: 0.5rem;
  font-size: 2rem;
  font-family: 'Caveat', cursive;
  font-style: normal;
  line-height: 1.75;
}

/* ─── MOST POKOLEŃ ─── */
.generations {
  background: transparent;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.generations-bg {
  position: absolute;
  inset: 0;
}
.generations-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center; display: block;
  opacity: 1;
}

.generations-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gen-quote-box {
  padding: 0;
}

.gen-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: white;
  line-height: 0.6;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.6;
}

.gen-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: white;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.gen-quote-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.generations .section-label { color: white; }
.generations .section-title { color: white; }
.generations .section-title em { color: white; }
.generations .section-desc { color: white; }

.gen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.gen-tag {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
}

.gen-link { color: white; font-weight: 600; text-decoration: underline; font-size: 0.9rem; }
.gen-link:hover { text-decoration: underline; }

/* ─── KOMU ─── */
.nobody { background: var(--white); }

.nobody-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.nobody-card {
  background: linear-gradient(135deg, #ffffff 0%, #dde5ff 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.nobody-card:hover { box-shadow: 0 12px 32px rgba(26,58,143,0.1); transform: translateY(-3px); }

.nobody-card-img {
  width: 100%; height: 180px;
  object-fit: cover; display: block;
}

.nobody-card-body { padding: 1.25rem; }
.nobody-card-body h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.45rem; }
.nobody-card-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem; }
.nobody-card-link {
  color: var(--accent); font-weight: 600; font-size: 0.82rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.25rem;
}
.nobody-card-link:hover { text-decoration: underline; }

/* ─── WSPARCIE ─── */
.support-section {
  background: white;
  position: relative;
}

.support-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(to right, rgba(26,58,143,0.92) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.support-section .container {
  position: relative;
  z-index: 2;
}

.support-section .support-inner {
  position: relative;
  z-index: 2;
}
#wsparcie {
  background: linear-gradient(135deg, #3B6AE8 0%, #6B9FFF 100%);
}
#wsparcie .section-label { color: rgba(255,255,255,0.7); }
#wsparcie .section-title { color: white; }
#wsparcie .section-title em { color: white; }
#wsparcie .section-desc { color: rgba(255,255,255,0.85); }
.support-section .cta-tile {
  background: linear-gradient(135deg, #c8deff 0%, #93b8f7 60%, #b8d4ff 100%);
  border: none;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 10rem;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  text-align: left;
}

.support-bg {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.support-bg img {
  height: 100%;
  width: auto;
  display: block;
  margin-left: -5%;
  transform: scaleX(-1);
}

.support-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}


.support-section .cta-tile .section-label { color: var(--accent); }
.support-section .cta-tile .section-title { color: var(--text); font-size: clamp(1.5rem, 2.5vw, 2.2rem); line-height: 1.2; }
.support-section .cta-tile .section-title em { color: var(--accent); }
.support-section .cta-tile .section-desc { color: var(--text); }
.support-section .cta-tile .btn-primary { background: linear-gradient(135deg, #3B6AE8 0%, #1A3A8F 100%); color: white; border-color: transparent; }
.support-section .cta-tile .btn-primary:hover { background: linear-gradient(135deg, #2B5AD8 0%, #0F2A7F 100%); border-color: transparent; }
.support-section .cta-tile .btn-outline { background: white; color: var(--accent); border-color: transparent; }
.support-section .cta-tile .btn-outline:hover { background: #f0f4ff; }

.location-list { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1.5rem; }

.location-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
}

.location-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}

.location-icon svg { width: 18px; height: 18px; stroke: white; fill: none; }

.location-item h4 { font-size: 0.88rem; font-weight: 700; color: white; }
.location-item p { font-size: 0.75rem; color: rgba(255,255,255,0.62); }

.onas-historia {
  background: linear-gradient(135deg, #1A3A8F 0%, #3B6AE8 100%);
}
.onas-historia .section-label { color: var(--accent); }
.onas-historia .section-title { color: var(--text); }
.onas-historia .section-title em { color: var(--accent); }
.onas-historia .section-desc { color: var(--text-muted); }
.onas-historia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.onas-historia-img {
  border-radius: 20px;
  overflow: visible;
  height: 440px;
  position: relative;
}
.onas-historia-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #c8deff 0%, #93b8f7 60%, #b8d4ff 100%);
  transform: rotate(3deg);
  z-index: 0;
}
.onas-historia-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.support-link {
  color: white; font-weight: 600; font-size: 0.88rem;
  text-decoration: underline; display: inline-flex; align-items: center; gap: 0.3rem;
}
.support-link:hover { opacity: 0.8; }

/* ─── DOŁĄCZ ─── */
.join { background: var(--white); }

.join-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.join-card {
  background: linear-gradient(160deg, #ffffff 60%, #f4f7ff 100%);
  border-radius: 16px;
  padding: 1.75rem;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  border: none;
  position: relative;
  box-shadow: 0 4px 20px rgba(59,106,232,0.07);
}

.join-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(59,106,232,0.45) 0%, rgba(59,106,232,0.08) 60%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.join-card:hover { box-shadow: 0 16px 40px rgba(59,106,232,0.14); transform: translateY(-4px); }

.join-card-icon {
  width: 48px; height: 48px;
  background: rgba(59,106,232,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.join-card-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; }

.join-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.45rem; color: var(--blue); }
.join-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.1rem; flex: 1; }
.join-card-link { color: var(--accent); font-weight: 600; font-size: 0.82rem; text-decoration: none; margin-top: auto; }
.join-card-link:hover { text-decoration: underline; }

/* ─── KONTAKT ─── */
.contact { background: white; overflow: hidden; padding-bottom: 0; padding-top: 1rem; }

.contact .section-label { color: var(--accent); }
.contact .section-title { color: var(--text); }
.contact .section-title em { color: var(--accent); }
.contact .section-desc { color: var(--text-muted); }
.contact .form-group label { color: var(--text); font-weight: 500; }
.contact .form-group input,
.contact .form-group textarea { background: white; border-color: #8899cc; color: var(--text); }
.contact .form-group input::placeholder,
.contact .form-group textarea::placeholder { color: var(--text-muted); }
.contact .form-check label { color: var(--text-muted); }
.contact .btn-primary { background: linear-gradient(135deg, #3B6AE8 0%, #1A3A8F 100%); color: white; }
.contact .btn-primary:hover { background: linear-gradient(135deg, #2B5AD8 0%, #0F2A7F 100%); }

.contact-inner {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 5rem;
  align-items: end;
  overflow: hidden;
}

.contact-photo { overflow: hidden; align-self: end; }
.contact-photo img { width: 100%; display: block; }

.contact-form-side { padding-bottom: 1rem; align-self: center; }

.contact-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.social-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.social-btn:hover { opacity: 0.85; }
.social-btn svg { width: 22px; height: 22px; }
.social-btn[aria-label="Facebook"] svg { fill: white; }
.social-btn[aria-label="Instagram"] svg { fill: white; }

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.form-check input[type="checkbox"] {
  width: 15px; height: 15px; min-width: 15px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-check label { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

/* ─── FOOTER ─── */
.footer {
  background: #0D1320;
  color: rgba(255,255,255,0.55);
  padding: 4.5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.footer-brand p { font-size: 0.82rem; line-height: 1.85; max-width: 260px; color: rgba(255,255,255,0.5); }

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-social-btn:hover { background: rgba(255,255,255,0.18); }
.footer-social-btn svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: white; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  font-size: 0.76rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── O NAS – INTRO ─── */
.onas-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.onas2-intro-text {
  width: 100%;
}
.onas-intro-img {
  border-radius: 20px;
  overflow: visible;
  height: 520px;
  position: relative;
}
.onas-intro-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #c8deff 0%, #93b8f7 60%, #b8d4ff 100%);
  transform: rotate(3deg);
  z-index: 0;
}
.onas-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

.onas-historia { background: #F4F6FB; }

.onas-tag {
  background: rgba(59,106,232,0.1);
  border: 1px solid rgba(59,106,232,0.25);
  color: var(--accent);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
}
.onas-historia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.onas-historia-img {
  border-radius: 20px;
  overflow: visible;
  height: 460px;
  position: relative;
}
.onas-historia-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 20px; position: relative; z-index: 1; }


/* ─── O NAS ─── */
.onas-hero {
  background: linear-gradient(135deg, #1A3A8F 0%, #3B6AE8 100%);
  border-radius: 16px;
  padding: 4rem 3.5rem;
  margin-bottom: 4rem;
  color: white;
}
.onas-hero .section-label { color: rgba(255,255,255,0.65); }
.onas-hero h1 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  color: white;
}
.onas-hero h1 em { font-style: italic; color: rgba(255,255,255,0.85); }
.onas-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  line-height: 1.8;
  margin: 0;
}

.onas-section { padding: 0 0 3.5rem; }

.onas-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.onas-pillar {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
}
.onas-pillar h4 { font-size: 0.92rem; font-weight: 700; margin: 0 0 0.35rem; }
.onas-pillar p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.onas-quote {
  background: linear-gradient(135deg, #3B6AE8 0%, #6B9FFF 100%);
  border-radius: 14px;
  padding: 2rem 2.5rem;
  color: white;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 3.5rem;
  position: relative;
}
.onas-quote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 5rem;
  color: rgba(255,255,255,0.2);
  position: absolute;
  top: -0.5rem; left: 1.5rem;
  line-height: 1;
}

.onas-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.onas-split-card {
  border-radius: 14px;
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.onas-split-card.blue {
  background: linear-gradient(135deg, #3B6AE8 0%, #6B9FFF 100%);
  color: white;
  border: none;
}
.onas-split-card.light {
  background: linear-gradient(135deg, #f0f3ff 0%, #e2e8ff 100%);
}
.onas-split-card h4 { font-size: 1rem; font-weight: 700; margin: 0 0 0.9rem; }
.onas-split-card.blue h4 { color: white; }
.onas-split-card.light h4 { color: var(--text); }
.onas-split-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.onas-split-card.blue li { color: rgba(255,255,255,0.9); font-size: 0.88rem; padding-left: 1rem; position: relative; }
.onas-split-card.light li { color: var(--text-muted); font-size: 0.88rem; padding-left: 1rem; position: relative; }
.onas-split-card li::before { content: '—'; position: absolute; left: 0; opacity: 0.6; }

.onas-bridge {
  background: linear-gradient(135deg, #070D22 0%, #1A3A8F 100%);
  border-radius: 16px;
  padding: 2.5rem;
  color: white;
  margin-bottom: 3.5rem;
}
.onas-bridge .section-label { color: rgba(255,255,255,0.55); }
.onas-bridge h2 {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: white;
  margin: 0 0 1rem;
}
.onas-bridge p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 0 1.5rem;
}

@media (max-width: 680px) {
  .onas-grid-2, .onas-split { grid-template-columns: 1fr; }
  .onas-hero { padding: 2rem 1.5rem; }
  .onas-bridge { padding: 1.75rem; }
}

/* ─── RESPONSIVE ─── */

/* Tablet landscape (960px) */
/* ─── RESPONSIVE – INDEX ─── */

/* Tablet landscape / laptop 14" (1024px) */
@media (max-width: 1024px) {
  section { padding: 5rem 1.5rem; }

  .mission-inner,
  .generations-inner,
  .support-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .onas-intro,
  .onas-historia-inner { grid-template-columns: 1fr; gap: 2rem; }
  .onas-intro-img,
  .onas-historia-img { height: 300px; }

  .support-bg { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .bene-grid { grid-template-columns: repeat(2, 1fr); }
  .nobody-grid { grid-template-columns: repeat(2, 1fr); }
  .join-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-photo { display: none; }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  section { padding: 2.5rem 1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nobody-grid { grid-template-columns: 1fr; }
  .join-grid { grid-template-columns: 1fr; }
  .bene-grid, div.bene-grid { grid-template-columns: 1fr !important; }
  .who-grid { grid-template-columns: 1fr !important; }
  .jd-grid { grid-template-columns: 1fr !important; }
  .onas2-historia-layout { grid-template-columns: 1fr; }
  .mission-inner { grid-template-columns: 1fr; }
  .onas-historia-inner { grid-template-columns: 1fr; }
  .support-section .cta-tile { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(2rem, 4vw, 2.4rem); }

  .generations-inner { grid-template-columns: 1fr; }
  .gen-quote-box { display: block; order: 2; }
  .generations-inner > div:last-child { order: 1; }

  .mission-pillars { gap: 1rem; }
  .pillar { flex-direction: column; }

  .hero { min-height: 100dvh; display: flex; padding: 0; position: relative; }
  .hero-img { display: block; }
  .hero-img img { object-position: center 20%; }
  .hero-text-bg { display: block; background: rgba(0,0,0,0.65); position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform: none; }
  .hero-content {
    padding: 2rem 1rem 2rem;
    background: transparent;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero h1 { color: white; line-height: 1.2; margin-bottom: 1rem; }
  .hero h1 em { color: white; font-style: normal; }
  .hero p { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.5rem; }
  .hero-tag { color: white; background: rgba(255,255,255,0.15); padding: 0.3rem 0.85rem; margin-bottom: 1rem; font-size: 0.65rem; border-radius: 4px; }
  .hero-btns { flex-direction: column; align-items: stretch; width: 100%; gap: 0.75rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero .btn-outline { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); color: white; backdrop-filter: none; }
  .beneficiaries { padding: 1.5rem 1.25rem; }

  .bene-grid { grid-template-columns: 1fr; }
  .nobody-grid { grid-template-columns: 1fr; }
  .join-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
  .contact { padding-bottom: 3rem; padding-top: 0.5rem; }
  .contact-social { margin-bottom: 0.5rem; }

  .section-title { font-size: 2rem; }
  .support-section .cta-tile .section-title { font-size: 1.7rem; }

  .generations-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
  }
}

/* ─── IKONY LUCIDE ─── */
.icon { display: flex; align-items: center; justify-content: center; }
.icon svg { width: 20px; height: 20px; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-white svg { stroke: white; fill: none; }
.icon-blue svg { stroke: var(--accent); fill: none; }
.icon-sm svg { width: 18px; height: 18px; }
.icon-lg svg { width: 22px; height: 22px; }

/* ─── O NAS 2 – KOMU POMAGAMY ─── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.who-card {
  background: linear-gradient(135deg, #f0f3ff 0%, #e2e8ff 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.who-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,58,143,0.1); }
.who-card .bene-icon { margin-bottom: 0.5rem; }
.who-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.who-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

@media (max-width: 960px) { .who-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .who-grid { grid-template-columns: 1fr; } }

/* ─── O NAS 2 – KOMU POMAGAMY karty ─── */
.who-card-light {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.who-card-light:hover { box-shadow: 0 8px 24px rgba(26,58,143,0.1); transform: translateY(-2px); }
.who-icon-light {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(59,106,232,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.who-icon-light svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; }
.who-card-light h3 { font-size: 0.88rem; font-weight: 600; color: var(--text); margin: 0; line-height: 1.4; }

/* ─── O NAS 2 – CTA ─── */
.on2-cta {
  padding: 7rem 2rem;
  background: white;
  text-align: center;
}
.on2-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.on2-cta .section-label { justify-content: center; display: block; text-align: center; }
.on2-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.on2-cta h2 em { font-style: italic; color: var(--accent); }
.on2-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.on2-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-outline-dark {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}
.btn-outline-dark:hover { background: var(--accent); color: white; }

@media (max-width: 600px) {
  .on2-cta-btns { flex-direction: column; align-items: center; }
}

/* ─── MISJA ─── */
.misja-lista {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.misja-lista-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.misja-check-icon {
  width: 18px; height: 18px; min-width: 18px;
  stroke: var(--accent);
  fill: none;
}

/* ─── JAK DZIAŁAMY ─── */
.jd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.jd-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: linear-gradient(160deg, #ffffff 60%, #f4f7ff 100%);
  border-radius: 16px;
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 4px 20px rgba(59,106,232,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
}

.jd-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(59,106,232,0.45) 0%, rgba(59,106,232,0.08) 60%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.jd-card:hover { box-shadow: 0 16px 40px rgba(59,106,232,0.14); transform: translateY(-4px); }

.jd-card-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(59,106,232,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

.jd-card-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; }

.jd-card-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--blue); margin-bottom: 0.4rem; }
.jd-card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.jd-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.jd-timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  position: relative;
}

.jd-timeline-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jd-timeline-icon {
  width: 56px; height: 56px; min-height: 56px;
  background: rgba(59,106,232,0.12);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.jd-timeline-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; }

.jd-timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(59,106,232,0.3), rgba(59,106,232,0.05));
  margin: 8px 0;
}

.jd-timeline-item:last-child .jd-timeline-line { display: none; }

.jd-timeline-body {
  padding-bottom: 2.5rem;
}

.jd-timeline-item:last-child .jd-timeline-body { padding-bottom: 0; }

.jd-timeline-body h3 { font-size: 1rem; font-weight: 700; color: var(--blue); margin: 0 0 0.4rem; padding-top: 0.9rem; }
.jd-timeline-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

.jd-cta {
  background: linear-gradient(135deg, #1A3A8F 0%, #3B6AE8 100%);
  text-align: center;
  padding: 7rem 2rem;
}

.jd-cta .section-title { color: white; }
.jd-cta .section-title em { color: rgba(255,255,255,0.85); }
.jd-cta .section-desc { color: rgba(255,255,255,0.85); }
.jd-cta .onas2-label-accent { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }

.jd-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.jd-cta-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}

.jd-cta-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

@media (max-width: 1024px) {
  .jd-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .jd-grid { grid-template-columns: 1fr; }
  .jd-approach-box { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.5rem; }
  .jd-approach-num { font-size: 2rem; }
  .jd-cta-btns { flex-direction: column; align-items: stretch; }
  .jd-cta-btns .btn, .jd-cta-btn-outline { width: 100%; justify-content: center; text-align: center; }
}

.misja-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}
.misja-duo-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.misja-duo-card:hover { box-shadow: 0 12px 40px rgba(59,106,232,0.1); transform: translateY(-3px); }
.misja-duo-icon {
  width: 56px; height: 56px;
  background: rgba(59,106,232,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.misja-duo-icon svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; }
.misja-duo-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.misja-duo-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 720px) {
  .misja-duo { grid-template-columns: 1fr; }
}

/* ─── O NAS 2 – HISTORIA SEKCJA ─── */
.onas2-historia-sec {
  background: #EEF2FF;
}
.onas2-historia-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.onas2-historia-img {
  border-radius: 20px;
  overflow: visible;
  height: 480px;
  position: relative;
}
.onas2-historia-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #c8deff 0%, #93b8f7 60%, #b8d4ff 100%);
  transform: rotate(3deg);
  z-index: 0;
}
.onas2-historia-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 20px; position: relative; z-index: 1; }

/* ─── O NAS 2 – SMACZKI ─── */

/* Hero z delikatnym gradientem i plamą w tle */
.onas2-hero {
  background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 55%, #f8f9ff 100%);
  position: relative;
  overflow: hidden;
}
.onas2-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(59,106,232,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Accent line pod section-label */
.onas2-label-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.onas2-label-accent::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Lekki highlight na who-card-light przy hover */
.who-card-light:hover .who-icon-light {
  background: rgba(59,106,232,0.2);
}

/* Intro paragraf z subtelnym lewym borderem */
.onas2-intro-text .section-desc {
  max-width: 100%;
}
.onas2-intro-text .section-desc:first-of-type {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-left: 0;
}

/* Stat row w sekcji dlaczego */
.onas2-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.onas2-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.onas2-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.onas2-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 1920px) {
  .support-bg { right: -200px; }
}

/* ─── RESPONSYWNOŚĆ ─── */

/* ─── RESPONSIVE – PODSTRONY ─── */

/* Tablet landscape (1280px) */
@media (max-width: 1280px) {
  .support-section .cta-tile { padding: 4rem 5rem; }
  .bene-grid[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
  .onas-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .onas-intro-img { height: 320px; }

  .onas2-historia-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .onas2-historia-img { height: 300px; }

  .misja-duo { grid-template-columns: 1fr; gap: 1.5rem; }

  .support-section .cta-tile {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3.5rem 3rem;
    border-radius: 16px;
  }

  .bene-grid[style*="repeat(4"] { grid-template-columns: repeat(2, 1fr) !important; }
  .bene-grid[style*="repeat(3"] { grid-template-columns: repeat(2, 1fr) !important; }

  .misja-lista { gap: 0.5rem; }
}

/* Tablet portrait (768px) */
@media (max-width: 768px) {
  .section-title { font-size: clamp(2rem, 4vw, 2.4rem); }
  .support-section .cta-tile .section-title { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
  .onas2-stats { gap: 1.5rem; }
  .support-section .cta-tile { padding: 3rem 2rem; }
  .onas-intro[style*="direction:rtl"] { direction: ltr; }
}

/* Telefon (600px) */
@media (max-width: 600px) {
  section { padding: 3rem 1.25rem; }

  .bene-grid { grid-template-columns: 1fr !important; }
  .misja-duo { grid-template-columns: 1fr; }

  .onas-intro-img,
  .onas-historia-img,
  .onas2-historia-img { height: 240px; }

  .support-section .cta-tile { padding: 2.5rem 1.5rem; border-radius: 12px; }

  .onas2-label-accent { font-size: 0.6rem; }
  .onas2-stats { flex-direction: row; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .misja-lista-item { font-size: 0.88rem; }
}
