/* ════════════════════════════
   ABOUT PAGE
   ════════════════════════════ */

/* ── HERO ── */
.ab-hero {
  position: relative;
  margin-top: 64px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 0 24px;
}
.ab-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15,29,58,0.82) 0%, rgba(26,46,90,0.72) 100%),
    url('../bg_homepage.png') center/cover no-repeat;
  z-index: 0;
}
.ab-hero-content {
  position: relative;
  z-index: 1;
}
.ab-hero-pill {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}
.ab-hero-content h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.ab-hero-content p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ── STORY ── */
.ab-story-section {
  background: #fff;
  padding: 80px 0 64px;
}
.ab-story-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: center;
}
.ab-story-text .ab-story-pill {
  display: inline-block;
  background: #eef2ff;
  color: #1a2e5a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.ab-story-text h2 {
  font-size: 1.9rem;
  font-weight: 900;
  color: #0f1d3a;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.ab-story-text p {
  font-size: 14.5px;
  color: #4a5a7a;
  line-height: 1.8;
  margin-bottom: 14px;
}
.ab-story-card {
  background: linear-gradient(145deg, #1a2e5a, #253f7a);
  border-radius: 18px;
  padding: 44px 32px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(26,46,90,0.2);
}
.ab-story-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
}
.ab-since {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.ab-since-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  font-weight: 500;
}

/* ── MISSION / VISION ── */
.ab-mv-section {
  background: #f8faff;
  padding: 72px 0;
}
.ab-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.ab-mv-card {
  background: #fff;
  border: 1.5px solid #eaecf5;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(26,46,90,0.05);
  position: relative;
  overflow: hidden;
}
.ab-mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a2e5a, #4a6fa5);
  border-radius: 16px 16px 0 0;
}
.ab-mv-icon {
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.ab-mv-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f1d3a;
}
.ab-highlight { color: #1a2e5a; }
.ab-mv-card p {
  font-size: 14px;
  color: #4a5a7a;
  line-height: 1.75;
}

/* ── CORE VALUES ── */
.ab-values-section {
  background: #fff;
  padding: 80px 0;
}
.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}
.ab-value-card {
  background: #fff;
  border: 1.5px solid #eaecf5;
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(26,46,90,0.04);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.ab-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26,46,90,0.10);
  border-color: #c8d4f0;
}
.ab-value-icon {
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  flex-shrink: 0;
}
.ab-value-icon svg { width: 22px; height: 22px; }
.ab-value-card h3 {
  font-size: 14px;
  font-weight: 800;
  color: #0f1d3a;
  margin-bottom: 6px;
}
.ab-value-card p {
  font-size: 12px;
  color: #7a8aaa;
  line-height: 1.55;
}

/* ── IMPACT ── */
.ab-impact-section {
  background: linear-gradient(135deg, #0f1d3a 0%, #1a2e5a 60%, #243f78 100%);
  color: #fff;
  padding: 80px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ab-impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(80,120,220,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.ab-impact-section h2 {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 10px;
  position: relative;
  letter-spacing: -0.3px;
}
.ab-impact-section > .container > p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
  position: relative;
}
.ab-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.ab-stat {
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.ab-stat:last-child { border-right: none; }
.ab-stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: #6eaaff;
  margin-bottom: 8px;
  letter-spacing: -1px;
  line-height: 1;
}
.ab-stat-label {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ── JOIN COMMUNITY ── */
.ab-join-section {
  background: #f8faff;
  padding: 80px 28px;
  text-align: center;
}
.ab-join-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.ab-join-section h2 {
  font-size: 1.9rem;
  font-weight: 900;
  color: #0f1d3a;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.ab-join-section p {
  font-size: 15px;
  color: #7a8aaa;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.75;
}
.ab-join-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .ab-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .ab-story-card { max-width: 320px; margin: 0 auto; }
  .ab-mv-grid { grid-template-columns: 1fr; }
  .ab-values-grid { grid-template-columns: repeat(3, 1fr); }
  .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .ab-stat:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .ab-values-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-hero-content h1 { font-size: 2rem; }
  .ab-story-text h2 { font-size: 1.6rem; }
}
