/* MENTORS LANDING PAGE */

.mentors-page {
  background: var(--mint);
  color: var(--text);
}

.mentors-page p {
  line-height: 1.55;
}

/* HERO */

.mentors-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 68px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(90, 157, 67, 0.22), transparent 36%),
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.07), transparent 30%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
}

.mentors-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
  pointer-events: none;
}

.mentors-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.mentors-hero-copy .eyebrow {
  color: var(--lime);
  margin-bottom: 16px;
}

.mentors-hero-copy h1 {
  max-width: 700px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 0.97;
  letter-spacing: -0.06em;
  text-transform: none;
}

.mentors-hero-copy h1 span {
  color: var(--lime);
}

.mentors-hero-lead {
  max-width: 620px;
  margin: 0 0 14px;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.35;
  font-weight: 800;
  color: #fff;
}

.mentors-hero-copy > p:not(.mentors-hero-lead) {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.mentors-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.mentors-hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
}

.mentors-hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mentors-hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.mentors-hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 20, 36, 0.08) 0%, rgba(3, 20, 36, 0.42) 100%),
    linear-gradient(90deg, rgba(3, 20, 36, 0.18), transparent 45%);
  pointer-events: none;
}

.mentors-hero-panel {
  padding: 24px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.mentors-hero-panel-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(143, 207, 95, 0.16);
  border: 1px solid rgba(143, 207, 95, 0.28);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mentors-hero-stats {
  display: grid;
  gap: 14px;
}

.mentors-hero-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mentors-hero-stat:first-child {
  padding-top: 0;
  border-top: none;
}

.mentors-hero-stat strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.98rem;
}

.mentors-hero-stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.45;
}

.mentors-hero-stat-mark {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(143, 207, 95, 0.18);
}

/* SECTIONS */

.mentors-section {
  padding: 88px 0;
}

.mentors-dark {
  background: var(--navy);
  color: #fff;
}

.mentors-soft {
  background: var(--mint);
}

.mentors-white {
  background: #fff;
}

.mentors-section-head {
  max-width: 720px;
  margin: 0 auto 48px;
}

.mentors-section-head.text-center {
  text-align: center;
}

.mentors-section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--deep-navy);
}

.mentors-section-head h2 span {
  color: var(--green);
}

.mentors-section-head p {
  margin: 0;
  font-size: 1.08rem;
  color: rgba(16, 35, 58, 0.74);
}

.mentors-dark .mentors-section-head h2 {
  color: #fff;
}

.mentors-dark .mentors-section-head p {
  color: rgba(255, 255, 255, 0.76);
}

.mentors-dark .eyebrow {
  color: var(--lime);
}

/* TRACK CARDS */

.mentors-track-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.mentors-track-card {
  position: relative;
  padding: 34px 30px 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mentors-track-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: rgba(255, 255, 255, 0.2);
}

.mentors-track-card.featured::before {
  background: linear-gradient(90deg, var(--green), var(--lime));
}

.mentors-track-card.featured {
  background: rgba(143, 207, 95, 0.08);
  border-color: rgba(143, 207, 95, 0.22);
}

.mentors-track-tag {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
}

.mentors-track-card h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.mentors-track-card > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.mentors-track-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mentors-track-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
  line-height: 1.5;
}

.mentors-track-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

/* WHY — REVERSE HERO LAYOUT */

.mentors-why-section {
  background: #fff;
}

.mentors-why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}

.mentors-why-visual {
  display: grid;
  gap: 18px;
}

.mentors-why-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 56px rgba(3, 20, 36, 0.14);
  border: 1px solid rgba(16, 35, 58, 0.08);
  background: #fff;
}

.mentors-why-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.mentors-why-panel {
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--mint);
  border: 1px solid rgba(16, 35, 58, 0.08);
}

.mentors-why-panel-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-2);
}

.mentors-why-panel p {
  margin: 0;
  color: rgba(16, 35, 58, 0.78);
  font-size: 0.98rem;
  line-height: 1.5;
}

.mentors-why-copy .eyebrow {
  margin-bottom: 14px;
}

.mentors-why-quote {
  margin: 0 0 28px;
  color: var(--deep-navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.mentors-why-quote span {
  color: var(--green);
}

.mentors-why-points {
  display: grid;
  gap: 22px;
}

.mentors-why-point h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  color: var(--deep-navy);
}

.mentors-why-point p {
  margin: 0;
  color: rgba(16, 35, 58, 0.72);
  font-size: 0.98rem;
}

/* PROCESS */

.mentors-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.mentors-process::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.mentors-process-step {
  position: relative;
  padding: 0 20px;
  text-align: center;
}

.mentors-process-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep-navy);
  border: 2px solid rgba(143, 207, 95, 0.45);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.mentors-process-step h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.mentors-process-step p {
  margin: 0 auto;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
}

/* GET / EXPECT */

.mentors-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mentors-split-card {
  padding: 34px 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 18px 44px rgba(3, 20, 36, 0.06);
}

.mentors-split-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-2);
}

.mentors-split-card h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
}

.mentors-split-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mentors-split-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 11px;
  color: rgba(16, 35, 58, 0.8);
  font-size: 0.97rem;
  line-height: 1.5;
}

.mentors-split-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
}

/* FINAL CTA */

.mentors-final {
  padding: 88px 0;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 207, 95, 0.14), transparent 42%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
}

.mentors-final .eyebrow {
  color: var(--lime);
}

.mentors-final h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.mentors-final p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.mentors-final-actions {
  display: flex;
  justify-content: center;
}

/* TRAITS — INLINE CHIPS */

.mentors-traits-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.mentors-traits-wrap h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--deep-navy);
}

.mentors-traits-wrap p {
  margin: 0 auto 28px;
  max-width: 620px;
  color: rgba(16, 35, 58, 0.72);
  font-size: 1.05rem;
}

.mentors-trait-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.mentors-trait-list span {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--mint);
  border: 1px solid rgba(16, 35, 58, 0.08);
  color: var(--deep-navy);
  font-size: 0.92rem;
  font-weight: 800;
}

/* RESPONSIVE */

@media (max-width: 1020px) {
  .mentors-hero-grid,
  .mentors-why-grid,
  .mentors-track-grid,
  .mentors-split-grid {
    grid-template-columns: 1fr;
  }

  .mentors-process {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .mentors-process::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .mentors-section,
  .mentors-final {
    padding: 64px 0;
  }

  .mentors-hero {
    padding: 52px 0 48px;
  }

  .mentors-hero-panel,
  .mentors-track-card,
  .mentors-split-card {
    padding: 26px 22px;
  }
}
