/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(220, 30%, 10%);
  --border: hsl(220, 15%, 88%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 30%, 10%);
  --card-border: hsl(220, 15%, 90%);
  --primary: hsl(220, 70%, 22%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(210, 18%, 94%);
  --secondary-foreground: hsl(220, 30%, 15%);
  --muted: hsl(210, 18%, 95%);
  --muted-foreground: hsl(220, 15%, 48%);
  --accent: hsl(210, 18%, 93%);
  --accent-foreground: hsl(220, 30%, 10%);
  --destructive: hsl(0, 72%, 47%);
  --destructive-foreground: hsl(0, 0%, 100%);
  --radius: 0.5rem;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow: 0 4px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 32px rgba(0,0,0,0.14);
  --shadow-2xl: 0 24px 48px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
.container-sm { max-width: 48rem; margin: 0 auto; padding: 0 1rem; }
.container-md { max-width: 64rem; margin: 0 auto; padding: 0 1rem; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.15s, opacity 0.15s, transform 0.1s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn:active { transform: scale(0.98); }

.btn-sm { font-size: 0.875rem; padding: 0.375rem 0.75rem; }
.btn-md { font-size: 0.875rem; padding: 0.5rem 1rem; }
.btn-lg { font-size: 1rem; padding: 0.75rem 1.5rem; }

.btn-destructive { background: var(--destructive); color: #fff; }
.btn-destructive:hover { background: hsl(0, 70%, 42%); }

.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { background: hsl(220, 70%, 18%); }

.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f0f0f0; }

.btn-ghost { background: transparent; color: var(--foreground); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--muted); }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: none;
}
.badge-primary { background: rgba(28, 55, 130, 0.1); color: var(--primary); }
.badge-destructive { background: rgba(186, 40, 40, 0.1); color: var(--destructive); }
.badge-white { background: rgba(255,255,255,0.15); color: #fff; }

/* ============================================================
   STICKY HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  background: transparent;
}
#site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon {
  width: 1.75rem; height: 1.75rem;
  border-radius: 0.375rem;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.logo-text {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  transition: color 0.3s;
}
#site-header.scrolled .logo-text { color: var(--foreground); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: rgba(0,0,0,0.40);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.pulse-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: #ef4444;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-h1 .accent { color: #f87171; }
.hero-sub {
  font-size: 1rem;
  color: #cbd5e1;
  max-width: 36rem;
  margin: 0 auto 1rem;
  line-height: 1.7;
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-note { font-size: 0.875rem; color: #94a3b8; margin-bottom: 1.5rem; }
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.btn-hero { font-size: 1.125rem; font-weight: 900; padding: 0.875rem 2.5rem; border-radius: 0.75rem; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.btn-learn {
  display: flex; align-items: center; gap: 0.375rem;
  color: #cbd5e1; font-size: 0.875rem;
  background: none; border: none;
  transition: color 0.15s;
}
.btn-learn:hover { color: #fff; }
.hero-tagline { margin-top: 1.25rem; color: rgba(255,255,255,0.70); font-size: 0.875rem; font-style: italic; font-weight: 500; }
.hero-trust {
  margin-top: 1.25rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  flex-wrap: wrap;
}
.trust-label { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: #94a3b8; }
.trust-logos { display: flex; align-items: center; gap: 1rem; }
.trust-chip {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.5rem;
  padding: 0.375rem 0.75rem;
}
.trust-chip img { height: 1.5rem; width: 1.5rem; object-fit: contain; }
.trust-chip span { color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; }
.hero-progress-wrap { margin-top: 1.5rem; max-width: 20rem; margin-left: auto; margin-right: auto; }
.progress-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: #94a3b8; margin-bottom: 0.5rem; }
.progress-track { height: 0.375rem; background: rgba(255,255,255,0.15); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: #f87171; border-radius: 999px; transition: width 1.8s cubic-bezier(0.4,0,0.2,1); }
.hero-chevron {
  position: absolute;
  bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.40);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
#stats-bar {
  background: var(--primary);
  color: #fff;
  padding: 1rem 0;
}
.stats-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 640px) { .stats-inner { gap: 3rem; } }
.stat-item { display: flex; align-items: center; gap: 0.5rem; text-align: center; }
.stat-item .icon { width: 1rem; height: 1rem; color: #bfdbfe; flex-shrink: 0; }
.stat-value { font-weight: 700; font-size: 1.125rem; }
.stat-label { font-size: 0.875rem; color: #bfdbfe; }
.stat-divider { width: 1px; height: 1.25rem; background: rgba(255,255,255,0.20); display: none; }
@media (min-width: 640px) { .stat-divider { display: block; } }

/* ============================================================
   SECTIONS GENERIC
   ============================================================ */
.section { padding: 3rem 0; }
.section-muted { background: var(--muted); }
.section-bg { background: var(--background); }

.section-header { text-align: center; margin-bottom: 2rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-subtitle { color: var(--muted-foreground); max-width: 36rem; margin: 0 auto; }

/* ============================================================
   INLINE CTA STRIP
   ============================================================ */
.inline-cta { padding: 0.75rem 0; background: var(--background); }
.inline-cta-inner {
  max-width: 48rem; margin: 0 auto; padding: 0 1rem;
}
.inline-cta-box {
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(186,40,40,0.06);
  border: 1px solid rgba(186,40,40,0.20);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
}
@media (min-width: 640px) { .inline-cta-box { flex-direction: row; } }
.inline-cta-text { display: flex; align-items: center; gap: 0.75rem; }
.inline-cta-text p { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.inline-cta-text .accent { color: var(--destructive); }
.btn-cta-inline { flex-shrink: 0; border-radius: 0.75rem; font-size: 0.875rem; padding: 0.625rem 1.5rem; }

/* ============================================================
   WHAT'S HAPPENING
   ============================================================ */
.two-col { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }

.content-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.tag { background: rgba(186,40,40,0.10); color: var(--destructive); border-radius: 999px; font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.75rem; }

.img-card { position: relative; border-radius: 0.75rem; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.img-card img { width: 100%; height: 100%; object-fit: cover; }
.img-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,0.50) 0%, transparent 60%); }
.img-card-caption { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; color: rgba(255,255,255,0.80); font-size: 0.75rem; }

.content-body p { color: var(--muted-foreground); margin-bottom: 1rem; line-height: 1.7; font-size: 1rem; }
.content-body strong { color: var(--foreground); font-weight: 600; }
.content-h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 800; color: var(--foreground); margin-bottom: 1rem; line-height: 1.25; }

