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

Open in your IDE?
  1. {% include '@Application/inc/central_header.html.twig' %}
  2. {% include '@HoneybeeWeb/pages/inc/pp_style.html.twig' %}
  3. {# WEB-2 §23 — /honeycore/bms. Focus on outcomes (HVAC/pumps/chillers/lighting/sensors/
  4.    energy/alarms/visibility/integration); the data-point mathematics lives LOWER DOWN.
  5.    ONE primary CTA (§28): Request BMS Assessment. #}
  6. {% set p = prices %}
  7. <div class="pp-wrap">
  8.     <div class="pp-hero">
  9.         <span class="kicker">HoneyCore BMS</span>
  10.         <h1>Building intelligence without enterprise software complexity.</h1>
  11.         <p class="sub">HVAC, pumps, chillers, lighting, sensors, energy and alarms in one view —
  12.             installed on industrial hardware you own, priced from €{{ p.bms.essential }}/month,
  13.             without the enterprise-BMS procurement saga.</p>
  14.         <a class="pp-cta" href="#request">Request BMS Assessment</a>
  15.     </div>
  16.     <div class="pp-sec">
  17.         <h2>What it takes over</h2>
  18.         <div class="pp-grid c3">
  19.             <div class="pp-card"><h3>Comfort systems</h3><ul>
  20.                 <li>HVAC scheduling &amp; setpoints</li><li>Chillers &amp; pumps</li><li>Lighting control</li></ul></div>
  21.             <div class="pp-card"><h3>Watchkeeping</h3><ul>
  22.                 <li>Sensors &amp; environmental monitoring</li><li>Alarms with escalation</li><li>Equipment runtime &amp; faults</li></ul></div>
  23.             <div class="pp-card"><h3>Energy &amp; integration</h3><ul>
  24.                 <li>Building energy metering</li><li>Open protocols — no vendor lock-in</li><li>Feeds HoneyCore EMS &amp; HoneyBee ERP</li></ul></div>
  25.         </div>
  26.     </div>
  27.     <div class="pp-sec">
  28.         <h2>Why facility teams pick it</h2>
  29.         <div class="pp-grid c3">
  30.             <div class="pp-card"><h3>Visibility first</h3><p>Every floor, plant room and panel in
  31.                 one live view — before automation, you finally see the building.</p></div>
  32.             <div class="pp-card"><h3>Your hardware, your data</h3><p>Runs on HoneyCore 4.0 on site.
  33.                 No cloud dependency for control, no data hostage situation.</p></div>
  34.             <div class="pp-card"><h3>Grows point by point</h3><p>Start with one plant room. Add
  35.                 floors and systems as points — the price follows the points, not a licence tier
  36.                 negotiation.</p></div>
  37.         </div>
  38.     </div>
  39.     <div class="pp-sec">
  40.         <h2>Pricing — per month, by billable data points</h2>
  41.         <div class="pp-grid c4">
  42.             <div class="pp-card"><span class="pp-chip">Essential</span>
  43.                 <div class="pp-price">€{{ p.bms.essential }}</div>
  44.                 <p style="margin-top:6px;">Up to {{ p.bms.points.essential }} points</p></div>
  45.             <div class="pp-card"><span class="pp-chip">Advanced</span>
  46.                 <div class="pp-price">€{{ p.bms.advanced }}</div>
  47.                 <p style="margin-top:6px;">Up to {{ p.bms.points.advanced|number_format(0, '.', ',') }} points</p></div>
  48.             <div class="pp-card"><span class="pp-chip">Professional</span>
  49.                 <div class="pp-price">€{{ p.bms.professional }}</div>
  50.                 <p style="margin-top:6px;">Up to {{ p.bms.points.professional|number_format(0, '.', ',') }} points</p></div>
  51.             <div class="pp-card"><span class="pp-chip">Enterprise</span>
  52.                 <div class="pp-price">from €{{ p.bms.enterprise_from }}</div>
  53.                 <p style="margin-top:6px;">Up to {{ p.bms.points.enterprise|number_format(0, '.', ',') }} points &amp; beyond</p></div>
  54.         </div>
  55.         <p class="pp-note">A billable point is a monitored or controlled I/O value — a temperature,
  56.             a valve position, a runtime counter. Hardware, engineering and commissioning quoted per building.</p>
  57.     </div>
  58.     <div class="pp-band" id="request">
  59.         <h2>Get a BMS assessment for your building.</h2>
  60.         <p>Building type, systems on site, rough point count — we map the tier and the effort.</p>
  61.     </div>
  62.     {% include '@HoneybeeWeb/pages/inc/intent_form.html.twig' with {
  63.         'intent': 'bms', 'cta': 'Request BMS Assessment',
  64.         'extras': [
  65.             {'name': 'project_type', 'label': 'Building type', 'options': ['Office', 'Factory', 'Retail / mall', 'Hospital / campus', 'Warehouse', 'Other']},
  66.             {'name': 'capacity', 'label': 'Approx. data points (if known)'},
  67.             {'name': 'stage', 'label': 'Stage', 'options': ['Exploring', 'Replacing an old BMS', 'New building', 'Ready to deploy']}
  68.         ]
  69.     } only %}
  70. </div>
  71. {% include '@HoneybeeWeb/footer/central_footer.html.twig' %}