/* ── About Us page styles ── */

/* Hero */
.about-hero {
  background: var(--navy);
  padding: 96px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(79,62,200,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}
.about-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
}
.about-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
}
.about-hero h1 span {
  color: var(--pink);
}
.about-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.about-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Shared section wrapper */
.about-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 40px;
}
.about-section-sm {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* Story split */
.about-story {
  background: var(--white);
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-split-text .about-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.about-split-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 18px;
}
.about-split-text p {
  font-size: 15px;
  color: #4a4a6a;
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-split-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
}
.about-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stats bar */
.about-stats-bar {
  background: var(--navy);
  padding: 0 40px;
}
.about-stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.about-stat {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Mission & Values */
.about-values-bg {
  background: var(--gray-light);
}
.about-section-header {
  text-align: center;
  margin-bottom: 48px;
}
.about-section-header .about-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.about-section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.about-section-header p {
  font-size: 16px;
  color: var(--gray-mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-value-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
}
.about-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.about-value-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.about-value-card p {
  font-size: 14px;
  color: #4a4a6a;
  line-height: 1.7;
}

/* Built for Zambia */
.about-zambia {
  background: var(--white);
}
.about-zambia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-zambia-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
  order: -1;
}
.about-zambia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-zambia-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.about-zambia-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-zp-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.about-zp-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.about-zp-text p {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.5;
}

/* CTA */
.about-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--indigo) 50%, #2a1a80 100%);
  text-align: center;
  padding: 96px 40px;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(224,14,79,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.about-cta-inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.about-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.about-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.65;
}
.about-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .about-split,
  .about-zambia-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-zambia-img { order: 0; }
  .about-values-grid { grid-template-columns: 1fr 1fr; }
  .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .about-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .about-stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  .about-hero { padding: 72px 20px 60px; }
  .about-section,
  .about-section-sm { padding: 60px 20px; }
  .about-stats-bar { padding: 0 20px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-zambia-points { grid-template-columns: 1fr; }
  .about-stats-inner { grid-template-columns: 1fr 1fr; }
  .about-cta { padding: 72px 20px; }
}
