diff --git a/site/public/order/fcc-compliance/index.html b/site/public/order/fcc-compliance/index.html
index 5f7e0bc..9bad977 100644
--- a/site/public/order/fcc-compliance/index.html
+++ b/site/public/order/fcc-compliance/index.html
@@ -338,6 +338,21 @@ function renderServices() {
summary.innerHTML=rows;
listEl.appendChild(summary);
+ // FCC penalty warning
+ var penaltyBox=document.createElement("div");
+ penaltyBox.className="mt-3 p-4 bg-red-50 border border-red-200 rounded-lg";
+ penaltyBox.innerHTML=
+ '
⚠ FCC Enforcement Penalties for Non-Compliance
'+
+ ''+
+ '- RMD violations: Up to $500,000 per violation for false or missing information (47 U.S.C. § 503(b)). Carriers removed from the RMD are blocked from originating calls on the US phone network.
'+
+ '- CPNI violations: Up to $239,071 per violation, $2,390,706 per continuing violation (47 CFR § 1.80). Annual certification is mandatory — failure to file triggers enforcement proceedings.
'+
+ '- 499-A non-filing: USAC Red Light status blocks all FCC applications, license renewals, and equipment authorizations until resolved. Late fees and interest accrue on unpaid USF contributions.
'+
+ '- CALEA non-compliance: Court-enforced penalties up to $10,000 per day of non-compliance (47 U.S.C. § 229).
'+
+ '- Registration forfeiture: The FCC may revoke or deactivate carrier registrations for persistent non-compliance, effectively shutting down operations.
'+
+ '
'+
+ 'Resolving these filings now costs a fraction of a single enforcement action.
';
+ listEl.appendChild(penaltyBox);
+
// Re-attach preserved form if it exists
if(existingForm && selectedSlugs.length > 0) {
listEl.appendChild(existingForm);