/* =========================
   PREMIUM TEAM SECTION
========================= */

.premium-team-section {
  background: linear-gradient(to bottom, #f8fafc, #eef2ff);
  position: relative;
  overflow: hidden;
}

.section-badge,
.mentor-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-heading h2 {
  color: var(--brand-900);
}

.section-heading p {
  max-width: 700px;
  margin: auto;
  color: #6b7280;
  font-size: 17px;
}

/* TEAM CARD */

.team-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 100%;
  margin-bottom: 20px;
  border: 4px solid var(--accent);
  overflow: hidden;
}

.team-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

.team-role {
  color: var(--brand-900);
  font-weight: 600;
  margin-top: 8px;
}

/* MENTOR SECTION */

.mentor-wrapper {
  background: var(--brand-900);
  border-radius: 32px;
  padding: 60px 35px;
  position: relative;
  overflow: hidden;
}

.mentor-wrapper::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(99,102,241,0.15);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

.mentor-header h3 {
  color: white;
  font-size: 36px;
  font-weight: 800;
}

.mentor-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 35px;
  color: white;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
}

.mentor-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99,102,241,0.4);
}

.mentor-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 28px;
  color: white;
}

.mentor-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.mentor-card p {
  color: #cbd5e1;
  line-height: 1.7;
}