/* ============================================================
   FUNDAMENT NADZIEI — Wariant A "Klasyczny Granat"
   Główny arkusz stylów
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ── ZMIENNE ── */
:root {
  --navy:        #1B2A4A;
  --navy-mid:    #2E4A7A;
  --navy-dark:   #111827;
  --teal:        #4A8FA8;
  --teal-light:  #6BAFC5;
  --teal-pale:   rgba(74,143,168,.1);
  --amber:       #C8873A;
  --amber-light: #E8A85A;
  --amber-pale:  rgba(200,135,58,.12);
  --cream:       #F5F5F0;
  --gray-light:  #E8E8E2;
  --gray-mid:    #9A9A9A;
  --charcoal:    #2C2C2C;
  --white:       #FFFFFF;

  --font-body:    'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(27,42,74,.08);
  --shadow-md:  0 8px 32px rgba(27,42,74,.12);
  --shadow-lg:  0 16px 56px rgba(27,42,74,.18);
  --transition: .22s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 700; }
h4 { font-size: 17px; font-weight: 600; }
p  { font-size: 16px; color: var(--charcoal); line-height: 1.75; }

/* ── LAYOUT ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5%;
}
section { padding: 96px 0; }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 5%; }

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-label--amber { color: var(--amber); }
.section-label--white { color: var(--teal-light); }

.section-title { margin-bottom: 16px; }
.section-title--white { color: var(--white); }

.section-desc {
  font-size: 17px;
  color: var(--gray-mid);
  max-width: 580px;
  margin-bottom: 52px;
  line-height: 1.75;
}
.section-desc--white { color: rgba(255,255,255,.7); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  letter-spacing: .02em;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,135,58,.3);
}
.btn-primary:hover {
  background: var(--amber-light);
  box-shadow: 0 8px 28px rgba(200,135,58,.45);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(74,143,168,.25);
}
.btn-secondary:hover {
  background: var(--teal-light);
  box-shadow: 0 8px 24px rgba(74,143,168,.38);
}

.btn-outline-light {
  background: transparent;
  color: var(--teal-light);
  border-color: var(--teal);
}
.btn-outline-light:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-sm {
  font-size: 13px;
  padding: 10px 22px;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  height: 70px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(17,24,39,.35);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.nav-brand-top {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.nav-brand-main {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: .02em;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.07);
}

.nav-cta {
  margin-left: 12px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  background: var(--amber);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  letter-spacing: .03em;
}
.nav-cta:hover { background: var(--amber-light); transform: translateY(-1px); }

/* ── PAGE HERO (podstrony) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--amber) 55%, transparent 100%);
}

.page-hero-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero-breadcrumb a { color: var(--teal-light); transition: color var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--white); }
.page-hero-breadcrumb span { color: rgba(255,255,255,.3); }

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  line-height: 1.7;
}

/* ── DIVIDER ── */
.divider-teal {
  width: 56px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin: 20px 0 32px;
}
.divider-amber {
  width: 56px;
  height: 4px;
  background: var(--amber);
  border-radius: 2px;
  margin: 20px 0 32px;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}
.card-icon--amber { background: var(--amber-pale); }

.card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.75;
}

.card-accent-bar {
  height: 4px;
  background: var(--teal);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin: 24px -28px -36px;
}
.card-accent-bar--amber { background: var(--amber); }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 56px; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; align-items: start; }
/* Zapobiega overflow w grid items */
.grid-3 > *, .grid-2 > *, .grid-2-1 > *, .grid-1-2 > * { min-width: 0; }

/* ── QUOTE ── */
.blockquote {
  border-left: 5px solid var(--teal);
  padding: 20px 28px;
  background: rgba(74,143,168,.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 32px 0;
}
.blockquote p {
  font-size: 19px;
  font-style: italic;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}
.blockquote cite {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--gray-mid);
  font-style: normal;
}

/* ── INFO LIST ── */
.info-list { display: flex; flex-direction: column; gap: 16px; }
.info-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
}
.info-list-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-list-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.info-list-desc {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.65;
}

/* ── BULLET LIST ── */
.bullet-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}
.bullet-list li::before {
  content: '→';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.bullet-list--amber li::before { color: var(--amber); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--teal);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
}

