/* Why We Are Different section */

.why-different {
  position: relative;
}

.why-different__bg-glow {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 9999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.45;
}

.why-different__bg-glow--left {
  top: -4rem;
  left: -6rem;
  background: rgba(46, 49, 146, 0.12);
}

.why-different__bg-glow--right {
  bottom: -6rem;
  right: -4rem;
  background: rgba(0, 174, 239, 0.15);
}

.why-different__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #2E3192;
}

.why-different__subtitle {
  max-width: 42rem;
  margin: 0 auto;
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.75;
}

.why-different__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-different__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.why-different__card {
  background: #fff;
  border-radius: 1.15rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(46, 49, 146, 0.08);
  box-shadow: 0 8px 32px rgba(46, 49, 146, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  animation: whyCardFadeIn 0.7s ease both;
  animation-delay: var(--card-delay, 0s);
}

.why-different__card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 174, 239, 0.45);
  box-shadow: 0 16px 40px rgba(46, 49, 146, 0.1);
}

.why-different__icon {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.35) 0%, rgba(46, 49, 146, 0.12) 100%);
  color: #1F2478;
  margin-bottom: 1.15rem;
}

.why-different__icon-glow {
  position: absolute;
  inset: -6px;
  border-radius: 1.2rem;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.25) 0%, transparent 70%);
  z-index: -1;
  animation: identityGlowPulse 4s ease-in-out infinite;
}

.why-different__card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #1f2937;
  margin-bottom: 0.65rem;
}

.why-different__card-text {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.7;
}

@keyframes whyCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-different__card {
    animation: none;
  }
}
