.billing-toggle {
  width: max-content;
  margin: 0 auto 30px;
  padding: 9px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(215, 179, 65, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--light);
  font-weight: 800;
}

.billing-switch {
  width: 48px;
  height: 26px;
  padding: 3px;
  border: 0;
  border-radius: 999px;
  background: var(--light);
  cursor: pointer;
}

.billing-switch span {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--black);
  transition: transform 0.25s ease;
}

.billing-switch[aria-pressed="true"] span {
  transform: translateX(22px);
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(215, 179, 65, 0.11), transparent 38%),
    var(--black-soft);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: rgba(215, 179, 65, 0.64);
  transform: translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card__head h3 {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 28px;
}

.pricing-card__head p {
  min-height: 54px;
  color: var(--gray);
  line-height: 1.6;
}

.price {
  margin: 22px 0;
}

.price strong {
  color: var(--light);
  font-size: 46px;
  line-height: 1;
}

.price span {
  color: var(--gray);
  font-weight: 800;
}

.pricing-card ul {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  color: #d8d8d8;
  line-height: 1.5;
  padding-left: 26px;
  background: radial-gradient(circle, var(--gold-light) 0 4px, transparent 5px) left 0.55em / 14px 14px no-repeat;
}

.pricing-action {
  margin-top: auto;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #111;
  font-weight: 900;
}

.compare-panel {
  margin-top: 44px;
  padding: 30px;
  border: 1px solid rgba(215, 179, 65, 0.28);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
}

.compare-panel h3 {
  margin-bottom: 22px;
  color: var(--gold-light);
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  --bs-table-bg: var(--black-soft);
  --bs-table-color: #e8e8e8;
  --bs-table-border-color: rgba(255, 255, 255, 0.08);
  --bs-table-striped-bg: transparent;
  --bs-table-hover-bg: rgba(215, 179, 65, 0.08);
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: var(--black-soft);
}

.compare-table th,
.compare-table td {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: #e8e8e8;
  text-align: center;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

.compare-table th {
  color: var(--gold-light);
  font-size: 16px;
}

.compare-table td:not(:first-child)::before {
  content: "✓ ";
  color: #48d15b;
  font-weight: 900;
}

.compare-table td.no::before {
  content: "× ";
  color: #ff5a5a;
}

/* style */
.plan-monthly{
  margin-top: auto;
}
.frame-pricing .section-heading {
    margin-bottom: 0;
}

.frame-pricing  p{
    color: var(--gray);
    font-size: 17px;
    line-height: 1.7;
  }

@media (max-width: 1050px) {
  .pricing-card {
    min-height: auto;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .billing-toggle {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }
}
