Reprice services: à la carte ~$2,000 vs FCC Carrier Reg bundle $1,299

Individual services repriced so buying separately costs ~$2K, making
the $1,299 FCC Carrier Registration a clear 35% savings:

- CORES/FRN: $99 → $149
- Form 499 Initial: $299 → $349
- D.C. Registered Agent: $99 → $149/yr
- RMD: $219 → $249 (+ $100 FCC fee)
- CPNI: $149 → $199
- CALEA SSI: $299 → $799 (includes consulting work)
- BDC Broadband: $199 → $249
- BDC Voice: $149 → $199
- BDC Both: $299 → $349

Retired New Carrier Bundle ($1,799) — redirected to FCC Carrier
Registration ($1,299) which includes more services and the wizard.

Updated prices in: API catalog, batch order page, compliance checker CTA.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
justin 2026-05-04 06:23:19 -05:00
parent 16b5c2da0b
commit 7d783bdb39
4 changed files with 29 additions and 29 deletions

View file

@ -779,7 +779,7 @@ import Base from "../../layouts/Base.astro";
switch (check.id) {
case "rmd_filing":
services.push({ id: "rmd_filing", name: "RMD Registration", desc: "", price: 219 });
services.push({ id: "rmd_filing", name: "RMD Registration", desc: "", price: 249 });
break;
case "stir_shaken":
services.push({ id: "stir_shaken", name: "STIR/SHAKEN Implementation", desc: "", price: 499 });
@ -797,14 +797,14 @@ import Base from "../../layouts/Base.astro";
services.push({ id: "form_499a_zero", name: "Form 499-A (Zero Revenue)", desc: "no telecom revenue", price: 179, altOf: "form_499a" });
}
if (s === "red") {
services.push({ id: "dc_agent", name: "D.C. Registered Agent", desc: "", price: 99, priceLabel: "$99/yr" });
services.push({ id: "dc_agent", name: "D.C. Registered Agent", desc: "", price: 149, priceLabel: "$149/yr" });
}
break;
case "form_499q":
services.push({ id: "form_499q", name: "Form 499-Q Filing", desc: "included with 499-A", price: 0 });
break;
case "cpni_certification":
services.push({ id: "cpni_certification", name: "CPNI Certification", desc: "", price: 149 });
services.push({ id: "cpni_certification", name: "CPNI Certification", desc: "", price: 199 });
break;
case "cores_registration":
if (s === "red") {
@ -813,13 +813,13 @@ import Base from "../../layouts/Base.astro";
break;
case "bdc_filing":
if (check._bdcVariant === "both") {
services.push({ id: "bdc_filing", name: "BDC Broadband + Voice Filing", desc: "both filings", price: 299 });
services.push({ id: "bdc_filing", name: "BDC Broadband + Voice Filing", desc: "both filings", price: 349 });
} else if (check._bdcVariant === "broadband") {
services.push({ id: "bdc_broadband", name: "BDC Broadband Filing", desc: "", price: 199 });
services.push({ id: "bdc_broadband", name: "BDC Broadband Filing", desc: "", price: 249 });
} else if (check._bdcVariant === "voice") {
services.push({ id: "bdc_voice", name: "BDC Voice Filing", desc: "formerly Form 477", price: 149 });
services.push({ id: "bdc_voice", name: "BDC Voice Filing", desc: "formerly Form 477", price: 199 });
} else if (s !== "green") {
services.push({ id: "bdc_filing", name: "BDC Filing", desc: "", price: 299 });
services.push({ id: "bdc_filing", name: "BDC Filing", desc: "", price: 349 });
}
break;
}