.why-section {
  background: linear-gradient(135deg, #4E1D3D, #6A294F 55%, #4A1C39);
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

.why-card > div {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  background: rgba(229, 148, 64, .13);
  color: var(--accent);
  border: 1px solid rgba(229, 148, 64, .35);
}

.why-card svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
}

.why-card p {
  margin-top: 10px;
  color: #eadce4;
  font-size: .87rem;
}

@media(max-width:1050px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:580px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
