/* ==========================================================================
   about.css — styles for the About page only
   (photo + "why us" numbered reasons, bottom call-to-action)
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

/* ----- Stat tiles (replaces a photo — quick trust numbers) ----- */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 6px;
  padding: 26px 20px;
  text-align: center;
}
.stat-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: var(--navy);
  line-height: 1.1;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}

.about-grid h2 {
  font-size: 30px;
  margin-bottom: 28px;
}

/* ----- Numbered reasons list ----- */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.reason { display: flex; gap: 16px; }
.reason-num {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.reason h3 { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.reason p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

/* ----- Bottom CTA ----- */
.about-cta { text-align: center; }
.about-cta .section-intro { margin-left: auto; margin-right: auto; }
.about-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}
