/* ── about.css — screen-specific styles for /about ── */

.about-inner {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.about-hero {
  text-align: center;
  margin-bottom: 36px;
}
.about-hero-eyebrow {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: -.02em;
  color: var(--text-strong);
  margin: 0 0 16px;
}
.about-hero-lead {
  font-family: var(--font-sans);
  font-size: clamp(15px, 2.5vw, 18px);
  line-height: 1.7;
  color: var(--text-body);
  margin: 0 auto;
  max-width: 640px;
}

/* How-it-works step grid */
.about-steps {
  margin-bottom: 36px;
}

/* Dark stats band */
.about-stats {
  background: linear-gradient(135deg, #0C1A2E, #18345A);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.about-stat-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(24px, 4vw, 32px);
  color: #fff;
  line-height: 1;
}
.about-stat-num.is-gold { color: var(--accent); }   /* лежит на тёмном градиенте .about-stats */
.about-stat-lbl {
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-top: 6px;
}

/* CTA row */
.about-cta {
  text-align: center;
}

/* Step card internals */
.about-step-icon {
  margin-bottom: 12px;
}
.about-step-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--text-strong);
  margin: 0 0 6px;
}
.about-step-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 640px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 28px 22px;
  }
}
