# Manufacturing Industry Landing Page — Design Specification

> Version: 1.0 | Date: February 2026
> Buyer: VP Finance / Controller at mid-market manufacturer ($50M-$500M) arriving from Google Ad
> Primary keyword: "manufacturing AR automation" (720-1,300/mo, $12-$28 CPC)
> Color scheme: Primary #10B981 (emerald) / Secondary #059669 (green) / Dark bg #0B0F1A

---

## A) BUYER JOURNEY & PAGE CONCEPT

### Mental State on Arrival
The visitor just searched "manufacturing invoice automation" or "B2B AR automation software" and clicked a Google Ad. They are a VP Finance or Controller at a mid-market manufacturer ($50M-$500M revenue). Their AR team of 3-8 people processes 2,000-15,000 invoices/month across 50-200 active customer accounts. They are frustrated: 55% of their B2B invoices are paid late (Atradius 2024), deductions eat 1-3% of gross revenue (HighRadius 2023), their ERP's AR module is inadequate but replacing the ERP is not an option, and their board or PE owners are demanding working capital improvement. They have likely looked at HighRadius (too expensive, $100K+/yr) and Billtrust (too enterprise-focused) and found nothing built for mid-market manufacturers.

### Emotional Arc (9 sections)
1. RECOGNITION — "They understand manufacturing AR, not generic SaaS billing" (Hero with AR dashboard)
2. VALIDATION — "These numbers match my reality exactly" (Problem stats with sourced data)
3. CONTRAST — "My team is still doing this manually?" (Before/After comparison)
4. EXPLORATION — "This covers invoicing, deductions, EDI, and credit — all in one" (4-tab product showcase)
5. QUANTIFICATION — "The DSO math works for my revenue size" (ROI projections)
6. TECHNICAL FIT — "It connects to Epicor and handles EDI 810/850 — no rip-and-replace" (Integrations)
7. COMPLIANCE TRUST — "They understand EDI standards, SOX, and audit trails" (Compliance)
8. OBJECTION HANDLING — "My specific concerns about deductions and ERP fit are addressed" (FAQ)
9. ACTION — "Low risk — let me schedule an AR assessment" (Final CTA)

### What They Must See in 2 Seconds (Above the Fold)
- A realistic manufacturing AR dashboard (invoice aging by customer, deduction tracker, EDI status, payment prediction)
- A pain stat that stops scrolling: "55% of B2B invoices are paid late"
- Manufacturing-specific language: EDI 810/850/856, deductions, chargebacks, PO matching, net terms
- Integration logos: SAP, Oracle, Epicor, Infor, SYSPRO, SPS Commerce
- CTA: "Schedule Your AR Assessment" (not generic "Get Started")

---

## B) HERO MOCKUP SPECIFICATION — Manufacturing AR Dashboard

### Layout Architecture
Full-width dark section. Left 50%: headline + pain stat + CTAs. Right 50%: dashboard mockup with browser chrome, floating with shadow. On mobile: stacked, headline first, mockup below.

### Dashboard Component: `<ManufacturingARDashboard />`

#### Outer Frame
```
<div className="bg-[#0B0F1A] rounded-2xl border border-white/10 shadow-2xl overflow-hidden">
```

#### Browser Chrome Bar
Three dots (red/yellow/green at 60% opacity) + center text: "Singoa — Manufacturing AR Dashboard"

#### Top Metrics Bar (4 animated counter cards, horizontal)
| Metric | Value | Trend | Animation | Color |
|--------|-------|-------|-----------|-------|
| Total AR Outstanding | $4.2M | +3% MoM | Counter 0 -> 4.2 over 1.5s | White text |
| Avg DSO | 47 days | -5 days | Counter 0 -> 47 over 1.4s | #10B981 (emerald) |
| Overdue Rate | 23% | -4% | Counter 0 -> 23 over 1.3s | #F59E0B (amber warning) |
| Cash Collected Today | $186K | +12% | Counter 0 -> 186 over 1.5s | #10B981 |

Each card: `bg-white/[0.03] rounded-lg p-3 border border-white/5`. Value in `text-lg font-bold`. Label in `text-[10px] text-gray-500 uppercase tracking-wider`. Trend arrow colored green (improvement) or amber (watch).

#### Left Panel (60%) — Invoice Aging by Customer
Horizontal stacked bar chart (pure CSS/SVG, no chart library):

| Customer | Current | 1-30 | 31-60 | 61-90+ | Total |
|----------|---------|------|-------|--------|-------|
| Caterpillar Inc | 45% | 25% | 20% | 10% | $842K |
| Deere & Company | 30% | 35% | 25% | 10% | $634K |
| 3M Company | 60% | 20% | 15% | 5% | $521K |
| Honeywell Intl | 35% | 30% | 20% | 15% | $467K |
| Parker Hannifin | 50% | 25% | 15% | 10% | $389K |

Bar colors: Current=#10B981, 1-30=#22C55E, 31-60=#F59E0B, 61-90+=#EF4444
Legend row below chart. Each bar animates width from 0 to target using `motion.div initial={{ width: 0 }} animate={{ width: 'X%' }} transition={{ delay: 0.8 + i * 0.12 }}`.

#### Right Panel Top (40%) — Deduction Tracker
Dark card with summary counts and top reasons:
```
Open: 34 ($127K)        — emerald dot
Pending: 12 ($45K)      — amber dot
Resolved: 89 ($312K)    — green check
Invalid: 23 ($67K)      — red x

Top Reasons:
- Pricing disputes (38%)  — horizontal mini-bar
- Freight claims (24%)    — horizontal mini-bar
- Quality returns (18%)   — horizontal mini-bar
- Shortage claims (12%)   — horizontal mini-bar
```
Each reason has a tiny emerald progress bar showing percentage. Numbers animate in with stagger.

#### Right Panel Bottom (40%) — EDI Status + Payment Prediction

Split into two mini-panels side by side:

