/* =========================================================
   MISSION / VISION
   ========================================================= */
.mv-section { padding: 30px 0 70px; }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.mv-card::after {
  content: "";
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.06;
  top: -50px; right: -50px;
}
.mv-mission { color: var(--coral); }
.mv-vision { color: var(--sky); }
.mv-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: var(--cream-2);
  margin-bottom: 16px;
}
.mv-card h3 { color: var(--plum); }
