src/ApplicationBundle/Modules/HoneybeeWeb/Resources/views/pages/business_erp.html.twig line 1

Open in your IDE?
  1. {% include '@Application/inc/central_header.html.twig' %}
  2. {% include '@HoneybeeWeb/inc/_web_design_system.html.twig' %}
  3. {# ─── HONEYBEE — BUSINESS ERP PAGE (simple, non-technical, SME visitor) ───────── #}
  4. <style>
  5. /* Page-scoped grids only — all colours/typography reuse the global n-* system
  6.    (tokens + base classes are defined on the home/shared stylesheet). */
  7. .be-grid {
  8.     display: grid; grid-template-columns: repeat(2, 1fr);
  9.     gap: 1px; background: var(--n-border-md);
  10.     border: 1px solid var(--n-border-md); border-radius: var(--n-radius); overflow: hidden;
  11.     margin-top: 48px;
  12. }
  13. .be-card { background: var(--n-white); padding: 28px; transition: background .2s; }
  14. .be-card:hover { background: var(--n-cream); }
  15. .be-card h3 { font-family:'Montserrat',sans-serif; font-size: 16px; font-weight: 700; color: var(--n-dark); margin-bottom: 8px; }
  16. .be-card p  { font-size: 13.5px; color: var(--n-muted); line-height: 1.65; margin: 0; }
  17. .be-card .be-tag {
  18.     font-size: 11px; font-weight: 700; color: var(--n-amber); letter-spacing: .1em;
  19.     text-transform: uppercase; margin-bottom: 14px; display: block; font-family: monospace;
  20. }
  21. .be-who {
  22.     list-style: none; display: grid; grid-template-columns: repeat(2, 1fr);
  23.     gap: 12px 32px; margin-top: 40px;
  24. }
  25. .be-who li { font-size: 14.5px; color: var(--n-dark); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
  26. .be-who li::before { content: '→'; color: var(--n-amber); font-family: monospace; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
  27. .be-reassure {
  28.     background: var(--n-white); border: 1px solid var(--n-border-md);
  29.     border-left: 3px solid var(--n-amber);
  30.     border-radius: var(--n-radius); padding: 28px 32px; margin-top: 40px;
  31.     font-size: 17px; line-height: 1.7; color: var(--n-dark);
  32. }
  33. .be-reassure strong { color: var(--n-amber); font-weight: 700; }
  34. .be-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
  35. .be-step {
  36.     background: var(--n-white); border: 1px solid var(--n-border);
  37.     border-radius: var(--n-radius); padding: 28px;
  38. }
  39. .be-step .be-step-num {
  40.     font-family: monospace; font-size: 12px; font-weight: 700; color: var(--n-amber);
  41.     letter-spacing: .1em; margin-bottom: 12px; display: block;
  42. }
  43. .be-step h3 { font-family:'Montserrat',sans-serif; font-size: 16px; font-weight: 700; color: var(--n-dark); margin-bottom: 8px; }
  44. .be-step p  { font-size: 13.5px; color: var(--n-muted); line-height: 1.65; margin: 0; }
  45. .be-examples { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
  46. .be-example {
  47.     background: var(--n-cream-2); border: 1px solid var(--n-border);
  48.     border-radius: var(--n-radius); padding: 24px 28px;
  49. }
  50. .be-example h4 { font-family:'Montserrat',sans-serif; font-size: 14.5px; font-weight: 700; color: var(--n-dark); margin-bottom: 6px; }
  51. .be-example p  { font-size: 13.5px; color: var(--n-muted); line-height: 1.65; margin: 0; }
  52. .be-research {
  53.     background: var(--n-dark); border-radius: var(--n-radius-lg);
  54.     padding: 48px 56px; margin-top: 48px; position: relative; overflow: hidden;
  55. }
  56. .be-research::before {
  57.     content: ''; position: absolute; top: -40%; right: -5%; width: 55%; height: 160%;
  58.     background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(192,125,42,.12) 0%, transparent 65%);
  59.     pointer-events: none;
  60. }
  61. .be-research .be-research-label {
  62.     display: inline-flex; align-items: center; gap: 8px; position: relative;
  63.     font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  64.     color: var(--n-amber); margin-bottom: 16px;
  65. }
  66. .be-research .be-research-label::before { content:''; width: 18px; height: 1.5px; background: currentColor; border-radius: 2px; }
  67. .be-research p {
  68.     position: relative; font-size: 18px; line-height: 1.7; color: rgba(255,255,255,.78);
  69.     max-width: 720px; margin: 0;
  70. }
  71. .be-research p em { font-style: normal; color: var(--n-amber); }
  72. @media (max-width: 1040px) {
  73.     .be-grid     { grid-template-columns: 1fr 1fr; }
  74.     .be-steps    { grid-template-columns: 1fr; }
  75.     .be-examples { grid-template-columns: 1fr; }
  76.     .be-research { padding: 36px 28px; }
  77. }
  78. @media (max-width: 720px) {
  79.     .be-grid { grid-template-columns: 1fr; }
  80.     .be-who  { grid-template-columns: 1fr; }
  81. }
  82. </style>
  83. {# ══ 1. HERO ══════════════════════════════════════════════════════════════════ #}
  84. <section class="n-hero" style="min-height:auto;padding:130px 0 72px">
  85.     <div class="n-wrap" style="width:100%">
  86.         <div style="max-width:720px">
  87.             <div class="n-label">Business ERP</div>
  88.             <h1 class="n-hero-h1">Business ERP for <em>growing companies.</em></h1>
  89.             <p class="n-hero-desc" style="max-width:620px">
  90.                 HR, accounts, finance, inventory, SCM, CRM, sales, purchase, approvals, mobile
  91.                 operations, and reporting — configurable for your business and customizable when needed.
  92.             </p>
  93.             <div class="n-hero-actions">
  94.                 <a href="{{ url('honeybee_contact') }}" class="n-btn n-btn-primary">
  95.                     Get Business ERP Quote <i class="fa-solid fa-arrow-right"></i>
  96.                 </a>
  97.                 <a href="{{ url('honeybee_pricing') }}" class="n-btn n-btn-outline">
  98.                     See pricing
  99.                 </a>
  100.             </div>
  101.             <div class="n-micro-checks" style="margin-bottom:0">
  102.                 <span><i class="fa-solid fa-check"></i> Start from €7.99/user/month</span>
  103.                 <span><i class="fa-solid fa-check"></i> EUR pricing · EU data residency</span>
  104.                 <span><i class="fa-solid fa-check"></i> Start small, expand when ready</span>
  105.             </div>
  106.         </div>
  107.     </div>
  108. </section>
  109. {# ══ 2. REASSURANCE ═══════════════════════════════════════════════════════════ #}
  110. <section class="n-sec-sm">
  111.     <div class="n-wrap-sm">
  112.         <div class="be-reassure">
  113.             <strong>Not an EPC or energy company?</strong> HoneyBee can still support your daily
  114.             business operations — the same modules that run large projects also run everyday trading,
  115.             distribution, and service businesses.
  116.         </div>
  117.     </div>
  118. </section>
  119. {# ══ 3. WHO IT'S FOR ══════════════════════════════════════════════════════════ #}
  120. <section class="n-sec-sm">
  121.     <div class="n-wrap">
  122.         <div class="n-label">Who it's for</div>
  123.         <h2 class="n-h2">Built for everyday <em class="n-em">business operations.</em></h2>
  124.         <p class="n-body n-mt-4" style="max-width:600px">
  125.             If you run a company that buys, sells, stores, serves, or manages people and money,
  126.             HoneyBee fits your day-to-day work.
  127.         </p>
  128.         <ul class="be-who">
  129.             <li>Trading and wholesale businesses</li>
  130.             <li>Distribution and logistics companies</li>
  131.             <li>Service and professional firms</li>
  132.             <li>Import and export businesses</li>
  133.             <li>Multi-branch and multi-location companies</li>
  134.             <li>Manufacturing-support and assembly operations</li>
  135.             <li>General SMEs that have outgrown spreadsheets</li>
  136.             <li>Companies that need custom workflows</li>
  137.         </ul>
  138.     </div>
  139. </section>
  140. {# ══ 4. CORE MODULES ══════════════════════════════════════════════════════════ #}
  141. <section class="n-sec-sm">
  142.     <div class="n-wrap">
  143.         <div class="n-label">Core modules</div>
  144.         <h2 class="n-h2">Everything your business runs on, <em class="n-em">in one place.</em></h2>
  145.         <div class="be-grid">
  146.             <div class="be-card">
  147.                 <span class="be-tag">01</span>
  148.                 <h3>HR &amp; Payroll</h3>
  149.                 <p>Employees, attendance, leave, and salary handled in one connected place.</p>
  150.             </div>
  151.             <div class="be-card">
  152.                 <span class="be-tag">02</span>
  153.                 <h3>Accounts &amp; Finance</h3>
  154.                 <p>Bookkeeping, invoices, payments, and clear financial statements you can trust.</p>
  155.             </div>
  156.             <div class="be-card">
  157.                 <span class="be-tag">03</span>
  158.                 <h3>Inventory &amp; SCM</h3>
  159.                 <p>Track stock across warehouses and keep your supply chain moving smoothly.</p>
  160.             </div>
  161.             <div class="be-card">
  162.                 <span class="be-tag">04</span>
  163.                 <h3>Sales &amp; CRM</h3>
  164.                 <p>Manage leads, customers, quotations, and sales from first contact to repeat orders.</p>
  165.             </div>
  166.             <div class="be-card">
  167.                 <span class="be-tag">05</span>
  168.                 <h3>Purchase</h3>
  169.                 <p>Raise purchase orders, receive goods, and keep supplier bills under control.</p>
  170.             </div>
  171.             <div class="be-card">
  172.                 <span class="be-tag">06</span>
  173.                 <h3>Approvals &amp; Documents</h3>
  174.                 <p>Route requests for sign-off and keep every important document in one safe place.</p>
  175.             </div>
  176.             <div class="be-card">
  177.                 <span class="be-tag">07</span>
  178.                 <h3>Reports &amp; AI</h3>
  179.                 <p>Live dashboards plus AI that answers questions and writes reports for you.</p>
  180.             </div>
  181.             <div class="be-card">
  182.                 <span class="be-tag">08</span>
  183.                 <h3>Mobile Operations</h3>
  184.                 <p>Approve, check stock, and stay updated from your phone, wherever you are.</p>
  185.             </div>
  186.         </div>
  187.     </div>
  188. </section>
  189. {# ══ 5. START MODULE BY MODULE ════════════════════════════════════════════════ #}
  190. <section class="n-sec-sm">
  191.     <div class="n-wrap">
  192.         <div class="n-label">Start small</div>
  193.         <h2 class="n-h2">Start module by module — <em class="n-em">expand when ready.</em></h2>
  194.         <p class="n-body n-mt-4" style="max-width:600px">
  195.             You don't have to switch everything on day one. Begin with the part of your business that
  196.             hurts most, get comfortable, then add the next module at your own pace.
  197.         </p>
  198.         <div class="be-steps">
  199.             <div class="be-step">
  200.                 <span class="be-step-num">STEP 1</span>
  201.                 <h3>Begin where it matters</h3>
  202.                 <p>Pick one module — often accounts, inventory, or sales — and get it running cleanly.</p>
  203.             </div>
  204.             <div class="be-step">
  205.                 <span class="be-step-num">STEP 2</span>
  206.                 <h3>Add the next piece</h3>
  207.                 <p>Bring in purchase, HR, or CRM once your team is comfortable with the first module.</p>
  208.             </div>
  209.             <div class="be-step">
  210.                 <span class="be-step-num">STEP 3</span>
  211.                 <h3>Connect the whole business</h3>
  212.                 <p>As modules join up, your data flows together and reporting becomes effortless.</p>
  213.             </div>
  214.         </div>
  215.         <h3 class="n-h3 n-mt-12" style="margin-bottom:4px">A couple of custom-workflow examples</h3>
  216.         <p class="n-body-sm" style="max-width:560px">
  217.             When your business does something a little differently, HoneyBee can be customized to match.
  218.         </p>
  219.         <div class="be-examples">
  220.             <div class="be-example">
  221.                 <h4>Multi-branch stock transfers</h4>
  222.                 <p>A distributor moves goods between branches with its own approval and tracking rules,
  223.                    so head office always sees real stock and who signed off.</p>
  224.             </div>
  225.             <div class="be-example">
  226.                 <h4>Service jobs to invoice</h4>
  227.                 <p>A service firm turns each job into a tracked task, then into an invoice — following the
  228.                    exact steps the team already uses, just without the paperwork.</p>
  229.             </div>
  230.         </div>
  231.     </div>
  232. </section>
  233. {# ══ 6. RESEARCH-BACKED SME LINE ══════════════════════════════════════════════ #}
  234. <section class="n-sec-sm">
  235.     <div class="n-wrap">
  236.         <div class="be-research">
  237.             <div class="be-research-label">Built on research</div>
  238.             <p>
  239.                 HoneyBee is shaped by applied research into <em>cost-efficient ERP adoption for SMEs</em>,
  240.                 focusing on affordability, modular rollout, process fit, and practical adoption.
  241.             </p>
  242.         </div>
  243.     </div>
  244. </section>
  245. {# ══ 7. CLOSING CTA ═══════════════════════════════════════════════════════════ #}
  246. <section class="n-cta-final">
  247.     <div class="n-wrap-sm">
  248.         <h2>Let's see if HoneyBee <em>fits your business.</em></h2>
  249.         <p>
  250.             Tell us how your company works today and we'll show you a simple starting setup —
  251.             no jargon, no pressure, just a clear path that grows with you.
  252.         </p>
  253.         <div class="n-hero-actions" style="justify-content:center">
  254.             <a href="{{ url('honeybee_contact') }}" class="n-btn n-btn-primary">
  255.                 Check Fit for My Business <i class="fa-solid fa-arrow-right"></i>
  256.             </a>
  257.             <a href="{{ url('honeybee_project_erp') }}" class="n-btn n-btn-outline">
  258.                 Run projects? See Project ERP
  259.             </a>
  260.         </div>
  261.         <p class="n-cta-note">Business ERP from €7.99/user/month · EUR pricing · EU data residency</p>
  262.     </div>
  263. </section>
  264. {% include '@HoneybeeWeb/footer/central_footer.html.twig' %}