/* Initial animation states */
.price-card,
.content-block,
.comparison-row,
.faq-item {
  opacity: 0;
  transform: translateY(30px);
}

.price-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(12, 10, 40, 0.12);
}

.comparison-table th,
.comparison-table td {
  font-size: 0.95rem;
}

.billing-toggle {
  width: 64px;
  height: 34px;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.billing-toggle.active {
  background: #1800ac;
  border-color: #1800ac;
}

.toggle-pill {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease;
}

.billing-toggle.active .toggle-pill {
  transform: translateX(30px);
}
