
/*------------- WHY US SECTION -----------------------------*/
.why-us-premium {
  background: var(--gradient-soft);
  padding: 100px 20px;
  text-align: center;
}

.why-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 70px;
  color: var(--color-primary);
}

.why-title span {
  display: inline-block;
  color: var(--color-highlight);
  background: none;
  -webkit-text-fill-color: var(--color-highlight);
}

.why-grid-premium {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */

.why-card-premium {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: all 0.35s ease;
  transform-style: preserve-3d;
}

.why-card-premium:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(30, 58, 95, 0.12),
              0 30px 80px rgba(22, 45, 73, 0.2);
  scale: 1.05;
}

/* ICON */

.why-icon-premium {
  width: 70px;
  height: 70px;
  margin: auto auto 20px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon-premium svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.why-card-premium h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card-premium p {
  font-size: 14px;
  color: var(--color-text-muted);
}
.why-icon-premium {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(30, 58, 95, 0.24);
}

.why-icon-premium svg {
  width: 30px;
  height: 30px;
}

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

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