/* ============================================================
   FOUNDER STORY
   ============================================================ */
.quote-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
}
.quote-mark {
  position: absolute;
  top: -1.25rem; left: 2rem;
  font-size: 6rem;
  color: rgba(28,55,130,0.12);
  font-family: Georgia, serif;
  line-height: 1;
  user-select: none;
}
.quote-body { position: relative; }
.quote-body p { color: var(--muted-foreground); font-size: 1rem; line-height: 1.75; margin-bottom: 1.25rem; }
.quote-body p:last-child { margin-bottom: 0; }
.quote-body strong { color: var(--foreground); font-weight: 600; }
.quote-footer { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 1rem; }
.quote-avatar { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.quote-author-name { font-weight: 700; font-size: 0.875rem; color: var(--foreground); }
.quote-author-title { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.125rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { columns: 2; gap: 0.75rem; }
@media (min-width: 640px) { .gallery-grid { columns: 3; } }
@media (min-width: 1024px) { .gallery-grid { columns: 4; } }

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.40); }
.gallery-item-overlay svg { opacity: 0; color: #fff; transition: opacity 0.3s; }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.90);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#lightbox.open { display: flex; }
#lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  color: rgba(255,255,255,0.70);
  background: none; border: none; cursor: pointer;
  transition: color 0.15s;
}
#lightbox-close:hover { color: #fff; }
#lightbox-img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 0.5rem; box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
#lightbox-caption { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.50); font-size: 0.75rem; text-align: center; max-width: 24rem; padding: 0 1rem; }

