/* Страница «О компании» */
.about-page { padding-top: calc(var(--topbar-h) + var(--header-h)); }

.about-stats-section { padding: clamp(32px, 5vw, 48px) 0; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.about-stat {
  text-align: center;
  padding: 20px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.about-stat__num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}
.about-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

.about-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--line);
  margin-left: 8px;
}
.about-timeline__item {
  position: relative;
  padding: 0 0 28px 28px;
}
.about-timeline__item:last-child { padding-bottom: 0; }
.about-timeline__item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}
.about-timeline__year {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-2);
  display: block;
  margin-bottom: 4px;
}
.about-timeline__item h3 { font-size: 17px; margin: 0 0 6px; }
.about-timeline__item p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }

.about-founder {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}
.about-founder__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #d4d4d4;
  border: 2px solid rgba(74, 158, 255, 0.25);
  overflow: hidden;
  flex-shrink: 0;
}
.about-founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.about-founder__role {
  font-size: 16px;
  color: var(--accent);
  margin: -8px 0 16px;
  font-weight: 600;
}
.about-founder__facts {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.about-founder__facts strong { color: var(--text); }

.about-steps {
  list-style: decimal;
  padding-left: 24px;
  line-height: 1.85;
  font-size: 15px;
}

.about-geo-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 14px;
}
.about-geo-list li { color: var(--muted); }
.about-geo-list strong { color: var(--text); margin-right: 6px; }

.about-map .cases-map__pin { width: 16px; height: 16px; margin: -8px 0 0 -8px; }

.about-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about-review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.about-review__photo {
  width: 100%;
  height: 120px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: url("../img/hero-bg.jpeg") center/cover;
  filter: grayscale(0.3);
}
.about-review blockquote {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
}
.about-review cite {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
  margin-bottom: 12px;
}
.about-review__video { font-size: 12px; color: var(--accent-2); margin: 8px 0 0; }

.about-partners { display: flex; flex-direction: column; gap: 20px; }
.about-partners__group h3 { font-size: 16px; margin: 0 0 10px; }

.about-certs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.about-cert {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}
.about-cert__icon { font-size: 28px; margin-bottom: 10px; }
.about-cert h3 { font-size: 15px; margin: 0 0 8px; }
.about-cert p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.45; }

.about-approach {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.about-approach__step {
  display: flex;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.about-approach__n {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 107, 44, 0.12);
  color: var(--accent);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-approach__step p { margin: 4px 0 0; font-size: 13px; color: var(--muted); line-height: 1.45; }

.about-legal {
  display: grid;
  gap: 12px 24px;
  margin: 24px 0;
  max-width: 720px;
}
.about-legal > div {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 8px 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.about-legal dt { margin: 0; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel); }
.about-legal dd { margin: 0; font-size: 14px; line-height: 1.5; color: var(--text); }

@media (max-width: 1024px) {
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .about-founder { grid-template-columns: 1fr; }
  .about-founder__photo { width: 120px; height: 120px; }
  .about-reviews { grid-template-columns: 1fr; }
  .about-certs { grid-template-columns: repeat(2, 1fr); }
  .about-approach { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-certs, .about-approach { grid-template-columns: 1fr; }
}
