/* ============================================================
   GENIUS FIX — About Page Styles
   File: css/about.css
   ============================================================ */

/* ── ABOUT STORY ── */
.about-story-section {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  background: var(--navy);
  border-radius: 20px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.about-visual::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(200, 146, 42, 0.12);
  pointer-events: none;
}
.about-big-text {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  margin-bottom: 2rem;
  user-select: none;
}
.about-mission-card {
  background: rgba(200, 146, 42, 0.1);
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1rem;
}
.about-mission-card strong {
  color: var(--gold-light);
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.about-mission-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.65;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.3rem;
  font-size: 1rem;
  line-height: 1.8;
}
.about-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── VALUES ── */
.values-section {
  background: var(--off-white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 31, 60, 0.1);
}
.value-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── STATS ── */
.about-stats-section {
  background: var(--navy);
  padding: 60px 6%;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.about-stat {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 146, 42, 0.2);
  border-radius: 14px;
  transition: border-color 0.2s;
}
.about-stat:hover {
  border-color: rgba(200, 146, 42, 0.5);
}
.about-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}
.about-stat-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
}
