/* ===== ABOUT HERO ===== */
.about-hero {
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 50%, #16213e 100%);
}

/* ===== MISSION STRIP ===== */
.mission-strip {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 48px 0;
}
.mission-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.mission-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 0 40px;
}
.mission-item:first-child { padding-left: 0; }
.mission-item:last-child { padding-right: 0; }
.mission-item i {
  font-size: 1.6rem;
  color: #2ecc71;
  margin-top: 4px;
  flex-shrink: 0;
}
.mission-item h4 { font-size: 0.97rem; font-weight: 800; margin-bottom: 8px; color: #1a1a2e; }
.mission-item p { font-size: 0.87rem; color: #6b7280; line-height: 1.65; }
.mission-divider {
  width: 1px;
  background: #e5e7eb;
  align-self: stretch;
  flex-shrink: 0;
}

/* ===== OUR STORY ===== */
.story-section { padding: 80px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  color: #1a1a2e;
}
.story-text p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 16px;
}
.story-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.sh-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  font-weight: 600;
  color: #374151;
}
.sh-item i { color: #2ecc71; font-size: 0.8rem; flex-shrink: 0; }

/* Story visual */
.story-visual { position: relative; }
.story-card-stack { position: relative; padding: 24px; }
.main-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  z-index: 2;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.sc-icon {
  font-size: 2.4rem;
  color: #2ecc71;
  margin-bottom: 18px;
}
.main-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.main-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.65; }
.story-stat-card {
  position: absolute;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  text-align: center;
  z-index: 3;
}
.story-stat-card:first-of-type {
  bottom: -10px;
  right: -10px;
}
.story-stat-card.alt {
  top: -10px;
  right: 30px;
}
.story-stat-card strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #2ecc71;
  line-height: 1;
}
.story-stat-card span {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.stat-block {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { font-size: 1.4rem; }
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  line-height: 1.4;
}

/* ===== TEAM ===== */
.team-section { }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: #2ecc71;
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}
.team-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; color: #1a1a2e; }
.team-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2ecc71;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.team-card p {
  font-size: 0.87rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 16px;
}
.team-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team-creds span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f3f4f6;
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #374151;
}
.team-creds span i { color: #2ecc71; font-size: 0.7rem; }

/* ===== VALUES ===== */
.values-section { }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.value-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 32px;
  transition: all 0.3s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.val-icon {
  width: 52px;
  height: 52px;
  background: rgba(46,204,113,0.1);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #2ecc71;
  margin-bottom: 18px;
}
.value-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: #6b7280; line-height: 1.65; }

/* ===== CERTIFICATIONS ===== */
.certs-section {
  background: #f7f9fc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 56px 0;
}
.certs-inner h3 {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 36px;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.cert-badge {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s;
}
.cert-badge:hover { border-color: #2ecc71; transform: translateY(-2px); }
.cert-badge i {
  font-size: 1.6rem;
  color: #2ecc71;
  margin-bottom: 10px;
  display: block;
}
.cert-badge span {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
}
.cert-badge small {
  font-size: 0.73rem;
  color: #9ca3af;
  line-height: 1.4;
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-block:nth-child(3) { border-right: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { display: none; }
}
@media (max-width: 768px) {
  .mission-grid { flex-direction: column; gap: 28px; }
  .mission-item { padding: 0; }
  .mission-divider { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2n) { border-right: none; }
  .stat-block { border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-block:nth-last-child(-n+2) { border-bottom: none; }
  .story-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
}