.why-section {
  direction: rtl;
  padding: 40px 5%;
  background: #ffffff;
  text-align: center;
}

.why-title {
  font-size: clamp(1.375rem, 1.1731rem + 0.9231vw, 1.75rem);
  margin-bottom: 14px;
  color: #1f2d3d;
}

.why-subtitle {
  /* max-width: 700px; */
  margin: 0 auto 60px;
  font-size: 16px;
  color: #6b7280;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.why-card {
  background: #fff;
  padding: 36px 26px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 14px;

  border: 2px solid #2563eb;
  color: #2563eb;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 32px;
}

.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1f2d3d;
}

.why-card p {
  font-size: 14px;
  color: #6b7280;
}
