/* ============================================
   about.css — About Section Styles
   ============================================ */

.about-section {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---- Text Side ---- */
.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--fg2);
  margin-bottom: 18px;
  font-weight: 300;
}

.about-text strong {
  color: var(--fg);
  font-weight: 600;
}

.about-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ---- Stats Side ---- */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  color: var(--accent);
  line-height: 1;
}

.stat-desc {
  font-size: 13px;
  color: var(--fg2);
  margin-top: 5px;
  font-weight: 400;
  line-height: 1.4;
}

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