/* ===== Why Us ===== */
.ms-why {
  padding: clamp(50px, 8vw, 90px) 16px;
}

.ms-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.ms-why__item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ms-why__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}

.ms-why__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, #ff6a3d);
}

.ms-why__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.ms-why__text {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.5;
}