**EDI Status (left half):**
```
EDI 810 Sent:      234  green check
EDI 856 Matched:   228  green check
EDI 820 Received:  198  white
Pending ACK (997):   6  amber warning
Failed:              2  red x
Compliance Rate: 97.2%  emerald text
```

**Payment Prediction (right half):**
Simple SVG line chart showing predicted cash inflow curve over 30 days.
```
Next 7 days:  $312K
Next 30 days: $1.1M
Confidence:   94%
```
Line drawn progressively using SVG `stroke-dashoffset` animation.

#### Bottom Ticker Bar
Scrolling or static text: "3 invoices auto-matched | 2 deductions flagged | $142K collected today | EDI 810 batch sent"
Style: `text-[10px] text-emerald-400/60 border-t border-white/5 px-4 py-2`

#### Framer Motion for Entire Dashboard
```jsx
<motion.div
  initial={{ opacity: 0, y: 30 }}
  animate={{ opacity: 1, y: 0 }}
  transition={{ delay: 0.9, duration: 0.8 }}
>
```

### Hero Content (Left Side)

#### Pill Badge
"Manufacturing AR Automation — 14-Day Free Trial" in `bg-white/10 backdrop-blur-sm rounded-[90px] px-4 py-2 border border-[#10B981]/40`

#### Headline (h1)
"**55% of B2B Invoices** Are Paid Late. Your AR Team Deserves Better."
- "55% of B2B Invoices" in gradient text `bg-clip-text text-transparent` using `linear-gradient(135deg, #10B981, #059669)`
- Source: Atradius Payment Practices Barometer 2024
- Size: `lg:text-[48px] md:text-[36px] text-[26px] font-bold text-white leading-tight`

#### Subheadline
"AI-powered order-to-cash automation for manufacturers. Automate invoicing, deduction management, EDI compliance, and payment matching — so your AR team focuses on exceptions, not data entry."
- Size: `lg:text-[20px] text-[16px] text-white/80 leading-relaxed`

#### Animated Counter Stats (3 inline)
| Stat | Display | Source |
|------|---------|--------|
| 51 days | "Median manufacturing DSO" | APQC Open Standards Benchmarking 2024 |
| 1-3% | "Revenue lost to deductions annually" | HighRadius Deduction Management Report 2023 |
| 90%+ | "AI auto-match rate vs 50-60% manual" | HighRadius Autonomous Receivables 2024 |

#### CTAs (two buttons)
1. Primary: "Schedule Your AR Assessment" — emerald gradient `linear-gradient(135deg, #10B981, #059669)`, `rounded-[90px]`, arrow icon, `trackEvent('industry_cta_click', { industry: 'manufacturing', cta_type: 'hero_assessment' })`
2. Secondary: "See the Dashboard in Action" — outlined, `border-2 border-[#10B981] bg-[#10B981]/10`

#### Trust Bar (below CTAs)
Inline badges: "SAP" | "Oracle" | "Epicor" | "EDI 810/850/856" | "SOC 2"
Style: `text-sm text-white/50 flex items-center gap-2` with small emerald icons

---

## C) SECTION-BY-SECTION LAYOUT — 9 Sections

### Section 1: HERO (covered in Section B above)
- Layout: Split — 50% text left, 50% dashboard right (desktop). Stacked on mobile.
- Background: Dark gradient `linear-gradient(135deg, #050810 0%, #0B0F1A 50%, #0a1a15 100%)`
- Decorative: Three blurred gradient orbs (emerald/green) at `blur-3xl`, `aria-hidden="true"`
- Framer Motion: Staggered entry — pill (0.2s), h1 (0.3s), subhead (0.4s), stats (0.5s), CTAs (0.6s), trust bar (0.7s), dashboard (0.9s)

---

### Section 2: PROBLEM — "The Manufacturing AR Reality"
- Layout: Centered header + 4-card grid (2x2 on desktop, 1-col on mobile)
- Background: Light `bg-gradient-to-b from-[#F0FDF4] to-white` with subtle circuit-board pattern at 3% opacity
- This section uses 4 cards (not 3 like the current page) — each with a hard stat and source

#### Section Header
- Pill: "Industry Data" with chart icon, emerald border
- h2: "Manufacturing AR by the Numbers" — `lg:text-[40px] font-bold text-[#0D121F]`
- Subtext: "The data behind the cash flow crisis hitting mid-market manufacturers."

#### 4 Pain Point Stat Cards
Each card: `bg-white rounded-2xl p-8 border border-[#D1FAE5] hover:border-[#10B981]/40 hover:shadow-xl transition-all`. Top emerald gradient bar on hover.

| Card | Icon | Headline | Stat | Source |
|------|------|----------|------|--------|
| 1 | FaClock | "Extended Payment Terms" | "55% of B2B invoices paid late; Net-60/90 standard from large OEMs" | Atradius Payment Practices Barometer 2024 |
| 2 | FaReceipt | "Deduction Drain" | "1-3% of gross revenue lost to invalid deductions and chargebacks annually" | HighRadius Deduction Management Report 2023 |
| 3 | FaNetworkWired | "EDI Compliance Gap" | "78% of large buyers require EDI 810; mid-market adoption only 45-55%" | SPS Commerce EDI Benchmark 2024; TrueCommerce 2024 |
| 4 | FaExclamationTriangle | "Credit Risk Blind Spots" | "Manufacturing bankruptcies up 40% YoY; 8% of B2B receivables written off" | S&P Global 2024; Atradius 2024 |

Each stat value displayed in large emerald gradient text. Source in `text-xs text-gray-400 italic` below.

#### Framer Motion
Cards: `initial={{ opacity: 0, y: 30 }} whileInView={{ opacity: 1, y: 0 }} viewport={{ once: true }} transition={{ delay: index * 0.12 }}`

---

### Section 3: BEFORE/AFTER — "Manual Invoice Chasing vs. Singoa Automation"
- Layout: Split-screen comparison. Left panel (red-tinted "Before"), right panel (green-tinted "After"). On mobile: stacked vertically.
- Background: `bg-white`
- UNIQUE to manufacturing: focuses on the invoice-to-cash cycle, not pay apps or claims

#### Left Panel — "Before: Manual AR"
Dark card with red accent: `bg-[#1a1a2e] rounded-2xl p-6 border border-red-500/20`
Title: "Without Singoa" in `text-red-400`

Timeline of 6 steps (vertical, with time/effort estimates):
1. "Generate invoices manually from ERP/Excel" — 4-6 hours/week
2. "Email invoices, hope EDI 810 format is correct" — error-prone
3. "Wait for payment... check aging report weekly" — Net-60 avg
4. "Research deductions across 3-5 systems" — 2-4 hours/day
5. "Manually match payments to invoices" — 50-60% first-pass rate
6. "Chase overdue accounts by phone and email" — reactive, no prioritization

Total: "15-20 hours/week on manual AR + 47-day average DSO"
Style: Each step is a row with a red dot connector, time in `text-red-400 font-mono`

#### Right Panel — "After: Singoa Automation"
Dark card with green accent: `bg-[#0a1a15] rounded-2xl p-6 border border-emerald-500/20`
Title: "With Singoa" in `text-emerald-400`

Timeline of 4 steps (compressed, faster):
1. "Invoices auto-generated from ERP, EDI 810 validated" — automatic
2. "AI predicts payment date per customer" — real-time
3. "Deductions auto-categorized, root cause identified" — 10-15 day resolution
4. "Payments auto-matched at 90%+ rate, exceptions routed" — same day

Total: "2-3 hours/week on exceptions only + 30-38 day target DSO"
Style: Each step with emerald dot connector, time in `text-emerald-400 font-mono`

#### Center Divider
Vertical line with "VS" badge in emerald circle on desktop. Horizontal with "VS" on mobile.

#### Bottom Stat Bar
"Only 28% of AR processes are fully automated. 41% of AR leaders say their ERP data is unreliable for automation — Singoa bridges both gaps."
Sources: Versapay/PYMNTS AR Automation Study 2024
Style: `bg-[#F0FDF4] rounded-xl p-4 border border-[#BBF7D0] text-center text-sm`

#### Framer Motion
Left panel: `initial={{ opacity: 0, x: -40 }} whileInView={{ opacity: 1, x: 0 }}`
Right panel: `initial={{ opacity: 0, x: 40 }} whileInView={{ opacity: 1, x: 0 }}`
Both: `viewport={{ once: true }} transition={{ duration: 0.6 }}`

---

### Section 4: PRODUCT SHOWCASE — 4-Tab Explorer
- Layout: Tabbed interface (Versapay pattern). Tab bar at top, content area below swaps dashboard mockup + description per tab.
- Background: `bg-[#0B0F1A]` dark section for contrast with dashboard mockups
- UNIQUE to manufacturing: tabs cover the 4 pillars of manufacturing AR (invoicing, deductions, EDI, credit)

#### Section Header
- h2: "One Platform. Every Manufacturing AR Workflow." — white text
- Subtext: "From EDI 810 generation to deduction recovery — explore how Singoa handles it all." — `text-white/70`

#### Tab Bar
4 tabs, horizontal on desktop, scrollable on mobile. Active tab: emerald bottom border + white text. Inactive: `text-white/50 hover:text-white/80`.

#### Tab 1: "Invoice Automation"
- Mockup: Invoice processing dashboard showing:
  - Header: "Invoice Queue — January 2026" with filter pills (All, Pending, Sent, Overdue)
  - Table: Invoice # | Customer | PO Match | Amount | EDI Status | Payment Predicted
  - 5 rows with realistic data:
    - "INV-28471 | Caterpillar Inc | PO-8834 3-Way Match | $184,500 | EDI 810 Sent | Feb 14 (94%)"
    - "INV-28472 | Deere & Co | PO-9012 Partial Ship | $92,300 | EDI 810 Queued | Feb 22 (87%)"
    - "INV-28473 | 3M Company | Auto-Matching... | $267,000 | Pending | Mar 1 (79%)"
    - "INV-28474 | Honeywell | PO-7756 Matched | $43,750 | EDI 810 ACK'd | Paid (green)"
    - "INV-28475 | Parker Hannifin | No PO Found | $18,900 | Failed | Escalated (red)"
  - Bottom summary: "1,847 invoices this month | 94% auto-matched | $4.2M outstanding"
- Description: "Auto-generate invoices from your ERP, validate PO matching (2-way and 3-way), and send EDI 810 compliant invoices to any trading partner. AI predicts payment dates per customer based on historical behavior."
- Stat: "Manual invoice processing costs $10-15 per invoice vs $2-4 automated (IOFM 2024)"

#### Tab 2: "Deduction Management"
- Mockup: Deduction dashboard showing:
  - Summary cards: Open ($127K, 34 items) | Pending Review ($45K, 12) | Resolved ($312K, 89) | Invalid ($67K, 23)
  - Table: Deduction # | Customer | Type | Amount | Root Cause | Age | Status
  - 4 rows:
    - "DED-1247 | Walmart | Short Pay | -$4,200 | Pricing dispute — contract vs PO price | 12d | Under Review (amber)"
    - "DED-1248 | Home Depot | Chargeback | -$850 | Late ASN — EDI 856 sent 2hrs past cutoff | 5d | Valid — Auto-Credited (red)"
    - "DED-1249 | Grainger | Freight Claim | -$1,100 | Carrier damage — BOL mismatch | 22d | Disputed — Docs Sent (blue)"
    - "DED-1250 | Fastenal | Shortage | -$3,400 | GRN shows 48 units vs 50 shipped | 8d | AI Investigating (emerald, pulsing)"
  - Right sidebar: "Root Cause Analysis" pie chart — Pricing 38%, Freight 24%, Quality 18%, Shortage 12%, Other 8%
- Description: "73% of manufacturers say deduction management is their most time-consuming AR activity (CRF 2023). Singoa auto-categorizes deductions by root cause, gathers supporting documents from your ERP and shipping systems, and routes disputes with full context."
- Stat: "Manual recovery rate: 40-50%. Automated recovery rate: 75-90% (HighRadius 2023)"

#### Tab 3: "EDI Integration"
- Mockup: EDI compliance dashboard showing:
  - Transaction flow diagram: EDI 850 (PO) -> EDI 856 (ASN) -> EDI 810 (Invoice) -> EDI 820 (Payment) -> EDI 997 (ACK)
  - Each node shows count and status (green check or amber warning)
  - Trading partner grid: Partner | EDI Version | Transactions/Mo | Compliance | Last Error
  - 4 rows:
    - "Walmart | ANSI X12 5010 | 342 | 99.1% | None"
    - "Home Depot | ANSI X12 4010 | 187 | 97.8% | ASN timing (resolved)"
    - "Amazon | ANSI X12 5010 | 89 | 100% | None"
    - "Grainger | ANSI X12 4010 | 56 | 94.2% | Invoice format (2 pending)"
  - Bottom: "Overall Compliance: 97.2% | Chargebacks Avoided This Month: $12,400"
- Description: "78% of large retailers require EDI-compliant invoicing. Non-compliance chargebacks average $50-$200 per violation (SPS Commerce 2024). Singoa handles EDI 810/850/856/820/997 natively — validate before sending, auto-acknowledge, and track compliance per trading partner."
- Stat: "Manufacturers using EDI report 65% fewer invoice errors (GS1 US 2023)"

#### Tab 4: "Credit Intelligence"
- Mockup: Credit risk dashboard showing:
  - Portfolio risk gauge: "Overall Portfolio Health: 78/100" with semi-circle gauge (green/amber/red zones)
  - Customer risk table: Customer | Credit Limit | Utilization | Payment Score | Trend | Action
  - 4 rows:
    - "Caterpillar | $500K | 62% | A+ (96) | Stable | No action"
    - "New Customer Corp | $50K | 88% | B (72) | Declining | Review limit (amber)"
    - "Regional Dist LLC | $200K | 45% | C+ (58) | Improving | Monitor (blue)"
    - "Troubled Mfg Inc | $100K | 97% | D (34) | Declining | Credit hold recommended (red, pulsing)"
  - Right panel: "Payment Behavior Trends" — sparkline charts showing 6-month payment patterns per customer
- Description: "Manufacturing bankruptcies increased 40% YoY (S&P Global 2024). Singoa's AI scores every customer 0-100 based on payment history, financial signals, and industry benchmarks. Get alerts before a customer becomes a write-off, not after."
- Stat: "Average working capital tied in receivables: 18-22% of annual revenue (Hackett Group 2024)"

#### Tab Switching Animation
```jsx
<AnimatePresence mode="wait">
  <motion.div
    key={activeTab}
    initial={{ opacity: 0, y: 20 }}
    animate={{ opacity: 1, y: 0 }}
    exit={{ opacity: 0, y: -20 }}
    transition={{ duration: 0.3 }}
  >
    {/* Tab content */}
  </motion.div>
</AnimatePresence>
```

---

### Section 5: ROI — "What Manufacturing Teams Can Expect"
- Layout: 3 metric cards top + projected savings table below
- Background: `bg-gradient-to-b from-white to-[#F0FDF4]`

#### 3 Outcome Metric Cards (horizontal on desktop)
| Metric | Value | Description | Source |
|--------|-------|-------------|--------|
| DSO Reduction | 20-30% | "Manufacturing DSO averages 51 days (APQC). Automated invoicing + AI collections compress toward the 30-38 day top-quartile benchmark." | APQC Open Standards Benchmarking 2024 |
| Deduction Recovery | 75-90% | "Manual recovery captures only 40-50% of invalid deductions. AI-powered root cause analysis and automated dispute workflows recover 75-90%." | HighRadius Deduction Management Report 2023 |
| Cash Application | 90%+ STP | "AI-powered straight-through processing vs 50-60% manual first-pass match rate. Payments applied same-day instead of 3-5 days." | HighRadius Autonomous Receivables 2024 |

Card style: `bg-white rounded-2xl p-8 border border-[#BBF7D0] text-center hover:border-[#10B981] hover:shadow-xl`. Value in large emerald gradient text.

#### Projected Savings Table
Container: `bg-gradient-to-br from-[#F0FDF4] to-white rounded-2xl p-8 border border-[#BBF7D0]`

For a $100M manufacturer with 2,500 invoices/month:
| Savings Category | Current Cost | With Singoa | Annual Savings |
|-----------------|-------------|-------------|----------------|
| Invoice processing ($10-15 vs $2-4 each) | $375K | $90K | $285K |
| Deduction write-offs (2% vs 0.5% of revenue) | $2M | $500K | $1.5M |
| DSO improvement (51 -> 36 days, freed cash) | — | — | $4.1M freed |
| AR FTE efficiency (3x throughput) | 6 FTEs | 2 FTEs | $320K |

Sources: IOFM 2024, HighRadius 2023, APQC 2024

CTA below table: "Get Your Custom ROI Estimate" — emerald gradient button, leads to contact form. `trackEvent('industry_cta_click', { industry: 'manufacturing', cta_type: 'roi_estimate' })`

Disclaimer: `text-xs text-gray-400` — "Projections based on APQC, IOFM, and HighRadius industry benchmarks. Actual results vary by company size and current processes."

---

### Section 6: INTEGRATIONS — "Works With Your Manufacturing Stack"
- Layout: Dark section. Centered header + 3-column grid grouped by category + data flow diagram.
- Background: `bg-[#0B0F1A]` with subtle emerald gradient orbs at `blur-3xl`

