Lower trucking compliance pricing across product + marketing surfaces
Permanent price cuts: - MCS-150 Biennial Update: $69 -> $39 - UCR Annual Registration: $69 -> $39 (+ gov fee unchanged) - MC Operating Authority: $349 -> $199 (+ $300 FMCSA fee unchanged) - State compliance programs (IRP, IFTA, weight-distance/HUT/HUF/KYU, intrastate, OSOW, state DOT, state emissions): -> $109 - California MCP + CARB: $349 -> $229 Updated source of truth (compliance-orders.ts, intake_manifest SERVICE_META), stale dot-lookup recommendation prices, all static trucking landing/marketing pages (services/trucking/*, order/dot-compliance, pricing), and the email campaign scripts (setup_trucking_campaigns, create_state_campaigns). FE/BE price cross-check: all 16 changed slugs consistent. tsc clean, fulfillment consistency 24/24, site build OK.
This commit is contained in:
parent
9466ce24f1
commit
4010103531
18 changed files with 105 additions and 105 deletions
|
|
@ -219,7 +219,7 @@ const COMPLIANCE_SERVICES: Record<
|
|||
// ── DOT / FMCSA Motor Carrier Services ──────────────────────────────
|
||||
"mcs150-update": {
|
||||
name: "MCS-150 Biennial Update",
|
||||
price_cents: 6900,
|
||||
price_cents: 3900,
|
||||
erpnext_item: "MCS150-UPDATE",
|
||||
discountable: true,
|
||||
},
|
||||
|
|
@ -231,7 +231,7 @@ const COMPLIANCE_SERVICES: Record<
|
|||
},
|
||||
"ucr-registration": {
|
||||
name: "UCR Annual Registration",
|
||||
price_cents: 6900,
|
||||
price_cents: 3900,
|
||||
gov_fee_cents: 4600, // minimum tier ($46 for 0-2 power units)
|
||||
gov_fee_label: "UCR registration fee (tier-based, minimum shown)",
|
||||
erpnext_item: "UCR-REGISTRATION",
|
||||
|
|
@ -245,7 +245,7 @@ const COMPLIANCE_SERVICES: Record<
|
|||
},
|
||||
"mc-authority": {
|
||||
name: "MC Operating Authority Application",
|
||||
price_cents: 34900, // + $300 FMCSA gov fee
|
||||
price_cents: 19900, // $199 + $300 FMCSA gov fee
|
||||
gov_fee_cents: 30000, // $300 FMCSA application fee
|
||||
gov_fee_label: "FMCSA operating authority application fee",
|
||||
erpnext_item: "MC-AUTHORITY",
|
||||
|
|
@ -297,73 +297,73 @@ const COMPLIANCE_SERVICES: Record<
|
|||
// ── State-Level Trucking Compliance ──────────────────────────────────
|
||||
"irp-registration": {
|
||||
name: "IRP Registration Assistance",
|
||||
price_cents: 19900,
|
||||
price_cents: 10900, // + state fees (apportioned registration billed at cost)
|
||||
erpnext_item: "IRP-REGISTRATION",
|
||||
discountable: true,
|
||||
},
|
||||
"ifta-application": {
|
||||
name: "IFTA Application + Decals",
|
||||
price_cents: 14900,
|
||||
price_cents: 10900, // + state fees
|
||||
erpnext_item: "IFTA-APPLICATION",
|
||||
discountable: true,
|
||||
},
|
||||
"ifta-quarterly": {
|
||||
name: "IFTA Quarterly Filing",
|
||||
price_cents: 9900,
|
||||
price_cents: 10900,
|
||||
erpnext_item: "IFTA-QUARTERLY",
|
||||
discountable: true,
|
||||
},
|
||||
"or-weight-mile-tax": {
|
||||
name: "Oregon Weight-Mile Tax Setup",
|
||||
price_cents: 19900,
|
||||
price_cents: 10900, // + state fees
|
||||
erpnext_item: "OR-WEIGHT-MILE-TAX",
|
||||
discountable: true,
|
||||
},
|
||||
"ny-hut-registration": {
|
||||
name: "NY Highway Use Tax Registration",
|
||||
price_cents: 19900,
|
||||
price_cents: 10900, // + state fees
|
||||
erpnext_item: "NY-HUT-REGISTRATION",
|
||||
discountable: true,
|
||||
},
|
||||
"ky-kyu-registration": {
|
||||
name: "KY Weight-Distance Tax Setup",
|
||||
price_cents: 19900,
|
||||
price_cents: 10900, // + state fees
|
||||
erpnext_item: "KY-KYU-REGISTRATION",
|
||||
discountable: true,
|
||||
},
|
||||
"nm-weight-distance": {
|
||||
name: "NM Weight-Distance Tax Setup",
|
||||
price_cents: 19900,
|
||||
price_cents: 10900, // + state fees
|
||||
erpnext_item: "NM-WEIGHT-DISTANCE",
|
||||
discountable: true,
|
||||
},
|
||||
"ct-highway-use-fee": {
|
||||
name: "CT Highway Use Fee Setup",
|
||||
price_cents: 19900,
|
||||
price_cents: 10900, // + state fees
|
||||
erpnext_item: "CT-HIGHWAY-USE-FEE",
|
||||
discountable: true,
|
||||
},
|
||||
"ca-mcp-carb": {
|
||||
name: "California MCP + CARB Compliance",
|
||||
price_cents: 34900,
|
||||
price_cents: 22900, // $229 + state fees (CA is more complex: MCP + CARB)
|
||||
erpnext_item: "CA-MCP-CARB",
|
||||
discountable: true,
|
||||
},
|
||||
"state-dot-registration": {
|
||||
name: "State DOT Registration",
|
||||
price_cents: 14900,
|
||||
price_cents: 10900, // + state fees
|
||||
erpnext_item: "STATE-DOT-REGISTRATION",
|
||||
discountable: true,
|
||||
},
|
||||
"intrastate-authority": {
|
||||
name: "Intrastate Operating Authority",
|
||||
price_cents: 24900,
|
||||
price_cents: 10900, // + state fees
|
||||
erpnext_item: "INTRASTATE-AUTHORITY",
|
||||
discountable: true,
|
||||
},
|
||||
"osow-permit": {
|
||||
name: "Oversize/Overweight Permit",
|
||||
price_cents: 9900,
|
||||
price_cents: 10900, // + state permit fees
|
||||
erpnext_item: "OSOW-PERMIT",
|
||||
discountable: true,
|
||||
},
|
||||
|
|
@ -383,7 +383,7 @@ const COMPLIANCE_SERVICES: Record<
|
|||
},
|
||||
"state-emissions": {
|
||||
name: "State Clean-Truck / Emissions Compliance",
|
||||
price_cents: 19900, // $199 — NY/CO/MD/NJ/MA clean-truck / ACT advisory + registration assist
|
||||
price_cents: 10900, // $109 + state fees — NY/CO/MD/NJ/MA clean-truck / ACT advisory + registration assist
|
||||
erpnext_item: "STATE-EMISSIONS",
|
||||
discountable: true,
|
||||
},
|
||||
|
|
|
|||
|
|
@ -868,17 +868,17 @@ router.get("/api/v1/dot/state-requirements", async (req, res) => {
|
|||
reqs.push(st.weight_distance_tax_name || "Weight-Distance Tax");
|
||||
const slugMap: Record<string, string> = { OR: "or-weight-mile-tax", NY: "ny-hut-registration", KY: "ky-kyu-registration", NM: "nm-weight-distance", CT: "ct-highway-use-fee" };
|
||||
if (slugMap[code]) {
|
||||
recommended.push({ slug: slugMap[code], name: st.weight_distance_tax_name, price_cents: 19900, reason: `${code} ${st.weight_distance_tax_name} required` });
|
||||
recommended.push({ slug: slugMap[code], name: st.weight_distance_tax_name, price_cents: 10900, reason: `${code} ${st.weight_distance_tax_name} required` });
|
||||
}
|
||||
}
|
||||
if (st.state_carrier_permit) {
|
||||
reqs.push(st.state_carrier_permit_name || "State Carrier Permit");
|
||||
if (code === "CA") recommended.push({ slug: "ca-mcp-carb", name: "California MCP + CARB Compliance", price_cents: 34900, reason: "CA Motor Carrier Permit + CARB required" });
|
||||
if (code === "CA") recommended.push({ slug: "ca-mcp-carb", name: "California MCP + CARB Compliance", price_cents: 22900, reason: "CA Motor Carrier Permit + CARB required" });
|
||||
}
|
||||
if (st.emissions_program) reqs.push(st.emissions_program_name || "Emissions");
|
||||
if (st.intrastate_authority_required) {
|
||||
reqs.push("Intrastate Authority");
|
||||
recommended.push({ slug: "intrastate-authority", name: "Intrastate Operating Authority", price_cents: 24900, reason: `${code} requires state operating authority` });
|
||||
recommended.push({ slug: "intrastate-authority", name: "Intrastate Operating Authority", price_cents: 10900, reason: `${code} requires state operating authority` });
|
||||
}
|
||||
if (st.state_dot_required) reqs.push(st.state_dot_number_name || "State DOT Number");
|
||||
|
||||
|
|
@ -887,10 +887,10 @@ router.get("/api/v1/dot/state-requirements", async (req, res) => {
|
|||
|
||||
// Add IRP/IFTA recommendations if any state requires them
|
||||
if (needsIrp && allStates.length > 1) {
|
||||
recommended.unshift({ slug: "irp-registration", name: "IRP Registration Assistance", price_cents: 19900, reason: "IRP required for interstate operation" });
|
||||
recommended.unshift({ slug: "irp-registration", name: "IRP Registration Assistance", price_cents: 10900, reason: "IRP required for interstate operation" });
|
||||
}
|
||||
if (needsIfta && allStates.length > 1) {
|
||||
recommended.splice(1, 0, { slug: "ifta-application", name: "IFTA Application + Decals", price_cents: 14900, reason: "IFTA required for interstate fuel tax" });
|
||||
recommended.splice(1, 0, { slug: "ifta-application", name: "IFTA Application + Decals", price_cents: 10900, reason: "IFTA required for interstate fuel tax" });
|
||||
}
|
||||
|
||||
// Deduplicate recommendations by slug
|
||||
|
|
|
|||
|
|
@ -44,9 +44,9 @@ CAMPAIGNS = {
|
|||
</table>""",
|
||||
"services_section": """
|
||||
<table role="presentation" width="100%" cellpadding="0" cellspacing="0" style="font-size:13px;color:#374151;font-family:Inter,sans-serif;">
|
||||
<tr><td style="padding:6px 0;"><strong>California MCP + CARB Compliance</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$349</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>IRP Registration Assistance</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$199</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>IFTA Application + Decals</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$149</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>California MCP + CARB Compliance</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$229</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>IRP Registration Assistance</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$109</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>IFTA Application + Decals</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$109</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>State Compliance Bundle</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$599</td></tr>
|
||||
</table>""",
|
||||
"cta_url": "https://performancewest.net/services/trucking/california/",
|
||||
|
|
@ -66,9 +66,9 @@ CAMPAIGNS = {
|
|||
</table>""",
|
||||
"services_section": """
|
||||
<table role="presentation" width="100%" cellpadding="0" cellspacing="0" style="font-size:13px;color:#374151;font-family:Inter,sans-serif;">
|
||||
<tr><td style="padding:6px 0;"><strong>Oregon Weight-Mile Tax Setup</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$199</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>IRP Registration Assistance</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$199</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>IFTA Application + Decals</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$149</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>Oregon Weight-Mile Tax Setup</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$109</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>IRP Registration Assistance</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$109</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>IFTA Application + Decals</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$109</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>State Compliance Bundle</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$599</td></tr>
|
||||
</table>""",
|
||||
"cta_url": "https://performancewest.net/services/trucking/oregon/",
|
||||
|
|
@ -88,9 +88,9 @@ CAMPAIGNS = {
|
|||
</table>""",
|
||||
"services_section": """
|
||||
<table role="presentation" width="100%" cellpadding="0" cellspacing="0" style="font-size:13px;color:#374151;font-family:Inter,sans-serif;">
|
||||
<tr><td style="padding:6px 0;"><strong>NY Highway Use Tax Registration</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$199</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>IRP Registration Assistance</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$199</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>Intrastate Operating Authority</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$249</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>NY Highway Use Tax Registration</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$109</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>IRP Registration Assistance</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$109</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>Intrastate Operating Authority</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$109</td></tr>
|
||||
<tr><td style="padding:6px 0;"><strong>State Compliance Bundle</strong></td><td style="padding:6px 0;text-align:right;font-weight:700;color:#f97316;">$599</td></tr>
|
||||
</table>""",
|
||||
"cta_url": "https://performancewest.net/services/trucking/new-york/",
|
||||
|
|
|
|||
|
|
@ -111,7 +111,7 @@ CAMPAIGNS = [
|
|||
"<strong>CA Number / CHP requirements</strong> — California carriers may need a state carrier number in addition to USDOT.",
|
||||
"<strong>CARB emissions compliance</strong> — diesel vehicles can face California emissions restrictions and enforcement.",
|
||||
],
|
||||
"services": [("California MCP + CARB Compliance", "$349"), ("IRP Registration Assistance", "$199"), ("IFTA Application + Decals", "$149"), ("State Compliance Bundle", "$599")],
|
||||
"services": [("California MCP + CARB Compliance", "$229"), ("IRP Registration Assistance", "$109"), ("IFTA Application + Decals", "$109"), ("State Compliance Bundle", "$599")],
|
||||
"cta_url": "https://performancewest.net/services/trucking/california/", "cta_text": "View California Compliance Services",
|
||||
},
|
||||
{
|
||||
|
|
@ -123,7 +123,7 @@ CAMPAIGNS = [
|
|||
"<strong>IRP / apportioned plates</strong> — interstate Oregon operations often require apportioned registration.",
|
||||
"<strong>ODOT authority</strong> — some for-hire intrastate operations require state authority.",
|
||||
],
|
||||
"services": [("Oregon Weight-Mile Tax Setup", "$199"), ("IRP Registration Assistance", "$199"), ("IFTA Application + Decals", "$149"), ("State Compliance Bundle", "$599")],
|
||||
"services": [("Oregon Weight-Mile Tax Setup", "$109"), ("IRP Registration Assistance", "$109"), ("IFTA Application + Decals", "$109"), ("State Compliance Bundle", "$599")],
|
||||
"cta_url": "https://performancewest.net/services/trucking/oregon/", "cta_text": "View Oregon Compliance Services",
|
||||
},
|
||||
{
|
||||
|
|
@ -135,7 +135,7 @@ CAMPAIGNS = [
|
|||
"<strong>Quarterly filings</strong> — HUT is not just a one-time registration. Reporting may be recurring.",
|
||||
"<strong>Intrastate authority</strong> — for-hire NY intrastate carriers may need NY authority.",
|
||||
],
|
||||
"services": [("NY Highway Use Tax Registration", "$199"), ("HUT Quarterly Filing", "$99"), ("Intrastate Operating Authority", "$249"), ("State Compliance Bundle", "$599")],
|
||||
"services": [("NY Highway Use Tax Registration", "$109"), ("HUT Quarterly Filing", "$99"), ("Intrastate Operating Authority", "$109"), ("State Compliance Bundle", "$599")],
|
||||
"cta_url": "https://performancewest.net/services/trucking/new-york/", "cta_text": "View New York Compliance Services",
|
||||
},
|
||||
{
|
||||
|
|
@ -147,7 +147,7 @@ CAMPAIGNS = [
|
|||
"<strong>Mileage reporting</strong> — KYU tax is based on miles operated in Kentucky and requires ongoing filings.",
|
||||
"<strong>Permit exposure</strong> — operating without proper KYU setup can create roadside and tax issues.",
|
||||
],
|
||||
"services": [("Kentucky KYU Number Setup", "$199"), ("KYU Quarterly Filing", "$99"), ("State Compliance Bundle", "$599")],
|
||||
"services": [("Kentucky KYU Number Setup", "$109"), ("KYU Quarterly Filing", "$99"), ("State Compliance Bundle", "$599")],
|
||||
"cta_url": "https://performancewest.net/services/trucking/kentucky/", "cta_text": "View Kentucky Compliance Services",
|
||||
},
|
||||
{
|
||||
|
|
@ -159,7 +159,7 @@ CAMPAIGNS = [
|
|||
"<strong>Trip and mileage records</strong> — filings depend on New Mexico miles and vehicle weight class.",
|
||||
"<strong>Operating state gap</strong> — carriers passing through NM can trigger requirements even if based elsewhere.",
|
||||
],
|
||||
"services": [("New Mexico Weight-Distance Setup", "$199"), ("Quarterly Filing", "$99"), ("State Compliance Bundle", "$599")],
|
||||
"services": [("New Mexico Weight-Distance Setup", "$109"), ("Quarterly Filing", "$99"), ("State Compliance Bundle", "$599")],
|
||||
"cta_url": "https://performancewest.net/services/trucking/new-mexico/", "cta_text": "View New Mexico Compliance Services",
|
||||
},
|
||||
{
|
||||
|
|
@ -171,7 +171,7 @@ CAMPAIGNS = [
|
|||
"<strong>Quarterly filing</strong> — HUF returns are recurring and based on mileage and weight class.",
|
||||
"<strong>Multi-state exposure</strong> — CT trips can trigger filing duties even for carriers based outside Connecticut.",
|
||||
],
|
||||
"services": [("Connecticut HUF Registration", "$199"), ("Quarterly Filing", "$99"), ("State Compliance Bundle", "$599")],
|
||||
"services": [("Connecticut HUF Registration", "$109"), ("Quarterly Filing", "$99"), ("State Compliance Bundle", "$599")],
|
||||
"cta_url": "https://performancewest.net/services/trucking/connecticut/", "cta_text": "View Connecticut Compliance Services",
|
||||
},
|
||||
{
|
||||
|
|
@ -183,7 +183,7 @@ CAMPAIGNS = [
|
|||
"<strong>Intrastate operating authority</strong> — for-hire Texas operations can trigger state authority and insurance filing requirements.",
|
||||
"<strong>Insurance filing</strong> — Texas authority often requires proof of insurance on file with the state.",
|
||||
],
|
||||
"services": [("Texas TxDMV Number Filing", "$249"), ("Texas Intrastate Authority", "$249"), ("State Insurance Filing", "$99"), ("State Compliance Bundle", "$599")],
|
||||
"services": [("Texas TxDMV Number Filing", "$109"), ("Texas Intrastate Authority", "$109"), ("State Insurance Filing", "$99"), ("State Compliance Bundle", "$599")],
|
||||
"cta_url": "https://performancewest.net/services/trucking/texas/", "cta_text": "View Texas Compliance Services",
|
||||
},
|
||||
{
|
||||
|
|
@ -195,7 +195,7 @@ CAMPAIGNS = [
|
|||
"<strong>IFTA fuel tax account</strong> — interstate fuel tax registration and decals may be required before operating across state lines.",
|
||||
"<strong>Quarterly IFTA returns</strong> — IFTA continues after registration with quarterly fuel tax reporting.",
|
||||
],
|
||||
"services": [("IRP Registration Assistance", "$199"), ("IFTA Application + Decals", "$149"), ("Quarterly IFTA Filing", "$99"), ("IRP/IFTA Bundle", "$299")],
|
||||
"services": [("IRP Registration Assistance", "$109"), ("IFTA Application + Decals", "$109"), ("Quarterly IFTA Filing", "$99"), ("IRP/IFTA Bundle", "$299")],
|
||||
"cta_url": "https://performancewest.net/services/trucking/irp-ifta/", "cta_text": "Get IRP / IFTA Help",
|
||||
},
|
||||
{
|
||||
|
|
@ -232,7 +232,7 @@ CAMPAIGNS = [
|
|||
"<strong>Missed renewals</strong> — new carriers often miss UCR, MCS-150 timing, state permits, or quarterly fuel tax obligations.",
|
||||
"<strong>Cash-flow friendly setup</strong> — bundling startup compliance prevents piecemeal filings and duplicate work.",
|
||||
],
|
||||
"services": [("New Carrier Starter Bundle", "$599"), ("LLC Formation", "$199"), ("BOC-3", "$49"), ("UCR Filing", "$99")],
|
||||
"services": [("New Carrier Starter Bundle", "$599"), ("LLC Formation", "$199"), ("BOC-3", "$49"), ("UCR Filing", "$39")],
|
||||
"cta_url": "https://performancewest.net/services/trucking/new-carrier/", "cta_text": "Start Carrier Compliance",
|
||||
},
|
||||
]
|
||||
|
|
|
|||
|
|
@ -132,7 +132,7 @@ Sign out
|
|||
<div class="flex-1">
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="font-semibold text-gray-900">MCS-150 Biennial Update</span>
|
||||
<span class="text-sm font-bold text-orange-600">$69</span>
|
||||
<span class="text-sm font-bold text-orange-600">$39</span>
|
||||
</div>
|
||||
<p class="text-xs text-gray-500 mt-1">Required every 2 years. Failure to update results in USDOT deactivation + fines up to $1,000/day.</p>
|
||||
</div>
|
||||
|
|
@ -158,7 +158,7 @@ Sign out
|
|||
<div class="flex-1">
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="font-semibold text-gray-900">UCR Annual Registration</span>
|
||||
<span class="text-sm font-bold text-orange-600">$69 <span class="text-xs font-normal text-gray-400">+ gov fee from $46</span></span>
|
||||
<span class="text-sm font-bold text-orange-600">$39 <span class="text-xs font-normal text-gray-400">+ gov fee from $46</span></span>
|
||||
</div>
|
||||
<p class="text-xs text-gray-500 mt-1">Annual requirement for interstate carriers. Gov fee based on fleet size ($59–$7,511). Failure = out-of-service at roadside.</p>
|
||||
</div>
|
||||
|
|
@ -214,7 +214,7 @@ Sign out
|
|||
<div class="flex-1">
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="font-semibold text-gray-900">MC Operating Authority</span>
|
||||
<span class="text-sm font-bold text-orange-600">$349 <span class="text-xs font-normal text-gray-400">+ $300 FMCSA fee</span></span>
|
||||
<span class="text-sm font-bold text-orange-600">$199 <span class="text-xs font-normal text-gray-400">+ $300 FMCSA fee</span></span>
|
||||
</div>
|
||||
<p class="text-xs text-gray-500 mt-1">Apply for common or contract authority to operate as a for-hire carrier.</p>
|
||||
</div>
|
||||
|
|
@ -273,7 +273,7 @@ Sign out
|
|||
<div class="flex-1">
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="font-semibold text-gray-900">IRP Registration Assistance</span>
|
||||
<span class="text-sm font-bold text-orange-600">$199</span>
|
||||
<span class="text-sm font-bold text-orange-600">$109</span>
|
||||
</div>
|
||||
<p class="text-xs text-gray-500 mt-1">International Registration Plan — apportioned vehicle registration for interstate carriers. Filed through your base state.</p>
|
||||
</div>
|
||||
|
|
@ -286,7 +286,7 @@ Sign out
|
|||
<div class="flex-1">
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="font-semibold text-gray-900">IFTA Application + Decals</span>
|
||||
<span class="text-sm font-bold text-orange-600">$149</span>
|
||||
<span class="text-sm font-bold text-orange-600">$109</span>
|
||||
</div>
|
||||
<p class="text-xs text-gray-500 mt-1">International Fuel Tax Agreement — get your IFTA license and decals for interstate fuel tax reporting.</p>
|
||||
</div>
|
||||
|
|
@ -299,7 +299,7 @@ Sign out
|
|||
<div class="flex-1">
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="font-semibold text-gray-900">California MCP + CARB Compliance</span>
|
||||
<span class="text-sm font-bold text-orange-600">$349</span>
|
||||
<span class="text-sm font-bold text-orange-600">$229</span>
|
||||
</div>
|
||||
<p class="text-xs text-gray-500 mt-1">Motor Carrier Permit (MCP) + CARB Truck & Bus Rule compliance. Required for all carriers operating in California.</p>
|
||||
</div>
|
||||
|
|
@ -312,7 +312,7 @@ Sign out
|
|||
<div class="flex-1">
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="font-semibold text-gray-900">Oregon Weight-Mile Tax Setup</span>
|
||||
<span class="text-sm font-bold text-orange-600">$199</span>
|
||||
<span class="text-sm font-bold text-orange-600">$109</span>
|
||||
</div>
|
||||
<p class="text-xs text-gray-500 mt-1">Account setup and first filing for Oregon's Weight-Mile Tax. Required for vehicles over 26,001 lbs.</p>
|
||||
</div>
|
||||
|
|
@ -325,7 +325,7 @@ Sign out
|
|||
<div class="flex-1">
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="font-semibold text-gray-900">NY Highway Use Tax (HUT)</span>
|
||||
<span class="text-sm font-bold text-orange-600">$199</span>
|
||||
<span class="text-sm font-bold text-orange-600">$109</span>
|
||||
</div>
|
||||
<p class="text-xs text-gray-500 mt-1">Registration and first filing for New York's Highway Use Tax. Required for vehicles over 18,000 lbs.</p>
|
||||
</div>
|
||||
|
|
@ -338,7 +338,7 @@ Sign out
|
|||
<div class="flex-1">
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="font-semibold text-gray-900">KY Weight-Distance Tax (KYU)</span>
|
||||
<span class="text-sm font-bold text-orange-600">$199</span>
|
||||
<span class="text-sm font-bold text-orange-600">$109</span>
|
||||
</div>
|
||||
<p class="text-xs text-gray-500 mt-1">KYU number and account setup for Kentucky's Weight-Distance Tax. Required for vehicles over 59,999 lbs.</p>
|
||||
</div>
|
||||
|
|
@ -351,7 +351,7 @@ Sign out
|
|||
<div class="flex-1">
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="font-semibold text-gray-900">NM Weight-Distance Tax</span>
|
||||
<span class="text-sm font-bold text-orange-600">$199</span>
|
||||
<span class="text-sm font-bold text-orange-600">$109</span>
|
||||
</div>
|
||||
<p class="text-xs text-gray-500 mt-1">E-permit and account setup for New Mexico's Weight-Distance Tax. Required for vehicles over 26,001 lbs.</p>
|
||||
</div>
|
||||
|
|
@ -364,7 +364,7 @@ Sign out
|
|||
<div class="flex-1">
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="font-semibold text-gray-900">CT Highway Use Fee</span>
|
||||
<span class="text-sm font-bold text-orange-600">$199</span>
|
||||
<span class="text-sm font-bold text-orange-600">$109</span>
|
||||
</div>
|
||||
<p class="text-xs text-gray-500 mt-1">Registration and first filing for Connecticut's Highway Use Fee. Required for vehicles over 26,000 lbs.</p>
|
||||
</div>
|
||||
|
|
@ -377,7 +377,7 @@ Sign out
|
|||
<div class="flex-1">
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="font-semibold text-gray-900">Intrastate Operating Authority</span>
|
||||
<span class="text-sm font-bold text-orange-600">$249</span>
|
||||
<span class="text-sm font-bold text-orange-600">$109</span>
|
||||
</div>
|
||||
<p class="text-xs text-gray-500 mt-1">State-level operating authority (Certificate of Authority / CPCN) for for-hire intrastate carriers.</p>
|
||||
</div>
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -138,7 +138,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">California MCP + CARB Compliance</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">Full Motor Carrier Permit application or renewal, plus CARB Truck & Bus Rule compliance verification. Includes CA Number assistance if needed.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$349</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$229</p>
|
||||
<a href="/order/dot-compliance?state=CA" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -148,7 +148,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IRP Registration Assistance</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">International Registration Plan application through the CA DMV. We prepare your mileage schedules, handle the application, and track your cab cards.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=CA" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -158,7 +158,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IFTA Application + Decals</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">IFTA license application through the CA BOE. Includes initial decal order, quarterly return setup guidance, and ongoing filing support.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$149</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=CA" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">HUF Account Registration</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">Full CT Highway Use Fee account setup with the Department of Revenue Services (DRS), weight classification, and initial registration. Includes guidance on monthly return filing and record-keeping requirements.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/ct-highway-use-fee" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -152,7 +152,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IRP Registration</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">International Registration Plan application for apportioned plates. We prepare your mileage schedules, handle the application, and track your cab cards.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/ct-highway-use-fee" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -162,7 +162,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IFTA Application + Decals</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">IFTA license application for Connecticut carriers. Includes initial decal order, quarterly return setup guidance, and ongoing filing support across all member jurisdictions.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$149</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/ct-highway-use-fee" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -148,7 +148,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IRP Registration Assistance</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">International Registration Plan application through the FL DHSMV. We prepare your mileage schedules, handle the application, and track your cab cards.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=FL" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -158,7 +158,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IFTA Application + Decals</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">IFTA license application through the FL DOR. Includes initial decal order, quarterly return setup guidance, and ongoing filing support.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$149</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=FL" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -168,7 +168,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">Intrastate Authority</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">FL DHSMV Motor Carrier Certificate application for intrastate-only carriers. We prepare and file the application, coordinate insurance filings, and track approval.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$249</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=FL" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-1">MCS-150 Biennial Update</h3>
|
||||
<p class="text-sm text-gray-600 mb-3">Required every 2 years for all USDOT-registered carriers. Updates company profile, mileage, fleet size, and operation type.</p>
|
||||
<div style="display: flex; align-items: center; justify-content: space-between;">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$69</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$39</p>
|
||||
<a href="/order/dot-compliance" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.375rem 1rem; border-radius: 0.5rem; font-size: 0.8rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -105,7 +105,7 @@ Sign out
|
|||
<p class="text-sm text-gray-600 mb-3">Annual requirement for interstate carriers. We handle the registration and payment. Gov fee based on fleet size (from $46).</p>
|
||||
<div style="display: flex; align-items: center; justify-content: space-between;">
|
||||
<div>
|
||||
<span style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$69</span>
|
||||
<span style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$39</span>
|
||||
<span style="color: #9ca3af; font-size: 0.75rem; font-weight: 400;"> + gov fee</span>
|
||||
</div>
|
||||
<a href="/order/dot-compliance" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.375rem 1rem; border-radius: 0.5rem; font-size: 0.8rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order</a>
|
||||
|
|
@ -134,7 +134,7 @@ Sign out
|
|||
<p class="text-sm text-gray-600 mb-3">Apply for common or contract authority to operate as a for-hire carrier. Includes BOC-3 setup at no extra charge.</p>
|
||||
<div style="display: flex; align-items: center; justify-content: space-between;">
|
||||
<div>
|
||||
<span style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$349</span>
|
||||
<span style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</span>
|
||||
<span style="color: #9ca3af; font-size: 0.75rem; font-weight: 400;"> + $300 FMCSA fee</span>
|
||||
</div>
|
||||
<a href="/order/dot-compliance" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.375rem 1rem; border-radius: 0.5rem; font-size: 0.8rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order</a>
|
||||
|
|
@ -197,7 +197,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IRP Registration</h3>
|
||||
<p class="text-sm text-gray-600 mb-3">International Registration Plan apportioned plates for interstate carriers. Mileage schedules, application, and cab card tracking.</p>
|
||||
<div style="display: flex; align-items: center; justify-content: space-between;">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=IRP" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -207,7 +207,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IFTA License</h3>
|
||||
<p class="text-sm text-gray-600 mb-3">International Fuel Tax Agreement license and decals. Simplifies fuel tax reporting for carriers operating across state lines.</p>
|
||||
<div style="display: flex; align-items: center; justify-content: space-between;">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$149</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=IFTA" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -217,7 +217,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">California MCP + CARB</h3>
|
||||
<p class="text-sm text-gray-600 mb-3">Motor Carrier Permit application or renewal plus CARB Truck & Bus Rule compliance verification. Includes CA Number assistance.</p>
|
||||
<div style="display: flex; align-items: center; justify-content: space-between;">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$349</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$229</p>
|
||||
<a href="/order/dot-compliance?state=CA" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -227,7 +227,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">Weight-Distance Tax</h3>
|
||||
<p class="text-sm text-gray-600 mb-3">Registration and reporting for states with weight-distance or mileage taxes (NY, NM, OR, KY). Filing and quarterly returns.</p>
|
||||
<div style="display: flex; align-items: center; justify-content: space-between;">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=WDT" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -237,7 +237,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">Intrastate Authority</h3>
|
||||
<p class="text-sm text-gray-600 mb-3">State-level operating authority for carriers that operate solely within a single state. Application, insurance filing, and permits.</p>
|
||||
<div style="display: flex; align-items: center; justify-content: space-between;">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$249</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=INTRA" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -135,7 +135,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IRP Registration Assistance</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">Full apportioned-plate setup in your base state. We prepare your mileage schedules, complete the application, and track your plate and cab cards.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/ifta-application" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -144,7 +144,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IFTA Application + Decals</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">IFTA license application plus your initial decal order, with quarterly return setup guidance and ongoing filing support.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$149</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/ifta-application" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -153,7 +153,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IFTA Quarterly Return Filing</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">We prepare and file your quarterly IFTA return from your trip and fuel data so you never miss a deadline or miscalculate tax owed.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$99</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/ifta-application" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">Kentucky KYU Number Setup</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">Full KYU Weight-Distance Tax license setup for vehicles over 59,999 lbs. Includes account registration, vehicle classification, and guidance on the quarterly weight-distance tax returns and KYU renewal.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/ky-kyu-registration" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -152,7 +152,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IRP Registration Assistance</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">International Registration Plan application for apportioned plates. We prepare your mileage schedules, handle the application, and track your cab cards for interstate carriers over 26,000 lbs.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/ky-kyu-registration" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -162,7 +162,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IFTA Application + Decals</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">IFTA license application with initial decal order, quarterly fuel tax return setup guidance, and ongoing filing support so your returns stay current in every member jurisdiction.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$149</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/ky-kyu-registration" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -162,7 +162,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">UCR Registration</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">Annual Unified Carrier Registration based on your fleet size, filed for you so you stay legal across every state.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$99</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$39</p>
|
||||
<a href="/order/new-carrier-bundle" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">New Mexico Weight-Distance Tax Permit</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">Full New Mexico Weight-Distance Tax ID setup through the Taxation and Revenue Department, weight classification, and initial registration. Includes guidance on quarterly returns and record-keeping requirements.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/nm-weight-distance?state=NM" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -152,7 +152,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IRP Registration Assistance</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">International Registration Plan application through the New Mexico Motor Vehicle Division. We prepare your mileage schedules, handle the application, and track your cab cards.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/nm-weight-distance?state=NM" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -162,7 +162,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IFTA Application + Decals</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">IFTA license application for New Mexico-based carriers. Includes initial decal order, quarterly return setup guidance, and ongoing filing support.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$149</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/nm-weight-distance?state=NM" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -138,7 +138,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">NY HUT Registration</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">Highway Use Tax registration and quarterly filing through the NY DTF. We handle the initial registration, weight declarations, and ongoing quarterly returns for vehicles over 18,000 lbs.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=NY" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -148,7 +148,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IRP Registration Assistance</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">International Registration Plan application through the NY DMV. We prepare your mileage schedules, handle the application, and track your cab cards.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=NY" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -158,7 +158,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IFTA Application + Decals</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">IFTA license application through the NY DTF. Includes initial decal order, quarterly return setup guidance, and ongoing filing support.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$149</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=NY" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -168,7 +168,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">Intrastate Authority</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">NY DOT Certificate application for intrastate-only carriers. We prepare and file the application, coordinate insurance filings, and track approval through the NY DOT.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$249</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=NY" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">Oregon Weight-Mile Tax Setup</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">Full Oregon Trucking Online (OTO) account setup, weight group classification, and initial Weight-Mile Tax registration. Includes guidance on record-keeping and reporting requirements.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=OR" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -152,7 +152,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IRP Registration Assistance</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">International Registration Plan application through ODOT. We prepare your mileage schedules, handle the application, and track your cab cards.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=OR" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -162,7 +162,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IFTA Application + Decals</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">IFTA license application through ODOT. Includes initial decal order, quarterly return setup guidance, and ongoing filing support. Oregon miles are exempt from IFTA fuel tax.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$149</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=OR" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IRP Registration Assistance</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">International Registration Plan application through TxDMV. We prepare your mileage schedules, handle the application, and track your cab cards.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$199</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=TX" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -152,7 +152,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">IFTA Application + Decals</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">IFTA license application through the Texas Comptroller. Includes initial decal order, quarterly return setup guidance, and ongoing filing support.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$149</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=TX" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -162,7 +162,7 @@ Sign out
|
|||
<h3 class="font-bold text-gray-900 mb-2">Intrastate Authority Application</h3>
|
||||
<p class="text-sm text-gray-600 mb-4">TxDMV Operating Authority application for intrastate carriers. We prepare and submit your application, coordinate insurance filings, and track approval.</p>
|
||||
<div class="flex items-center justify-between">
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$249</p>
|
||||
<p style="color: #ea580c; font-weight: 700; font-size: 1.25rem;">$109</p>
|
||||
<a href="/order/dot-compliance?state=TX" style="background: #f97316; color: #fff; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 0.5rem; font-size: 0.875rem; text-decoration: none; display: inline-block; transition: background 0.2s;" onmouseover="this.style.background='#ea580c'" onmouseout="this.style.background='#f97316'">Order Now</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -178,32 +178,32 @@ export const SERVICE_META: Record<string, { name: string; price_cents: number }>
|
|||
"foreign-qualification-single": { name: "Foreign Qualification (One State)", price_cents: 14900 },
|
||||
"foreign-qualification-multi": { name: "Foreign Qualification (Multi-State)", price_cents: 9900 },
|
||||
// DOT / FMCSA
|
||||
"mcs150-update": { name: "MCS-150 Biennial Update", price_cents: 6900 },
|
||||
"mcs150-update": { name: "MCS-150 Biennial Update", price_cents: 3900 },
|
||||
"boc3-filing": { name: "BOC-3 Process Agent Filing", price_cents: 8900 },
|
||||
"ucr-registration": { name: "UCR Annual Registration", price_cents: 6900 },
|
||||
"ucr-registration": { name: "UCR Annual Registration", price_cents: 3900 },
|
||||
"dot-registration": { name: "New USDOT Number Registration", price_cents: 8900 },
|
||||
"mc-authority": { name: "MC Operating Authority Application", price_cents: 34900 },
|
||||
"mc-authority": { name: "MC Operating Authority Application", price_cents: 19900 },
|
||||
"dot-drug-alcohol": { name: "DOT Drug & Alcohol Compliance Program", price_cents: 14900 },
|
||||
"dot-audit-prep": { name: "New Entrant Safety Audit Preparation", price_cents: 39900 },
|
||||
"dot-full-compliance": { name: "DOT Full Compliance Bundle", price_cents: 39900 },
|
||||
"usdot-reactivation": { name: "USDOT Reactivation", price_cents: 14900 },
|
||||
// State-level trucking
|
||||
"irp-registration": { name: "IRP Registration Assistance", price_cents: 19900 },
|
||||
"ifta-application": { name: "IFTA Application + Decals", price_cents: 14900 },
|
||||
"ifta-quarterly": { name: "IFTA Quarterly Filing", price_cents: 9900 },
|
||||
"or-weight-mile-tax": { name: "Oregon Weight-Mile Tax Setup", price_cents: 19900 },
|
||||
"ny-hut-registration": { name: "NY Highway Use Tax Registration", price_cents: 19900 },
|
||||
"ky-kyu-registration": { name: "KY Weight-Distance Tax Setup", price_cents: 19900 },
|
||||
"nm-weight-distance": { name: "NM Weight-Distance Tax Setup", price_cents: 19900 },
|
||||
"ct-highway-use-fee": { name: "CT Highway Use Fee Setup", price_cents: 19900 },
|
||||
"ca-mcp-carb": { name: "California MCP + CARB Compliance", price_cents: 34900 },
|
||||
"state-dot-registration": { name: "State DOT Registration", price_cents: 14900 },
|
||||
"intrastate-authority": { name: "Intrastate Operating Authority", price_cents: 24900 },
|
||||
"osow-permit": { name: "Oversize/Overweight Permit", price_cents: 9900 },
|
||||
"irp-registration": { name: "IRP Registration Assistance", price_cents: 10900 },
|
||||
"ifta-application": { name: "IFTA Application + Decals", price_cents: 10900 },
|
||||
"ifta-quarterly": { name: "IFTA Quarterly Filing", price_cents: 10900 },
|
||||
"or-weight-mile-tax": { name: "Oregon Weight-Mile Tax Setup", price_cents: 10900 },
|
||||
"ny-hut-registration": { name: "NY Highway Use Tax Registration", price_cents: 10900 },
|
||||
"ky-kyu-registration": { name: "KY Weight-Distance Tax Setup", price_cents: 10900 },
|
||||
"nm-weight-distance": { name: "NM Weight-Distance Tax Setup", price_cents: 10900 },
|
||||
"ct-highway-use-fee": { name: "CT Highway Use Fee Setup", price_cents: 10900 },
|
||||
"ca-mcp-carb": { name: "California MCP + CARB Compliance", price_cents: 22900 },
|
||||
"state-dot-registration": { name: "State DOT Registration", price_cents: 10900 },
|
||||
"intrastate-authority": { name: "Intrastate Operating Authority", price_cents: 10900 },
|
||||
"osow-permit": { name: "Oversize/Overweight Permit", price_cents: 10900 },
|
||||
"state-trucking-bundle": { name: "State Compliance Bundle", price_cents: 49900 },
|
||||
// Hazmat / emissions
|
||||
"hazmat-phmsa": { name: "PHMSA Hazmat Registration", price_cents: 14900 },
|
||||
"state-emissions": { name: "State Clean-Truck / Emissions Compliance", price_cents: 19900 },
|
||||
"state-emissions": { name: "State Clean-Truck / Emissions Compliance", price_cents: 10900 },
|
||||
};
|
||||
|
||||
export function formatUSD(cents: number): string {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue