.page-hero-wave-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4rem;
  background: #fff;
}
.page-hero-blob-r {
  position: absolute;
  top: -10%; right: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  filter: blur(60px);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }

/* ── STORY ── */
.story-section { padding: 6rem 0; background: #fff; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .story-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.story-grid .section-label { margin-bottom: 1rem; }
.story-h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--primary); margin-bottom: 2rem; line-height: 1.2; }
.story-grid p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }

.story-img-wrap { position: relative; }
.story-img-inner {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  position: relative;
}
.story-img-inner img { width: 100%; height: 480px; object-fit: cover; display: block; }
.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,110,0.3), transparent);
  border-radius: 1.5rem;
}
.story-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
}
.story-badge-num { font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.story-badge-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── COMMITMENTS ── */
.commitments-section { padding: 6rem 0; background: var(--bg-muted); }
.commitments-head { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.commitments-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.commitments-head p { font-size: 1.05rem; color: var(--text-muted); }

.commitments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .commitments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .commitments-grid { grid-template-columns: repeat(3, 1fr); } }

.commitment-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.commitment-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }
.commitment-card:hover .commitment-icon { background: var(--primary); color: #fff; }
.commitment-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  background: rgba(13,31,110,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: all 0.2s;
}
.commitment-icon svg { width: 1.75rem; height: 1.75rem; }
.commitment-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.commitment-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ── BOTTOM BANNER ── */
.about-bottom-banner { background: #bfdbfe; padding: 5rem 1.5rem; position: relative; overflow: hidden; }
.about-bottom-inner { text-align: center; max-width: 56rem; margin: 0 auto; position: relative; z-index: 2; }
.about-bottom-inner h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
.about-bottom-inner p { font-size: 1.05rem; color: rgba(13,31,110,0.7); margin-bottom: 2.5rem; line-height: 1.7; }
.about-stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
@media (min-width: 768px) { .about-stats { gap: 5rem; } }
.about-stat { text-align: center; }
.about-stat-val { font-size: 2.25rem; font-weight: 900; color: var(--primary); line-height: 1; }
@media (min-width: 768px) { .about-stat-val { font-size: 2.75rem; } }
.about-stat-lbl { font-size: 0.8rem; color: rgba(13,31,110,0.6); margin-top: 0.25rem; }
