#sliderText {
  color: transparent;
}

.plans-card-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plans-card-hover:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
}

.popular-card {
  position: relative;
  overflow: hidden;
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: linear-gradient(45deg, #f97316, #fb923c);
  color: white;
  padding: 8px 40px;
  transform: rotate(45deg);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
}

.plans-scroll-reveal {
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.plans-scroll-reveal:not(.active) {
  opacity: 0;
}

.plans-scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.price-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  margin: 0 auto 1.5rem;
}

.plans-card-hover:hover .price-icon {
  transform: scale(1.15);
}

.pricing-toggle-label {
  position: relative;
  display: inline-block;
  width: 240px;
  height: 50px;
  background-color: #e5e7eb;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 0 auto;
  overflow: hidden;
}

.pricing-toggle-slider {
  position: absolute;
  width: 120px;
  height: 46px;
  background: linear-gradient(45deg, #0ea5e9, #3b82f6);
  border-radius: 50px;
  top: 2px;
  left: 2px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.toggle-option {
  position: absolute;
  width: 120px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: color 0.3s;
}

.toggle-monthly {
  left: 0;
  color: white;
}

.toggle-yearly {
  right: 0;
  color: #4b5563;
}

.pricing-toggle-label.active-yearly .pricing-toggle-slider {
  transform: translateX(116px);
}

.pricing-toggle-label.active-yearly .toggle-monthly {
  color: #4b5563;
}

.pricing-toggle-label.active-yearly .toggle-yearly {
  color: white;
}

.feature-list {
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li {
  position: relative;
  margin-bottom: 0.75rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #0ea5e9;
}

.price-change {
  animation: priceChange 0.5s ease;
}

@keyframes priceChange {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.price-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #3b82f6, #0ea5e9);
  z-index: 2;
}

.popular-card::before {
  height: 6px;
  background: linear-gradient(90deg, #f97316, #fb923c, #f97316);
}
