/* ══════════════════════════════════════════════════════════════
   PAGE: About
   ══════════════════════════════════════════════════════════════ */

/* ── Stats Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  text-align: center;
  padding: 22px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.stat-icon {
  width: 38px; height: 38px;
  background: rgba(245,197,24,0.10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.stat-icon svg { width: 18px; height: 18px; color: var(--yellow); }
.stat-number {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
  line-height: 1.4;
}

/* ── Story & Team text ── */
.story-text p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-text p:last-child { margin-bottom: 0; }

.team-text p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ── Hero padding override ── */
.page-hero { padding-bottom: 148px; }

/* ── Stats overlap ── */
.stats-overlap {
  position: relative;
  z-index: 3;
  margin-top: -64px;
  padding: 0 24px;
}
.stats-overlap .stats-grid {
  max-width: 900px;
  margin: 0 auto;
}
.stats-overlap .stat-card {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* ── Responsive ── */
@media (max-width: 968px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .page-hero { padding-bottom: 120px; }
  .stats-overlap {
    margin-top: -48px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stat-card {
    padding: 20px 14px;
  }
}
