.values {
  padding-top: 100px;
  padding-bottom: 100px;
  border-top: 1px solid var(--border-soft);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px;
}

.value-card .num {
  font-size: 13px;
  font-weight: 700;
  color: var(--core-green-200);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

.value-card h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
}

.team-section {
  padding: 100px 0;
  background: var(--bg-dark-2);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
  color: #04140F;
}

.team-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card span {
  font-size: 13px;
  color: var(--text-muted);
}

.timeline {
  padding-top: 100px;
  padding-bottom: 100px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--border-soft);
}

.timeline-row:first-of-type {
  border-top: none;
}

.timeline-year {
  font-size: 20px;
  font-weight: 600;
  color: var(--core-green-200);
}

.timeline-copy h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-copy p {
  font-size: 14.5px;
  color: var(--text-secondary);
  max-width: 560px;
}

.contact-section {
  padding-top: 100px;
  padding-bottom: 40px;
  text-align: center;
}

.contact-section h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-section p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 32px;
}

@media (max-width: 860px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
