.card-glow {
  border: 1px solid #1E2235;
  transition: all 0.3s;
}

.card-glow:hover {
  border-color: rgba(0, 245, 160, 0.3);
  box-shadow: 0 0 40px rgba(0, 245, 160, 0.08);
}

.card-popular {
  border: 1px solid #00F5A0;
  box-shadow: 0 0 40px rgba(0, 245, 160, 0.15);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer.open {
  max-height: 500px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-glow {
    width: 300px;
    height: 300px;
  }
}
