{"id":2,"date":"2024-09-20T19:46:58","date_gmt":"2024-09-20T19:46:58","guid":{"rendered":"https:\/\/logicwisp.com\/?page_id=2"},"modified":"2026-01-15T14:53:08","modified_gmt":"2026-01-15T14:53:08","slug":"sample-page","status":"publish","type":"page","link":"https:\/\/logicwisp.com\/","title":{"rendered":"HomePage"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Logicwisp \u2014 Employee Financial Wellness &#038; Team Platform<\/title>\n    <meta name=\"description\" content=\"100% free AI-powered financial wellness + team engagement platform. Trusted by companies in UAE, UK &#038; Canada.\">\n    <link rel=\"icon\" type=\"image\/png\" href=\"https:\/\/logicwisp.com\/wp-content\/uploads\/2024\/09\/Artboard-1.png\">\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;700;800&#038;display=swap\" rel=\"stylesheet\">\n    <link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.5.0\/css\/all.min.css\">\n    <style>\n        :root {\n            --primary: #e53935;\n            --primary-dark: #c62828;\n            --secondary: #424242;\n            --text: #1a1a1a;\n            --light: #f8f9fa;\n            --success-bg: #d4edda;\n            --success-text: #155724;\n        }\n\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        body {\n            font-family: 'Inter',sans-serif;\n            color: var(--text);\n            line-height: 1.7;\n            background: #fff;\n        }\n\n        a {\n            text-decoration: none;\n            color: inherit;\n        }\n\n        .container {\n            width: 90%;\n            max-width: 1300px;\n            margin: 0 auto;\n            padding: 0 20px;\n        }\n\n        header {\n            background: white;\n            box-shadow: 0 4px 30px rgba(0,0,0,0.1);\n            position: fixed;\n            width: 100%;\n            top: 0;\n            z-index: 1000;\n        }\n\n        .header-inner {\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n            padding: 1.4rem 0;\n        }\n\n        .logo-img {\n            height: 72px;\n            transition: transform .4s;\n        }\n\n            .logo-img:hover {\n                transform: scale(1.08);\n            }\n\n        .nav a {\n            margin-left: 3.2rem;\n            font-weight: 600;\n            color: #222;\n            font-size: 1.12rem;\n            padding: 10px 0;\n            position: relative;\n            transition: .4s;\n        }\n\n            .nav a::after {\n                content: '';\n                position: absolute;\n                bottom: 0;\n                left: 50%;\n                width: 0;\n                height: 3px;\n                background: var(--primary);\n                border-radius: 3px;\n                transition: .4s;\n                transform: translateX(-50%);\n            }\n\n            .nav a:hover::after, .nav a.active::after {\n                width: 100%;\n            }\n\n            .nav a:hover, .nav a.active {\n                color: var(--primary);\n            }\n\n        .hero {\n            background: linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);\n            color: white;\n            padding: 240px 0 180px;\n            text-align: center;\n        }\n\n            .hero h1 {\n                font-size: 4.2rem;\n                font-weight: 800;\n                margin-bottom: 1.2rem;\n                letter-spacing: -1.5px;\n            }\n\n            .hero p {\n                font-size: 1.55rem;\n                max-width: 1000px;\n                margin: 0 auto 2.5rem;\n                opacity: 0.95;\n            }\n\n        .btn {\n            display: inline-block;\n            padding: 22px 56px;\n            background: var(--secondary);\n            color: white;\n            border-radius: 50px;\n            font-weight: 700;\n            font-size: 1.4rem;\n            transition: all .4s;\n            box-shadow: 0 12px 35px rgba(66,66,66,0.35);\n            cursor: pointer;\n            border: none;\n        }\n\n            .btn:hover {\n                background: #212121;\n                transform: translateY(-8px);\n                box-shadow: 0 20px 45px rgba(66,66,66,0.45);\n            }\n\n        section {\n            padding: 130px 0;\n        }\n\n        .section-title {\n            text-align: center;\n            font-size: 3.2rem;\n            font-weight: 700;\n            margin-bottom: 5rem;\n            color: #222;\n        }\n\n        .features {\n            background: var(--light);\n        }\n\n        .features-grid, .services-grid, .why-grid, .clients-grid {\n            display: grid;\n            grid-template-columns: repeat(auto-fit,minmax(340px,1fr));\n            gap: 3rem;\n        }\n\n        .feature-card, .service-card, .why-card, .client-card {\n            background: white;\n            padding: 3.8rem 2.5rem;\n            border-radius: 22px;\n            box-shadow: 0 12px 50px rgba(0,0,0,0.1);\n            text-align: center;\n            transition: .5s;\n            position: relative;\n        }\n\n            .feature-card:hover, .service-card:hover, .why-card:hover, .client-card:hover {\n                transform: translateY(-15px);\n                box-shadow: 0 25px 60px rgba(0,0,0,0.18);\n            }\n\n            .feature-card::before {\n                content: '';\n                position: absolute;\n                top: 0;\n                left: 0;\n                width: 100%;\n                height: 6px;\n                background: linear-gradient(90deg,var(--primary),var(--secondary));\n                opacity: 0;\n                transition: .5s;\n                border-radius: 22px 22px 0 0;\n            }\n\n            .feature-card:hover::before {\n                opacity: 1;\n            }\n\n        .feature-icon {\n            width: 100px;\n            height: 100px;\n            margin: 0 auto 2rem;\n            background: linear-gradient(135deg,var(--primary),var(--secondary));\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            box-shadow: 0 12px 35px rgba(229,57,53,0.3);\n        }\n\n            .feature-icon i {\n                font-size: 3rem;\n                color: white;\n            }\n\n        .service-card i {\n            font-size: 3rem;\n            color: var(--primary);\n            margin-bottom: 1.5rem;\n        }\n\n        .client-logo-img {\n            height: 110px;\n            margin-bottom: 1.8rem;\n            filter: drop-shadow(0 6px 15px rgba(0,0,0,0.1));\n        }\n\n        .request-demo {\n            background: linear-gradient(135deg,var(--primary),var(--primary-dark));\n            color: white;\n            text-align: center;\n        }\n\n        .form-grid {\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 1.8rem;\n            max-width: 800px;\n            margin: 0 auto 2rem;\n        }\n\n            .form-grid input {\n                padding: 22px;\n                border: none;\n                border-radius: 14px;\n                font-size: 1.2rem;\n            }\n\n        #successMessage {\n            display: none;\n            margin: 3rem auto;\n            padding: 2.5rem;\n            background: var(--success-bg);\n            color: var(--success-text);\n            border-radius: 16px;\n            font-size: 1.5rem;\n            max-width: 800px;\n            text-align: center;\n            border: 2px solid #c3e6cb;\n        }\n\n            #successMessage h3 {\n                margin-bottom: 0.8rem;\n                font-size: 2rem;\n            }\n\n        footer {\n            background: #111;\n            color: #ccc;\n            padding: 110px 0 60px;\n            text-align: center;\n        }\n\n        .social-links a {\n            color: #aaa;\n            font-size: 2.7rem;\n            margin: 0 26px;\n            transition: .4s;\n        }\n\n            .social-links a:hover {\n                color: var(--primary);\n                transform: translateY(-6px);\n            }\n\n        @media (max-width:768px) {\n            .hero h1 {\n                font-size: 3rem;\n            }\n\n            .section-title {\n                font-size: 2.5rem;\n            }\n\n            .nav a {\n                margin-left: 1.5rem;\n                font-size: 1rem;\n            }\n\n            .form-grid {\n                grid-template-columns: 1fr;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n\n    <!-- Header -->\n    <header>\n        <div class=\"container header-inner\">\n            <a href=\"https:\/\/logicwisp.com\">\n                <img decoding=\"async\" src=\"https:\/\/logicwisp.com\/wp-content\/uploads\/2024\/09\/Artboard-1.png\" alt=\"Logicwisp\" class=\"logo-img\">\n            <\/a>\n            <nav class=\"nav\">\n                <a href=\"#features\" class=\"active\">Features<\/a>\n                <a href=\"#services\">Services<\/a>\n                <a href=\"#why-us\">Why Us<\/a>\n                <a href=\"#clients\">Clients<\/a>\n                <a href=\"#request-demo\">Request Demo<\/a>\n            <\/nav>\n        <\/div>\n    <\/header>\n\n    <!-- Hero -->\n    <section class=\"hero\">\n        <div class=\"container\">\n            <h1>Financial Wellness That Actually Works<\/h1>\n            <p>The all-in-one employee platform combining AI budgeting, exclusive perks, 1-on-1 coaching, and team collaboration \u2014 <strong>100% free for employers<\/strong>.<\/p>\n            <p style=\"margin:2rem 0; font-size:1.45rem;\">Trusted by leading companies in UAE, UK, and Canada<\/p>\n            <a href=\"#request-demo\" class=\"btn\">Get Started Free \u2014 No Credit Card Needed<\/a>\n        <\/div>\n    <\/section>\n\n    <!-- Features -->\n    <section class=\"features\" id=\"features\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">Everything Your Team Needs to Thrive<\/h2>\n            <div class=\"features-grid\">\n                <div class=\"feature-card\"><div class=\"feature-icon\"><i class=\"fas fa-brain\"><\/i><\/div><h3>AI-Powered Budgeting<\/h3><p>Automatically tracks spending \u2014 employees save <strong>$380\/month<\/strong> on average.<\/p><\/div>\n                <div class=\"feature-card\"><div class=\"feature-icon\"><i class=\"fas fa-gift\"><\/i><\/div><h3>Exclusive Perks Marketplace<\/h3><p>Save up to <strong>$6,000\/year<\/strong> on travel, healthcare, gyms &#038; 1000+ brands.<\/p><\/div>\n                <div class=\"feature-card\"><div class=\"feature-icon\"><i class=\"fas fa-user-graduate\"><\/i><\/div><h3>1-on-1 Financial Coaching<\/h3><p>Unlimited free sessions with certified experts.<\/p><\/div>\n                <div class=\"feature-card\"><div class=\"feature-icon\"><i class=\"fas fa-exchange-alt\"><\/i><\/div><h3>Instant Bill Pay &#038; Transfers<\/h3><p>Zero-fee payments and global transfers.<\/p><\/div>\n                <div class=\"feature-card\"><div class=\"feature-icon\"><i class=\"fas fa-comments\"><\/i><\/div><h3>Team Collaboration Hub<\/h3><p>Announcements, polls, shift swaps, events \u2014 all in one place.<\/p><\/div>\n                <div class=\"feature-card\"><div class=\"feature-icon\"><i class=\"fas fa-lock\"><\/i><\/div><h3>Bank-Level Security<\/h3><p>256-bit encryption \u2022 SOC 2 \u2022 PCI DSS \u2022 GDPR compliant.<\/p><\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Services -->\n    <section class=\"services\" id=\"services\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">Our Technology &#038; Business Services<\/h2>\n            <div class=\"services-grid\">\n                <div class=\"service-card\"><i class=\"fas fa-user-check\"><\/i><h3>Single Sign-On (SSO)<\/h3><p>Azure AD \u2022 OKTA \u2022 Google \u2022 Microsoft Entra \u2022 SAML \u2022 OAuth2<\/p><\/div>\n                <div class=\"service-card\"><i class=\"fab fa-google\"><\/i><h3>Social Login<\/h3><p>Google \u2022 Microsoft \u2022 Apple \u2022 Facebook \u2022 LinkedIn<\/p><\/div>\n                <div class=\"service-card\"><i class=\"fas fa-bullhorn\"><\/i><h3>Social Media Growth<\/h3><p>Instagram \u2022 TikTok \u2022 YouTube \u2022 Facebook<\/p><\/div>\n                <div class=\"service-card\"><i class=\"fas fa-code\"><\/i><h3>Full IT Solutions<\/h3><p>Web \u2022 Mobile \u2022 APIs \u2022 Cloud \u2022 DevOps \u2022 Cybersecurity<\/p><\/div>\n                <div class=\"service-card\"><i class=\"fas fa-cloud\"><\/i><h3>Cloud Deployment<\/h3><p>AWS \u2022 Azure \u2022 Google Cloud \u2022 Docker \u2022 Kubernetes<\/p><\/div>\n                <div class=\"service-card\"><i class=\"fas fa-mobile-alt\"><\/i><h3>Mobile Development<\/h3><p>iOS \u2022 Android \u2022 Flutter \u2022 React Native \u2022 .NET MAUI<\/p><\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Why Us -->\n    <section class=\"why-us\" id=\"why-us\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">Why Companies Choose Logicwisp<\/h2>\n            <div class=\"why-grid\">\n                <div class=\"why-card\"><i class=\"fas fa-hand-holding-heart\"><\/i><h3>100% Free Forever<\/h3><p>No fees, no hidden costs.<\/p><\/div>\n                <div class=\"why-card\"><i class=\"fas fa-bolt\"><\/i><h3>Live in 5\u20137 Days<\/h3><p>Simple SSO. No IT needed.<\/p><\/div>\n                <div class=\"why-card\"><i class=\"fas fa-users\"><\/i><h3>22% Retention Increase<\/h3><p>Proven across industries.<\/p><\/div>\n                <div class=\"why-card\"><i class=\"fas fa-life-ring\"><\/i><h3>24\/7 Global Support<\/h3><p>English \u2022 Arabic \u2022 French \u2022 Spanish<\/p><\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Clients -->\n    <section class=\"clients\" id=\"clients\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">Trusted by Industry Leaders<\/h2>\n            <div class=\"clients-grid\">\n                <div class=\"client-card\">\n                    <img decoding=\"async\" src=\"https:\/\/gravesendtravel.com\/images\/logo.png\" alt=\"Gravesend Travel\" class=\"client-logo-img\">\n                    <h3>Gravesend Travel<\/h3>\n                    <p>UK&#8217;s Premier Holiday &#038; Cruise Specialists<\/p>\n                <\/div>\n                <div class=\"client-card\">\n                    <img decoding=\"async\" src=\"https:\/\/logicwisp.com\/wp-content\/uploads\/2025\/12\/flyvue-travel-logo-blue.png\" alt=\"FlyVUE\" class=\"client-logo-img\">\n                    <h3>FlyVUE<\/h3>\n                    <p>Next-Gen Aviation &#038; Logistics Platform<\/p>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <!-- Request Demo -->\n    <section class=\"request-demo\" id=\"request-demo\">\n        <div class=\"container\">\n            <h2 class=\"section-title\">Ready to Transform Your Team?<\/h2>\n            <p style=\"font-size:1.55rem; max-width:900px; margin:0 auto 3.5rem; opacity:0.95;\">\n                Join hundreds of companies reducing turnover and boosting engagement \u2014 <strong>completely free<\/strong>.\n            <\/p>\n\n            <form id=\"demoForm\">\n                <div class=\"form-grid\">\n                    <input type=\"text\" name=\"name\" placeholder=\"Full Name\" required>\n                    <input type=\"email\" name=\"email\" placeholder=\"Work Email\" required>\n                    <input type=\"text\" name=\"company\" placeholder=\"Company Name\" required>\n                    <input type=\"tel\" name=\"phone\" placeholder=\"Phone (+971, +1, +44...)\" required>\n                <\/div>\n                <button type=\"submit\" class=\"btn\" style=\"margin-top:2rem; width:100%; max-width:800px;\">\n                    Request Your Free Demo Today\n                <\/button>\n            <\/form>\n\n            <div id=\"successMessage\">\n                <h3>Thank You!<\/h3>\n                <p>Your demo request has been sent successfully.<br>We\u2019ll contact you within 1 hour!<\/p>\n            <\/div>\n\n            <p style=\"margin-top:3.5rem; font-size:1.35rem;\">\n                Call UAE: <strong>+971 (50) 195-2505<\/strong> | Canada: <strong>+1 (613) 777-7578<\/strong><br>\n                Email: <a href=\"mailto:info@logicwisp.com\" style=\"color:white; text-decoration:underline;\">info@logicwisp.com<\/a>\n            <\/p>\n        <\/div>\n    <\/section>\n\n    <!-- Footer -->\n    <footer>\n        <div class=\"container\">\n            <img decoding=\"async\" src=\"https:\/\/logicwisp.com\/wp-content\/uploads\/2024\/09\/Artboard-1.png\" alt=\"Logicwisp\" class=\"logo-img\" style=\"height:58px;margin-bottom:22px;\">\n            <p><strong>Logicwisp<\/strong> \u00a9 2025. All rights reserved.<\/p>\n            <div style=\"display:flex; flex-wrap:wrap; justify-content:center; gap:6rem; margin:3.8rem 0; font-size:1.18rem;\">\n                <div>\n                    <h4>UAE \u2014 Head Office<\/h4>\n                    <p>Office 3204, Marina Plaza<br>Dubai Marina, Dubai<br>UAE<br><strong>Phone:<\/strong> +971 (50) 195-2505<\/p>\n                <\/div>\n                <div>\n                    <h4>Canada \u2014 North America<\/h4>\n                    <p>208 \u2013 650 King Street East<br>Oshawa, Ontario L1H 1G5<br>Canada<br><strong>Phone:<\/strong> +1 (613) 777-7578<\/p>\n                <\/div>\n            <\/div>\n            <div class=\"social-links\">\n                <a href=\"https:\/\/facebook.com\/logicwisptech\" target=\"_blank\"><i class=\"fab fa-facebook\"><\/i><\/a>\n                <a href=\"https:\/\/linkedin.com\/company\/logicwisp\" target=\"_blank\"><i class=\"fab fa-linkedin\"><\/i><\/a>\n                <a href=\"https:\/\/logicwisp.com\" target=\"_blank\"><i class=\"fas fa-globe\"><\/i><\/a>\n            <\/div>\n            <p style=\"margin-top:3rem; font-size:0.98rem;\">\n                <a href=\"https:\/\/logicwisp.com\/#\">Privacy Policy<\/a> \u2022\n                <a href=\"https:\/\/logicwisp.com\/#\">Terms of Service<\/a> \u2022\n                <a href=\"https:\/\/logicwisp.com\/#\">Security<\/a>\n            <\/p>\n        <\/div>\n    <\/footer>\n\n    <!-- Formspree AJAX Submission Script -->\n    <script>\n        \/\/ Smooth scrolling\n        document.querySelectorAll('.nav a').forEach(link => {\n            link.addEventListener('click', e => {\n                e.preventDefault();\n                document.querySelectorAll('.nav a').forEach(a => a.classList.remove('active'));\n                link.classList.add('active');\n                document.querySelector(link.getAttribute('href')).scrollIntoView({ behavior: 'smooth' });\n            });\n        });\n\n        \/\/ Formspree AJAX + Show success for 15s \u2192 then bring back the form\n        const form = document.getElementById('demoForm');\n        const successMsg = document.getElementById('successMessage');\n\n        form.addEventListener('submit', async function (e) {\n            e.preventDefault();\n\n            const formData = new FormData(form);\n\n            try {\n                const response = await fetch('https:\/\/formspree.io\/f\/mzzngnqg', {\n                    method: 'POST',\n                    body: formData,\n                    headers: { 'Accept': 'application\/json' }\n                });\n\n                if (response.ok) {\n                    \/\/ Hide form, show success message\n                    form.style.transition = 'opacity 0.6s';\n                    form.style.opacity = '0';\n                    setTimeout(() => {\n                        form.style.display = 'none';\n                        successMsg.style.display = 'block';\n                        successMsg.style.opacity = '1';\n                    }, 600);\n\n                    \/\/ After 15 seconds: hide success message and show form again\n                    setTimeout(() => {\n                        successMsg.style.transition = 'opacity 1s';\n                        successMsg.style.opacity = '0';\n                        setTimeout(() => {\n                            successMsg.style.display = 'none';\n                            form.style.display = 'block';\n                            form.style.opacity = '0';\n                            form.style.transition = 'opacity 0.8s';\n                            setTimeout(() => {\n                                form.style.opacity = '1';\n                                form.reset(); \/\/ Optional: clear the form fields\n                            }, 100);\n                        }, 1000);\n                    }, 15000); \/\/ 15 seconds\n\n                } else {\n                    alert('Oops! Something went wrong. Please try again.');\n                }\n            } catch (err) {\n                alert('Network error. Please check your connection.');\n            }\n        });\n    <\/script>\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>Logicwisp \u2014 Employee Financial Wellness &#038; Team Platform Features Services Why Us Clients Request Demo Financial Wellness That Actually Works The all-in-one employee platform combining AI budgeting, exclusive perks, 1-on-1 coaching, and team collaboration \u2014 100% free for employers. Trusted by leading companies in UAE, UK, and Canada Get Started Free \u2014 No Credit Card [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"open","template":"templates\/wpmm-page-template.php","meta":{"_themeisle_gutenberg_block_has_review":false,"footnotes":""},"class_list":["post-2","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/logicwisp.com\/index.php?rest_route=\/wp\/v2\/pages\/2","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/logicwisp.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/logicwisp.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/logicwisp.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/logicwisp.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2"}],"version-history":[{"count":57,"href":"https:\/\/logicwisp.com\/index.php?rest_route=\/wp\/v2\/pages\/2\/revisions"}],"predecessor-version":[{"id":101,"href":"https:\/\/logicwisp.com\/index.php?rest_route=\/wp\/v2\/pages\/2\/revisions\/101"}],"wp:attachment":[{"href":"https:\/\/logicwisp.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}