/* AlignUI pricing blocks â€” scoped under .cp-align */
.cp-align {
  --font-main: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  --text-main: #0f172a;
  --text-sub: #64748b;
  --border-light: #e2e8f0;
  --radius-pill: 999px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --mint-bg: #f0fdfa;
  --mint-border: #5eead4;
  --dark-btn: #0f172a;
  --dark-btn-hover: #1e293b;
  --blue-primary: #2563eb;
  --blue-hover: #1d4ed8;
  --blue-pastel: #DBEAFE;
  --mint-pastel: #CCFBF1;
  padding: 4rem 0;
  font-family: var(--font-main);
  color: var(--text-main);
}
.cp-align .align-container { width: min(1120px, 92%); margin: 0 auto; }
.cp-align .align-header { margin-bottom: 2.5rem; }
.cp-align .align-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.25; }
.cp-align .align-subtitle { font-size: 0.95rem; color: var(--text-sub); margin-top: 8px; line-height: 1.5; }
.cp-align .text-center { text-align: center; }
.cp-align .text-left { text-align: left; }
.cp-align .cp-market-hint { font-size: 0.85rem; color: var(--text-sub); margin-top: 0.5rem; }
.cp-align .pill-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; padding: 6px 12px;
  border-radius: var(--radius-pill); margin-bottom: 12px;
}
.cp-align .mint-pill { background: #ccfbf1; color: #0f766e; }
.cp-align .gray-pill { background: #f1f5f9; color: #475569; }
.cp-align .diamond-badge { background: #eff6ff; color: #1d4ed8; }

.cp-align .cp-align-btn {
  font-family: var(--font-main); font-weight: 600; font-size: 0.88rem;
  padding: 10px 20px; border-radius: var(--radius-pill); cursor: pointer;
  transition: all 0.2s ease; border: none; display: inline-flex;
  align-items: center; justify-content: center; gap: 8px; text-decoration: none;
}
.cp-align .cp-align-btn-outline { background: #fff; border: 1px solid var(--border-light); color: var(--text-main); }
.cp-align .cp-align-btn-outline:hover { background: #f8fafc; }
.cp-align .cp-align-btn-dark { background: var(--dark-btn); color: #fff; }
.cp-align .cp-align-btn-dark:hover { background: var(--dark-btn-hover); }
.cp-align .cp-align-btn-blue { background: var(--blue-primary); color: #fff; }
.cp-align .cp-align-btn-blue:hover { background: var(--blue-hover); }
.cp-align .cp-align-btn-full { width: 100%; }

/* P-01 */
.pricing-01-container { max-width: 900px; margin: 0 auto; }
.p1-cards-list { display: flex; flex-direction: column; gap: 16px; }
.p1-card {
  display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 20px;
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 20px 28px; transition: 0.25s ease;
}
.p1-card:hover { box-shadow: var(--shadow-md); }
.p1-card.active { background: var(--mint-bg); border: 1.5px solid var(--mint-border); }
.p1-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.p1-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 2px; }
.p1-content p { font-size: 0.85rem; color: var(--text-sub); margin: 0; }
.p1-price { font-size: 1.5rem; font-weight: 800; padding: 0 10px; white-space: nowrap; }
.p1-price--box { white-space: normal; min-width: 120px; }
.p1-price--box .cp-price-box { margin: 0; text-align: right; }
.p1-price--box .cp-price-big { font-size: 1.35rem; }
.p1-price--box .cp-price-period { font-size: 0.75rem; margin-top: 0.15rem; }
.p1-price--box .cp-discount-badge { font-size: 0.65rem; padding: 0.15rem 0.4rem; margin-bottom: 0.25rem; }
.p1-price--box .cp-price-strike { font-size: 0.78rem; display: block; margin: 0 0 0.1rem; }

/* P-02 */
.pricing-02-container { max-width: 1080px; margin: 0 auto; }
.p2-top-bar { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 20px; }
.toggle-container { display: inline-flex; align-items: center; background: #f1f5f9; padding: 4px; border-radius: var(--radius-pill); }
.toggle-option {
  background: transparent; border: none; padding: 8px 18px; font-size: 0.85rem; font-weight: 600;
  color: var(--text-sub); border-radius: var(--radius-pill); cursor: pointer;
}
.toggle-option.active, .toggle-option.is-active { background: #fff; color: var(--text-main); box-shadow: 0 2px 6px rgba(0,0,0,.08); }
.discount-badge { background: #ffedd5; color: #c2410c; font-size: 0.72rem; font-weight: 700; padding: 3px 8px; border-radius: var(--radius-pill); margin-left: 6px; }
.p2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.p2-card { background: #f8fafc; border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 12px; display: flex; flex-direction: column; }
.p2-card-top { padding: 20px 16px 24px; }
.p2-icon-box {
  width: 38px; height: 38px; background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.p2-card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.p2-card-desc { font-size: 0.85rem; color: var(--text-sub); margin-bottom: 20px; min-height: 40px; }
.p2-price-wrap { display: flex; align-items: baseline; gap: 4px; }
.p2-amount { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; }
.p2-period { font-size: 0.85rem; color: var(--text-sub); }
.p2-card-bottom {
  background: #fff; border-radius: var(--radius-lg); padding: 24px 20px 20px; flex-grow: 1;
  display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(226,232,240,.7);
}
.p2-feature-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.p2-feature-list li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-sub); }
.check-icon { color: var(--text-main); flex-shrink: 0; }

/* P-03 */
.pricing-03-container { max-width: 1080px; margin: 0 auto; }
.p3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.p3-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-xl);
  padding: 32px 24px 24px; display: flex; flex-direction: column; position: relative;
}
.p3-card.p3-featured-gradient {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #6366f1, #3b82f6, #10b981, #f59e0b, #ef4444) border-box;
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.12);
}
.p3-badge-recommend {
  position: absolute; top: 24px; right: 24px; background: #0f172a; color: #fff;
  font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: var(--radius-pill);
}
.p3-card-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; }
.p3-card-desc { font-size: 0.85rem; color: var(--text-sub); margin-bottom: 24px; min-height: 48px; }
.p3-price-wrap { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.p3-amount { font-size: 2.1rem; font-weight: 800; }
.p3-period { font-size: 0.85rem; color: var(--text-sub); }
.p3-divider { height: 1px; background: var(--border-light); margin-bottom: 24px; }
.p3-features { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 14px; flex-grow: 1; }
.p3-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-sub); }
.check-simple { flex-shrink: 0; margin-top: 2px; color: #0f9d58; }
.cross-simple { flex-shrink: 0; margin-top: 2px; color: #dc2626; }

.cp-plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.cp-plan-feature__icon { flex-shrink: 0; margin-top: 2px; }
.cp-plan-feature.is-unavailable .cp-plan-feature__text {
  color: #94a3b8;
  text-decoration: line-through;
}
.cp-plan-feature__text[title],
.cp-compare .has-tip {
  cursor: help;
  border-bottom: 1px dotted currentColor;
}

.cp-yes { color: #0f9d58; font-weight: 800; }
.cp-no { color: #94a3b8; font-weight: 700; }
.cp-no--excluded { color: #dc2626; }
.p3-action { margin-top: auto; }

/* P-06 */
.pricing-06-container { max-width: 960px; margin: 0 auto; }
.p6-big-card {
  display: grid; grid-template-columns: 1fr auto 1.2fr; gap: 28px; align-items: center;
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-xl);
  padding: 40px 36px; box-shadow: var(--shadow-md);
}
.p6-plan-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.p6-plan-desc { font-size: 0.9rem; color: var(--text-sub); margin-bottom: 20px; }
.p6-price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 20px; }
.p6-amount { font-size: 2.6rem; font-weight: 800; }
.p6-period { color: var(--text-sub); }
.p6-divider-v { width: 1px; align-self: stretch; background: var(--border-light); }
.p6-green-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.p6-green-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-sub); }
.green-check-icon {
  width: 22px; height: 22px; border-radius: 999px; background: #dcfce7; color: #16a34a;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* P-08 */
.pricing-08-container { max-width: 1080px; margin: 0 auto; }
.p8-top-bar { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.p8-header-right { max-width: 320px; }
.p8-subtext-right { font-size: 0.9rem; color: var(--text-sub); margin-bottom: 12px; }
.p8-toggle-wrap { display: flex; gap: 8px; flex-wrap: wrap; }
.p8-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.p8-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-xl);
  padding: 28px 22px; display: flex; flex-direction: column;
}
.p8-card.p8-featured { border-color: #93c5fd; box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12); }
.p8-card-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.p8-card-desc { font-size: 0.85rem; color: var(--text-sub); margin-bottom: 18px; min-height: 48px; }
.p8-price-wrap { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.p8-amount { font-size: 2.1rem; font-weight: 800; }
.p8-period { font-size: 0.85rem; color: var(--text-sub); }
.p8-card-bottom { display: flex; flex-direction: column; flex-grow: 1; }
.p8-blue-features { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.p8-blue-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-sub); }
.blue-check-icon {
  width: 20px; height: 20px; border-radius: 999px; background: #dbeafe; color: #2563eb;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.cp-plans .cp-market-hint { font-size: 0.85rem; color: var(--ink-muted, #5a6478); margin-top: 0.35rem; }

/* AlignUI price-box fit */
.cp-align .cp-price-box { margin: 0.25rem 0 1rem; }
.cp-align .p2-card-top .cp-price-box,
.cp-align .p7-price-wrap .cp-price-box,
.cp-align .p8-card-top .cp-price-box,
.cp-align .p4-price-wrap .cp-price-box,
.cp-align .p5-card-header .cp-price-box,
.cp-align .p6-col-left .cp-price-box,
.cp-align .p3-card .cp-price-box { margin-bottom: 0.75rem; }

/* P-04 Dual pastel */
.pricing-04-container { max-width: 1080px; margin: 0 auto; }
.p4-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.p4-card {
  border-radius: var(--radius-xl); padding: 36px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  transition: all 0.3s ease;
}
.p4-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.p4-blue { background-color: var(--blue-pastel); }
.p4-mint { background-color: var(--mint-pastel); }
.p4-col-left { display: flex; flex-direction: column; justify-content: space-between; }
.badge-plan-dark {
  display: inline-block; background: #0f172a; color: #fff;
  font-size: 0.75rem; font-weight: 700; padding: 4px 12px;
  border-radius: var(--radius-pill); align-self: flex-start; margin-bottom: 16px;
}
.p4-desc { font-size: 0.88rem; color: var(--text-sub); margin-bottom: 24px; line-height: 1.4; }
.p4-price-wrap { margin-bottom: 24px; }
.btn-collaborate {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--text-main); border: none;
  padding: 8px 8px 8px 18px; border-radius: var(--radius-pill);
  font-family: var(--font-main); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: all 0.2s ease; align-self: flex-start; text-decoration: none;
}
.btn-collaborate:hover { background: #f8fafc; box-shadow: 0 4px 12px rgba(0,0,0,.08); color: var(--text-main); }
.arrow-circle {
  width: 28px; height: 28px; background: #0f172a; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.p4-features-title { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.p4-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.p4-list li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-sub); }

/* P-05 Hero left + cards right */
.pricing-05-container { max-width: 1080px; margin: 0 auto; }
.p5-layout {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: center;
}
.p5-left-col { padding-right: 20px; }
.p5-heading { font-size: 2.2rem; margin-top: 8px; margin-bottom: 12px; }
.p5-subtext { font-size: 0.95rem; color: var(--text-sub); margin-bottom: 32px; line-height: 1.5; }
.p5-trust-list {
  list-style: none; margin: 0 0 40px; padding: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.p5-trust-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 600; color: var(--text-main);
}
.p5-trust-list svg { color: var(--text-main); flex-shrink: 0; }
.p5-trust-footer { border-top: 1px solid var(--border-light); padding-top: 24px; }
.trust-label {
  font-size: 0.78rem; color: var(--text-sub); font-weight: 600;
  display: block; margin-bottom: 12px;
}
.logos-row { display: flex; gap: 20px; align-items: center; }
.logo-text { font-size: 0.85rem; font-weight: 700; color: var(--text-main); opacity: 0.7; }
.p5-right-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.p5-card {
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-xl);
  padding: 28px 20px 20px; display: flex; flex-direction: column;
  position: relative; overflow: hidden; transition: all 0.3s ease;
}
.p5-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.p5-card.p5-featured-blue {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #ec4899 100%) border-box;
  box-shadow:
    0 8px 28px rgba(37, 99, 235, 0.16),
    0 0 0 1px rgba(37, 99, 235, 0.06);
}
.p5-card.p5-featured-blue:has(.p5-banner-top) {
  padding-top: 0;
}
.p5-card.p5-featured-blue:hover {
  box-shadow:
    0 12px 36px rgba(37, 99, 235, 0.22),
    0 0 0 1px rgba(124, 58, 237, 0.1);
}
.p5-banner-top {
  background: var(--blue-primary); color: #fff; font-size: 0.78rem; font-weight: 700;
  text-align: center; padding: 6px; letter-spacing: 0.02em; margin-bottom: 24px;
}
.p5-card-header { margin-bottom: 16px; }
.p5-card.p5-featured-blue .p5-card-header { padding: 0 4px; }
.p5-title-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.p5-card h3 { font-size: 1.2rem; font-weight: 700; margin: 0; }
.badge-discount {
  background: #eff6ff; color: #2563eb; font-size: 0.72rem; font-weight: 700;
  padding: 2px 8px; border-radius: var(--radius-pill); white-space: nowrap;
}
.p5-spots { font-size: 0.78rem; color: var(--text-sub); display: block; margin-top: 4px; }
.p5-includes-title { font-size: 0.85rem; font-weight: 700; color: var(--text-main); margin-bottom: 14px; }
.p5-features {
  list-style: none; margin: 0 0 24px; padding: 0;
  display: flex; flex-direction: column; gap: 12px; flex-grow: 1;
}
.p5-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.82rem; color: var(--text-sub); line-height: 1.35;
}
.btn-arrow span { transition: transform 0.2s ease; }
.btn-arrow:hover span { transform: translateX(3px); }

/* Social proof (shared) */
.social-proof-row {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px;
}
.avatar-stack { display: flex; align-items: center; }
.avatar-stack img {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff;
  margin-left: -8px; object-fit: cover;
}
.avatar-stack img:first-child { margin-left: 0; }
.proof-text { font-size: 0.85rem; color: var(--text-sub); font-weight: 500; }

/* P-07 Finance dual split */
.pricing-07-container { max-width: 1060px; margin: 0 auto; }
.p7-toggle-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 40px; position: relative;
}
.p7-toggle-container {
  background: #f1f5f9; padding: 4px; border-radius: var(--radius-pill); display: inline-flex;
}
.p7-toggle-option {
  background: transparent; border: none; padding: 8px 20px;
  font-family: var(--font-main); font-size: 0.85rem; font-weight: 600;
  color: var(--text-sub); border-radius: var(--radius-pill); cursor: pointer;
  transition: all 0.2s ease;
}
.p7-toggle-option.active, .p7-toggle-option.is-active {
  background: #fff; color: var(--text-main); box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.p7-save-note {
  font-size: 0.8rem; font-weight: 600; color: #2563eb;
  display: inline-flex; align-items: center; gap: 4px;
}
.curved-arrow { transform: rotate(-10deg); }
.p7-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 32px; }
.p7-split-card {
  background: #f8fafc; border: 1px solid var(--border-light); border-radius: var(--radius-xl);
  padding: 12px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 12px;
  transition: all 0.25s ease;
}
.p7-split-card:hover { box-shadow: var(--shadow-md); }
.p7-card-left {
  padding: 24px 16px 20px; display: flex; flex-direction: column; justify-content: space-between;
}
.p7-title-badge-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 8px;
}
.p7-card-left h3 { font-size: 1.2rem; font-weight: 800; margin: 0; }
.dotted-purple-badge {
  border: 1px dashed #a855f7; background: #f3e8ff; color: #7e22ce;
  font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.p7-sub { font-size: 0.82rem; color: var(--text-sub); margin-bottom: 24px; line-height: 1.4; }
.p7-price-wrap { margin-bottom: 24px; }
.p7-card-right {
  background: #fff; border-radius: var(--radius-lg); padding: 24px 18px;
  border: 1px solid var(--border-light);
}
.p7-list li { font-size: 0.82rem; }

@media (max-width: 992px) {
  .p4-grid, .p7-grid { grid-template-columns: 1fr; }
  .p5-layout { grid-template-columns: 1fr; }
  .p5-right-col { grid-template-columns: 1fr; }
  .p5-left-col { padding-right: 0; }
}

@media (max-width: 900px) {
  .p2-grid, .p3-grid, .p8-grid { grid-template-columns: 1fr; }
  .p1-card { grid-template-columns: auto 1fr; }
  .p1-price, .p1-action { grid-column: 2; }
  .p1-price--box { text-align: left; }
  .p1-price--box .cp-price-box { text-align: left; }
  .p6-big-card { grid-template-columns: 1fr; }
  .p6-divider-v { width: 100%; height: 1px; }
}

@media (max-width: 768px) {
  .p4-card, .p7-split-card { grid-template-columns: 1fr; }
}

/* Discount price box (badge + strike + big price) */
.cp-price-box { margin: 0.35rem 0 1rem; }
.cp-price-box__promo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  margin-bottom: 0.35rem;
  min-height: 1.4rem;
}
.cp-price-box__promo-row[hidden] { display: none !important; }
.cp-discount-badge {
  display: inline-block;
  background: #e53935;
  color: #fff !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  vertical-align: middle;
  line-height: 1.2;
}
.cp-price-strike {
  display: inline-block;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #9aa6b8 !important;
  text-decoration: line-through;
  vertical-align: middle;
}
.cp-price-row { display: flex; align-items: baseline; gap: 0.4rem; line-height: 1; }
.cp-price-big {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.cp-price-code { font-size: 0.85rem; font-weight: 700; color: #8b95a8; }
.cp-price-period { margin-top: 0.35rem; font-size: 0.9rem; font-weight: 600; color: #8b95a8; }
.plan li.is-muted { opacity: 0.45; text-decoration: line-through; }
.cp-plans { padding: 4rem 0; }

/* Switch: Save X% when billed yearly */
.cp-billing-switch-wrap {
  display: flex; align-items: center; justify-content: center; gap: 0.85rem;
  margin: 0 auto 2rem; width: fit-content; max-width: 100%;
}
.cp-billing-switch {
  position: relative; width: 48px; height: 28px; padding: 0; border: 0;
  border-radius: 999px; background: #c5d0e0; cursor: pointer; flex-shrink: 0;
  transition: background 0.2s ease;
}
.cp-billing-switch.is-on { background: #2563eb; }
.cp-billing-switch__knob {
  position: absolute; top: 3px; left: 3px; width: 22px; height: 22px;
  border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(15,23,42,.2);
  transition: transform 0.2s ease;
}
.cp-billing-switch.is-on .cp-billing-switch__knob { transform: translateX(20px); }
.cp-billing-switch__label { font-size: 0.95rem; font-weight: 700; color: #0f172a; line-height: 1.3; }
.cp-align .cp-billing-switch-wrap { margin-bottom: 2rem; }
.cp-align--02 .p2-top-bar .cp-billing-switch-wrap,
.cp-align--08 .p8-header-right .cp-billing-switch-wrap { margin: 0; justify-content: flex-end; }