/* Enhanced Premium Enterprise Card Styling */

.priricng-card.enterprise {
  background: linear-gradient(135deg, #0a0d1f 0%, #1a2940 50%, #0f1829 100%);
  border: 2px solid #4a90e2;
  position: relative;
  overflow: hidden;
  transform: scale(1.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.priricng-card.enterprise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #5ba3ff 50%, transparent 100%);
}

.priricng-card.enterprise:hover {
  transform: scale(1.05);
  border-color: #5ba3ff;
}

.priricng-card.enterprise .pricing-heading {
  background: transparent;
  border-bottom: 1px solid rgba(74, 144, 226, 0.3);
  padding: 2rem;
  position: relative;
}

.priricng-card.enterprise .pricing-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4a90e2, transparent);
}

.priricng-card.enterprise .pricing-type.enterprise {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #a0c9ff 50%, #4a90e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.priricng-card.enterprise .pricing-text.enterprise {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.priricng-card.enterprise .pricing-list-wrapper {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(74, 144, 226, 0.15);
}

.priricng-card.enterprise .pricing-list-text.enterprise {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 500;
}

.priricng-card.enterprise .prircng-list-icon svg path {
  stroke: #4a90e2;
}

.primary-button.enterprise {
  background: transparent;
  color: #5ba3ff;
  font-weight: 700;
  border: 2px solid #4a90e2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-button.enterprise:hover {
  background: #4a90e2;
  color: #ffffff;
  border-color: #5ba3ff;
  transform: translateY(-2px);
}

.primary-button.enterprise .button-text {
  color: inherit;
  font-weight: 800;
}

/* Premium badge for Enterprise */
.priricng-card.enterprise::after {
  content: 'PREMIUM';
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #3a7bc8, #5ba3ff);
  color: #ffffff;
  padding: 5px 40px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  transform: rotate(45deg);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .priricng-card.enterprise {
    transform: scale(1);
  }

  .priricng-card.enterprise:hover {
    transform: scale(1.02);
  }
}
