/* ============================================================
   05-value-props.css — 4 reasons to choose Nathan
   Module: <section id="value-props">
   ============================================================ */

#value-props { background: var(--c-white); }
#value-props .grid { gap: var(--s-5); }

.vp-card {
  text-align: left;
  padding: var(--s-5) var(--s-4);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
/* Hover lifts the card with a warm yellow accent — matches the
   yellow-on-blue brand pop used in the hero eyebrow.
   Guard to hover:hover so the effect only fires on pointer devices
   (a mouse). On touch screens, the card just gives a press-feel instead. */
@media (hover: hover) {
  .vp-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-yellow);
  }
}
@media (hover: none) {
  .vp-card:active { transform: scale(0.98); border-color: var(--c-yellow); }
}
.vp-icon {
  width: 56px; height: 56px;
  background: var(--c-blue);
  color: var(--c-yellow);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--s-3);
}
.vp-card h3 { margin-bottom: var(--s-2); }
.vp-card p { color: var(--c-muted); font-size: 0.97rem; margin: 0; }
