#pp-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(90vw, 1200px);
}

/* Toggle Container */
.billing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.billing-toggle span {
  font-size: 14px;
  color: #777;
}

.billing-toggle span.active {
  color: #000;
  font-weight: 600;
}

/* Switch */
.switch {
  position: relative;
  width: 48px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  cursor: pointer;
  transition: 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background: #4f46e5;
}

input:checked + .slider::before {
  transform: translateX(24px);
}

/* Pricing Cards (test layout) */
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.price {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
}

.period {
  font-size: 13px;
  color: #666;
}