/* ── ABOUT PAGE SPECIFIC STYLES ── */

/* Active nav link */
#desktopLinks a.active {
  color: var(--white);
}
#desktopLinks a.active::after {
  width: 100%;
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 60vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 8% 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(123,47,190,0.45), transparent),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(92,45,145,0.3), transparent),
    radial-gradient(ellipse 30% 30% at 10% 70%, rgba(123,47,190,0.15), transparent);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(123,47,190,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,47,190,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero .hero-eyebrow {
  animation: fadeUp 0.6s 0.2s forwards;
  position: relative; z-index: 1;
}
.page-hero .hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 6vw, 4.2rem);
  font-weight: 800; line-height: 1.1;
  color: var(--white);
  opacity: 0; animation: fadeUp 0.7s 0.35s forwards;
  position: relative; z-index: 1;
}
.page-hero .hero-title em { font-style: normal; color: var(--purple-l); }
.page-hero .hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--gray);
  max-width: 560px;
  line-height: 1.65;
  opacity: 0; animation: fadeUp 0.7s 0.5s forwards;
  position: relative; z-index: 1;
}

/* ── STATS ── */
.stats-section {
  background: var(--dark2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem 3rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  gap: 0.4rem;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
  max-width: 180px;
}

/* ── PARCOURS / TIMELINE ── */
.parcours-section {
  background: var(--dark);
  padding: 90px 8%;
}
.text-center { text-align: center; }
.section-sub {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 0.4rem;
  margin-bottom: 3rem;
}
.timeline {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0 0;
  margin-top: 3rem;
  position: relative;
  align-items: start;
}
.timeline-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 1.5rem;
}
.spine-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), rgba(123,47,190,0.1));
}
.spine-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--purple);
  border: 2px solid var(--purple-l);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 120px;
}
.spine-dot:last-child { margin-bottom: 0; }
.left-col { display: flex; flex-direction: column; gap: 2rem; padding-right: 2rem; }
.right-col { display: flex; flex-direction: column; gap: 2rem; padding-left: 2rem; }
.tl-offset { margin-top: 80px; }
.tl-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  transition: border-color 0.3s, transform 0.3s;
}
.tl-card:hover {
  border-color: rgba(123,47,190,0.4);
  transform: translateY(-3px);
}
.tl-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 0.5rem;
}
.tl-card h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.tl-card p {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── MISSION & VISION ── */
.mv-section {
  background: var(--dark2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 70px 8%;
}
.mv-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s;
}
.mv-card:hover { border-color: rgba(123,47,190,0.4); }
.mv-dot {
  width: 10px; height: 10px;
  background: var(--purple-l);
  border-radius: 50%;
  margin-bottom: 1.2rem;
}
.mv-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.mv-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ── TEAM BANNER ── */
.team-banner {
  background: var(--dark3);
  padding: 80px 8%;
  text-align: center;
}
.team-banner-inner { max-width: 820px; margin: 0 auto; }
.team-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 2rem;
}
.team-banner h2 em { font-style: normal; color: var(--purple-l); }
.team-banner p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ── TEAM GRID ── */
.team-section {
  background: var(--dark);
  padding: 80px 8%;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.team-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.4rem;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover {
  border-color: rgba(123,47,190,0.4);
  transform: translateY(-3px);
}
.team-avatar {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--purple-l));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800; font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.team-name {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--dark2) 0%, rgba(123,47,190,0.18) 50%, var(--dark2) 100%);
  border-top: 1px solid rgba(123,47,190,0.25);
  border-bottom: 1px solid rgba(123,47,190,0.25);
  padding: 80px 8%;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.cta-band h2 em { font-style: normal; color: var(--purple-l); }
.cta-band p {
  color: #000;
  font-size: 0.92rem;
  margin-bottom: 2rem;
  max-width: 460px;
  margin-left: auto; margin-right: auto;
}
.cta-band-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stats-section { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 2rem 2rem; }
  .stat-item:last-child { border-bottom: none; }

  .timeline { grid-template-columns: 1fr; gap: 1.5rem; }
  .timeline-spine { display: none; }
  .left-col, .right-col { padding: 0; gap: 1.5rem; }
  .tl-offset { margin-top: 0; }

  .mv-section { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .page-hero { padding: 110px 5% 60px; text-align: left; align-items: flex-start; }
  .page-hero .hero-title {
    font-size: clamp(1.2rem, 6.5vw, 1.7rem);
    line-height: 1.2;
  }
  .page-hero .hero-sub { margin-left: 0; }
  .parcours-section, .team-section, .team-banner, .cta-band { padding: 60px 5%; }
  .mv-section { padding: 50px 5%; }
  .stats-section .stat-item { padding: 1.5rem 5%; }
}

/* ── SECTION TITLE FIX ── */
.section-title { color: var(--white) !important; }
.section-title em { font-style: normal; color: var(--purple-l) !important; }