.page-about .about-metrics {
  margin-top: 28px;
}

.page-about .hero-text {
  max-width: 94ch;
}

.page-about .about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.page-about .about-metric-card {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 20px;
  border: 1px solid rgba(var(--brand-blue-rgb), 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.96)),
    radial-gradient(circle at 100% 0%, rgba(var(--brand-blue-rgb), 0.12), rgba(255, 255, 255, 0));
  box-shadow: 0 14px 30px rgba(23, 36, 67, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-about .about-metric-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(var(--brand-blue-rgb), 0.85), rgba(var(--brand-deep-rgb), 0.45));
  opacity: 0.8;
}

.page-about .about-metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-blue-rgb), 0.26);
  box-shadow: 0 20px 42px rgba(20, 34, 66, 0.12);
}

.page-about .about-metric-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--brand-blue-deep);
  background: linear-gradient(135deg, rgba(var(--brand-blue-rgb), 0.18), rgba(var(--brand-blue-rgb), 0.08));
}

.page-about .about-metric-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-about .about-metric-value {
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f1d36;
}

.page-about .about-metric-text {
  margin: 10px 0 0;
  color: var(--brand-gray-500);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  max-width: 30ch;
}

.page-about .about-metric-card:nth-child(2) .about-metric-icon {
  background: linear-gradient(135deg, rgba(97, 131, 255, 0.22), rgba(97, 131, 255, 0.08));
}

.page-about .about-metric-card:nth-child(3) .about-metric-icon {
  background: linear-gradient(135deg, rgba(48, 173, 136, 0.22), rgba(48, 173, 136, 0.09));
}

.page-about .about-metric-card:nth-child(4) .about-metric-icon {
  background: linear-gradient(135deg, rgba(255, 143, 78, 0.22), rgba(255, 143, 78, 0.08));
}

.page-about .about-highlight-text {
  margin: 22px 0 0;
  padding: 14px 16px;
  max-width: 82ch;
  font-size: 18px;
  line-height: 1.6;
  color: #121a2c;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  border-radius: 14px;
  background: linear-gradient(
    90deg,
    rgba(var(--brand-blue-rgb), 0.12) 0%,
    rgba(var(--brand-deep-rgb), 0.06) 55%,
    rgba(255, 255, 255, 0) 100%
  );
}

.page-about .about-clients-section {
  padding-top: 48px;
}

.page-about .about-clients-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: start;
  padding: 26px;
}

.page-about .about-clients-content h2 {
  margin-bottom: 12px;
}

.page-about .about-clients-content p {
  margin: 0;
  color: var(--brand-gray-500);
  line-height: 1.62;
}

.page-about .about-clients-content p + p {
  margin-top: 12px;
}

.page-about .about-clients-cta {
  margin-top: 46px;
}

.page-about .about-clients-image {
  width: 100%;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 16 / 9;
}

@media (max-width: 1100px) {
  .page-about .about-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-about .about-clients-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

@media (max-width: 760px) {
  .page-about .about-metrics-grid {
    grid-template-columns: 1fr;
  }

  .page-about .about-metric-card {
    padding: 16px;
  }

  .page-about .about-metric-value {
    font-size: 24px;
  }

  .page-about .about-highlight-text {
    font-size: 16px;
  }
}

