.pricing-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  height: 100%;
}
.pricing-card .card-header {
  background-color: var(--background3);
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-size: 2rem;
  border: none;
}
.pricing-card.pro .card-header {
  background-color: var(--background2);
}
.pricing-card.enterprise .card-header {
  background-color: var(--background1);
}
.pricing-card .card-body {
  padding: 2rem;
}
.price-amount {
  text-align: center;
  margin-bottom: 1rem;
}
.price-amount .amount {
  font-size: 2.5rem;
  font-weight: bold;
}
.price-amount .period {
  color: #666;
}
.yearly-price {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  display: none;
}
.yearly-price.show {
  display: block;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.feature-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.feature-list li::before {
  content: "✓";
  color: #22c55e;
  margin-right: 0.5rem;
  font-weight: bold;
}
.feature-list .plan-header {
  font-weight: bold;
  margin: 1rem 0;
}
.feature-list .plan-header::before {
  display: none;
}
.pricing-cta {
  text-align: center;
}
.btn-try {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 4px;
}
.btn-try-free,
.btn-try-enterprise {
  color: var(--accent1);
  background: transparent;
  border: 1px solid var(--accent1);
}
.btn-try-now {
  background: var(--background1);
  color: white;
  border: none;
}
.btn-try-now:hover {
  background: var(--background2);
}
.pricing-footer {
  text-align: center;
  color: #666;
  margin-top: 3rem;
  font-style: italic;
}
.billing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.billing-option {
  font-weight: 500;
  color: #666;
}
.billing-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.billing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.billing-switch input:checked + .slider {
  background-color: var(--background3);
}
.billing-switch input:checked + .slider:before {
  transform: translateX(26px);
}
.savings-badge {
  background-color: #22c55e;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
