.page-hero {
  padding: 130px 5% 72px;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(192, 20, 28, 0.12);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 em {
  color: #C0141C;
  font-style: normal;
}
.page-hero p {
  font-size: 16px;
  color: #aaaaaa;
  line-height: 1.75;
  max-width: 560px;
}
.stats-band {
  background: #C0141C;
  padding: 52px 5%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 14px;
}
.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item strong {
  display: block;
  font-size: clamp(28px, 3.3vw, 46px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.stat-item span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 5px;
  display: block;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
  align-items: center;
}
.mission-text p {
  font-size: 14.5px;
  color: #bbbbbb;
  line-height: 1.8;
  margin-bottom: 14px;
}
.mission-quote {
  background: #C0141C;
  color: #ffffff;
  border-radius: 16px;
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
}
.mission-quote::before {
  content: '"';
  font-size: 100px;
  line-height: 1;
  position: absolute;
  top: -16px;
  left: 16px;
  opacity: 0.14;
}
.mission-quote blockquote {
  font-size: 18.5px;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  z-index: 2;
  margin-bottom: 11px;
}
.mission-quote cite {
  font-size: 12.5px;
  opacity: 0.75;
  font-style: normal;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 17px;
}
.value-card {
  background: #141414;
  border-radius: 13px;
  padding: 26px;
  border: 1px solid #333333;
  transition: transform 0.3s, border-color 0.3s, background-color 0.3s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: #C0141C;
}
.value-card span {
  font-size: 30px;
  margin-bottom: 11px;
  display: block;
}
.value-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 7px;
}
.value-card p {
  font-size: 12.5px;
  color: #888888;
  line-height: 1.65;
}
.dark-section {
  background: #0d0d0d;
}
.history-timeline {
  position: relative;
  padding-left: 34px;
}
.history-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #222222;
}
.history-item {
  position: relative;
  margin-bottom: 38px;
  display: flex;
  gap: 14px;
}
.history-item:last-child {
  margin-bottom: 0;
}
.h-dot {
  position: absolute;
  left: -25px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #C0141C;
  border: 2px solid #0d0d0d;
  box-shadow: 0 0 0 3px rgba(192, 20, 28, 0.3);
}
.h-year {
  font-size: 12px;
  font-weight: 700;
  color: #C0141C;
  margin-bottom: 5px;
  width: 40px;
  flex-shrink: 0;
}
.h-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}
.h-body p {
  font-size: 13px;
  color: #666666;
  line-height: 1.7;
  max-width: 520px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}
.team-card {
  background: #1e1e1e;
  border: 1px solid #333333;
  border-radius: 13px;
  padding: 26px 18px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, background-color 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
  border-color: #C0141C;
}
.team-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #2a0a0b;
  margin: 0 auto 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.team-card h4 {
  font-size: 14.5px;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 11px;
  color: #C0141C;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 66px;
  align-items: start;
}
.contact-info h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 11px;
  color: #f0f0f0;
}
.contact-info > p {
  font-size: 14px;
  color: #888888;
  line-height: 1.75;
  margin-bottom: 26px;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 14px;
  padding: 14px;
  background: #252525;
  border-radius: 11px;
  border: 1px solid #333333;
  transition: border-color 0.3s, background-color 0.3s;
}
.info-card:hover {
  border-color: #C0141C;
}
.info-icon {
  width: 40px;
  height: 40px;
  background: #2a0a0b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.info-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: #f0f0f0;
  margin-bottom: 2px;
}
.info-card p {
  font-size: 12.5px;
  color: #888888;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 860px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item + .stat-item {
    border-left: none;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}