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

Open in your IDE?
  1. {% include '@Application/inc/central_header.html.twig' %}
  2. <style>
  3. :root { --pol-amber:#C07D2A; --pol-dark:#1A1D2E; --pol-cream:#F7F5F0; --pol-muted:#6B6E7F; --pol-border:rgba(26,29,46,.09); }
  4. body.body-mask { background: var(--pol-cream) !important; }
  5. .pol-wrap { max-width: 820px; margin: 0 auto; padding: 64px 28px 100px; }
  6. .pol-title { font-family:'Montserrat',sans-serif; font-size:clamp(1.6rem,3vw,2.2rem); font-weight:700; color:var(--pol-dark); margin:0 0 6px; }
  7. .pol-meta  { font-family:'DM Sans',sans-serif; font-size:.85rem; color:var(--pol-muted); margin:0 0 40px; }
  8. .pol-section { margin-bottom: 36px; }
  9. .pol-section h3 { font-family:'DM Sans',sans-serif; font-size:1.05rem; font-weight:700; color:var(--pol-dark); margin:0 0 10px; display:flex; align-items:center; gap:10px; }
  10. .pol-section h3::before { content:''; display:block; width:3px; height:18px; background:var(--pol-amber); border-radius:2px; flex-shrink:0; }
  11. .pol-section p, .pol-section li { font-family:'DM Sans',sans-serif; font-size:.95rem; color:var(--pol-muted); line-height:1.75; text-align:left; }
  12. .pol-section ul { padding-left:20px; margin:8px 0 0; }
  13. .pol-section li { margin-bottom:6px; }
  14. .pol-divider { border:none; border-top:1px solid var(--pol-border); margin:40px 0; }
  15. .pol-contact { background:#fff; border:1px solid var(--pol-border); border-radius:12px; padding:24px 28px; font-family:'DM Sans',sans-serif; }
  16. .pol-contact p { color:var(--pol-muted); font-size:.9rem; margin:0 0 8px; text-align:left; }
  17. .pol-contact a { color:var(--pol-amber); text-decoration:none; font-weight:600; }
  18. .pol-contact a:hover { text-decoration:underline; }
  19. </style>
  20. <div class="pol-wrap">
  21.     <h1 class="pol-title">Refund Policy</h1>
  22.     <p class="pol-meta">Effective date: January 1, 2025 &nbsp;·&nbsp; HoneyBee Ecosystem</p>
  23.     <div class="pol-section">
  24.         <h3>Overview</h3>
  25.         <p>We want you to be fully satisfied with HoneyBee. This policy explains when and how refunds are issued for our subscription plans and professional services.</p>
  26.     </div>
  27.     <div class="pol-section">
  28.         <h3>Subscription Plans</h3>
  29.         <p>HoneyBee subscription fees are billed monthly or annually in advance. Refunds are handled as follows:</p>
  30.         <ul>
  31.             <li><strong>Monthly plans:</strong> No refunds are issued for partial months. You may cancel at any time and your access will continue until the end of the current billing period.</li>
  32.             <li><strong>Annual plans:</strong> If you cancel within 14 days of your initial purchase or annual renewal and have not actively used the platform (no invoices issued, no employees added), you are entitled to a full refund.</li>
  33.             <li><strong>After 14 days:</strong> Annual plan fees are non-refundable after 14 days from the billing date.</li>
  34.         </ul>
  35.     </div>
  36.     <div class="pol-section">
  37.         <h3>Professional Services &amp; Migration</h3>
  38.         <p>Fees paid for onboarding, data migration, or consultancy are non-refundable once the work has commenced. Unused pre-paid service hours may be credited to your account upon written request.</p>
  39.     </div>
  40.     <div class="pol-section">
  41.         <h3>Billing Errors</h3>
  42.         <p>If you believe you have been charged incorrectly, please contact us within 30 days of the charge. Verified billing errors will be corrected and refunded promptly.</p>
  43.     </div>
  44.     <div class="pol-section">
  45.         <h3>How to Request a Refund</h3>
  46.         <p>Submit your request by emailing our support team with your account details and reason for the refund. We aim to respond within 3 business days. Approved refunds are processed within 7–10 business days to the original payment method.</p>
  47.     </div>
  48.     <hr class="pol-divider">
  49.     <div class="pol-contact">
  50.         <p><strong style="color:var(--pol-dark)">Questions about this policy?</strong></p>
  51.         <p>Contact us at <a href="mailto:support@ourhoneybee.eu">support@ourhoneybee.eu</a> or through our <a href="{{ url('honeybee_contact') }}">contact page</a>.</p>
  52.     </div>
  53. </div>
  54. {% include '@HoneybeeWeb/footer/central_footer.html.twig' %}