/* ─── About Page Hero ─── */
.about-page-hero {
  padding: 10rem 2rem 5rem;
  background: linear-gradient(180deg, #f4f6f9 0%, #edf0f4 100%);
  position: relative;
  overflow: hidden;
}

.about-page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(238, 99, 78, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-page-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(238, 99, 78, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-page-hero-content .section-badge {
  display: inline-block;
}

.about-page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #1e2130;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
}

.about-page-hero-content p {
  font-size: 1.15rem;
  color: rgba(30, 33, 48, 0.55);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── Mission Vision Values ─── */
.mvv {
  padding: 6rem 2rem;
  background: #ffffff;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.mvv-card {
  background: #f4f6f9;
  border: 1px solid rgba(30, 33, 48, 0.08);
  border-radius: 22px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-5px);
  border-color: rgba(238, 99, 78, 0.3);
  box-shadow: 0 12px 32px rgba(238, 99, 78, 0.08);
}

/* Subtle top accent line per card */
.mvv-card--mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ee634e, #ff8a75);
}

.mvv-card--vision::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3a5a8c, #5a8abf);
}

.mvv-card--mission {
  margin-top: 2.75rem;
}

.mvv-card--values {
  margin-top: 2.75rem;
}

.mvv-card--values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2a8a6e, #4bb896);
}

.mvv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.mvv-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(238, 99, 78, 0.08);
  border: 1px solid rgba(238, 99, 78, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mvv-card--vision .mvv-icon-wrap {
  background: rgba(58, 90, 140, 0.08);
  border-color: rgba(58, 90, 140, 0.15);
}

.mvv-card--values .mvv-icon-wrap {
  background: rgba(42, 138, 110, 0.08);
  border-color: rgba(42, 138, 110, 0.15);
}

.mvv-icon-wrap i {
  font-size: 1.25rem;
  color: #ee634e;
}

.mvv-card--vision .mvv-icon-wrap i {
  color: #3a5a8c;
}

.mvv-card--values .mvv-icon-wrap i {
  color: #2a8a6e;
}

.mvv-number {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(30, 33, 48, 0.25);
  letter-spacing: 1.5px;
}

.mvv-card h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1e2130;
  margin-bottom: 0.75rem;
}

.mvv-card p {
  font-size: 0.92rem;
  color: rgba(30, 33, 48, 0.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.mvv-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mvv-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: rgba(30, 33, 48, 0.65);
}

.mvv-list li i {
  font-size: 0.7rem;
  flex-shrink: 0;
}

.mvv-card--mission .mvv-list i {
  color: #ee634e;
}
.mvv-card--vision .mvv-list i {
  color: #3a5a8c;
}
.mvv-card--values .mvv-list i {
  color: #2a8a6e;
}

/* ─── Team ─── */
.team {
  padding: 6rem 2rem;
  background: #f4f6f9;
}

.team-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}

.team-header .section-badge {
  display: inline-block;
}

.team-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e2130;
  letter-spacing: -1px;
  line-height: 1.2;
}

.team-header p {
  font-size: 1.05rem;
  color: rgba(30, 33, 48, 0.55);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: #ffffff;
  border: 1px solid rgba(30, 33, 48, 0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(238, 99, 78, 0.25);
  box-shadow: 0 10px 30px rgba(238, 99, 78, 0.07);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.team-avatar span {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.team-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e2130;
  margin-bottom: 3px;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: #ee634e;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.75rem;
  display: block;
}

.team-info p {
  font-size: 0.87rem;
  color: rgba(30, 33, 48, 0.5);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.team-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
}

.team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(30, 33, 48, 0.1);
  background: #f4f6f9;
  color: rgba(30, 33, 48, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  transition: all 0.3s ease;
}

.team-socials a:hover {
  border-color: #ee634e;
  background: rgba(238, 99, 78, 0.08);
  color: #ee634e;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .mvv-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .mvv-card--mission,
  .mvv-card--values {
    margin-top: 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .about-page-hero {
    padding: 8rem 1.5rem 3.5rem;
  }

  .mvv {
    padding: 4rem 1.5rem;
  }

  .team {
    padding: 4rem 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .mvv-card {
    padding: 1.75rem;
  }
}