#### Section Header
- h2: "No Rip-and-Replace. Singoa Layers on Top of Your ERP." — white
- Subtext: "Deep two-way sync with the manufacturing ERP, EDI, and banking tools you already use." — `text-white/70`

#### Integration Grid — 3 Category Columns

| Category | Integrations | Display |
|----------|-------------|---------|
| Manufacturing ERP | SAP S/4HANA, Oracle NetSuite, Epicor Kinetic, Infor CloudSuite Industrial (SyteLine), SYSPRO, Microsoft Dynamics 365 F&O, Sage X3/Intacct | Each: icon + name in `text-white/80`, grouped in `bg-white/5 rounded-2xl p-6 border border-white/10` card |
| EDI & Supply Chain | SPS Commerce, TrueCommerce, Cleo Integration Cloud, OpenText B2B, EDI 810/850/856/820/997 native support | Same card style, emerald accent icons |
| Banking & Communication | Plaid (bank feeds), QuickBooks, Xero, Gmail, Outlook, Slack, Salesforce CRM | Same card style |

Each integration item: `flex items-center gap-3` with emerald-tinted icon and white text.

#### Data Flow Diagram (below grid)
Horizontal flow: "Your ERP -> Singoa AI Engine -> Invoices + Collections + EDI + Forecasts -> Back to ERP"
4 nodes connected by animated dashed lines. Each node is a rounded pill with icon.
Animation: Dashes flow left-to-right using CSS `animation: dash 2s linear infinite` on SVG stroke-dasharray.

#### Bottom Note
"Don't see your ERP or EDI provider? We add new integrations monthly." — `text-white/50 text-sm`

#### Framer Motion
Category cards: staggered `whileInView` with `delay: i * 0.15`

---

### Section 7: COMPLIANCE — "EDI Standards, Audit Trails, SOX Ready"
- Layout: Light section. 2-column — left: compliance checklist, right: compliance status mockup.
- Background: `bg-gradient-to-b from-[#F0FDF4] to-white`
- This section is UNIQUE to manufacturing — focuses on EDI compliance, audit trails, and SOX readiness (not bonding/liens like construction, not HIPAA like healthcare)

#### Left Column — Compliance Checklist
h2: "EDI Compliance, Audit Trails, and SOX — Handled"
Subtext: "Manufacturing AR compliance isn't optional when your trading partners are Walmart, Home Depot, and Amazon."

Checklist items (each with emerald check icon):
1. "EDI 810/850/856/820/997 — full transaction set support with pre-send validation"
2. "Trading partner compliance scoring — track error rates and chargeback risk per partner"
3. "3-way match audit trail — PO, GRN, and invoice reconciliation logged immutably"
4. "SOX-ready controls — segregation of duties, approval workflows, change logs"
5. "Deduction audit trail — every dispute action, document, and resolution timestamped"
6. "Payment matching audit — immutable log of every auto-match decision with confidence score"

Each item: `flex items-start gap-3 py-3`. Check icon in `text-emerald-500`. Text in `text-[#596780] text-sm`.

#### Right Column — Compliance Status Mockup
Small dark dashboard showing:
- "Compliance Score: 97/100" with circular progress ring (emerald)
- 4 mini status rows:
  - "EDI Compliance: 97.2% (green)"
  - "Audit Trail: Complete (green)"
  - "SOX Controls: Active (green)"
  - "Chargeback Risk: Low — 2 pending (amber)"
- Style: Same `bg-[#0B0F1A] rounded-2xl border border-white/10` pattern as hero mockup but smaller

#### Framer Motion
Left: `initial={{ opacity: 0, x: -30 }} whileInView={{ opacity: 1, x: 0 }}`
Right: `initial={{ opacity: 0, x: 30 }} whileInView={{ opacity: 1, x: 0 }}`

---

### Section 8: FAQ — 10 Manufacturing-Specific Questions
- Layout: Centered accordion, max-width 3xl
- Background: `bg-white`
- Each item: `bg-[#F0FDF4] rounded-xl border border-[#BBF7D0]` with emerald chevron

#### 10 FAQ Items

1. **"How does Singoa handle high-volume manufacturing invoicing (2,000+ invoices/month)?"**
   Singoa processes thousands of invoices automatically. It syncs with your ERP to generate invoices from shipped orders, validates PO matching (2-way and 3-way match against PO and GRN), and sends EDI 810 compliant invoices to trading partners. Manual processing costs $10-15 per invoice vs $2-4 automated (IOFM 2024). Partial shipments, back orders, and credit memos are handled natively.

2. **"How does deduction management work for manufacturing chargebacks?"**
   Singoa auto-categorizes deductions by root cause — pricing disputes, freight claims, quality returns, shortage claims, promotional allowances, and EDI chargebacks. It pulls supporting documents from your ERP, shipping system, and email automatically. Manual recovery captures 40-50% of invalid deductions; Singoa's automated workflows recover 75-90% (HighRadius 2023). Average resolution time drops from 30-45 days to 10-15 days.

3. **"Which manufacturing ERPs does Singoa integrate with?"**
   SAP S/4HANA, Oracle NetSuite, Epicor Kinetic, Infor CloudSuite Industrial (SyteLine), SYSPRO, Microsoft Dynamics 365 F&O, Sage X3/Intacct. Banking via Plaid. EDI via SPS Commerce and TrueCommerce. Communication via Gmail, Outlook, Slack. All API-based — Singoa layers on top of your ERP, no rip-and-replace required.

4. **"Does Singoa support EDI 810, 850, 856, and 820 transactions?"**
   Yes. Singoa handles the full EDI transaction lifecycle natively: EDI 850 (purchase orders), EDI 856 (advance ship notices/ASN), EDI 810 (invoices), EDI 820 (payment remittance), and EDI 997 (functional acknowledgments). Pre-send validation catches format errors before they trigger chargebacks. 78% of large retailers require EDI compliance — non-compliance chargebacks average $50-$200 per violation (SPS Commerce 2024).