/* ============================================================
   TRUST POINTS / WHY
   ============================================================ */
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.trust-list li { display: flex; align-items: center; gap: 0.75rem; }
.trust-icon { width: 2rem; height: 2rem; border-radius: 0.375rem; background: rgba(28,55,130,0.10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 1rem; height: 1rem; color: var(--primary); }
.trust-list li span { font-weight: 600; font-size: 0.875rem; color: var(--foreground); }

/* ============================================================
   TRANSPARENCY CARDS
   ============================================================ */
.stat-cards { display: grid; gap: 1.25rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .stat-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .stat-cards { grid-template-columns: 1fr 1fr 1fr; } }

.stat-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-card.primary-card { background: var(--primary); border-color: var(--primary); }
.stat-card-value { font-size: 2.25rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--foreground); }
.stat-card.primary-card .stat-card-value { color: #fff; }
.stat-card-label { font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground); }
.stat-card.primary-card .stat-card-label { color: #bfdbfe; }
.stat-card.sm-span { grid-column: span 2; }
@media (min-width: 1024px) { .stat-card.sm-span { grid-column: span 1; } }

.tracker-row {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex; flex-direction: column; gap: 1rem;
  align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .tracker-row { flex-direction: row; align-items: center; } }
.tracker-content { display: flex; align-items: flex-start; gap: 0.75rem; }
.tracker-content svg { color: var(--primary); flex-shrink: 0; margin-top: 0.125rem; }
.tracker-title { font-weight: 600; font-size: 0.875rem; color: var(--foreground); }
.tracker-desc { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.125rem; }
.tracker-link { display: flex; align-items: center; gap: 0.375rem; color: var(--primary); font-size: 0.875rem; font-weight: 600; flex-shrink: 0; white-space: nowrap; }
.tracker-link svg { width: 0.875rem; height: 0.875rem; }

.ngo-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }
.ngo-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 0.75rem;
}
.ngo-card img { height: 2.5rem; width: 2.5rem; object-fit: contain; }
.ngo-name { font-weight: 800; font-size: 1rem; color: var(--foreground); }
.ngo-sub { font-size: 0.75rem; color: var(--muted-foreground); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num { font-size: 0.7rem; font-weight: 700; color: var(--muted-foreground); letter-spacing: 0.1em; margin-bottom: 1rem; }
.step-icon { width: 2.5rem; height: 2.5rem; border-radius: 0.375rem; background: rgba(28,55,130,0.10); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.step-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.step-title { font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ============================================================
   URGENCY / PROGRESS
   ============================================================ */
.urgency-box {
  background: var(--primary);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  color: #fff;
}
@media (min-width: 640px) { .urgency-box { padding: 2.5rem; } }
.urgency-box .badge { margin-bottom: 0.75rem; }
.urgency-h2 { font-size: 1.875rem; font-weight: 800; margin-bottom: 0.5rem; }
.urgency-sub { color: #bfdbfe; font-size: 1.125rem; margin-bottom: 1.5rem; }
.urgency-sub strong { color: #fff; }
.progress-section { margin-bottom: 1rem; }
.progress-section .progress-labels { font-size: 0.875rem; }
.progress-section .progress-labels span:nth-child(2) { font-weight: 700; color: #fff; }
.progress-section .progress-track { height: 0.75rem; background: rgba(255,255,255,0.20); }
.progress-section .progress-fill { background: #fff; }
.urgency-note { color: #bfdbfe; font-size: 0.875rem; margin-bottom: 1.5rem; }

/* ============================================================
   SHARE SECTION
   ============================================================ */
.share-icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(28,55,130,0.10); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.share-icon svg { color: var(--primary); }
.share-h2 { font-size: 1.5rem; font-weight: 800; color: var(--foreground); margin-bottom: 0.5rem; text-align: center; }
.share-sub { color: var(--muted-foreground); text-align: center; max-width: 28rem; margin: 0 auto 1.25rem; }
.share-buttons { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }
.btn-share { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 700; padding: 0.625rem 1.25rem; border-radius: 0.75rem; box-shadow: var(--shadow-sm); cursor: pointer; border: none; transition: opacity 0.15s; }
.btn-share:hover { opacity: 0.90; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-twitter { background: #000; color: #fff; }
.btn-facebook { background: #1877F2; color: #fff; }
.btn-copy { background: var(--card); border: 1px solid var(--border); color: var(--foreground); }
.btn-copy:hover { background: var(--muted); }
.share-note { text-align: center; color: var(--muted-foreground); font-size: 0.75rem; margin-top: 1.5rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { text-align: center; }
.cta-section .badge { margin-bottom: 0.75rem; }
.cta-h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); font-weight: 800; color: var(--foreground); margin-bottom: 0.75rem; }
.cta-sub { color: var(--muted-foreground); font-size: 1.125rem; max-width: 36rem; margin: 0 auto 1.25rem; }
.btn-cta-main { font-size: 1.125rem; font-weight: 800; padding: 0.875rem 3rem; border-radius: 0.5rem; box-shadow: var(--shadow-lg); margin-bottom: 1rem; }
.trust-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; color: var(--muted-foreground); font-size: 0.875rem; }
.trust-badges span { display: flex; align-items: center; gap: 0.375rem; }
.trust-badges svg { width: 0.875rem; height: 0.875rem; }

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer-box {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.disclaimer-box svg { color: var(--muted-foreground); flex-shrink: 0; margin-top: 0.125rem; }
.disclaimer-box p { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.7; }
.disclaimer-box strong { color: var(--foreground); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--foreground); color: rgba(255,255,255,0.90); padding: 2rem 0; }
.footer-grid { display: grid; gap: 1.75rem; margin-bottom: 1.75rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-logo-icon { width: 1.75rem; height: 1.75rem; border-radius: 0.375rem; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; }
.footer-logo span { font-weight: 700; color: #fff; }
.footer-desc { color: rgba(255,255,255,0.50); font-size: 0.875rem; line-height: 1.6; }
.footer-col-title { font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 0.75rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links button { color: rgba(255,255,255,0.50); font-size: 0.875rem; background: none; border: none; cursor: pointer; text-align: left; font-family: inherit; transition: color 0.15s; }
.footer-links button:hover { color: rgba(255,255,255,0.80); }
.footer-email { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.50); font-size: 0.875rem; margin-bottom: 1.25rem; transition: color 0.15s; }
.footer-email:hover { color: rgba(255,255,255,0.80); }
.footer-email svg { width: 1rem; height: 1rem; }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link { width: 2rem; height: 2rem; border-radius: 0.375rem; background: rgba(255,255,255,0.10); display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.social-link:hover { background: rgba(255,255,255,0.20); }
.social-link svg { width: 1rem; height: 1rem; color: rgba(255,255,255,0.60); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { color: rgba(255,255,255,0.40); font-size: 0.75rem; }

/* ============================================================
   STICKY MOBILE DONATE BAR
   ============================================================ */
#sticky-mobile {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.10);
  transform: translateY(100%);
  transition: transform 0.3s;
}
@media (min-width: 640px) { #sticky-mobile { display: none; } }
#sticky-mobile.visible { transform: translateY(0); }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
  .container-sm { padding: 0 1.5rem; }
  .section { padding: 4rem 0; }
  .hero-content { padding-top: 6rem; }
}
