.pricing-see-all {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* ==========================================================
   PRICING — 3 plans, monthly/yearly toggle
   ========================================================== */
.pricing {
  position: relative;
  padding: 40px 44px 130px;
  overflow: hidden;
}

/* soft ambient gradient glow at the edges, like the reference */
.pricing::before,
.pricing::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.pricing::before { background: #c9b8ff; bottom: -180px; left: -140px; }
.pricing::after  { background: #ffd9ec; bottom: -180px; right: -140px; }

.pricing-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.pricing .section-head { margin-bottom: 40px; }

.pricing .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-sub {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 560px;
  margin: 20px auto 0;
  text-align: center;
}

/* ---- billing toggle ---- */
.billing-toggle {
  display: flex;
  justify-content: center;
  margin: 36px 0 56px;
}

.toggle-shell {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px;
  box-shadow: 0 2px 8px rgba(16,16,20,0.05);
}

.toggle-btn {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  background: transparent;
  color: var(--text-dark);
  border-radius: 100px;
  padding: 11px 26px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.toggle-btn.active {
  background: var(--purple);
  color: #fff;
}

.toggle-btn .save-chip {
  font-size: 12px;
  font-weight: 700;
  margin-left: 6px;
  opacity: 0.85;
}

/* ---- plan cards ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px 30px 38px;
  box-shadow: 0 6px 24px -12px rgba(16,16,20,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -28px rgba(16,16,20,0.2);
}

.plan-card.featured {
  border-color: rgba(112,71,235,0.35);
  box-shadow: 0 18px 48px -20px rgba(112,71,235,0.3);
  position: relative;
}

.plan-card.featured .popular-chip {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  padding: 6px 16px;
  white-space: nowrap;
}

.plan-name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--purple);
  margin-bottom: 14px;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.plan-price {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan-period {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-desc {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--text-body);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px;
  min-height: 72px;
}

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--gradient-cta);
  color: #fff;
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 100px;
  padding: 16px 24px;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 30px;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.plan-cta:hover { opacity: 0.92; transform: translateY(-1px); }

.plan-cta-secondary {
  display: block;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  margin-top: -18px;
}

.plan-cta-secondary:hover { color: var(--purple); }

.plan-cta .icon-circle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* list-style / margin / padding forced with !important — this is the
   second time a host-side stylesheet (page builder, plugin, or the WP
   default block-library CSS) has out-specified the sitewide `* { padding:0 }`
   reset on a bare <ul>/<li>. Pin it here so it can't happen again. */
.plan-features {
  list-style: none !important;
  margin: 0 0 26px !important;
  padding: 0 !important;
}

.plan-features li {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  column-gap: 11px;
  align-items: start;
  font-size: 15.5px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 15px !important;
  padding: 0 !important;
}

.plan-features li:last-child { margin-bottom: 0 !important; }

.plan-features .tick {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--pill-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px 0 0 !important;
  padding: 0 !important;
}


/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .price-simple-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .pricing { padding: 24px 20px 90px; }
  .plan-price { font-size: 40px; }
  .toggle-btn { font-size: 15px; padding: 10px 20px; }
}
