/* ═══════════════════════════════════════
   style_about.css — About page only
   ═══════════════════════════════════════ */

/* ── ABOUT HERO ── */
.about-hero h1 { font-size: 2.6rem; max-width: 720px; }

/* ── ORIGIN SECTION ── */
.about-origin {
  padding: 5rem 3rem;
  background: var(--white);
  max-width: 800px;
  margin: 0 auto;
}
.about-origin h2 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.about-origin p {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ── TIMELINE ── */
.timeline-section {
  padding: 5rem 3rem;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.timeline-inner { max-width: 700px; margin: 0 auto; }
.timeline-section h2 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}

/* ── TRUST STATS ── */
.trust-section {
  padding: 5rem 3rem;
  background: var(--white);
  border-top: 1px solid var(--border);
  text-align: center;
}
.trust-section h2 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.trust-section .trust-intro {
  color: var(--text-body);
  max-width: 580px;
  margin: 0 auto 3rem;
}
.trust-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-stat {
  min-width: 180px;
}
.trust-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}
.trust-stat-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-origin, .timeline-section, .trust-section { padding: 4rem 2rem; }
}
@media (max-width: 767px) {
  .about-hero h1 { font-size: 1.85rem; }
  .about-origin, .timeline-section, .trust-section { padding: 3rem 1.25rem; }
  .trust-stats { flex-direction: column; align-items: center; }
}