/* ── SUPPORT CARDS ── */
.support-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.support-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.support-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 6px;
}
.support-unit { font-size: 22px; font-weight: 400; color: rgba(255,255,255,.45); }
.support-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 14px 0 10px;
}
.support-desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,143,168,.15);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-grid > * { min-width: 0; }
.footer-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .8;
  margin-bottom: 18px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 300px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-links li { color: aqua; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-bottom-accent { color: var(--teal-light); font-weight: 600; }

/* ── BADGE / TAG ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(74,143,168,.12);
  border: 1px solid rgba(74,143,168,.28);
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--amber-pale);
  border: 1px solid rgba(200,135,58,.25);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.highlight-box h4 { color: var(--amber); margin-bottom: 10px; }
.highlight-box p { font-size: 14px; color: var(--charcoal); }

/* ── TEAL BOX ── */
.teal-box {
  background: var(--teal-pale);
  border: 1px solid rgba(74,143,168,.2);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.teal-box h4 { color: var(--teal); margin-bottom: 10px; }
.teal-box p { font-size: 14px; color: var(--charcoal); }

/* ── NAVY SECTION ── */
.section-navy { background: var(--navy); }
.section-navy-mid { background: var(--navy-mid); }
.section-gray { background: var(--gray-light); }
.section-white { background: var(--white); }

/* ── SLOGAN CARDS ── */
.slogan-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  border-left: 5px solid var(--teal);
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}
.slogan-card:nth-child(even) { border-left-color: var(--amber); }

/* ── VOLUNTEER CARD ── */
.volunteer-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.volunteer-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

/* ── CONTACT INFO ── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-light);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.contact-info-sub {
  font-size: 13px;
  color: var(--gray-mid);
  margin-top: 2px;
}

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-mid);
  font-size: 15px;
  border: 2px dashed rgba(74,143,168,.3);
}
.map-placeholder span { font-size: 48px; }

.map-image img {
  width: 300px !important;
  max-width: 100%;
  padding: 20px 20px 0 0;
  background: white;
  margin: 0 auto;
}

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex-center { display: flex; justify-content: center; }
.flex-gap-16 { display: flex; gap: 16px; flex-wrap: wrap; }
.max-600 { max-width: 600px; }
.max-800 { max-width: 800px; margin: 0 auto; }


/* ============================================================
   RESPONSIVE — Media Queries
   ============================================================ */

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 300;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── TABLET: 768px – 1023px ── */
@media (max-width: 1023px) {
  section { padding: 72px 0; }

  /* Navbar — ukryj CTA button, zostaw linki */
  .nav-cta { display: none; }

  /* Hero — 1 kolumna, ukryj floating badges */
  .hero-grid { grid-template-columns: 1fr !important; }
  .hero-emblem { display: none !important; }
  .hero-content { text-align: center; }
  .hero-content .tag { margin: 0 auto 26px; }
  .hero-content .flex-gap-16 { justify-content: center; }

  /* Gridy */
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-1 { grid-template-columns: 1fr; gap: 40px; }
  .grid-1-2 { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── MOBILE: max 767px ── */
@media (max-width: 767px) {
  section { padding: 56px 0; }
  .container { padding: 0 6%; }
  .section-inner { padding: 0 6%; }

  /* Navbar — hamburger */
  .nav-hamburger { display: flex; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 7%;
    gap: 4px;
    z-index: 250;
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu .nav-link {
    font-size: 18px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.07);
    border-radius: 0;
  }
  .nav-menu .nav-cta {
    display: block;
    margin: 20px 0 0;
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 16px;
    border-radius: var(--radius-sm);
  }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .hero-emblem { display: none !important; }
  .hero-content { text-align: left; }

  /* Page hero */
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 38px); }

  /* Gridy — 1 kolumna */
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; gap: 32px; }
  .grid-1-2 { grid-template-columns: 1fr; gap: 32px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding: 20px 0; }
  .stat-item:last-child { border-bottom: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Sekcja wsparcia — karty cenowe */
  .support-card { padding: 24px 20px; }
  .support-amount { font-size: 40px; }

  /* Formularz kontaktowy */
  .contact-form-grid { grid-template-columns: 1fr !important; }

  /* Sekcja wesprzyj — pricing cards */
  .pricing-grid { grid-template-columns: 1fr !important; }
  .pricing-card-featured { transform: none !important; }

  /* Sekcja sloganów */
  .slogan-card { font-size: 15px; padding: 22px 24px; }

  /* Volunteer / info list */
  .volunteer-card { flex-direction: column; }

  /* Blockquote */
  .blockquote p { font-size: 16px; }

  /* Buttons */
  .btn { font-size: 14px; padding: 13px 24px; }
  .flex-gap-16 { gap: 12px; }

  /* Section desc */
  .section-desc { font-size: 15px; }

  /* Highlight/teal box */
  .highlight-box, .teal-box { padding: 22px 20px; }
}

/* ── SMALL MOBILE: max 480px ── */
@media (max-width: 480px) {
  .container { padding: 0 5%; }
  .section-inner { padding: 0 5%; }

  h1 { font-size: clamp(24px, 8vw, 34px); }
  h2 { font-size: clamp(20px, 6vw, 28px); }

  /* Stats — mniejsze liczby */
  .stat-num { font-size: 34px; }

  /* Footer — mniejszy */
  .footer { padding: 48px 0 20px; }
  .footer-logo { height: 38px; }

  /* Navbar brand text — ukryj na bardzo małych */
  .nav-brand-top { display: none; }
  .nav-brand-main { font-size: 13px; }

  /* Support cards */
  .support-amount { font-size: 36px; }

  /* Info list */
  .info-list-item { padding: 14px 16px; gap: 12px; }

  /* Contact info */
  .contact-info-item { gap: 12px; }
  .contact-info-icon { width: 38px; height: 38px; font-size: 16px; }
}

/* ── ULTRAWIDE: min 1920px ── */
@media (min-width: 1920px) {
  .container { max-width: 1400px; }
  .section-inner { max-width: 1400px; }
  h1 { font-size: 64px; }
  h2 { font-size: 48px; }
  p { font-size: 17px; }
}
