/* ── HERO ── */
.hero-section {
  background: linear-gradient(135deg, #3D1A6B 0%, #5B2D8E 45%, #7B4DB8 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,191,165,0.1) 0%, transparent 40%);
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0,191,165,0.06);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ribbon-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-highlight {
  color: var(--teal);
  position: relative;
}
.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  opacity: 0.6;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.hero-trust-item svg { color: var(--teal); }

.hero-image-wrap { position: relative; }
.hero-image-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(10px);
  position: relative;
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  animation: floatUp 3s ease-in-out infinite;
}
.hero-float-1 { bottom: 1.5rem; left: -1.5rem; animation-delay: 0s; }
.hero-float-2 { top: 1.5rem; right: -1.5rem; animation-delay: 1.5s; }
@keyframes floatUp { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }
.float-icon { font-size: 1.5rem; }
.float-num { font-size: 1.1rem; font-weight: 800; color: var(--purple); }
.float-label { font-size: 0.72rem; color: var(--gray-500); font-weight: 500; }

.hero-ribbon-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  padding: 0.4rem;
  box-shadow: var(--shadow-md);
}

/* ── STATS ── */
.stats-strip {
  background: #fff;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-card {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
}
.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-big {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--purple);
  line-height: 1;
}
.stat-lbl { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; margin-top: 0.25rem; }

/* ── HOW WE HELP ── */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.help-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.help-card .help-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.help-card.purple .help-icon { background: var(--purple-50); color: var(--purple); }
.help-card.teal .help-icon { background: var(--teal-50); color: var(--teal-dark); }
.help-card.amber .help-icon { background: #FEF3C7; color: var(--amber-dark); }
.help-card.green .help-icon { background: #D1FAE5; color: #065F46; }
.help-card.pink .help-icon { background: #FCE7F3; color: #9D174D; }
.help-card.orange .help-icon { background: #FFF7ED; color: #C2410C; }
.help-card:hover.purple { border-color: var(--purple-100); }
.help-card:hover.teal { border-color: var(--teal-50); }
.help-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.help-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }
.help-link { display: inline-block; font-size: 0.82rem; font-weight: 700; color: var(--purple); margin-top: 1rem; transition: gap 0.2s; }
.help-link:hover { color: var(--purple-dark); }

/* ── STORIES ── */
.stories-section { background: var(--gray-50); }
.stories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.story-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.story-card.featured { border: 2px solid var(--purple-100); }
.story-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.story-type-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--purple);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
}
.story-type-badge.amber { background: var(--amber); }
.story-type-badge.teal { background: var(--teal-dark); }
.story-body { padding: 1.25rem; }
.story-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.story-body p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }
.story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray-400);
}
.story-read { color: var(--purple); font-weight: 600; font-size: 0.82rem; }

/* ── DONATE CTA STRIP ── */
.donate-cta-strip {
  background: var(--navy);
  padding: 2.5rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-inner p {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-serif);
}

/* ── PARTNERS ── */
.partners-section { background: #fff; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.partner-logo {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}
.partner-logo:hover { border-color: var(--purple-100); color: var(--purple); background: var(--purple-50); transform: translateY(-2px); }

/* ── ABOUT SMA MINI ── */
.about-mini-section { background: var(--gray-50); }
.about-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.sma-type-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sma-type-mini {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.sma-type-mini:hover { box-shadow: var(--shadow-sm); }
.type-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.type-circle.teal { background: var(--teal); }
.type-circle.amber { background: var(--amber); }
.type-circle.green { background: var(--green); }
.sma-type-mini strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.2rem; }
.sma-type-mini p { font-size: 0.8rem; color: var(--gray-500); margin: 0; line-height: 1.5; }

/* ── CSR CTA ── */
.csr-cta-section {
  background: linear-gradient(135deg, #5B2D8E, #7B4DB8);
  padding: 4rem 0;
}
.csr-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.csr-cta-content { flex: 1; }
.csr-cta-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.csr-cta-content h2 { color: #fff; font-size: 1.75rem; margin-bottom: 0.75rem; }
.csr-cta-content p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 1.5rem; }
.csr-cta-stats {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
}
.csr-stat { text-align: center; }
.csr-stat-num { font-size: 1.75rem; font-weight: 800; color: #fff; }
.csr-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 0.2rem; font-weight: 500; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-wrap { max-width: 500px; margin: 0 auto; }
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .about-mini-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .csr-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .hero-section { padding: 4rem 0 3rem; min-height: auto; }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stories-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner p { font-size: 1.2rem; }
  .csr-cta-stats { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .help-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: repeat(2,1fr); }
  .hero-float-1, .hero-float-2 { display: none; }
}
