/* PRICING PAGE */

.pricing-section {
  padding: 140px 8% 100px;
  text-align: center;
}

.pricing-title {
  font-size: 42px;
  margin-bottom: 10px;
}

.pricing-subtitle {
  color: #aaa;
  margin-bottom: 60px;
}

/* GRID */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.pricing-card {
  background: #111;
  padding: 35px 25px;
  border-radius: 20px;
  transition: 0.3s;
  position: relative;
  border: 1px solid transparent;
}

/* HOVER */
.pricing-card:hover {
  transform: translateY(-10px);
  border: 1px solid #7c3aed;
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.3);
}

/* POPULAR CARD */
.pricing-card.popular {
  border: 1px solid #7c3aed;
  transform: scale(1.05);
}

/* TAG */
.tag {
  position: absolute;
  top: -12px;
  right: 15px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 12px;
}

/* TEXT */
.pricing-card h3 {
  font-size: 20px;
}

.pricing-card h2 {
  margin: 15px 0;
  font-size: 32px;
  color: #a855f7;
}

.pricing-card p {
  color: #bbb;
  margin-bottom: 20px;
}

/* LIST */
.pricing-card ul {
  list-style: none;
  margin: 20px 0;
}

.pricing-card ul li {
  margin: 10px 0;
  color: #ccc;
  font-size: 14px;
}

/* BUTTON */
.pricing-card .btn {
  margin-top: 10px;
}


/* ENTRY ANIMATION */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-up.delay-1 {
  animation-delay: 0.2s;
}

.fade-up.delay-2 {
  animation-delay: 0.4s;
}

.fade-up.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-cta {
  text-align: center;
  margin-top: 50px;
}

.pricing-bottom-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px 20px;
}

.pricing-bottom-cta h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.pricing-bottom-cta p {
  color: #aaa;
  margin-bottom: 25px;
}