/* About-specific styles */
    .about-intro-split {
      display: grid; grid-template-columns: 1.15fr 0.85fr;
      gap: 72px; align-items: start;
    }
    .about-text-lead {
      font-size: 1.22rem; color: var(--text-heading);
      font-weight: 600; line-height: 1.65; margin-bottom: 20px;
      border-left: 4px solid var(--green-dark); padding-left: 20px;
    }
    .info-panel {
      background: var(--bg-alt);
      border: 1.5px solid var(--border);
      border-radius: var(--r-xl);
      padding: 32px;
      position: sticky; top: 100px;
    }
    .info-panel-head {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 24px; padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    .info-panel-head .big-emoji { font-size: 2.4rem; }
    .info-panel-head h3 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 2px; }
    .info-panel-head p  { font-size: 0.78rem; color: var(--text-muted); }
    .info-row {
      display: flex; justify-content: space-between; align-items: flex-start;
      gap: 16px;
      padding: 12px 0; border-bottom: 1px dashed var(--border-soft);
      font-size: 0.88rem;
    }
    .info-row:last-child { border-bottom: none; }
    .info-row .key { color: var(--text-muted); flex-shrink: 0; }
    .info-row .val { font-weight: 800; color: var(--green-dark); text-align: right; }

    @media (max-width: 480px) {
      .info-row {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
      }
      .info-row .val {
        text-align: left;
      }
    }

    /* Stat strip on about */
    .stat-strip {
      display: grid; grid-template-columns: repeat(6,1fr);
      gap: 0; margin-top: 52px;
      border: 1.5px solid var(--border); border-radius: var(--r-xl);
      overflow: hidden; background: var(--white);
    }
    .stat-strip-item {
      padding: 26px 16px; text-align: center;
      border-right: 1px solid var(--border);
      transition: var(--t);
    }
    .stat-strip-item:last-child { border-right: none; }
    .stat-strip-item:hover { background: var(--green-ultra); }
    .ss-num { display: block; font-size: 1.9rem; font-weight: 900; color: var(--green-dark); line-height: 1; letter-spacing: -0.04em; }
    .ss-lbl { font-size: 0.66rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 6px; font-weight: 700; }

    /* Objectives - 2 col capsule */
    .obj-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    /* Partner cards */
    .partner-card-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
    .partner-card {
      flex: 1 1 240px; max-width: 280px;
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: var(--r-xl); padding: 28px 20px;
      text-align: center; transition: var(--t);
    }
    .partner-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }
    .partner-card img.pc-logo { width: 56px; height: 56px; object-fit: contain; margin: 0 auto 16px auto; display: block; }
    .partner-card h4 { font-size: 0.95rem; margin: 0 0 8px 0; line-height: 1.3; }
    .partner-card p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; margin: 0; }

    @media (max-width: 1000px) {
      .about-intro-split { grid-template-columns: 1fr; }
      .info-panel         { position: static; }
      .stat-strip         { grid-template-columns: repeat(3,1fr); }
    }
    @media (max-width: 700px) {
      .stat-strip         { grid-template-columns: repeat(2,1fr); }
      .obj-grid           { grid-template-columns: 1fr; }
      .partner-card       { max-width: 100%; }
    }

/* Modern timeline - Horizontal Scrollable */
.timeline-wrap {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.timeline-wrap::-webkit-scrollbar {
  height: 8px;
}
.timeline-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.timeline-wrap::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.timeline-track {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: max-content;
  position: relative;
  min-width: 100%;
}

.timeline-track::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 24px;
  height: 2px;
  background: linear-gradient(to right, var(--green-dark), var(--gold));
  z-index: 1;
}

.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
  text-align: center;
}

.tl-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--white);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.tl-dot.green {
  background: var(--green-dark);
  box-shadow: 0 4px 14px rgba(109, 136, 107, 0.35);
}

.tl-dot.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: var(--shadow-gold);
}

.tl-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px 20px;
  transition: var(--t);
  width: 100%;
}

.tl-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.tl-card h4 {
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 800;
  margin-bottom: 6px;
}

.tl-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.tl-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.tl-card.gold-card {
  border-color: rgba(191, 159, 95, 0.30);
}

.tl-card.gold-card h4 {
  color: var(--gold-deep);
}

.tl-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-bottom: 15px;
}