/* Restore the neon pulse animation for the pricing plates */
@keyframes pricing-neon-pulse {
  0% {
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.5), inset 0 0 5px rgba(0, 210, 255, 0.2);
    border-color: #00d2ff;
  }
  50% {
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.7), inset 0 0 10px rgba(138, 43, 226, 0.3);
    border-color: #8a2be2;
  }
  100% {
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.5), inset 0 0 5px rgba(0, 210, 255, 0.2);
    border-color: #00d2ff;
  }
}

.pricing-container {
  padding: 1rem 1rem 3rem 1rem;
  max-width: 1600px;
  margin: 0 auto;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}

/* Information Box */
.info-box {
  text-align: center;
  color: #a0a0c0;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: rgba(88, 86, 214, 0.1);
  border: 1px solid #5856d6;
  border-radius: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.info-title {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5em;
  font-size: 1.5rem;
}

.info-text {
  color: #dcdce0;
  line-height: 1.6;
  font-size: 1.2rem;
}

/* Grid Layout */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.plan-card-glow {
  background-color: #1e1e2f;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  flex: 0 1 320px;
  min-width: 280px;
  max-width: 380px;
  position: relative;
  animation: pricing-neon-pulse 4s infinite alternate ease-in-out;
  transition: transform 0.3s ease;
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
}

.plan-card-glow:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Elements */
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00d2ff 0%, #8a2be2 100%);
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-name { font-size: 1.8rem; font-weight: 700; color: #ffffff; text-transform: uppercase; }
.plan-description { color: #a0a0c0; min-height: 3em; line-height: 1.5; font-size: 1rem; }
.price { font-size: 3.5rem; font-weight: 700; color: #ffffff; }
.interval { font-size: 1.1rem; color: #a0a0c0; }

.features { list-style: none; padding: 0; margin: 1.5rem 0; flex-grow: 1; text-align: left; }
.feature-item { display: flex; align-items: center; margin-bottom: 1rem; color: #dcdce0; font-size: 0.8em;}
.feature-check { color: #57a9ff; font-weight: bold; margin-right: 0.75em; font-size: 1.2em; filter: drop-shadow(0 0 5px #57a9ff); }

/* Plan CTA Button */
.plan-cta {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  background: linear-gradient(90deg, #00d2ff 0%, #8a2be2 100%);
  color: #0a0a0a !important;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none !important;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  margin-top: 1rem;
}

.plan-cta:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.enterprise-notice {
  text-align: center;
  margin-top: 4rem;
  font-size: 1.4rem;
  color: var(--color-gray, #a0a0c0);
}

.neon-link { color: #00d2ff; text-decoration: underline; }