/* Why Choose Us Styles */
.whySection {
  padding: 4rem 0;
  background: var(--color-bg-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.backgroundTech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.whyGlowSphere {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(40px);
}

.whyContainer {
  position: relative;
  z-index: 1;
}

.whyHeader {
  text-align: center;
  margin-bottom: 4rem;
}

.whyTitle {
  font-size: 2.75rem;
  font-family: var(--font-heading);
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.whyHighlight {
  color: var(--color-primary);
  font-style: italic;
  font-weight: 800;
}

.whySubtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.whyGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .whyGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .whyGrid { grid-template-columns: repeat(3, 1fr); }
}

.featureCard {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.4s ease, background 0.4s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.featureCard.visible {
  opacity: 1;
  transform: translateY(0);
}

.featureCard:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.featureIconBox {
  width: 60px;
  height: 60px;
  background: rgba(10, 132, 255, 0.1);
  border: 1px solid rgba(10, 132, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.featureIcon {
  color: var(--color-primary);
  z-index: 2;
  transition: color 0.3s ease;
}

.featureCard:hover .featureIcon {
  color: white;
}

.featureIconGlow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  border-radius: 14px;
  filter: blur(15px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.featureCard:hover .featureIconGlow {
  opacity: 0.6;
}

.featureCardTitle {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  color: white;
  margin-bottom: 1rem;
  font-weight: 700;
}

.featureCardDesc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-size: 0.95rem;
}

.featureHoverBorder {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
}

.featureCard:hover .featureHoverBorder {
  transform: scaleX(1);
}
