.pricing-container {
  padding: 80px 0;
}

:root {
  --primary-color: #e96f00;
  --dark-bg: #2a2929;
  --text-lights_waves: #e96f00;
  --text-light: #000000;
  --card-bg: #000000;
  --text-secondary: rgba(255, 255, 255, 0.7);
}
.pricing-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 10px 10px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
}
.pricing-card:hover {
  background: var(
    --card-bg-hover
  ); /* Define this in your :root or replace with a direct color like #f5f5f5 */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.pricing-card.popular {
  background: var(--card-bg);
  color: white;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ffc107;
  color: #000;
  padding: 8px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.plan-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color) !important;
  margin-bottom: 20px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.price-period {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.btn-pricing {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  color: var(--primary-color);
  background-color: var(--dark-bg);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.btn-starter {
  background: #2d8659;
  color: white;
}

.btn-starter:hover {
  background: #245a47;
  color: white;
}

.btn-popular {
  background: white;

  color: var(--primary-color);
  background-color: var(--dark-bg);
}

.btn-popular:hover {
  background: #f8f9fa;
  color: #245a47;
}

.btn-premium {
  background: #2d8659;
  color: white;
}

.btn-premium:hover {
  background: #245a47;
  color: white;
}

.features-list {
  list-style: none;
  padding: 0;
  color: var(--primary-color);
  margin: 0;
}

.features-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 25px;
  color: var(--primary-color);
}

.pricing-card.popular .features-list li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2d8659;
  font-weight: bold;
  font-size: 18px;
}

.pricing-card.popular .features-list li:before {
  color: #ffc107;
}

@media (max-width: 768px) {
  .pricing-card.popular {
    transform: none;
    margin-top: 20px;
  }

  .pricing-card.popular:hover {
    transform: translateY(-5px);
  }

  .price {
    font-size: 36px;
  }

  .pricing-container {
    padding: 30px 0;
  }
}

.free-trial {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.popular-badge {
  background: #ffc107;
  color: #000;
  font-weight: bold;
  padding: 5px 5px;
  position: absolute;
  top: -10px;
  right: 15px;
  border-radius: 20px;
}