5. **"How does AI payment matching work with multiple payment channels?"**
   The average manufacturer receives payments via 5-7 channels — check, ACH, wire, credit card, EDI 820, and portal payments (NACHA/AFP 2024). Singoa's AI matches payments to invoices across all channels, handling short-pays, overpayments, and partial payments. Manual first-pass match rate is 50-60%; Singoa achieves 90%+ straight-through processing (HighRadius 2024). Unmatched items are routed to your team with AI-suggested matches.

6. **"What is the typical DSO reduction for manufacturers using AR automation?"**
   Manufacturing median DSO is 51 days, with bottom quartile at 65-80 days and top quartile at 30-38 days (APQC 2024). Singoa targets 20-30% DSO reduction through automated invoicing (faster delivery), AI-timed collection reminders (based on each customer's payment patterns), and predictive payment forecasting. For a $100M manufacturer, reducing DSO by 15 days frees approximately $4.1M in working capital.

7. **"How does Singoa handle trade credit, volume discounts, and early payment terms?"**
   Singoa tracks customer credit limits in real-time, monitors utilization, and flags accounts approaching their ceiling. It manages complex pricing tiers (the average manufacturer has 15-25 per major customer — APQC 2024), volume rebate programs, and early payment discount tracking (e.g., 2/10 Net 30). AI credit scoring (0-100, A+ through F) replaces gut-feel credit decisions with data-driven assessments.

8. **"How is Singoa different from HighRadius or Billtrust for mid-market manufacturers?"**
   HighRadius targets enterprise ($500M+) with 6-12 month implementations and $100K-$500K+ annual costs. Billtrust focuses on e-invoicing networks. Singoa is purpose-built for mid-market manufacturers ($50M-$500M) with: 60-day implementation, transparent mid-market pricing, the same AI-powered cash application and deduction management, plus native EDI support and deep ERP integration — at a fraction of the enterprise cost.

9. **"What percentage of AR processes are automated in manufacturing today?"**
   Only 28% of AR processes are fully automated in the average organization, and 41% of AR leaders say their ERP data is unreliable for automation (Versapay/PYMNTS 2024). Yet 72% of manufacturers plan AR automation investment in the next 2 years (Deloitte CFO Survey 2024). Singoa bridges this gap by normalizing data from any ERP and automating the full order-to-cash cycle without requiring a data cleanup project first.

10. **"What does implementation look like? How long to go live?"**
    Connect your ERP and banking in 15 minutes via API. Singoa's AI scans your existing invoices, customers, and payment history within 24 hours. EDI trading partner setup takes 1-2 weeks depending on partner count. Most teams are fully operational within 60 days. No data migration required — Singoa syncs alongside your existing systems. Pre-built manufacturing templates accelerate onboarding.

#### Framer Motion
Each accordion item: `initial={{ opacity: 0, y: 10 }} whileInView={{ opacity: 1, y: 0 }} transition={{ delay: i * 0.05 }}`

---

### Section 9: FINAL CTA — "Schedule Your AR Assessment"
- Layout: Full-width dark section with centered content + contact form
- Background: Dark gradient matching hero `linear-gradient(135deg, #050810 0%, #0B0F1A 50%, #0a1a15 100%)` with emerald blur orbs

#### Header
- h2: "Your Cash Flow Deserves Better Than Spreadsheets. **Schedule Your AR Assessment.**" — white, "Schedule Your AR Assessment" in emerald gradient
- Subtext: "See how much cash is trapped in your receivables — and how fast Singoa can free it." — `text-white/70`

#### Contact Form
Same form structure — name, email, company, phone, ERP dropdown (SAP, Oracle, Epicor, Infor, SYSPRO, Dynamics, Sage, Other), message, submit button.
- Submit button text: "Schedule Your AR Assessment"
- Button style: emerald gradient `linear-gradient(135deg, #10B981, #059669)`
- `trackEvent('industry_contact_form_submit', { industry: 'Manufacturing' })`
- Success state: emerald check + "We'll be in touch within 24 hours to discuss your manufacturing AR needs."

#### Contact Alternatives (3 cards below form)
- Email: shivam@singoa.com
- Phone: +1 (778) 885-9155
- Calendar: cal.com/shivam-bindal-botvux — "Book a Call"

#### Trust Badges (below contact cards)
"SOX Compliant" | "EDI 810/850/856" | "Bank-Level Security" | "14-Day Free Trial"

#### Framer Motion
Form container: `initial={{ opacity: 0, y: 30 }} whileInView={{ opacity: 1, y: 0 }}`

---

## D) ABOVE-THE-FOLD CONVERSION CHECKLIST

Within 2 seconds of landing, the visitor must understand:

| Requirement | How It's Met |
|-------------|-------------|
| What this product does | Headline: "55% of B2B Invoices Are Paid Late" + dashboard showing invoice aging, deductions, EDI status = AR automation for manufacturing |
| Who it's for | Manufacturing-specific language (EDI 810/850/856, deductions, chargebacks, PO matching, net terms) + trust bar (SAP, Oracle, Epicor, SYSPRO) |
| Why they should care | Pain stat "55%" + animated counters "51-day DSO" + "1-3% revenue lost to deductions" + "90%+ auto-match rate" |
| What to do next | Primary CTA: "Schedule Your AR Assessment" in emerald gradient, high contrast |
| Product solves their problem | Dashboard mockup shows invoice aging by customer, deduction tracker with root causes, EDI compliance status, payment prediction curve |
| Trust signals visible | Integration logos (SAP, Oracle, Epicor) + "EDI 810/850/856" + "SOC 2" badges below CTAs |

Anti-bounce elements:
- Dashboard mockup animates metric counters, aging bars, and table rows one-by-one (creates movement, holds attention)
- "AI Investigating" status pulses on deduction row (shows intelligence, not just a spreadsheet)
- Payment prediction line draws progressively (demonstrates forecasting capability)
- EDI compliance rate counter ticks up to 97.2% (proves technical depth)
- No stock photography, no generic illustrations — only product UI

---

## E) DIFFERENTIATION FROM OTHER INDUSTRY PAGES

| Element | Manufacturing Page | Other Pages |
|---------|-------------------|-------------|
| Hero mockup | 4-panel AR dashboard: invoice aging heatmap, deduction tracker, EDI status, payment prediction | Each industry has unique dashboard (construction: pay app tracker, healthcare: claim denials, SaaS: subscription recovery) |
| Section 2 layout | 4 stat cards with sourced data (late payments, deductions, EDI gap, credit risk) | Construction uses 4 cards too but different stats; healthcare uses denial-focused cards |
| Section 3 layout | Before/After split-screen with invoice-to-cash timeline steps | Construction uses pay-app-focused timeline; SaaS uses subscription recovery timeline |
| Section 4 layout | 4-tab product explorer: Invoice Automation, Deduction Management, EDI Integration, Credit Intelligence | Construction tabs: Pay Apps, Retainage, Liens, Change Orders. Each industry has completely different tab content. |
| Section 7 | EDI compliance + SOX + audit trail section — UNIQUE to manufacturing | Construction has bonding/certified payroll; healthcare has HIPAA; legal has ABA ethics |
| Color palette | Emerald #10B981 / Green #059669 — industrial/operational association | Each industry has distinct palette per RALPH_INDUSTRY_PROMPT_V2 |
| Terminology | EDI 810/850/856/820/997, deductions, chargebacks, PO matching, 3-way match, ASN, GRN, net terms, short pay | Each page uses its own industry jargon exclusively |
| CTA language | "Schedule Your AR Assessment" | Construction: "Construction AR Assessment"; Healthcare: "Revenue Cycle Assessment"; SaaS: "See Your Recovery Rate" |
| Problem framing | Late payments + deductions + EDI compliance + credit risk (4 manufacturing-specific pillars) | Each page has different pain points from its own research |
| ROI framing | DSO reduction + deduction recovery + cash application STP rate + invoice processing cost savings | Construction: DSO + billing hours + retainage recovery. Each industry frames ROI around its primary financial pain. |

---

## F) CTA STRATEGY

### CTA Placement Map (9 appearances across page)

| Location | CTA Text | Type | Analytics Event |
|----------|----------|------|----------------|
| Hero (primary) | "Schedule Your AR Assessment" | Emerald gradient button | `hero_assessment` |
| Hero (secondary) | "See the Dashboard in Action" | Outlined button | `hero_dashboard` |
| Section 3 bottom | "See How Singoa Automates Manufacturing AR" | Text link with arrow | `beforeafter_cta` |
| Section 4 (each tab) | "Try This Feature" | Small emerald button | `product_tab_{tabname}` |
| Section 5 (ROI table) | "Get Your Custom ROI Estimate" | Emerald gradient button | `roi_estimate` |
| Section 6 bottom | "Check Your ERP Integration" | Text link | `integration_check` |
| Section 8 (after FAQ) | "Still Have Questions? Talk to a Specialist" | Outlined button | `faq_specialist` |
| Section 9 (form submit) | "Schedule Your AR Assessment" | Full-width emerald button | `contact_form_submit` |
| Section 9 (calendar) | "Book a Call" | Card link | `book_call` |

### CTA Hierarchy Logic
1. Hero: Capture assessment-seekers (primary) and visual learners who want to see the product (secondary)
2. After Before/After: Visitor now understands the manual vs automated contrast — nudge toward product exploration
3. Product tabs: Low-friction micro-CTAs keep engagement within the page
4. ROI table: Lead capture embedded in the value demonstration — numbers-driven buyers convert here
5. After FAQ: Catch visitors who scrolled past everything but still have objections
6. Final section: Full commitment CTA with form — visitor has seen the complete story

---

## G) COLOR SCHEME & VISUAL LANGUAGE

### Primary Palette
| Token | Hex | Usage |
|-------|-----|-------|
| Primary | #10B981 | CTAs, active states, accent highlights, counter values, positive metrics |
| Secondary | #059669 | Gradient endpoints, hover states, deeper accents |
| Accent | #047857 | Text accents, icon tints, secondary highlights |
| Light | #F0FDF4 | Light section backgrounds, card fills, FAQ backgrounds |
| Light Border | #BBF7D0 | Card borders, dividers, input focus rings |
| Lighter Border | #D1FAE5 | Subtle card borders, hover states |

### Dark Theme (hero, integrations, product showcase, CTA sections)
| Token | Hex | Usage |
|-------|-----|-------|
| Background | #0B0F1A | Dashboard mockup backgrounds, dark sections |
| Surface | #050810 | Section background gradient start |
| Surface Warm | #0a1a15 | Gradient midpoints (green-tinted dark) |
| Border | white/10 | Card borders, dividers |
| Text Primary | white | Headlines, values |
| Text Secondary | white/70-80 | Body text, descriptions |
| Text Muted | white/50 | Labels, badges, trust bar |

### Status Colors (used in dashboard mockups)
| Status | Color | Tailwind Class |
|--------|-------|---------------|
| Matched / Paid / Current | #10B981 | `text-emerald-500` |
| Auto-Processing / AI Active | #10B981 | `text-emerald-400` + pulsing dot |
| Pending / Warning | #F59E0B | `text-amber-400` |
| Submitted / In Progress | #60A5FA | `text-blue-400` |
| Overdue / Failed / Invalid | #EF4444 | `text-red-400` |

### Typography
- Headlines: Inter (or system sans-serif), bold, `lg:text-[40-48px]`
- Body: Inter, regular, `lg:text-[16-20px]`
- Data/financial values: `font-mono` for tabular alignment in dashboard mockups
- Stat values: Bold, emerald gradient `bg-clip-text text-transparent`

### Spacing & Layout
- Container: `container mx-auto px-3` (consistent with existing pages)
- Section padding: `lg:py-24 py-16`
- Card border radius: `rounded-2xl` (16px)
- Button border radius: `rounded-[90px]` for primary CTAs, `rounded-xl` for secondary
- Max content width: `max-w-4xl` for text, `max-w-6xl` for grids

### Animation Patterns (Framer Motion)
All animations use `viewport={{ once: true }}` to fire only once on scroll.

| Pattern | Props | Usage |
|---------|-------|-------|
| Fade up | `initial={{ opacity: 0, y: 20-30 }} whileInView={{ opacity: 1, y: 0 }}` | Section headers, cards |
| Slide left | `initial={{ opacity: 0, x: -30 }} whileInView={{ opacity: 1, x: 0 }}` | Before panel, left columns |
| Slide right | `initial={{ opacity: 0, x: 30 }} whileInView={{ opacity: 1, x: 0 }}` | After panel, right columns |
| Stagger children | `transition={{ delay: index * 0.1-0.15 }}` | Card grids, table rows |
| Counter | `useInView` + `requestAnimationFrame` counting from 0 to target | Metric cards, hero stats |
| Pulse | `animate={{ opacity: [1, 0.4, 1] }} transition={{ duration: 1.5, repeat: Infinity }}` | "AI Investigating" status, credit hold badges |
| Progress bar | `initial={{ width: 0 }} animate={{ width: 'X%' }}` | Aging bars, compliance gauges |
| Tab swap | `AnimatePresence mode="wait"` with fade up/down | Product showcase tabs |
| Line draw | SVG `stroke-dashoffset` animation | Payment prediction chart |

---

## H) STAT CITATION INDEX

Every statistic used on this page with its source, for verification:

| Stat | Value | Source | Section Used |
|------|-------|--------|-------------|
| B2B invoices paid late | 55% globally | Atradius Payment Practices Barometer 2024 | Hero, Problem |
| B2B invoices overdue (US) | 47% with avg 10-day delay | Atradius Payment Practices Barometer Americas 2024 | Problem |
| Manufacturing median DSO | 51 days | APQC Open Standards Benchmarking 2024 | Hero, ROI, FAQ |
| Manufacturing top-quartile DSO | 30-38 days | APQC Open Standards Benchmarking 2024 | ROI, FAQ |
| Manufacturing bottom-quartile DSO | 65-80 days | APQC Open Standards Benchmarking 2024 | FAQ |
| Deduction loss (% of gross revenue) | 1-3% annually | HighRadius Deduction Management Report 2023 | Hero, Problem, Tab 2 |
| Deduction recovery rate (manual) | 40-50% | HighRadius Deduction Management Report 2023 | Tab 2, FAQ |
| Deduction recovery rate (automated) | 75-90% | HighRadius Deduction Management Report 2023 | ROI, Tab 2, FAQ |
| Deduction resolution time (manual) | 30-45 days | Credit Research Foundation 2024 | FAQ |
| Deduction resolution time (automated) | 10-15 days | HighRadius / Billtrust benchmarks | FAQ |
| Deduction as top AR activity | 73% of manufacturers | Credit Research Foundation Survey 2023 | Tab 2 |
| EDI requirement from large buyers | 78% require EDI 810 | SPS Commerce EDI Benchmark Report 2024 | Problem, Tab 3, FAQ |
| EDI mid-market adoption | 45-55% | TrueCommerce State of EDI Report 2024 | Problem |
| EDI chargeback cost | $50-$200 per violation | SPS Commerce / TrueCommerce industry data | Tab 3, FAQ |
| EDI error reduction | 65% fewer invoice errors | GS1 US Supply Chain Standards Report 2023 | Tab 3 |
| Manual cash application match rate | 50-60% first pass | HighRadius Cash Application Benchmark 2024 | Hero, Before/After, FAQ |
| AI cash application match rate | 90%+ STP | HighRadius Autonomous Receivables Report 2024 | Hero, ROI, FAQ |
| Payment channels per manufacturer | 5-7 different channels | NACHA / AFP Payments Survey 2024 | FAQ |
| Manual payment application time | 3-5 days | APQC AR Benchmarking 2024 | ROI |
| ERP data unreliable for automation | 41% of AR leaders | PYMNTS/Versapay "Dirty Data" Report 2024 | Before/After, FAQ |
| AR processes fully automated | Only 28% | Versapay/PYMNTS AR Automation Study 2024 | Before/After, FAQ |
| Manufacturing bankruptcies | Up 40% YoY in 2024 | S&P Global Market Intelligence 2024 | Problem, Tab 4 |
| B2B receivables written off | 8% of total value | Atradius Payment Practices Barometer 2024 | Problem |
| Cash flow as top concern | 67% of manufacturers | NAM Outlook Survey Q4 2024 | Context |
| Working capital in receivables | 18-22% of annual revenue | Hackett Group Working Capital Survey 2024 | Tab 4 |
| Invoice processing cost (manual) | $10-15 per invoice | IOFM 2024 | Tab 1, ROI, FAQ |
| Invoice processing cost (automated) | $2-4 per invoice | IOFM 2024 | Tab 1, ROI |
| Pricing tiers per customer | 15-25 different tiers | APQC Supply Chain Benchmarking 2024 | FAQ |
| Early pay discount offered | 62% of manufacturers | APQC Accounts Receivable Benchmarking 2024 | FAQ |
| Manufacturers planning AR investment | 72% in next 2 years | Deloitte CFO Survey Q3 2024 | FAQ |
| Late payments cost (US) | $3 trillion in delayed cash flow | Dun & Bradstreet 2024 | Context |
| AR automation market size | $3.8B (2024) | MarketsandMarkets AR Automation Report 2024 | Context |
| Manufacturing share of AR spend | 22-26% of total | Mordor Intelligence AR Market Report 2024 | Context |

---

*End of design specification. This document drives the Step 4 implementation — every section, mockup, stat, and animation pattern is defined here. No creative decisions should be made during coding that are not covered above.*
