/* Mission / Vision / Goals — homepage cards */
.np-mvg {
  --np-mvg-green: #14532d;
  --np-mvg-soft: #f0fdf4;
  --np-mvg-border: #e8eef4;
  --np-mvg-text: #0f172a;
  --np-mvg-muted: #475569;
  position: relative;
  padding: clamp(3rem, 6vw, 4.75rem) 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(22, 163, 74, 0.06), transparent 42%),
    radial-gradient(circle at 92% 80%, rgba(20, 83, 45, 0.05), transparent 40%),
    #f8fafc;
}

.np-mvg__intro {
  max-width: 40rem;
  margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
}

.np-mvg__title {
  margin: 0 0 0.55rem;
  color: var(--np-mvg-text);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 800;
}

.np-mvg__lead {
  margin: 0;
  color: var(--np-mvg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.np-mvg__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
}

.np-mvg__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
  padding: clamp(1.35rem, 2.2vw, 1.75rem);
  border: 1px solid var(--np-mvg-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.np-mvg__card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #166534, #4ade80);
  opacity: 0.9;
}

.np-mvg__card:hover {
  transform: translateY(-4px);
  border-color: #bbf7d0;
  box-shadow: 0 16px 34px rgba(15, 58, 40, 0.1);
}

.np-mvg__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--np-mvg-soft);
  border: 1px solid #bbf7d0;
  color: var(--np-mvg-green);
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.np-mvg__icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.np-mvg__card-title {
  margin: 0;
  color: var(--np-mvg-text);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
}

.np-mvg__card-body {
  margin: 0;
  color: var(--np-mvg-muted);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.85;
  text-wrap: pretty;
}

@media (max-width: 991.98px) {
  .np-mvg__grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }

  .np-mvg__card {
    padding: 1.35rem 1.25rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .np-mvg__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .np-mvg__card {
    transition: none;
  }

  .np-mvg__card:hover {
    transform: none;
  }
}
