/* ─────────────────────────────────────────────────────────────
   About page — /about
   ───────────────────────────────────────────────────────────── */

.about-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 20px 60px;
}

.about-hero {
  text-align: center;
  padding: 24px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.about-hero h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.about-hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted2);
  max-width: 680px;
  margin: 0 auto;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.about-stat {
  text-align: center;
  padding: 20px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.about-stat__num {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
  line-height: 1;
}
.about-stat__label {
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.about-section {
  margin-bottom: 36px;
}
.about-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.about-section p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted2);
  margin: 0 0 14px;
}
.about-section p:last-child { margin-bottom: 0; }
.about-section strong { color: var(--text); font-weight: 600; }

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted2);
}
.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green, #34d399);
  font-weight: 700;
}

.about-contact {
  padding-top: 20px;
}
.about-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.about-contact-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.15s;
}
.about-contact-card:hover {
  background: var(--surface2);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.about-contact-card strong {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.about-contact-card span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 768px) {
  .about-page { padding: 20px 16px 40px; }
  .about-hero { padding: 16px 0 24px; margin-bottom: 28px; }
  .about-hero h1 { font-size: 26px; margin-bottom: 12px; }
  .about-hero__lead { font-size: 15.5px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 32px; }
  .about-stat { padding: 16px 10px; }
  .about-stat__num { font-size: 24px; }
  .about-section h2 { font-size: 19px; }
  .about-section p { font-size: 14.5px; }
}
