/* ══════════════════════════════════
   MISSION SECTION
══════════════════════════════════ */
.mission-sec {
  padding: 80px 0;
  background: var(--bg);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mission-img {
  height: 440px;
  overflow: hidden;
  position: relative;
}

.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-img::after {
  content: '';
  position: absolute;
  inset: 0;
}

.mission-quote {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 2px;
  line-height: 1.1;
  margin: 24px 0;
  color: var(--white);
}

.mission-quote span {
  color: var(--red);
}

/* ══════════════════════════════════
   VALUES SECTION
══════════════════════════════════ */
.values-sec {
  padding: 80px 0;
  background: var(--s1);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}

.val-blk {
  background: var(--s1);
  padding: 36px 28px;
  text-align: center;
  transition: var(--tr);
}

.val-blk:hover {
  background: var(--s2);
}

.val-ico {
  font-size: 36px;
  margin-bottom: 16px;
}

.val-blk h4 {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.val-blk p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════
   TEAM SECTION
══════════════════════════════════ */
.team-sec {
  padding: 80px 0;
  background: var(--bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: var(--s1);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--tr);
}

.team-card:hover {
  border-color: rgba(227, 30, 36, .3);
  transform: translateY(-4px);
}

.team-card .timg {
  height: 200px;
  background: linear-gradient(135deg, var(--s2), var(--s3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.team-card .timg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
}

.team-card .tbd {
  padding: 24px;
}

.team-card .tbd h4 {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .tbd .role {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.team-card .tbd p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════
   WHY US BAND
══════════════════════════════════ */
.why-band {
  padding: 80px 0;
  background: var(--s1);
  position: relative;
  overflow: hidden;
}

.why-band::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 197, 24, .04), transparent 70%);
}

.why-big-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* ══════════════════════════════════
   MILESTONE TIMELINE
══════════════════════════════════ */
.timeline-sec {
  padding: 80px 0;
  background: var(--bg);
}

.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--red), var(--yellow));
}

.tl-item {
  position: relative;
  padding: 0 0 40px 32px;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--bg);
}

.tl-year {
  font-family: var(--fd);
  font-size: 20px;
  color: var(--yellow);
  margin-bottom: 4px;
}

.tl-item h4 {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tl-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ══════════════════════════════════
   PARTNER LOGOS
══════════════════════════════════ */
.partner-sec {
  padding: 60px 0;
  background: var(--s1);
  border-top: 1px solid var(--border);
}

.partner-logos {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
}

.plogo {
  font-family: var(--fd);
  font-size: 22px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .2);
  transition: color .2s;
  cursor: default;
}

.plogo:hover {
  color: rgba(255, 255, 255, .5);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .why-big-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .why-big-grid {
    grid-template-columns: 1fr;
  }
}
