/* ============ WHY US ============ */
.why {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.why-icon {
  font-size: 1.6rem;
  width: 48px; height: 48px;
  background: var(--gradient-soft);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.why-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}