diff --git a/site/src/pages/order/ca-mcp-carb.astro b/site/src/pages/order/ca-mcp-carb.astro
new file mode 100644
index 0000000..2784203
--- /dev/null
+++ b/site/src/pages/order/ca-mcp-carb.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "ca-mcp-carb";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "California Motor Carrier Permit (MCP) plus CARB Clean Truck Check compliance for carriers operating in California.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/ct-highway-use-fee.astro b/site/src/pages/order/ct-highway-use-fee.astro
new file mode 100644
index 0000000..05f09da
--- /dev/null
+++ b/site/src/pages/order/ct-highway-use-fee.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "ct-highway-use-fee";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "Connecticut Highway Use Fee registration for heavy multi-unit carriers operating in Connecticut.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/hazmat-phmsa.astro b/site/src/pages/order/hazmat-phmsa.astro
new file mode 100644
index 0000000..084cfbc
--- /dev/null
+++ b/site/src/pages/order/hazmat-phmsa.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "hazmat-phmsa";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "PHMSA hazardous-materials registration for carriers transporting placardable quantities of hazmat.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/ifta-application.astro b/site/src/pages/order/ifta-application.astro
new file mode 100644
index 0000000..b835985
--- /dev/null
+++ b/site/src/pages/order/ifta-application.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "ifta-application";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "International Fuel Tax Agreement (IFTA) license and decals — one fuel-tax credential covering all your operating jurisdictions.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/ifta-quarterly.astro b/site/src/pages/order/ifta-quarterly.astro
new file mode 100644
index 0000000..c606a24
--- /dev/null
+++ b/site/src/pages/order/ifta-quarterly.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "ifta-quarterly";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "Quarterly IFTA fuel-tax return preparation and filing through your base state.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/intrastate-authority.astro b/site/src/pages/order/intrastate-authority.astro
new file mode 100644
index 0000000..adb9df7
--- /dev/null
+++ b/site/src/pages/order/intrastate-authority.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "intrastate-authority";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "Intrastate operating authority application for carriers hauling for-hire within their home state.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/irp-registration.astro b/site/src/pages/order/irp-registration.astro
new file mode 100644
index 0000000..cefe8f6
--- /dev/null
+++ b/site/src/pages/order/irp-registration.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "irp-registration";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "Apportioned (IRP) registration for interstate carriers — we file with your base state and obtain your apportioned plates and cab cards.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/ky-kyu-registration.astro b/site/src/pages/order/ky-kyu-registration.astro
new file mode 100644
index 0000000..3c2e642
--- /dev/null
+++ b/site/src/pages/order/ky-kyu-registration.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "ky-kyu-registration";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "Kentucky KYU weight-distance tax license for carriers operating in Kentucky.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/nm-weight-distance.astro b/site/src/pages/order/nm-weight-distance.astro
new file mode 100644
index 0000000..880eb1e
--- /dev/null
+++ b/site/src/pages/order/nm-weight-distance.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "nm-weight-distance";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "New Mexico Weight-Distance Tax permit and account setup.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/ny-hut-registration.astro b/site/src/pages/order/ny-hut-registration.astro
new file mode 100644
index 0000000..d05e00a
--- /dev/null
+++ b/site/src/pages/order/ny-hut-registration.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "ny-hut-registration";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "New York Highway Use Tax (HUT) registration and decal for carriers operating in New York.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/or-weight-mile-tax.astro b/site/src/pages/order/or-weight-mile-tax.astro
new file mode 100644
index 0000000..4f0234e
--- /dev/null
+++ b/site/src/pages/order/or-weight-mile-tax.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "or-weight-mile-tax";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "Oregon Weight-Mile Tax enrollment and account setup for carriers operating in Oregon.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/osow-permit.astro b/site/src/pages/order/osow-permit.astro
new file mode 100644
index 0000000..df72a2c
--- /dev/null
+++ b/site/src/pages/order/osow-permit.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "osow-permit";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "Oversize / Overweight (OS/OW) trip permit acquisition for non-standard loads.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/state-dot-registration.astro b/site/src/pages/order/state-dot-registration.astro
new file mode 100644
index 0000000..b75a89d
--- /dev/null
+++ b/site/src/pages/order/state-dot-registration.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "state-dot-registration";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "Intrastate (state) DOT number registration for carriers operating within a single state.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/state-emissions.astro b/site/src/pages/order/state-emissions.astro
new file mode 100644
index 0000000..f955d32
--- /dev/null
+++ b/site/src/pages/order/state-emissions.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "state-emissions";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "State clean-truck / emissions compliance (NY, CO, MD, NJ, MA Advanced Clean Trucks programs) — fleet reporting and certification.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/state-trucking-bundle.astro b/site/src/pages/order/state-trucking-bundle.astro
new file mode 100644
index 0000000..bca5fa7
--- /dev/null
+++ b/site/src/pages/order/state-trucking-bundle.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "state-trucking-bundle";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "State Compliance Bundle — IRP, IFTA, state weight-distance taxes, and state permits handled together for one price.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+
diff --git a/site/src/pages/order/usdot-reactivation.astro b/site/src/pages/order/usdot-reactivation.astro
new file mode 100644
index 0000000..af0d45d
--- /dev/null
+++ b/site/src/pages/order/usdot-reactivation.astro
@@ -0,0 +1,29 @@
+---
+import Base from "../../layouts/Base.astro";
+import Wizard from "../../components/intake/Wizard.astro";
+import { INTAKE_MANIFEST, SERVICE_META } from "../../lib/intake_manifest";
+
+const slug = "usdot-reactivation";
+const steps = INTAKE_MANIFEST[slug];
+const meta = SERVICE_META[slug];
+const title = meta ? `Order ${meta.name}` : "Order";
+const description = "Reactivate an inactive or revoked USDOT number and bring your registration back into good standing.";
+---
+
+
+
+
+ {meta?.name}
+ {description}
+
+
+
+
+
+
+