src/ApplicationBundle/Modules/HoneybeeWeb/Resources/views/pages/experience.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 — EXPERIENCE & PROOF (credibility without overclaiming) ──────── #}
  4. <style>
  5. /* ── Design Tokens ─────────────────────────────────────────────────────────── */
  6. :root {
  7.     --n-cream:     #F7F5F0;
  8.     --n-cream-2:   #F0EDE5;
  9.     --n-cream-3:   #E8E3D9;
  10.     --n-white:     #FFFFFF;
  11.     --n-dark:      #1A1D2E;
  12.     --n-dark-2:    #252840;
  13.     --n-amber:     #C07D2A;
  14.     --n-amber-lt:  #D4954A;
  15.     --n-amber-dim: rgba(192,125,42,.10);
  16.     --n-sage:      #3D6B52;
  17.     --n-muted:     #6B6E7F;
  18.     --n-muted-2:   #9395A5;
  19.     --n-border:    rgba(26,29,46,.07);
  20.     --n-border-md: rgba(26,29,46,.12);
  21.     --n-shadow-sm: 0 2px 12px rgba(26,29,46,.07);
  22.     --n-shadow-md: 0 8px 32px rgba(26,29,46,.09);
  23.     --n-radius:    12px;
  24.     --n-radius-sm: 8px;
  25.     --n-radius-lg: 20px;
  26.     --n-font:      'DM Sans', 'Poppins', system-ui, sans-serif;
  27. }
  28. *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  29. body { background: var(--n-cream); font-family: var(--n-font); color: var(--n-dark); text-align: left; }
  30. a { text-decoration: none; }
  31. /* ── Navbar ──────────────────────────────────────────────────────────────────── */
  32. .navbar {
  33.     background: rgba(247,245,240,.96) !important;
  34.     backdrop-filter: blur(16px) saturate(180%);
  35.     border-bottom: 1px solid var(--n-border) !important;
  36.     box-shadow: none !important;
  37. }
  38. .navbar .nav-link        { color: var(--n-dark) !important; font-size: 13.5px; font-weight: 500; opacity: .8; }
  39. .navbar .nav-link:hover  { opacity: 1; color: var(--n-dark) !important; }
  40. .navbar .login-btn       { background: var(--n-dark) !important; color: #fff !important; border: none !important; border-radius: 8px !important; padding: 8px 20px !important; font-size: 13px !important; font-weight: 600 !important; }
  41. /* ── Utilities ─────────────────────────────────────────────────────────────── */
  42. .n-wrap    { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
  43. .n-sec     { padding: 88px 0; }
  44. .n-label   {
  45.     display: inline-flex; align-items: center; gap: 8px;
  46.     font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  47.     color: var(--n-amber); margin-bottom: 16px;
  48. }
  49. .n-label::before { content:''; width: 18px; height: 1.5px; background: currentColor; border-radius: 2px; }
  50. .n-h2      { font-family:'Montserrat',sans-serif; font-size: clamp(26px,3.5vw,42px); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; }
  51. .n-body    { font-size: 16px; line-height: 1.75; color: var(--n-muted); }
  52. .n-center  { text-align: center; }
  53. .n-center .n-label { justify-content: center; }
  54. .n-center .n-body  { max-width: 620px; margin: 0 auto; }
  55. /* ── Buttons ────────────────────────────────────────────────────────────────── */
  56. .n-btn {
  57.     display: inline-flex; align-items: center; gap: 8px;
  58.     padding: 13px 26px; border-radius: var(--n-radius-sm);
  59.     font-size: 14px; font-weight: 600; letter-spacing: .01em;
  60.     border: none; cursor: pointer; text-decoration: none; transition: all .18s;
  61.     white-space: nowrap; font-family: var(--n-font);
  62. }
  63. .n-btn-primary       { background: var(--n-dark);  color: #fff; }
  64. .n-btn-primary:hover { background: var(--n-dark-2); color: #fff; transform: translateY(-1px); box-shadow: var(--n-shadow-md); }
  65. .n-btn-light         { background: #fff; color: var(--n-dark); }
  66. .n-btn-light:hover   { background: var(--n-cream-2); color: var(--n-dark); }
  67. .n-btn-ghost-light       { background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.2); color: #fff; }
  68. .n-btn-ghost-light:hover { background: rgba(255,255,255,.2); color: #fff; }
  69. .n-btn-outline       { background: transparent; border: 1.5px solid var(--n-border-md); color: var(--n-dark); }
  70. .n-btn-outline:hover { border-color: var(--n-dark); color: var(--n-dark); transform: translateY(-1px); }
  71. /* ── Hero ──────────────────────────────────────────────────────────────────── */
  72. .n-hero {
  73.     background: var(--n-cream);
  74.     padding: 128px 0 72px;
  75.     position: relative; overflow: hidden;
  76. }
  77. .n-hero::before {
  78.     content: '';
  79.     position: absolute; top: 0; right: 0; width: 55%; height: 100%;
  80.     background: radial-gradient(ellipse 80% 70% at 80% 30%, rgba(192,125,42,.07) 0%, transparent 65%),
  81.                 radial-gradient(ellipse 50% 60% at 95% 80%, rgba(61,107,82,.06) 0%, transparent 60%);
  82.     pointer-events: none;
  83. }
  84. .n-hero::after {
  85.     content: '';
  86.     position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  87.     background: linear-gradient(90deg, transparent, var(--n-border-md), transparent);
  88. }
  89. .n-hero-inner { max-width: 880px; position: relative; }
  90. .n-hero-tag {
  91.     display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  92.     background: var(--n-amber-dim); border: 1px solid rgba(192,125,42,.2);
  93.     color: var(--n-amber); font-size: 11px; font-weight: 700;
  94.     letter-spacing: .16em; text-transform: uppercase;
  95.     padding: 6px 14px 6px 10px; border-radius: 4px; margin-bottom: 26px;
  96. }
  97. .n-hero-tag span:first-child { width: 6px; height: 6px; background: var(--n-amber); border-radius: 50%; display: block; flex-shrink: 0; }
  98. .n-hero-h1 {
  99.     font-family: 'Montserrat', sans-serif;
  100.     font-size: clamp(32px, 4.4vw, 52px);
  101.     font-weight: 900; line-height: 1.08; letter-spacing: -.025em;
  102.     color: var(--n-dark); margin-bottom: 22px;
  103. }
  104. .n-hero-h1 em { font-style: normal; color: var(--n-amber); }
  105. .n-hero-desc { font-size: 17px; line-height: 1.75; color: var(--n-muted); max-width: 640px; }
  106. /* ── Experience card grid ──────────────────────────────────────────────────── */
  107. .n-exp-grid {
  108.     display: grid; grid-template-columns: repeat(2, 1fr);
  109.     gap: 20px; margin-top: 48px;
  110. }
  111. .n-exp-card {
  112.     background: var(--n-white); border: 1px solid var(--n-border);
  113.     border-radius: var(--n-radius); padding: 30px;
  114.     transition: box-shadow .2s, border-color .2s, transform .2s;
  115.     display: flex; flex-direction: column;
  116. }
  117. .n-exp-card:hover { border-color: var(--n-border-md); box-shadow: var(--n-shadow-md); transform: translateY(-2px); }
  118. .n-exp-num {
  119.     font-family: monospace; font-size: 11px; font-weight: 700;
  120.     color: var(--n-amber); letter-spacing: .1em;
  121.     margin-bottom: 10px; display: block;
  122. }
  123. .n-exp-kind {
  124.     display: inline-block; align-self: flex-start;
  125.     font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  126.     color: var(--n-sage); background: rgba(61,107,82,.09);
  127.     border: 1px solid rgba(61,107,82,.18); border-radius: 4px;
  128.     padding: 3px 9px; margin-bottom: 14px; font-family: monospace;
  129. }
  130. .n-exp-card h3 {
  131.     font-family:'Montserrat',sans-serif; font-size: 17px; font-weight: 700;
  132.     color: var(--n-dark); line-height: 1.3; margin-bottom: 16px;
  133. }
  134. .n-exp-feats {
  135.     list-style: none; padding-top: 16px; border-top: 1px solid var(--n-border);
  136.     display: flex; flex-direction: column; gap: 9px;
  137. }
  138. .n-exp-feats li {
  139.     font-size: 13.5px; color: var(--n-dark); line-height: 1.5;
  140.     display: flex; align-items: flex-start; gap: 10px;
  141. }
  142. .n-exp-feats li::before { content: ''; width: 5px; height: 5px; background: var(--n-amber); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }
  143. /* ── Disclaimer ────────────────────────────────────────────────────────────── */
  144. .n-disclaimer {
  145.     margin-top: 40px; padding: 16px 20px;
  146.     background: var(--n-cream-2); border: 1px solid var(--n-border-md);
  147.     border-radius: var(--n-radius-sm);
  148.     font-size: 12.5px; color: var(--n-muted); line-height: 1.6;
  149.     display: flex; align-items: flex-start; gap: 10px;
  150. }
  151. .n-disclaimer i { color: var(--n-muted-2); margin-top: 2px; flex-shrink: 0; }
  152. /* ── CTA band ──────────────────────────────────────────────────────────────── */
  153. .n-cta-final {
  154.     background: var(--n-dark); padding: 96px 0; text-align: center;
  155.     position: relative; overflow: hidden;
  156. }
  157. .n-cta-final::before {
  158.     content: '';
  159.     position: absolute; top: -40%; right: -5%; width: 60%; height: 150%;
  160.     background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(192,125,42,.12) 0%, transparent 65%);
  161.     pointer-events: none;
  162. }
  163. .n-cta-final h2 { font-family:'Montserrat',sans-serif; font-size: clamp(26px,3.2vw,40px); font-weight: 900; color: #fff; margin-bottom: 14px; position: relative; }
  164. .n-cta-final p  { max-width: 56ch; margin: 0 auto 30px; color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.7; position: relative; }
  165. .n-cta-actions  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
  166. /* ── Responsive ────────────────────────────────────────────────────────────── */
  167. @media (max-width: 860px) {
  168.     .n-exp-grid { grid-template-columns: 1fr; }
  169. }
  170. </style>
  171. {# ══ HERO ═══════════════════════════════════════════════════════════════════ #}
  172. <section class="n-hero">
  173.     <div class="n-wrap">
  174.         <div class="n-hero-inner">
  175.             <div class="n-hero-tag">
  176.                 <span></span>
  177.                 <span>Experience &amp; Proof</span>
  178.             </div>
  179.             <h1 class="n-hero-h1">
  180.                 Built from real <em>project</em>, ERP, HoneyCore Edge+, energy-infrastructure, and SME digital-transformation experience.
  181.             </h1>
  182.             <p class="n-hero-desc">
  183.                 Experience with, field learning, deployment references, operational experience, and an applied research foundation — not inflated case studies.
  184.             </p>
  185.         </div>
  186.     </div>
  187. </section>
  188. {# ══ EXPERIENCE CARDS ═══════════════════════════════════════════════════════ #}
  189. <section class="n-sec">
  190.     <div class="n-wrap">
  191.         <div class="n-center">
  192.             <div class="n-label">Where HoneyBee Comes From</div>
  193.             <h2 class="n-h2">Real operational and field experience</h2>
  194.             <p class="n-body" style="margin-top:14px;">
  195.                 Each area below reflects experience with workflows, field learning, deployment references, operational experience, or an applied research foundation — described carefully, without overclaiming.
  196.             </p>
  197.         </div>
  198.         <div class="n-exp-grid">
  199.             {# 1 #}
  200.             <div class="n-exp-card">
  201.                 <span class="n-exp-num">01</span>
  202.                 <span class="n-exp-kind">Operational experience</span>
  203.                 <h3>RAACH SOLAR PROJECTS GmbH / Bangladesh operations</h3>
  204.                 <ul class="n-exp-feats">
  205.                     <li>Operational experience connected to solar EPC workflows</li>
  206.                     <li>Solar EPC workflow experience and international procurement</li>
  207.                     <li>Project execution and documentation handling</li>
  208.                     <li>Finance and reporting support</li>
  209.                     <li>Multi-country operational experience (Bangladesh is not the main market)</li>
  210.                 </ul>
  211.             </div>
  212.             {# 2 #}
  213.             <div class="n-exp-card">
  214.                 <span class="n-exp-num">02</span>
  215.                 <span class="n-exp-kind">ERP workflow learning</span>
  216.                 <h3>Super Star Group — ERP workflow reference</h3>
  217.                 <ul class="n-exp-feats">
  218.                     <li>Workflow consolidation across departments</li>
  219.                     <li>Quotation, costing, and project planning learning</li>
  220.                     <li>HR and documentation workflow reference</li>
  221.                     <li>Approval flows and operational visibility</li>
  222.                 </ul>
  223.             </div>
  224.             {# 3 #}
  225.             <div class="n-exp-card">
  226.                 <span class="n-exp-num">03</span>
  227.                 <span class="n-exp-kind">Field deployment</span>
  228.                 <h3>HoneyCore Edge+ field deployments</h3>
  229.                 <ul class="n-exp-feats">
  230.                     <li>Energy infrastructure, meters, and sensors</li>
  231.                     <li>Solar PV, generators, and industrial utilities</li>
  232.                     <li>O&amp;M and site-level reporting</li>
  233.                     <li>Digital-twin visibility at the site layer</li>
  234.                 </ul>
  235.             </div>
  236.             {# 4 #}
  237.             <div class="n-exp-card">
  238.                 <span class="n-exp-num">04</span>
  239.                 <span class="n-exp-kind">Project design experience</span>
  240.                 <h3>HoneyCore Edge+ project design experience</h3>
  241.                 <ul class="n-exp-feats">
  242.                     <li>Data point mapping and sensor/meter schedules</li>
  243.                     <li>Gateway planning and protocol mapping</li>
  244.                     <li>BoQ and quotation structure</li>
  245.                     <li>Commissioning checklist and O&amp;M handover</li>
  246.                 </ul>
  247.             </div>
  248.             {# 5 #}
  249.             <div class="n-exp-card">
  250.                 <span class="n-exp-num">05</span>
  251.                 <span class="n-exp-kind">Product &amp; market focus</span>
  252.                 <h3>Germany / EU product &amp; market focus</h3>
  253.                 <ul class="n-exp-feats">
  254.                     <li>European product development and energy-infrastructure R&amp;D</li>
  255.                     <li>NIS2-aware governance direction</li>
  256.                     <li>GDPR-aligned data handling</li>
  257.                     <li>DATEV-ready / GoBD-aligned roadmap where implemented</li>
  258.                     <li>Industrial cybersecurity and energy-transition relevance</li>
  259.                 </ul>
  260.             </div>
  261.             {# 6 #}
  262.             <div class="n-exp-card">
  263.                 <span class="n-exp-num">06</span>
  264.                 <span class="n-exp-kind">International SaaS base</span>
  265.                 <h3>Singapore international SaaS &amp; commercial base</h3>
  266.                 <ul class="n-exp-feats">
  267.                     <li>SaaS commercialization and Asia-Pacific coordination</li>
  268.                     <li>Multi-country operations</li>
  269.                     <li>Partner development</li>
  270.                     <li>Enterprise / private cloud potential</li>
  271.                 </ul>
  272.             </div>
  273.             {# 7 #}
  274.             <div class="n-exp-card">
  275.                 <span class="n-exp-num">07</span>
  276.                 <span class="n-exp-kind">Field learning</span>
  277.                 <h3>Agri-PV / Solar Irrigation</h3>
  278.                 <ul class="n-exp-feats">
  279.                     <li>Solar generation and soil / environmental data</li>
  280.                     <li>Irrigation monitoring and control</li>
  281.                     <li>Water-energy-food intelligence</li>
  282.                 </ul>
  283.             </div>
  284.             {# 8 #}
  285.             <div class="n-exp-card">
  286.                 <span class="n-exp-num">08</span>
  287.                 <span class="n-exp-kind">Field learning</span>
  288.                 <h3>C&amp;I Energy Projects</h3>
  289.                 <ul class="n-exp-feats">
  290.                     <li>Factory energy systems</li>
  291.                     <li>Solar, grid, generator, and load coordination</li>
  292.                     <li>Energy performance and carbon visibility</li>
  293.                     <li>Cost monitoring</li>
  294.                 </ul>
  295.             </div>
  296.             {# 9 #}
  297.             <div class="n-exp-card">
  298.                 <span class="n-exp-num">09</span>
  299.                 <span class="n-exp-kind">Operational experience</span>
  300.                 <h3>Remote Healthcare / Sustainability Infrastructure</h3>
  301.                 <ul class="n-exp-feats">
  302.                     <li>Energy, water, and cooling monitoring</li>
  303.                     <li>Cold-chain monitoring for critical infrastructure</li>
  304.                     <li>Monitoring for sustainability-focused deployments</li>
  305.                 </ul>
  306.             </div>
  307.             {# 10 #}
  308.             <div class="n-exp-card">
  309.                 <span class="n-exp-num">10</span>
  310.                 <span class="n-exp-kind">Applied research foundation</span>
  311.                 <h3>SME ERP Digital Transformation Research</h3>
  312.                 <ul class="n-exp-feats">
  313.                     <li>Applied research into enabling SME digital transformation</li>
  314.                     <li>Cost-efficient ERP and modular adoption</li>
  315.                     <li>Affordability and process fit</li>
  316.                     <li>AI-assisted workflows</li>
  317.                 </ul>
  318.             </div>
  319.         </div>
  320.         <div class="n-disclaimer">
  321.             <i class="fa-solid fa-circle-info"></i>
  322.             <span>HoneyBee is a software, AI, and HoneyCore Edge+ provider — not an EPC contractor or project developer. References describe operational and field experience, not verified case studies or endorsements.</span>
  323.         </div>
  324.     </div>
  325. </section>
  326. {# ══ CTA ════════════════════════════════════════════════════════════════════ #}
  327. <section class="n-cta-final">
  328.     <div class="n-wrap">
  329.         <h2>Let's discuss your company and partnership fit</h2>
  330.         <p>
  331.             Talk to us about HoneyBee's experience with project ERP, business ERP, HoneyCore Edge+ deployments, and SME digital transformation — and how it applies to your operations.
  332.         </p>
  333.         <div class="n-cta-actions">
  334.             <a href="{{ url('honeybee_contact') }}" class="n-btn n-btn-light">
  335.                 Request Company / Partnership Discussion <i class="fa-solid fa-arrow-right"></i>
  336.             </a>
  337.             <a href="{{ url('honeybee_trust') }}" class="n-btn n-btn-ghost-light">Trust &amp; Governance</a>
  338.             <a href="{{ url('honeybee_partners') }}" class="n-btn n-btn-ghost-light">Partners</a>
  339.         </div>
  340.     </div>
  341. </section>
  342. {% include '@HoneybeeWeb/footer/central_footer.html.twig' %}