/* ===== ABOUT HERO SECTION ===== */
.about-hero {
  padding: 60px 24px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeUp 1s var(--spring) forwards;
  opacity: 0;
  transform: translateY(20px);
}

.about-hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0,168,107,0.08);
  border-radius: 40px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* ===== MISSION CARD ===== */
.mission-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 24px;
}

.mission-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--spring);
}

.mission-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--primary-gradient);
}

.mission-card h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mission-card h2 i {
  color: var(--primary);
  font-size: 32px;
}

.mission-card p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ===== VALUES GRID ===== */
.values-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.values-section h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.4s var(--spring);
  opacity: 0;
  transform: translateY(30px);
}

.value-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(0,168,107,0.1);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-icon i {
  font-size: 32px;
  color: var(--primary);
}

.value-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.value-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 40px;
}

.services-section h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.4s var(--spring);
  opacity: 0;
  transform: translateY(30px);
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,168,107,0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon i {
  font-size: 24px;
  color: var(--primary);
}

.service-card span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

/* ===== STATS SECTION ===== */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px 24px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 16px;
}

/* ===== TEAM SECTION ===== */
.team-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 60px;
}

.team-section h2 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.team-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.02);
  transition: all 0.4s var(--spring);
  opacity: 0;
  transform: translateY(30px);
}

.team-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: var(--primary-gradient);
  border-radius: 50px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  font-weight: 600;
}

.team-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.team-card p {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.team-social a {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.04);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.team-social a:hover {
  background: var(--primary);
  color: white;
}

/* ===== CTA SECTION ===== */
.cta-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 24px 60px;
  text-align: center;
}

.cta-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.02);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--spring);
}

.cta-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.cta-card h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.cta-card p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.action-btns {
  gap: 16px;
}

@media (max-width: 768px) {
  .mission-card {
    padding: 32px 24px;
  }

  .mission-card h2 {
    font-size: 28px;
  }

  .service-card {
    padding: 20px;
  }

  .cta-card {
    padding: 32px 24px;
  }

  .cta-card h2 {
    font-size: 28px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}