{"id":17995,"date":"2025-09-17T14:52:35","date_gmt":"2025-09-17T14:52:35","guid":{"rendered":"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/?page_id=17995"},"modified":"2026-03-10T06:52:43","modified_gmt":"2026-03-10T06:52:43","slug":"pricing","status":"publish","type":"page","link":"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/pricing\/","title":{"rendered":"Pricing"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"17995\" class=\"elementor elementor-17995\">\n\t\t\t\t<div class=\"elementor-element elementor-element-72e6c5f e-flex e-con-boxed nextsaas-filter-effect-no nextsaas-custom-background-no nextsaas-custom-glowing-card-no nextsaas-sticky-no e-con e-parent\" data-id=\"72e6c5f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-88128cc nextsaas-filter-effect-no elementor-widget elementor-widget-nextsaas_badge\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.2\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"88128cc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"nextsaas_badge.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"nextsaas_badge_wrap\">\r\n\t\t\t<div class=\"inline-block\">\r\n\t\t\t\t<span class=\"badge badge-green mb-5 nextsaas-badge\">\r\n\t\t\t\t\tChoose Your Plan<\/span>\r\n\t\t\t\t<\/span>\r\n\t\t\t<\/div>\r\n\t\t<\/div>\r\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-4482fba elementor-widget__width-initial nextsaas-filter-effect-no elementor-widget elementor-widget-nextsaas-heading\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.1\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"4482fba\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"nextsaas-heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"nextsaas_heading_wrap nextsaas-element\">\r\n\t\t\t<h2\t\t\t\tclass=\"font-medium mb-4 nextsaas_heading  \"\r\n\t\t\t\tstyle=\"\"\r\n\t\t\t>\r\n\t\t\t\tAffordable Helpdesk Automation for <span class=\"text-primary-500 highlited-text\">Every Team<\/span>\t\t\t<\/h2>\r\n\t\t<\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-331ef53 e-con-full e-flex nextsaas-filter-effect-no nextsaas-custom-background-no nextsaas-custom-glowing-card-no nextsaas-sticky-no e-con e-child\" data-id=\"331ef53\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-28f327f nextsaas-filter-effect-no elementor-widget elementor-widget-nextsaas_pricing\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.3\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"28f327f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"nextsaas_pricing.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t      <script>\r\n        \/\/ Function to initialize price toggles\r\n        function initPriceToggles() {\r\n          const pricingWrappers = document.querySelectorAll('.nextsaas_pricing_wrapper[data-display=\"toggle\"]');\r\n\r\n          pricingWrappers.forEach(function(pricingWrapper) {\r\n            \/\/ Check which variation is currently active\r\n            const activeVariation = pricingWrapper.querySelector('[data-display=\"toggle-variation-1\"]') ? 'toggle-variation-1' :\r\n              pricingWrapper.querySelector('[data-display=\"toggle-variation-2\"]') ? 'toggle-variation-2' :\r\n              pricingWrapper.querySelector('[data-display=\"toggle-variation-3\"]') ? 'toggle-variation-3' : null;\r\n\r\n            if (!activeVariation) return;\r\n\r\n            \/\/ Handle Variation 1\r\n            if (activeVariation === 'toggle-variation-1') {\r\n              const toggle = pricingWrapper.querySelector('#priceCheck-v1');\r\n              const monthlyPrices = pricingWrapper.querySelectorAll('.nextsaas-price-monthly-v1');\r\n              const yearlyPrices = pricingWrapper.querySelectorAll('.nextsaas-price-yearly-v1');\r\n\r\n              \/\/ Initialize default state\r\n              monthlyPrices.forEach(price => price.style.display = 'block');\r\n              yearlyPrices.forEach(price => price.style.display = 'none');\r\n\r\n              if (toggle) {\r\n                \/\/ Remove existing event listeners to prevent duplicates\r\n                const newToggle = toggle.cloneNode(true);\r\n                toggle.parentNode.replaceChild(newToggle, toggle);\r\n\r\n                newToggle.addEventListener('change', function() {\r\n                  if (this.checked) {\r\n                    monthlyPrices.forEach(price => price.style.display = 'none');\r\n                    yearlyPrices.forEach(price => price.style.display = 'block');\r\n                  } else {\r\n                    monthlyPrices.forEach(price => price.style.display = 'block');\r\n                    yearlyPrices.forEach(price => price.style.display = 'none');\r\n                  }\r\n                });\r\n              }\r\n            }\r\n\r\n            \/\/ Handle Variation 2\r\n            if (activeVariation === 'toggle-variation-2') {\r\n              const toggle = pricingWrapper.querySelector('#priceCheck-v2');\r\n              const monthlyPrices = pricingWrapper.querySelectorAll('.nextsaas-price-monthly-v2');\r\n              const yearlyPrices = pricingWrapper.querySelectorAll('.nextsaas-price-yearly-v2');\r\n\r\n              \/\/ Initialize default state\r\n              monthlyPrices.forEach(price => price.style.display = 'block');\r\n              yearlyPrices.forEach(price => price.style.display = 'none');\r\n\r\n              if (toggle) {\r\n                \/\/ Remove existing event listeners to prevent duplicates\r\n                const newToggle = toggle.cloneNode(true);\r\n                toggle.parentNode.replaceChild(newToggle, toggle);\r\n\r\n                newToggle.addEventListener('change', function() {\r\n                  if (this.checked) {\r\n                    monthlyPrices.forEach(price => price.style.display = 'none');\r\n                    yearlyPrices.forEach(price => price.style.display = 'block');\r\n                  } else {\r\n                    monthlyPrices.forEach(price => price.style.display = 'block');\r\n                    yearlyPrices.forEach(price => price.style.display = 'none');\r\n                  }\r\n                });\r\n              }\r\n            }\r\n\r\n            \/\/ Handle Variation 3\r\n            if (activeVariation === 'toggle-variation-3') {\r\n              const toggle = pricingWrapper.querySelector('#priceCheck-v3');\r\n              const monthlyPrices = pricingWrapper.querySelectorAll('.nextsaas-price-monthly-v3');\r\n              const yearlyPrices = pricingWrapper.querySelectorAll('.nextsaas-price-yearly-v3');\r\n\r\n              \/\/ Initialize default state\r\n              monthlyPrices.forEach(price => price.style.display = 'block');\r\n              yearlyPrices.forEach(price => price.style.display = 'none');\r\n\r\n              if (toggle) {\r\n                \/\/ Remove existing event listeners to prevent duplicates\r\n                const newToggle = toggle.cloneNode(true);\r\n                toggle.parentNode.replaceChild(newToggle, toggle);\r\n\r\n                newToggle.addEventListener('change', function() {\r\n                  if (this.checked) {\r\n                    monthlyPrices.forEach(price => price.style.display = 'none');\r\n                    yearlyPrices.forEach(price => price.style.display = 'block');\r\n                  } else {\r\n                    monthlyPrices.forEach(price => price.style.display = 'block');\r\n                    yearlyPrices.forEach(price => price.style.display = 'none');\r\n                  }\r\n                });\r\n              }\r\n            }\r\n          });\r\n        }\r\n\r\n        \/\/ Initialize for frontend\r\n        document.addEventListener('DOMContentLoaded', initPriceToggles);\r\n\r\n        \/\/ Initialize for Elementor editor\r\n        if (typeof elementor !== 'undefined') {\r\n          elementor.hooks.addAction('panel\/open_editor\/widget\/nextsaas_pricing', initPriceToggles);\r\n          elementor.hooks.addAction('frontend\/element_ready\/nextsaas_pricing.default', initPriceToggles);\r\n        }\r\n\r\n        \/\/ Fallback initialization\r\n        if (document.readyState !== 'loading') {\r\n          initPriceToggles();\r\n        }\r\n      <\/script>\r\n        <div class=\"nextsaas_pricing_wrapper\" data-display=\"toggle\" >\r\n      \r\n  <div class=\"nextsaas-pricing-container\" data-display=\"toggle-variation-1\">\r\n    <!-- Toggle Section -->\r\n    <div class=\"flex justify-center pricing-toggle-container\">\r\n              <div class=\"relative z-0 inline-flex pricing-toggle-wrapper\">\r\n                      <span class=\"absolute z-11 -right-6 -top-2.5 bg-secondary dark:bg-accent text-accent dark:text-secondary inline-block font-normal capitalize text-tagline-2 px-3.5 py-1.5 shadow-xs rounded-[36px] rotate-[20deg] w-[90px] nextsaas-save-badge\">\r\n              save 40%            <\/span>\r\n                    <label class=\"relative inline-flex items-center cursor-pointer z-[10] bg-white dark:bg-background-9 rounded-full py-6 px-[56px] max-[426px]:px-10 max-[426px]:py-4 nextsaas-pricing-toggle nextsaas-pricing-toggle-v1\">\r\n            <span class=\"mr-2.5 text-tagline-1 max-[426px]:text-tagline-2 text-secondary dark:text-accent font-normal nextsaas-toggle-monthly-label\">\r\n              Monthly            <\/span>\r\n            <input type=\"checkbox\" id=\"priceCheck-v1\" class=\"sr-only peer nextsaas-price-toggle nextsaas-price-toggle-v1\" aria-label=\"Toggle between Monthly and Yearly pricing\" \/>\r\n                          <span class=\"relative w-13 h-[28px] bg-secondary dark:bg-accent rounded-[34px] peer-checked:after:translate-x-full after:content-[''] after:absolute after:top-1\/2 after:-translate-y-1\/2 after:start-[2px] peer-checked:after:start-[2px] after:bg-accent dark:after:bg-background-8 after:rounded-full after:h-6 after:w-6 after:transition-all nextsaas-toggle-switch\"><\/span>\r\n                        <span class=\"ms-2.5 text-tagline-1 max-[426px]:text-tagline-2 text-secondary dark:text-accent font-normal nextsaas-toggle-yearly-label\">\r\n              Yearly            <\/span>\r\n          <\/label>\r\n        <\/div>\r\n          <\/div>\r\n\r\n    <!-- Pricing Cards Grid -->\r\n    <div class=\"relative\">\r\n      <div class=\"grid grid-cols-1 xl:grid-cols-3 items-center xl:gap-8 gap-y-5 xl:max-w-full max-w-[500px] mx-auto xl:mx-0 nextsaas-pricing-cards-grid\">\r\n        \r\n          <!-- Single Pricing Card -->\r\n          <div class=\"bg-background-3 dark:bg-background-7 flex-1 p-8 max-lg:w-full w-full nextsaas-pricing-card nextsaas-pricing-normal-card nextsaas-pricing-normal-v1\" >\r\n            \r\n              <!-- Plan Title -->\r\n              <h3 class=\"mb-2 font-normal text-heading-5 nextsaas-plan-title\">\r\n                Simplified              <\/h3>\r\n\r\n              <!-- Plan Description -->\r\n                              <p class=\"mb-6 max-w-[250px] max-[426px]:text-tagline-2 nextsaas-plan-description \">\r\n                  For individuals and small teams with unlimited trial access.                <\/p>\r\n              \r\n              <!-- Monthly Price -->\r\n              <div class=\"price-month mb-7 nextsaas-price-monthly nextsaas-price-monthly-v1\" style=\"display: block;\">\r\n                                  <h4 class=\"text-heading-4 font-normal nextsaas-price-amount nextsaas-plan-price nextsaas-plan-price-v1\">\r\n                    $<span>1600<\/span>\r\n                  <\/h4>\r\n                  <p class=\"text-secondary dark:text-accent nextsaas-price-period nextsaas-price-period-v1\">Per Month<\/p>\r\n                              <\/div>\r\n\r\n              <!-- Yearly Price -->\r\n              <div class=\"price-year mb-7 nextsaas-price-yearly nextsaas-price-yearly-v1\" style=\"display: none;\">\r\n                                  <h4 class=\"text-heading-4 font-normal nextsaas-price-amount nextsaas-plan-price nextsaas-plan-price-v1\">\r\n                    $<span>19200<\/span>\r\n                  <\/h4>\r\n                  <p class=\"text-secondary dark:text-accent nextsaas-price-period nextsaas-price-period-v1\">Per Year<\/p>\r\n                              <\/div>\r\n\r\n              <!-- Button -->\r\n                              <div class=\"mb-8\">\r\n                  <a href=\"#\"\r\n                                                            class=\"btn btn-md w-full block text-center before:content-none first-letter:uppercase nextsaas-pricing-button nextsaas-pricing-button-v1 btn-white dark:btn-white-dark hover:btn-secondary dark:hover:btn-white\"\r\n                    aria-label=\"Choose Simplified plan\">\r\n                    Get Started                  <\/a>\r\n                                  <\/div>\r\n              \r\n              <!-- Plan Features -->\r\n                              <ul class=\"relative list-none space-y-2.5 nextsaas-features-list nextsaas-features-list-v1\">\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-included nextsaas-feature-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-secondary dark:fill-accent nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-white dark:fill-black nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary dark:text-accent font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Unlimited Ticket Management                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-included nextsaas-feature-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-secondary dark:fill-accent nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-white dark:fill-black nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary dark:text-accent font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Multi-Channel Support Inbox                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-not-included nextsaas-feature-not-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-background-4 dark:fill-background-9 nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-secondary\/60 dark:fill-accent\/60 nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary\/60 dark:text-accent\/60 font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Smart Ticket Automation                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-not-included nextsaas-feature-not-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-background-4 dark:fill-background-9 nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-secondary\/60 dark:fill-accent\/60 nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary\/60 dark:text-accent\/60 font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Email Support                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-not-included nextsaas-feature-not-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-background-4 dark:fill-background-9 nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-secondary\/60 dark:fill-accent\/60 nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary\/60 dark:text-accent\/60 font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Real-Time Performance Reports                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-not-included nextsaas-feature-not-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-background-4 dark:fill-background-9 nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-secondary\/60 dark:fill-accent\/60 nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary\/60 dark:text-accent\/60 font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Priority Customer Support                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-not-included nextsaas-feature-not-included-v1\">\r\n                                                                <\/li>\r\n                                  <\/ul>\r\n              \r\n                        <\/div>\r\n\r\n        \r\n          <!-- Single Pricing Card -->\r\n          <div class=\"flex-1 w-full max-lg:w-full nextsaas-pricing-card nextsaas-pricing-featured-card nextsaas-pricing-featured-v1 p-2.5 rounded-[20px]\" style=\"background-image: none !important;\" data-bg-type=\"color\">\r\n                          <div class=\"bg-white dark:bg-black rounded-[20px] nextsaas-pricing-featured-inner p-8\">\r\n              \r\n              <!-- Plan Title -->\r\n              <h3 class=\"mb-2 font-normal text-heading-5 nextsaas-plan-title\">\r\n                Basic              <\/h3>\r\n\r\n              <!-- Plan Description -->\r\n                              <p class=\"mb-6 max-w-[250px] max-[426px]:text-tagline-2 nextsaas-plan-description text-secondary\/60 dark:text-accent\/60\">\r\n                  For individuals and small teams with unlimited trial access.                <\/p>\r\n              \r\n              <!-- Monthly Price -->\r\n              <div class=\"price-month mb-7 nextsaas-price-monthly nextsaas-price-monthly-v1\" style=\"display: block;\">\r\n                                  <h4 class=\"text-heading-4 font-normal nextsaas-price-amount nextsaas-plan-price nextsaas-plan-price-v1\">\r\n                    $<span>3342.00<\/span>\r\n                  <\/h4>\r\n                  <p class=\"text-secondary dark:text-accent nextsaas-price-period nextsaas-price-period-v1\">Per Month<\/p>\r\n                              <\/div>\r\n\r\n              <!-- Yearly Price -->\r\n              <div class=\"price-year mb-7 nextsaas-price-yearly nextsaas-price-yearly-v1\" style=\"display: none;\">\r\n                                  <h4 class=\"text-heading-4 font-normal nextsaas-price-amount nextsaas-plan-price nextsaas-plan-price-v1\">\r\n                    $<span>4420.00<\/span>\r\n                  <\/h4>\r\n                  <p class=\"text-secondary dark:text-accent nextsaas-price-period nextsaas-price-period-v1\">Per Year<\/p>\r\n                              <\/div>\r\n\r\n              <!-- Button -->\r\n                              <div class=\"mb-8\">\r\n                  <a href=\"#\"\r\n                                                            class=\"btn btn-md w-full block text-center before:content-none first-letter:uppercase nextsaas-pricing-button nextsaas-pricing-button-v1 btn-secondary dark:btn-accent hover:btn-white-v2 dark:hover:btn-white-dark\"\r\n                    aria-label=\"Choose Basic plan\">\r\n                    Get Started                  <\/a>\r\n                                  <\/div>\r\n              \r\n              <!-- Plan Features -->\r\n                              <ul class=\"relative list-none space-y-2.5 nextsaas-features-list nextsaas-features-list-v1\">\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-included nextsaas-feature-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-secondary dark:fill-accent nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-white dark:fill-black nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary dark:text-accent font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Unlimited Ticket Management                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-included nextsaas-feature-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-secondary dark:fill-accent nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-white dark:fill-black nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary dark:text-accent font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Multi-Channel Support Inbox                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-included nextsaas-feature-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-secondary dark:fill-accent nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-white dark:fill-black nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary dark:text-accent font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Smart Ticket Automation                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-included nextsaas-feature-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-secondary dark:fill-accent nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-white dark:fill-black nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary dark:text-accent font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Custom Workflow Builder                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-not-included nextsaas-feature-not-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-background-4 dark:fill-background-9 nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-secondary\/60 dark:fill-accent\/60 nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary\/60 dark:text-accent\/60 font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Real-Time Performance Reports                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-not-included nextsaas-feature-not-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-background-4 dark:fill-background-9 nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-secondary\/60 dark:fill-accent\/60 nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary\/60 dark:text-accent\/60 font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Priority Customer Support                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-not-included nextsaas-feature-not-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-background-4 dark:fill-background-9 nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-secondary\/60 dark:fill-accent\/60 nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary\/60 dark:text-accent\/60 font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          API Access                        <\/span>\r\n                                          <\/li>\r\n                                  <\/ul>\r\n              \r\n                            <\/div>\r\n                      <\/div>\r\n\r\n        \r\n          <!-- Single Pricing Card -->\r\n          <div class=\"bg-background-3 dark:bg-background-7 flex-1 p-8 max-lg:w-full w-full nextsaas-pricing-card nextsaas-pricing-normal-card nextsaas-pricing-normal-v1\" >\r\n            \r\n              <!-- Plan Title -->\r\n              <h3 class=\"mb-2 font-normal text-heading-5 nextsaas-plan-title\">\r\n                Enhanced              <\/h3>\r\n\r\n              <!-- Plan Description -->\r\n                              <p class=\"mb-6 max-w-[250px] max-[426px]:text-tagline-2 nextsaas-plan-description \">\r\n                  For individuals and small teams with unlimited trial access.                <\/p>\r\n              \r\n              <!-- Monthly Price -->\r\n              <div class=\"price-month mb-7 nextsaas-price-monthly nextsaas-price-monthly-v1\" style=\"display: block;\">\r\n                                  <h4 class=\"text-heading-4 font-normal nextsaas-price-amount nextsaas-plan-price nextsaas-plan-price-v1\">\r\n                    $<span>4800.00<\/span>\r\n                  <\/h4>\r\n                  <p class=\"text-secondary dark:text-accent nextsaas-price-period nextsaas-price-period-v1\">Per Month<\/p>\r\n                              <\/div>\r\n\r\n              <!-- Yearly Price -->\r\n              <div class=\"price-year mb-7 nextsaas-price-yearly nextsaas-price-yearly-v1\" style=\"display: none;\">\r\n                                  <h4 class=\"text-heading-4 font-normal nextsaas-price-amount nextsaas-plan-price nextsaas-plan-price-v1\">\r\n                    $<span>5800.00<\/span>\r\n                  <\/h4>\r\n                  <p class=\"text-secondary dark:text-accent nextsaas-price-period nextsaas-price-period-v1\">Per Year<\/p>\r\n                              <\/div>\r\n\r\n              <!-- Button -->\r\n                              <div class=\"mb-8\">\r\n                  <a href=\"#\"\r\n                                                            class=\"btn btn-md w-full block text-center before:content-none first-letter:uppercase nextsaas-pricing-button nextsaas-pricing-button-v1 btn-white dark:btn-white-dark hover:btn-secondary dark:hover:btn-white\"\r\n                    aria-label=\"Choose Enhanced plan\">\r\n                    Get Started                  <\/a>\r\n                                  <\/div>\r\n              \r\n              <!-- Plan Features -->\r\n                              <ul class=\"relative list-none space-y-2.5 nextsaas-features-list nextsaas-features-list-v1\">\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-included nextsaas-feature-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-secondary dark:fill-accent nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-white dark:fill-black nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary dark:text-accent font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Unlimited Ticket Management                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-included nextsaas-feature-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-secondary dark:fill-accent nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-white dark:fill-black nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary dark:text-accent font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Multi-Channel Support Inbox                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-included nextsaas-feature-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-secondary dark:fill-accent nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-white dark:fill-black nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary dark:text-accent font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Smart Ticket Automation                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-included nextsaas-feature-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-secondary dark:fill-accent nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-white dark:fill-black nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary dark:text-accent font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Custom Workflow Builder                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-included nextsaas-feature-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-secondary dark:fill-accent nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-white dark:fill-black nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary dark:text-accent font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Real-Time Performance Reports                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-included nextsaas-feature-included-v1\">\r\n                                              <svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"shrink-0 nextsaas-feature-icon nextsaas-feature-icon-v1\">\r\n                          <rect width=\"20\" height=\"20\" rx=\"10\" fill=\"\" class=\"fill-secondary dark:fill-accent nextsaas-feature-icon-bg nextsaas-feature-icon-bg-v1\" \/>\r\n                          <path d=\"M9.31661 13.7561L14.7491 8.42144C15.0836 8.0959 15.0836 7.5697 14.7491 7.24416C14.4145 6.91861 13.8736 6.91861 13.539 7.24416L8.7116 11.9901L6.46096 9.78807C6.12636 9.46253 5.58554 9.46253 5.25095 9.78807C4.91635 10.1136 4.91635 10.6398 5.25095 10.9654L8.1066 13.7561C8.27347 13.9184 8.49253 14 8.7116 14C8.93067 14 9.14974 13.9184 9.31661 13.7561Z\" fill=\"\" class=\"fill-white dark:fill-black nextsaas-feature-icon-check nextsaas-feature-icon-check-v1\" \/>\r\n                        <\/svg>\r\n                                                                    <span class=\"text-secondary dark:text-accent font-normal text-tagline-1 nextsaas-feature-text nextsaas-feature-text-v1\">\r\n                          Priority Customer Support                        <\/span>\r\n                                          <\/li>\r\n                                      <li class=\"flex items-center gap-2.5 nextsaas-feature-item nextsaas-feature-item-v1 nextsaas-feature-included nextsaas-feature-included-v1\">\r\n                                                                <\/li>\r\n                                  <\/ul>\r\n              \r\n                        <\/div>\r\n\r\n              <\/div>\r\n    <\/div>\r\n  <\/div>\r\n\r\n\r\n\r\n\r\n\r\n\r\n    <\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5c918a98 e-flex e-con-boxed nextsaas-filter-effect-no nextsaas-custom-background-no nextsaas-custom-glowing-card-no nextsaas-sticky-no e-con e-parent\" data-id=\"5c918a98\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-a17fdab e-con-full e-flex nextsaas-filter-effect-no nextsaas-custom-background-no nextsaas-custom-glowing-card-no nextsaas-sticky-no e-con e-child\" data-id=\"a17fdab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-58ab94d nextsaas-filter-effect-no elementor-widget elementor-widget-nextsaas_badge\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.2\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"58ab94d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"nextsaas_badge.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"nextsaas_badge_wrap\">\r\n\t\t\t<div class=\"inline-block\">\r\n\t\t\t\t<span class=\"badge badge-green mb-5 nextsaas-badge\">\r\n\t\t\t\t\tQuestions<\/span>\r\n\t\t\t\t<\/span>\r\n\t\t\t<\/div>\r\n\t\t<\/div>\r\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-57c94dd3 elementor-widget__width-initial nextsaas-filter-effect-no elementor-widget elementor-widget-nextsaas-heading\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.1\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"57c94dd3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"nextsaas-heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"nextsaas_heading_wrap nextsaas-element\">\r\n\t\t\t<h2\t\t\t\tclass=\"font-medium mb-4 nextsaas_heading  \"\r\n\t\t\t\tstyle=\"\"\r\n\t\t\t>\r\n\t\t\t\tFrequently <span class=\"text-primary-500 highlited-text\">Asked Questions<\/span>\t\t\t<\/h2>\r\n\t\t<\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-1c1669cb elementor-widget__width-initial nextsaas-filter-effect-no elementor-widget elementor-widget-heading\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.2\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"1c1669cb\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Have questions? just ask<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-4b6a28a9 elementor-widget-mobile__width-initial nextsaas-filter-effect-no elementor-widget elementor-widget-nextsaas-button\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.3\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"4b6a28a9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"nextsaas-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\r\n\t\t\t\t.elementor-element-4b6a28a9 .nextsaas_button_wrap .nextsaas-button:before {\r\n\t\t\t\t\tbackground-image: url(\"data:image\/svg+xml,%3Csvg xmlns='http:\/\/www.w3.org\/2000\/svg' width='24' height='24' fill='%23FCFCFC' viewBox='0 0 256 256'%3E%3Cpath d='M181.66,133.66l-80,80a8,8,0,0,1-11.32-11.32L164.69,128,90.34,53.66a8,8,0,0,1,11.32-11.32l80,80A8,8,0,0,1,181.66,133.66Z'\/%3E%3C\/svg%3E\");\r\n\t\t\t\t}\r\n\t\t\t<\/style>\t\t<div class=\"nextsaas_button_wrap\">\r\n\t\t\t\t\t\t\t<div class=\"md:inline-block block \">\r\n\t\t\t\t\t<a href=\"#\"  class=\"group nextsaas-button inline-flex items-center justify-center rounded-full cursor-pointer gap-1.5 group-hover:bg-primary-500 group-hover:scale-101 text-center transition-all duration-500 ease-in-out font-normal text-nowrap lowercase shadow-1 bg-background-5 dark:bg-background-12 dark:border-stroke-1 dark:text-secondary border-stroke-7 text-accent px-6 py-2.5 text-tagline-1 md:px-8 md:py-3.5 w-full md:w-auto mx-auto md:mx-0\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"inline-block transition-transform duration-300 ease-in-out first-letter:uppercase\">Read more<\/span>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"relative overflow-hidden size-6\">\r\n\t\t\t\t\t\t\t<span class=\"group-hover:translate-x-1 -translate-x-6 absolute inset-0 transition-transform duration-300 ease-in-out\">\r\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\r\n\t\t\t\t\t\t\t\t\t<path d=\"M11 5H13V7H11V5Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M5 5H7V7H5V5Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M14 8H16V10H14V8Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M8 8H10V10H8V8Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M17 11H19V13H17V11Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M11 11H13V13H11V11Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M14 14H16V16H14V14Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M8 14H10V16H8V14Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M11 17H13V19H11V17Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M5 17H7V19H5V17Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t<\/svg>\r\n\t\t\t\t\t\t\t<\/span>\r\n\t\t\t\t\t\t\t<span class=\"group-hover:translate-x-6 absolute -translate-x-2 transition-transform duration-300 ease-in-out\">\r\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\r\n\t\t\t\t\t\t\t\t\t<path d=\"M11 5H13V7H11V5Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M5 5H7V7H5V5Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M14 8H16V10H14V8Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M8 8H10V10H8V8Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M17 11H19V13H17V11Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M11 11H13V13H11V11Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M14 14H16V16H14V14Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M8 14H10V16H8V14Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M11 17H13V19H11V17Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M5 17H7V19H5V17Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t<\/svg>\r\n\t\t\t\t\t\t\t<\/span>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\r\n\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-13ad0515 e-con-full e-flex nextsaas-filter-effect-no nextsaas-custom-background-no nextsaas-custom-glowing-card-no nextsaas-sticky-no e-con e-child\" data-id=\"13ad0515\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-2b12242d nextsaas-filter-effect-no elementor-widget elementor-widget-nextsaas_accordion\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.4\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"2b12242d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"nextsaas_accordion.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    <div class=\"nextsaas_accordion_wrapper\" data-layout=\"layout-2\">\r\n      <!-- Layout 2: Cards with Gradient -->\r\n<div class=\"space-y-4 accordion\">\r\n            \r\n              <div class=\"accordion-item group bg-white dark:bg-background-5 border border-stroke-4 dark:border-stroke-8 rounded-[8px] px-6 overflow-hidden relative z-0 active-accordion\">\r\n          <!-- Gradient Background -->\r\n          <div class=\"gradient-bg absolute pointer-events-none group-hover:opacity-100 opacity-0 select-none\" style=\"z-index: -1;\">\r\n                        <img decoding=\"async\" src=\"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-content\/uploads\/2026\/02\/gradient-23-5.png\" alt=\"gradient\" class=\"w-full h-full object-cover\" \/>\r\n          <\/div>\r\n\r\n          <!-- Accordion Action Button -->\r\n          <button class=\"accordion-action flex items-center cursor-pointer justify-between pt-6 pb-6 w-full relative z-20\">\r\n            <span class=\"flex-1 text-left sm:text-heading-6 text-tagline-1 font-normal text-secondary dark:text-accent\">\r\n              How quickly can we set up Nexsas?            <\/span>\r\n\r\n            <!-- Plus\/Minus Icon -->\r\n            <span class=\"ml-auto block accordion-plus-icon\">\r\n              <span class=\"w-4 h-0.5 bg-secondary dark:bg-accent block transition-transform duration-300\"><\/span>\r\n              <span class=\"w-4 h-0.5 bg-secondary dark:bg-accent block rotate-0 -mt-0.5 transition-transform duration-300\"><\/span>\r\n            <\/span>\r\n          <\/button>\r\n\r\n          <!-- Accordion Content -->\r\n          <div class=\"accordion-content relative z-10\">\r\n            <div class=\"border-t border-t-stroke-4 dark:border-stroke-8 pt-6 pb-8\">\r\n              <p>You can get started in minutes. Our onboarding process is simple, and no technical setup is required to begin managing tickets and automating workflows.<\/p>\r\n            <\/div>\r\n          <\/div>\r\n        <\/div>\r\n                \r\n              <div class=\"accordion-item group bg-white dark:bg-background-5 border border-stroke-4 dark:border-stroke-8 rounded-[8px] px-6 overflow-hidden relative z-0 active-accordion\">\r\n          <!-- Gradient Background -->\r\n          <div class=\"gradient-bg absolute pointer-events-none group-hover:opacity-100 opacity-0 select-none\" style=\"z-index: -1;\">\r\n                        <img decoding=\"async\" src=\"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-content\/uploads\/2026\/02\/gradient-23-5.png\" alt=\"gradient\" class=\"w-full h-full object-cover\" \/>\r\n          <\/div>\r\n\r\n          <!-- Accordion Action Button -->\r\n          <button class=\"accordion-action flex items-center cursor-pointer justify-between pt-6 pb-6 w-full relative z-20\">\r\n            <span class=\"flex-1 text-left sm:text-heading-6 text-tagline-1 font-normal text-secondary dark:text-accent\">\r\n              Does Nexsas support multi-channel communication?            <\/span>\r\n\r\n            <!-- Plus\/Minus Icon -->\r\n            <span class=\"ml-auto block accordion-plus-icon\">\r\n              <span class=\"w-4 h-0.5 bg-secondary dark:bg-accent block transition-transform duration-300\"><\/span>\r\n              <span class=\"w-4 h-0.5 bg-secondary dark:bg-accent block rotate-0 -mt-0.5 transition-transform duration-300\"><\/span>\r\n            <\/span>\r\n          <\/button>\r\n\r\n          <!-- Accordion Content -->\r\n          <div class=\"accordion-content relative z-10\">\r\n            <div class=\"border-t border-t-stroke-4 dark:border-stroke-8 pt-6 pb-8\">\r\n              <p>Yes. Manage email, chat, and web form tickets from one centralized inbox to ensure no customer request is missed.<\/p>\r\n            <\/div>\r\n          <\/div>\r\n        <\/div>\r\n                \r\n              <div class=\"accordion-item group bg-white dark:bg-background-5 border border-stroke-4 dark:border-stroke-8 rounded-[8px] px-6 overflow-hidden relative z-0 \">\r\n          <!-- Gradient Background -->\r\n          <div class=\"gradient-bg absolute pointer-events-none group-hover:opacity-100 opacity-0 select-none\" style=\"z-index: -1;\">\r\n                        <img decoding=\"async\" src=\"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-content\/uploads\/2026\/02\/gradient-23-5.png\" alt=\"gradient\" class=\"w-full h-full object-cover\" \/>\r\n          <\/div>\r\n\r\n          <!-- Accordion Action Button -->\r\n          <button class=\"accordion-action flex items-center cursor-pointer justify-between pt-6 pb-6 w-full relative z-20\">\r\n            <span class=\"flex-1 text-left sm:text-heading-6 text-tagline-1 font-normal text-secondary dark:text-accent\">\r\n              Can we customize workflows and automation rules?            <\/span>\r\n\r\n            <!-- Plus\/Minus Icon -->\r\n            <span class=\"ml-auto block accordion-plus-icon\">\r\n              <span class=\"w-4 h-0.5 bg-secondary dark:bg-accent block transition-transform duration-300\"><\/span>\r\n              <span class=\"w-4 h-0.5 bg-secondary dark:bg-accent block rotate-90 -mt-0.5 transition-transform duration-300\"><\/span>\r\n            <\/span>\r\n          <\/button>\r\n\r\n          <!-- Accordion Content -->\r\n          <div class=\"accordion-content relative z-10\">\r\n            <div class=\"border-t border-t-stroke-4 dark:border-stroke-8 pt-6 pb-8\">\r\n              <p>Absolutely. Create custom ticket routing, escalation paths, and SLA rules that match your support process.<\/p>\r\n            <\/div>\r\n          <\/div>\r\n        <\/div>\r\n                \r\n              <div class=\"accordion-item group bg-white dark:bg-background-5 border border-stroke-4 dark:border-stroke-8 rounded-[8px] px-6 overflow-hidden relative z-0 \">\r\n          <!-- Gradient Background -->\r\n          <div class=\"gradient-bg absolute pointer-events-none group-hover:opacity-100 opacity-0 select-none\" style=\"z-index: -1;\">\r\n                        <img decoding=\"async\" src=\"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-content\/uploads\/2026\/02\/gradient-23-5.png\" alt=\"gradient\" class=\"w-full h-full object-cover\" \/>\r\n          <\/div>\r\n\r\n          <!-- Accordion Action Button -->\r\n          <button class=\"accordion-action flex items-center cursor-pointer justify-between pt-6 pb-6 w-full relative z-20\">\r\n            <span class=\"flex-1 text-left sm:text-heading-6 text-tagline-1 font-normal text-secondary dark:text-accent\">\r\n              Is Nexsas suitable for growing teams?            <\/span>\r\n\r\n            <!-- Plus\/Minus Icon -->\r\n            <span class=\"ml-auto block accordion-plus-icon\">\r\n              <span class=\"w-4 h-0.5 bg-secondary dark:bg-accent block transition-transform duration-300\"><\/span>\r\n              <span class=\"w-4 h-0.5 bg-secondary dark:bg-accent block rotate-90 -mt-0.5 transition-transform duration-300\"><\/span>\r\n            <\/span>\r\n          <\/button>\r\n\r\n          <!-- Accordion Content -->\r\n          <div class=\"accordion-content relative z-10\">\r\n            <div class=\"border-t border-t-stroke-4 dark:border-stroke-8 pt-6 pb-8\">\r\n              <p>Yes. Our platform is designed to scale with your business, whether you\u2019re managing a small support team or handling high ticket volumes.<\/p>\r\n            <\/div>\r\n          <\/div>\r\n        <\/div>\r\n                \r\n              <div class=\"accordion-item group bg-white dark:bg-background-5 border border-stroke-4 dark:border-stroke-8 rounded-[8px] px-6 overflow-hidden relative z-0 \">\r\n          <!-- Gradient Background -->\r\n          <div class=\"gradient-bg absolute pointer-events-none group-hover:opacity-100 opacity-0 select-none\" style=\"z-index: -1;\">\r\n                        <img decoding=\"async\" src=\"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-content\/uploads\/2026\/02\/gradient-23-5.png\" alt=\"gradient\" class=\"w-full h-full object-cover\" \/>\r\n          <\/div>\r\n\r\n          <!-- Accordion Action Button -->\r\n          <button class=\"accordion-action flex items-center cursor-pointer justify-between pt-6 pb-6 w-full relative z-20\">\r\n            <span class=\"flex-1 text-left sm:text-heading-6 text-tagline-1 font-normal text-secondary dark:text-accent\">\r\n              How secure is our customer data?            <\/span>\r\n\r\n            <!-- Plus\/Minus Icon -->\r\n            <span class=\"ml-auto block accordion-plus-icon\">\r\n              <span class=\"w-4 h-0.5 bg-secondary dark:bg-accent block transition-transform duration-300\"><\/span>\r\n              <span class=\"w-4 h-0.5 bg-secondary dark:bg-accent block rotate-90 -mt-0.5 transition-transform duration-300\"><\/span>\r\n            <\/span>\r\n          <\/button>\r\n\r\n          <!-- Accordion Content -->\r\n          <div class=\"accordion-content relative z-10\">\r\n            <div class=\"border-t border-t-stroke-4 dark:border-stroke-8 pt-6 pb-8\">\r\n              <p>We use encrypted storage, secure infrastructure, and role-based access controls to protect your customer information at all times.<\/p>\r\n            <\/div>\r\n          <\/div>\r\n        <\/div>\r\n            <\/div>    <\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-785b355 e-flex e-con-boxed nextsaas-filter-effect-no nextsaas-custom-background-no nextsaas-custom-glowing-card-no nextsaas-sticky-no e-con e-parent\" data-id=\"785b355\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-d7e4600 nextsaas-filter-effect-no elementor-widget elementor-widget-nextsaas_badge\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.2\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"d7e4600\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"nextsaas_badge.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"nextsaas_badge_wrap\">\r\n\t\t\t<div class=\"inline-block\">\r\n\t\t\t\t<span class=\"badge badge-green mb-5 nextsaas-badge\">\r\n\t\t\t\t\tTestimonials<\/span>\r\n\t\t\t\t<\/span>\r\n\t\t\t<\/div>\r\n\t\t<\/div>\r\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-c9bbe5a elementor-widget__width-initial nextsaas-filter-effect-no elementor-widget elementor-widget-nextsaas-heading\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.1\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"c9bbe5a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"nextsaas-heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"nextsaas_heading_wrap nextsaas-element\">\r\n\t\t\t<h2\t\t\t\tclass=\"font-medium mb-4 nextsaas_heading  \"\r\n\t\t\t\tstyle=\"\"\r\n\t\t\t>\r\n\t\t\t\tWhat our <span class=\"text-primary-500 highlited-text\">clients say<\/span>\t\t\t<\/h2>\r\n\t\t<\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7f53f1b e-con-full e-flex nextsaas-filter-effect-no nextsaas-custom-background-no nextsaas-custom-glowing-card-no nextsaas-sticky-no e-con e-child\" data-id=\"7f53f1b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-4535dad nextsaas-filter-effect-no elementor-widget elementor-widget-nextsaas_testimonial_slider\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.3\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"4535dad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"nextsaas_testimonial_slider.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t    <div class=\"nextsaas_testimonial_slider_wrapper nextsaas_testimonial_slider_layout3\">\n      \r\n<div class=\"nextsaas_testimonial_slider_layout3 relative\">\r\n  <div class=\"single-card-reviews-swiper\" data-autoplay=&quot;true&quot; data-autoplay-delay=&quot;3500&quot; data-pause-on-hover=&quot;true&quot; data-speed=&quot;1000&quot; data-loop=&quot;true&quot;>\r\n    <div class=\"swiper-wrapper\">\r\n                                  <div class=\"swiper-slide\">\r\n            <div class=\"flex items-center justify-center gap-8\">\r\n              <!-- Author Image -->\r\n              <figure class=\"size-[150px] md:size-[300px] overflow-hidden rounded-[53px] border-[0.5px] border-stroke-4 dark:border-stroke-8 bg-gradient-to-br from-gray-100 to-gray-200 dark:from-gray-700 dark:to-gray-800 bg-(image:--color-gradient-9)\">\r\n                                  <img decoding=\"async\"\r\n                    src=\"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-content\/uploads\/2026\/02\/avatar-7.png\"\r\n                    alt=\"Michael Anderson avatar\"\r\n                    class=\"size-full\" style=\"width: 100%; height: 100%; object-fit: cover;\" \/>\r\n                              <\/figure>\r\n\r\n              <!-- Quote Content -->\r\n              <blockquote class=\"md:space-y-6 space-y-3\">\r\n                <!-- Quote Icon -->\r\n                                  <svg\r\n                    class=\"quote-icon\"\r\n                    width=\"41\"\r\n                    height=\"30\"\r\n                    viewBox=\"0 0 41 30\"\r\n                    fill=\"none\"\r\n                    xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\r\n                    <path\r\n                      d=\"M17.2188 27.0293L17.2188 18.492C17.2188 17.3874 16.3233 16.492 15.2188 16.492L10.0546 16.492C2.89039 14.1039 7.0695 5.1487 10.0546 0.969594C2.89039 1.44721 0.70134 6.74074 0.502334 9.3278L0.502333 27.0293C0.502333 28.1339 1.39776 29.0293 2.50233 29.0293L15.2188 29.0293C16.3233 29.0293 17.2188 28.1339 17.2188 27.0293Z\"\r\n                      fill=\"\"\r\n                      fill-opacity=\"0.6\"\r\n                      class=\"fill-secondary dark:fill-accent\" \/>\r\n                    <path\r\n                      d=\"M40.9375 27.0293L40.9375 18.492C40.9375 17.3874 40.0421 16.492 38.9375 16.492L33.7733 16.492C26.6091 14.1039 30.7882 5.1487 33.7733 0.969594C26.6091 1.44721 24.4201 6.74074 24.2211 9.3278L24.2211 27.0293C24.2211 28.1339 25.1165 29.0293 26.2211 29.0293L38.9375 29.0293C40.0421 29.0293 40.9375 28.1339 40.9375 27.0293Z\"\r\n                      fill=\"\"\r\n                      fill-opacity=\"0.6\"\r\n                      class=\"fill-secondary dark:fill-accent\" \/>\r\n                  <\/svg>\r\n                \r\n                <!-- Text Content -->\r\n                <div class=\"md:space-y-4 space-y-3\">\r\n                                      <p class=\"testimonial-quote text-secondary dark:text-accent max-w-[385px]\">\r\n                      \"Managing our fleet of 500+ field tablets has never been easier with NextSaaS.\"\r\n                    <\/p>\r\n                  \r\n                  <!-- Author Info -->\r\n                  <div>\r\n                                          <h3 class=\"testimonial-name font-medium text-lg text-secondary dark:text-accent\">\r\n                        Michael Anderson                      <\/h3>\r\n                    \r\n                                          <p class=\"testimonial-position text-secondary\/60 dark:text-accent\/60 text-tagline-2\">\r\n                        IT Director, Enterprise Solutions                      <\/p>\r\n                                      <\/div>\r\n                <\/div>\r\n              <\/blockquote>\r\n            <\/div>\r\n          <\/div>\r\n                            <div class=\"swiper-slide\">\r\n            <div class=\"flex items-center justify-center gap-8\">\r\n              <!-- Author Image -->\r\n              <figure class=\"size-[150px] md:size-[300px] overflow-hidden rounded-[53px] border-[0.5px] border-stroke-4 dark:border-stroke-8 bg-gradient-to-br from-gray-100 to-gray-200 dark:from-gray-700 dark:to-gray-800 bg-(image:--color-gradient-9)\">\r\n                                  <img decoding=\"async\"\r\n                    src=\"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-content\/uploads\/2026\/02\/avatar-6.png\"\r\n                    alt=\"James Wilson avatar\"\r\n                    class=\"size-full\" style=\"width: 100%; height: 100%; object-fit: cover;\" \/>\r\n                              <\/figure>\r\n\r\n              <!-- Quote Content -->\r\n              <blockquote class=\"md:space-y-6 space-y-3\">\r\n                <!-- Quote Icon -->\r\n                                  <svg\r\n                    class=\"quote-icon\"\r\n                    width=\"41\"\r\n                    height=\"30\"\r\n                    viewBox=\"0 0 41 30\"\r\n                    fill=\"none\"\r\n                    xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\r\n                    <path\r\n                      d=\"M17.2188 27.0293L17.2188 18.492C17.2188 17.3874 16.3233 16.492 15.2188 16.492L10.0546 16.492C2.89039 14.1039 7.0695 5.1487 10.0546 0.969594C2.89039 1.44721 0.70134 6.74074 0.502334 9.3278L0.502333 27.0293C0.502333 28.1339 1.39776 29.0293 2.50233 29.0293L15.2188 29.0293C16.3233 29.0293 17.2188 28.1339 17.2188 27.0293Z\"\r\n                      fill=\"\"\r\n                      fill-opacity=\"0.6\"\r\n                      class=\"fill-secondary dark:fill-accent\" \/>\r\n                    <path\r\n                      d=\"M40.9375 27.0293L40.9375 18.492C40.9375 17.3874 40.0421 16.492 38.9375 16.492L33.7733 16.492C26.6091 14.1039 30.7882 5.1487 33.7733 0.969594C26.6091 1.44721 24.4201 6.74074 24.2211 9.3278L24.2211 27.0293C24.2211 28.1339 25.1165 29.0293 26.2211 29.0293L38.9375 29.0293C40.0421 29.0293 40.9375 28.1339 40.9375 27.0293Z\"\r\n                      fill=\"\"\r\n                      fill-opacity=\"0.6\"\r\n                      class=\"fill-secondary dark:fill-accent\" \/>\r\n                  <\/svg>\r\n                \r\n                <!-- Text Content -->\r\n                <div class=\"md:space-y-4 space-y-3\">\r\n                                      <p class=\"testimonial-quote text-secondary dark:text-accent max-w-[385px]\">\r\n                      \"The implementation was flawless and we saw immediate results. Team efficiency jumped by 45% in the first month.\"\r\n                    <\/p>\r\n                  \r\n                  <!-- Author Info -->\r\n                  <div>\r\n                                          <h3 class=\"testimonial-name font-medium text-lg text-secondary dark:text-accent\">\r\n                        James Wilson                      <\/h3>\r\n                    \r\n                                          <p class=\"testimonial-position text-secondary\/60 dark:text-accent\/60 text-tagline-2\">\r\n                        CTO, Digital Innovations Corp                      <\/p>\r\n                                      <\/div>\r\n                <\/div>\r\n              <\/blockquote>\r\n            <\/div>\r\n          <\/div>\r\n                            <div class=\"swiper-slide\">\r\n            <div class=\"flex items-center justify-center gap-8\">\r\n              <!-- Author Image -->\r\n              <figure class=\"size-[150px] md:size-[300px] overflow-hidden rounded-[53px] border-[0.5px] border-stroke-4 dark:border-stroke-8 bg-gradient-to-br from-gray-100 to-gray-200 dark:from-gray-700 dark:to-gray-800 bg-(image:--color-gradient-9)\">\r\n                                  <img decoding=\"async\"\r\n                    src=\"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-content\/uploads\/2025\/12\/avatar-3.png\"\r\n                    alt=\"Robert Thompson avatar\"\r\n                    class=\"size-full\" style=\"width: 100%; height: 100%; object-fit: cover;\" \/>\r\n                              <\/figure>\r\n\r\n              <!-- Quote Content -->\r\n              <blockquote class=\"md:space-y-6 space-y-3\">\r\n                <!-- Quote Icon -->\r\n                                  <svg\r\n                    class=\"quote-icon\"\r\n                    width=\"41\"\r\n                    height=\"30\"\r\n                    viewBox=\"0 0 41 30\"\r\n                    fill=\"none\"\r\n                    xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\r\n                    <path\r\n                      d=\"M17.2188 27.0293L17.2188 18.492C17.2188 17.3874 16.3233 16.492 15.2188 16.492L10.0546 16.492C2.89039 14.1039 7.0695 5.1487 10.0546 0.969594C2.89039 1.44721 0.70134 6.74074 0.502334 9.3278L0.502333 27.0293C0.502333 28.1339 1.39776 29.0293 2.50233 29.0293L15.2188 29.0293C16.3233 29.0293 17.2188 28.1339 17.2188 27.0293Z\"\r\n                      fill=\"\"\r\n                      fill-opacity=\"0.6\"\r\n                      class=\"fill-secondary dark:fill-accent\" \/>\r\n                    <path\r\n                      d=\"M40.9375 27.0293L40.9375 18.492C40.9375 17.3874 40.0421 16.492 38.9375 16.492L33.7733 16.492C26.6091 14.1039 30.7882 5.1487 33.7733 0.969594C26.6091 1.44721 24.4201 6.74074 24.2211 9.3278L24.2211 27.0293C24.2211 28.1339 25.1165 29.0293 26.2211 29.0293L38.9375 29.0293C40.0421 29.0293 40.9375 28.1339 40.9375 27.0293Z\"\r\n                      fill=\"\"\r\n                      fill-opacity=\"0.6\"\r\n                      class=\"fill-secondary dark:fill-accent\" \/>\r\n                  <\/svg>\r\n                \r\n                <!-- Text Content -->\r\n                <div class=\"md:space-y-4 space-y-3\">\r\n                                      <p class=\"testimonial-quote text-secondary dark:text-accent max-w-[385px]\">\r\n                      \"NextSaaS transformed how we manage our device fleet. The ROI has been incredible.\"\r\n                    <\/p>\r\n                  \r\n                  <!-- Author Info -->\r\n                  <div>\r\n                                          <h3 class=\"testimonial-name font-medium text-lg text-secondary dark:text-accent\">\r\n                        Robert Thompson                      <\/h3>\r\n                    \r\n                                          <p class=\"testimonial-position text-secondary\/60 dark:text-accent\/60 text-tagline-2\">\r\n                        Operations Director, Tech Systems                      <\/p>\r\n                                      <\/div>\r\n                <\/div>\r\n              <\/blockquote>\r\n            <\/div>\r\n          <\/div>\r\n                  <\/div>\r\n\r\n    <!-- Navigation Arrows -->\r\n          <!-- Previous Button -->\r\n      <div class=\"single-card-reviews-prev absolute left-0 top-1\/2 -translate-y-1\/2 cursor-pointer group z-10\">\r\n        <svg\r\n          width=\"36\"\r\n          height=\"36\"\r\n          viewBox=\"0 0 36 36\"\r\n          fill=\"none\"\r\n          xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\r\n          <rect\r\n            width=\"36\"\r\n            height=\"36\"\r\n            rx=\"18\"\r\n            fill=\"\"\r\n            class=\"fill-background-4 group-hover:fill-primary-500 dark:fill-background-9 transition-all duration-300 ease-in-out\" \/>\r\n          <path\r\n            d=\"M20 13L15 18L20 23\"\r\n            stroke=\"\"\r\n            stroke-linecap=\"round\"\r\n            stroke-linejoin=\"round\"\r\n            class=\"stroke-[#292929] group-hover:stroke-white dark:stroke-white transition-all duration-300 ease-in-out\" \/>\r\n        <\/svg>\r\n      <\/div>\r\n\r\n      <!-- Next Button -->\r\n      <div class=\"single-card-reviews-next absolute right-0 top-1\/2 -translate-y-1\/2 cursor-pointer group z-10\">\r\n        <svg\r\n          width=\"36\"\r\n          height=\"36\"\r\n          viewBox=\"0 0 36 36\"\r\n          fill=\"none\"\r\n          xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\r\n          <path\r\n            d=\"M0 18C0 8.05888 8.05888 0 18 0C27.9411 0 36 8.05888 36 18C36 27.9411 27.9411 36 18 36C8.05888 36 0 27.9411 0 18Z\"\r\n            fill=\"\"\r\n            class=\"fill-background-4 group-hover:fill-primary-500 dark:fill-background-9 transition-all duration-300 ease-in-out\" \/>\r\n          <path\r\n            d=\"M16 23L21 18L16 13\"\r\n            stroke=\"\"\r\n            stroke-linecap=\"round\"\r\n            stroke-linejoin=\"round\"\r\n            class=\"stroke-[#292929] group-hover:stroke-white dark:stroke-white transition-all duration-300 ease-in-out\" \/>\r\n        <\/svg>\r\n      <\/div>\r\n      <\/div>\r\n<\/div>    <\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a69a7bf e-flex e-con-boxed nextsaas-filter-effect-no nextsaas-custom-background-no nextsaas-custom-glowing-card-no nextsaas-sticky-no e-con e-parent\" data-id=\"a69a7bf\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-bf29bde e-con-full e-flex nextsaas-filter-effect-no nextsaas-custom-background-no nextsaas-custom-glowing-card-no nextsaas-sticky-no e-con e-child\" data-id=\"bf29bde\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-8acb211 elementor-widget__width-initial nextsaas-filter-effect-no elementor-widget elementor-widget-nextsaas-heading\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.1\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"8acb211\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"nextsaas-heading.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"nextsaas_heading_wrap nextsaas-element\">\r\n\t\t\t<h2\t\t\t\tclass=\"font-medium mb-4 nextsaas_heading  \"\r\n\t\t\t\tstyle=\"\"\r\n\t\t\t>\r\n\t\t\t\tTransform Your <span class=\"text-primary-500 highlited-text\">Support Operations<\/span>\t\t\t<\/h2>\r\n\t\t<\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-3b67fb1 elementor-widget__width-initial nextsaas-filter-effect-no elementor-widget elementor-widget-heading\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.2\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"3b67fb1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Ready to improve response times and streamline ticket management? Get started with Nexsas now.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"gsap-animation elementor-element elementor-element-44f54b2 elementor-widget-mobile__width-initial nextsaas-filter-effect-no elementor-widget elementor-widget-nextsaas-button\" data-gsap-animate=\"true\" data-duration=\"0.6\" data-delay=\"0.3\" data-direction=\"down\" data-offset=\"60\" data-rotation=\"0\" data-id=\"44f54b2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"nextsaas-button.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<style>\r\n\t\t\t\t.elementor-element-44f54b2 .nextsaas_button_wrap .nextsaas-button:before {\r\n\t\t\t\t\tbackground-image: url(\"data:image\/svg+xml,%3Csvg xmlns='http:\/\/www.w3.org\/2000\/svg' width='24' height='24' fill='%231A1A1C' viewBox='0 0 256 256'%3E%3Cpath d='M181.66,133.66l-80,80a8,8,0,0,1-11.32-11.32L164.69,128,90.34,53.66a8,8,0,0,1,11.32-11.32l80,80A8,8,0,0,1,181.66,133.66Z'\/%3E%3C\/svg%3E\");\r\n\t\t\t\t}\r\n\t\t\t<\/style>\t\t<div class=\"nextsaas_button_wrap\">\r\n\t\t\t\t\t\t\t<div class=\"md:inline-block block \">\r\n\t\t\t\t\t<a href=\"#\"  class=\"group nextsaas-button inline-flex items-center justify-center rounded-full cursor-pointer gap-1.5 group-hover:bg-primary-500 group-hover:scale-101 text-center transition-all duration-500 ease-in-out font-normal text-nowrap lowercase shadow-1 bg-background-5 dark:bg-background-12 dark:border-stroke-1 dark:text-secondary border-stroke-7 text-accent px-6 py-2.5 text-tagline-1 md:px-8 md:py-3.5 w-full md:w-auto mx-auto md:mx-0\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"inline-block transition-transform duration-300 ease-in-out first-letter:uppercase\">Schedule a Demo<\/span>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"relative overflow-hidden size-6\">\r\n\t\t\t\t\t\t\t<span class=\"group-hover:translate-x-1 -translate-x-6 absolute inset-0 transition-transform duration-300 ease-in-out\">\r\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\r\n\t\t\t\t\t\t\t\t\t<path d=\"M11 5H13V7H11V5Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M5 5H7V7H5V5Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M14 8H16V10H14V8Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M8 8H10V10H8V8Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M17 11H19V13H17V11Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M11 11H13V13H11V11Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M14 14H16V16H14V14Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M8 14H10V16H8V14Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M11 17H13V19H11V17Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M5 17H7V19H5V17Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t<\/svg>\r\n\t\t\t\t\t\t\t<\/span>\r\n\t\t\t\t\t\t\t<span class=\"group-hover:translate-x-6 absolute -translate-x-2 transition-transform duration-300 ease-in-out\">\r\n\t\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\">\r\n\t\t\t\t\t\t\t\t\t<path d=\"M11 5H13V7H11V5Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M5 5H7V7H5V5Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M14 8H16V10H14V8Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M8 8H10V10H8V8Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M17 11H19V13H17V11Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M11 11H13V13H11V11Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M14 14H16V16H14V14Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M8 14H10V16H8V14Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M11 17H13V19H11V17Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t\t<path d=\"M5 17H7V19H5V17Z\" class=\"variation-2-fill-color fill-white dark:fill-secondary\"><\/path>\r\n\t\t\t\t\t\t\t\t<\/svg>\r\n\t\t\t\t\t\t\t<\/span>\r\n\t\t\t\t\t\t<\/div>\r\n\t\t\t\t\t\t\t\t\t\t\t<\/a>\r\n\t\t\t\t<\/div>\r\n\t\t\t\t\t<\/div>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Choose Your Plan Affordable Helpdesk Automation for Every Team save 40% Monthly Yearly Simplified For individuals and small teams with unlimited trial access. $1600 Per Month $19200 Per Year Get Started Unlimited Ticket Management Multi-Channel Support Inbox Smart Ticket Automation Email Support Real-Time Performance Reports Priority Customer Support Basic For individuals and small teams with [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-17995","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-json\/wp\/v2\/pages\/17995","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-json\/wp\/v2\/comments?post=17995"}],"version-history":[{"count":228,"href":"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-json\/wp\/v2\/pages\/17995\/revisions"}],"predecessor-version":[{"id":40563,"href":"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-json\/wp\/v2\/pages\/17995\/revisions\/40563"}],"wp:attachment":[{"href":"https:\/\/nextsaas-wp.pixels71.com\/helpdesk\/wp-json\/wp\/v2\/media?parent=17995"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}