/* ===== ABOUT PAGE ===== */
.about { background: var(--white); }

/* ===== STATS ===== */
.stats { background: var(--cream-deep); padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.stat-item {
  text-align: center;
  padding: 48px 20px;
  border-right: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s;
}
.stat-item:hover { background: var(--cream); }
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-size: 48px; font-weight: 700;
  color: var(--blue); letter-spacing: -2px;
  margin-bottom: 8px;
}
.stat-item span {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--text-muted);
}

/* ===== MISSION & VISION ===== */
.mission-vision { background: var(--cream); padding: 90px 0; }

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.mv-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 40px;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mv-box:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.mv-box i {
  font-size: 28px; color: var(--gold);
  margin-bottom: 20px; display: block;
}
.mv-box h3 { font-size: 20px; margin-bottom: 14px; }
.mv-box p  { font-size: 15px; color: var(--text-mid); line-height: 1.75; }

/* ===== CORE VALUES ===== */
.values { background: var(--white); padding: 100px 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 54px;
  border: 1px solid var(--border);
}
.value-box {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.value-box:hover { background: var(--cream); }
.value-box i {
  font-size: 24px; color: var(--blue);
  margin-bottom: 16px; display: block;
  transition: color 0.2s;
}
.value-box:hover i { color: var(--gold); }
.value-box h3 { font-size: 17px; margin-bottom: 10px; }
.value-box p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }

/* ===== WHY CHOOSE US ===== */
.why-us { padding: 100px 0; background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 54px;
}
.why-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.why-box:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.why-box i {
  font-size: 26px; color: var(--blue);
  margin-bottom: 14px; display: block;
  transition: color 0.2s;
}
.why-box:hover i { color: var(--navy); }
.why-box p { font-size: 14px; color: var(--text-mid); font-weight: 500; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: repeat(2, 1fr); }
  .mv-grid     { grid-template-columns: 1fr; }
  .stat-item strong { font-size: 36px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid   { grid-template-columns: 1fr; }
}
