/* ===== About page: hero ===== */
.about-hero {
  background: #f6f7fb;
  min-height: 56vh;
  display: flex;
  align-items: center;
}
.about-inner { text-align: center; padding: 64px 0; }
.about-sub {
  max-width: 1100px;
  margin: 0 auto;
  color: #3a3b3e;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.6;
  font-weight: 600;
}
/* ===== About: History + Stats (screen 2) ===== */
.about-history {
  background: #f6f7fb;
  padding: 48px 0 72px;
}

.about-history-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.history-title {
  font-size: clamp(26px, 3.6vw, 56px);
  line-height: 1.1;
  font-weight: 900;
  margin: 0 0 18px;
  color: #0b0c0e;
}

.history-text p {
  margin: 0 0 18px;
  color: #47505a;
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.75;
  font-weight: 600;
}

/* Stats card */
.stats-card {
  background: #fff;
  border: 1px solid #e9edf4;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(22,26,33,.06);
  padding: 28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 38px;
  text-align: center;
}

.stat-num {
  color: #2f6af3;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  color: #5b6168;
  font-weight: 700;
  font-size: clamp(14px, 1.9vw, 18px);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-history-grid {
    grid-template-columns: 1fr;
  }
  .stats-card { padding: 24px; }
}
/* ===== About: Values ===== */
.values {
  background: #f6f7fb;
  padding: 48px 0 72px;
}

.values-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 12px;
}

.value-card {
  background: #fff;
  border: 1px solid #e9edf4;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 6px 24px rgba(22, 26, 33, 0.06);
  text-align: center;
}

.value-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  margin: 8px 0 10px;
  color: #0b0c0e;
}

.value-text {
  color: #3a3b3e;
  font-size: clamp(15px, 1.9vw, 18px);
  line-height: 1.6;
  font-weight: 600;
  max-width: 36ch;
  margin: 0 auto;
}

/* переиспользуем badge/icon из Services */
.icon-badge { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 14px; margin: 0 auto 12px; }
.icon { width: 28px; height: 28px; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.badge-blue   { background: #e9f0ff; color: #2f6af3; }
.badge-green  { background: #e9f9ef; color: #12a150; }
.badge-purple { background: #f1e9ff; color: #7a3df0; }

/* Responsive */
@media (max-width: 1024px) {
  .values-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .values-cards { grid-template-columns: 1fr; }
  .value-card { padding: 22px; }
}
