@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
.pricing-section-5 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0e27;
  min-height: 100vh;
  padding: 80px 20px;
  position: relative;
  overflow-x: hidden;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 768px) {
  .pricing-section-5 {
    padding: 30px 10px;
  }
}
.pricing-section-5 .section-header {
  text-align: center;
  margin-bottom: 80px;
}
.pricing-section-5 .section-header h1 {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.pricing-section-5 .section-header p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.pricing-section-5 .pricing-card {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 30px 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pricing-section-5 .pricing-card {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.pricing-section-5 .pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(135deg, transparent, rgba(168, 85, 247, 0.5), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.pricing-section-5 .pricing-card:hover::before {
  opacity: 1;
}
.pricing-section-5 .pricing-card:hover {
  transform: translateY(-20px) scale(1.02);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 30px 60px -12px rgba(168, 85, 247, 0.3), 0 50px 100px -20px rgba(59, 130, 246, 0.2);
}
.pricing-section-5 .pricing-card.featured {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.4);
  transform: scale(1.05);
}
.pricing-section-5 .pricing-card.featured::after {
  content: attr(data-badge);
  position: absolute;
  top: 35px;
  right: -60px;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  color: white;
  padding: 8px 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  transform: rotate(45deg);
  box-shadow: 0 5px 15px rgba(168, 85, 247, 0.5);
}
.pricing-section-5 .plan-badge {
  display: inline-block;
  padding: 10px 25px;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  color: #a78bfa;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.pricing-section-5 .pricing-card.featured .plan-badge {
  background: rgba(168, 85, 247, 0.3);
  border-color: rgba(168, 85, 247, 0.5);
  color: #fff;
}
.pricing-section-5 .plan-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: -1px;
}
.pricing-section-5 .plan-description {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .pricing-section-5 .plan-description {
    margin-bottom: 20px;
  }
}
.pricing-section-5 .price-wrapper {
  margin-bottom: 20px;
  position: relative;
}
.pricing-section-5 .price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 10px;
}
.pricing-section-5 .price .currency {
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}
.pricing-section-5 .price .amount {
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -3px;
}
.pricing-section-5 .price .period {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.pricing-section-5 .price-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}
.pricing-section-5 .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}
.pricing-section-5 .feature-item {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  display: flex;
  align-items: baseline;
  gap: 15px;
  position: relative;
}
@media (max-width: 768px) {
  .pricing-section-5 .feature-item {
    padding: 10px 0;
  }
}
.pricing-section-5 .feature-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.pricing-section-5 .feature-item:last-child::after {
  display: none;
}
.pricing-section-5 .feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-section-5 .feature-icon i {
  color: #a78bfa;
  font-size: 0.7rem;
}
.pricing-section-5 .pricing-card.featured .feature-icon {
  background: rgba(168, 85, 247, 0.3);
}
.pricing-section-5 .pricing-card.featured .feature-icon i {
  color: #fff;
}
.pricing-section-5 .cta-button {
  width: 100%;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pricing-section-5 .cta-button {
    padding: 10px;
    font-size: 1rem;
  }
}
.pricing-section-5 .cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pricing-section-5 .cta-button span {
  position: relative;
  z-index: 1;
}
.pricing-section-5 .cta-button:hover {
  border-color: rgba(168, 85, 247, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}
.pricing-section-5 .cta-button:hover::before {
  opacity: 1;
}
.pricing-section-5 .pricing-card.featured .cta-button {
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  border-color: transparent;
}
.pricing-section-5 .pricing-card.featured .cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
}
.pricing-section-5 .bonus-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .pricing-section-5 .pricing-card.featured {
    transform: scale(1);
    margin-bottom: 30px;
  }
  .pricing-section-5 .section-header h1 {
    font-size: 3rem;
  }
  .pricing-section-5 .price .amount {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .pricing-section-5 .section-header {
    margin-bottom: 50px;
  }
  .pricing-section-5 .section-header h1 {
    font-size: 2rem;
  }
  .pricing-section-5 .plan-name {
    font-size: 1.8rem;
  }
  .pricing-section-5 .price .amount {
    font-size: 3rem;
  }
}/*# sourceMappingURL=pricingDesign5.css.map */