{"id":12,"date":"2026-04-22T16:31:21","date_gmt":"2026-04-22T16:31:21","guid":{"rendered":"https:\/\/gymfluence.ai\/?page_id=12"},"modified":"2026-04-23T09:19:50","modified_gmt":"2026-04-23T09:19:50","slug":"home-page","status":"publish","type":"page","link":"https:\/\/gymfluence.ai\/","title":{"rendered":"Home Page"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"12\" class=\"elementor elementor-12\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3e772e73 elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"3e772e73\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-41aaeca9 elementor-widget elementor-widget-html\" data-id=\"41aaeca9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n\/* --- Elementor Header Fix --- *\/\nheader[data-elementor-type=\"header\"], \n.elementor-location-header, \n#site-header {\n    position: fixed !important;\n    top: 0;\n    left: 0;\n    width: 100%;\n    z-index: 99 !important;\n    transition: transform 0.3s ease;\n}\n\n\/* Base Reset *\/\nhtml, body {\n    overflow-x: hidden;\n    margin: 0;\n}\n\n#gf-snap-container {\n    opacity: 0;\n    transition: opacity 0.4s ease-in-out;\n    z-index: 1;\n}\n\n#gf-snap-container.is-ready {\n    opacity: 1;\n}\n\n\/* State: Disabled (Mobile) *\/\nbody.is-mobile-mode #gf-snap-container {\n    position: static !important;\n    height: auto !important;\n    overflow: visible !important;\n    opacity: 1 !important;\n}\n\nbody.is-mobile-mode .section-slide {\n    position: static !important;\n    transform: none !important;\n    height: auto !important;\n    min-height: auto !important;\n    width: 100% !important;\n}\n\n\/* Desktop Only (>= 769px) *\/\n@media (min-width: 769px) {\n    body:not(.is-mobile-mode):not(.elementor-editor-active) .section-slide,\n    body:not(.is-mobile-mode).elementor-editor-active:not(.elementor-device-mobile) .section-slide {\n        height: 100vh !important;\n        min-height: 100vh !important;\n        max-height: 100vh !important;\n        overflow: hidden !important;\n        display: flex !important;\n        align-items: center !important;\n    }\n}\n\n\/* Animation Control *\/\n@media (min-width: 768px) {\n    .section-slide:not(.is-active) .animated {\n        opacity: 0 !important;\n        animation-name: none !important;\n    }\n}\n\n\/* Navigation Dots *\/\n.gf-slide-nav {\n    position: fixed;\n    right: 20px;\n    top: 50%;\n    transform: translateY(-50%);\n    display: flex;\n    flex-direction: column;\n    gap: 8px;\n    z-index: 99999;\n}\n\n.gf-slide-dot {\n    width: 8px;\n    height: 8px;\n    border-radius: 50%;\n    background: transparent;\n    border: 1.5px solid rgba(255, 255, 255, 0.45);\n    cursor: pointer;\n    transition: all 0.3s ease;\n}\n\n.gf-slide-dot.active {\n    background: #FFFFFF;\n    border-color: #FFFFFF;\n    transform: scale(1.4);\n}\n\n@media (max-width: 767px) {\n    .gf-slide-nav { display: none !important; }\n}\n<\/style>\n\n<script>\n(function () {\n    \/* --- CONFIGURATION --- *\/\n    const DURATION      = 700; \n    const COOLDOWN      = 900; \n    const SCALE_PADDING = 0.85; \n    const MIN_SCALE     = 0.60; \n    \n    const CONTENT_SELECTOR = 'h1, h2, h3, h4, h5, h6, p, img, picture, video, svg, button, .elementor-button, li, .elementor-icon';\n\n    let sections = [], dots = [], currentSec = 0, isAnimating = false;\n    let isInitialized = false;\n    const originalStyles = new WeakMap();\n\n    const IS_MOBILE_VIEW = () => {\n        return window.innerWidth <= 767 || \n               (document.body.classList.contains('elementor-editor-active') && document.body.classList.contains('elementor-device-mobile'));\n    };\n\n    \/* --- CAROUSEL HANDLER --- *\/\n   \/\/ Special function to force the swiper to stop\/run\n    function updateCarouselState(targetIdx) {\n        sections.forEach((sec, i) => {\n            const $carousels = jQuery(sec).find('.elementor-main-swiper, .swiper-container, .slick-slider');\n            \n            $carousels.each(function() {\n                \/\/ 1. Logic for Swiper (Built-in Elementor)\n                const swiperInstance = this.swiper || (jQuery(this).data('swiper'));\n                if (swiperInstance) {\n                    if (i === targetIdx) {\n                        if (swiperInstance.autoplay) swiperInstance.autoplay.start();\n                    } else {\n                        if (swiperInstance.autoplay) swiperInstance.autoplay.stop();\n                    }\n                }\n\n                \/\/ 2. Logic for Slick Slider\n                if (jQuery(this).hasClass('slick-initialized')) {\n                    if (i === targetIdx) {\n                        jQuery(this).slick('slickPlay');\n                    } else {\n                        jQuery(this).slick('slickPause');\n                    }\n                }\n            });\n        });\n    }\n\n    function destroySlideDeck() {\n        if (!isInitialized) return;\n        document.body.classList.add('is-mobile-mode');\n        const wrapper = document.getElementById('gf-snap-container');\n        if (wrapper) {\n            const parent = wrapper.parentElement;\n            sections.forEach(sec => {\n                sec.style = \"\"; \n                sec.classList.remove('is-active');\n                parent.insertBefore(sec, wrapper);\n                resetContentScale(sec);\n            });\n            wrapper.remove();\n        }\n        const nav = document.querySelector('.gf-slide-nav');\n        if (nav) nav.remove();\n        isInitialized = false;\n        sections = []; dots = [];\n    }\n\n    function initSlideDeck() {\n        if (IS_MOBILE_VIEW()) { destroySlideDeck(); return; }\n        if (isInitialized) return;\n\n        document.body.classList.remove('is-mobile-mode');\n        sections = Array.from(document.querySelectorAll('.section-slide'));\n        if (!sections.length) return;\n\n        let wrapper = document.createElement('div');\n        wrapper.id = 'gf-snap-container';\n        Object.assign(wrapper.style, {\n            position: 'fixed', top: '0', left: '0', width: '100%', height: '100vh', overflow: 'hidden', zIndex: '1'\n        });\n        sections[0].parentElement.insertBefore(wrapper, sections[0]);\n\n        sections.forEach((sec, i) => {\n            wrapper.appendChild(sec);\n            Object.assign(sec.style, {\n                position: 'absolute', top: (i * 100) + 'vh', left: '0', width: '100%', height: '100vh', overflow: 'hidden'\n            });\n            if(i === 0) sec.classList.add('is-active');\n        });\n\n        const nav = document.createElement('div');\n        nav.className = 'gf-slide-nav';\n        sections.forEach((_, i) => {\n            const dot = document.createElement('div');\n            dot.className = 'gf-slide-dot' + (i === 0 ? ' active' : '');\n            dot.addEventListener('click', () => goToSection(i));\n            nav.appendChild(dot);\n        });\n        document.body.appendChild(nav);\n        dots = Array.from(nav.querySelectorAll('.gf-slide-dot'));\n\n        setupEvents(wrapper);\n        bindMenuLinks();\n        isInitialized = true;\n        currentSec = 0;\n        \n        scaleAllSections();\n        \n        \/\/ Initialization: Turn off the carousel that is not on slide 1\n        setTimeout(() => updateCarouselState(0), 1000);\n\n        const hash = window.location.hash.substring(1);\n        if (hash) {\n            const idx = sections.findIndex(s => s.id === hash);\n            if (idx !== -1) setTimeout(() => goToSection(idx), 500);\n        }\n\n        requestAnimationFrame(() => { wrapper.classList.add('is-ready'); });\n    }\n\n    function goToSection(idx) {\n        if (isAnimating || idx < 0 || idx >= sections.length || idx === currentSec) return;\n        isAnimating = true;\n        \n        sections.forEach((sec, i) => sec.classList.toggle('is-active', i === idx));\n        dots.forEach((d, i) => d.classList.toggle('active', i === idx));\n        \n        const offset = -idx * 100;\n        sections.forEach(sec => {\n            sec.style.transition = `transform ${DURATION}ms cubic-bezier(0.77, 0, 0.18, 1)`;\n            sec.style.transform = `translateY(${offset}vh)`;\n        });\n\n        currentSec = idx;\n\n        setTimeout(() => {\n            isAnimating = false;\n            window.dispatchEvent(new Event('resize')); \n\n            \/\/ Update carousel state after changing slides\n            updateCarouselState(idx);\n\n            if (window.elementorFrontend) {\n                const $animated = jQuery(sections[idx]).find('.animated');\n                $animated.each(function() {\n                    const $el = jQuery(this);\n                    const anim = $el.data('settings')?._animation || $el.data('settings')?.animation;\n                    if (anim) { $el.removeClass(anim).addClass(anim); }\n                });\n            }\n        }, DURATION + 50);\n    }\n\n    function bindMenuLinks() {\n        document.querySelectorAll('a[href^=\"#\"]').forEach(link => {\n            link.addEventListener('click', function(e) {\n                const targetId = this.getAttribute('href').substring(1);\n                const idx = sections.findIndex(s => s.id === targetId);\n                if (idx !== -1) {\n                    e.preventDefault();\n                    goToSection(idx);\n                    history.pushState(null, null, '#' + targetId);\n                }\n            });\n        });\n    }\n\n    function handleIntent(delta) {\n        if (isAnimating) return;\n        const goingNext = delta > 0;\n        goToSection(goingNext ? currentSec + 1 : currentSec - 1);\n    }\n\n    function saveOriginals(sec) {\n        sec.querySelectorAll(CONTENT_SELECTOR).forEach(el => {\n            if (originalStyles.has(el)) return;\n            const cs = window.getComputedStyle(el);\n            originalStyles.set(el, { fontSize: cs.fontSize, lineHeight: cs.lineHeight });\n        });\n    }\n\n    function resetContentScale(sec) {\n        sec.querySelectorAll(CONTENT_SELECTOR).forEach(el => {\n            const orig = originalStyles.get(el);\n            if (orig) { el.style.fontSize = orig.fontSize; el.style.lineHeight = orig.lineHeight; }\n        });\n    }\n\n    function scaleAllSections() {\n        if (window.innerWidth <= 1024 || !isInitialized) return;\n        sections.forEach((sec, index) => {\n            if (index === 0) return; \n            saveOriginals(sec);\n            resetContentScale(sec);\n            const naturalH = sec.scrollHeight;\n            const availH = window.innerHeight * SCALE_PADDING;\n            if (naturalH > availH) {\n                const scale = Math.max(MIN_SCALE, availH \/ naturalH);\n                sec.querySelectorAll(CONTENT_SELECTOR).forEach(el => {\n                    const orig = originalStyles.get(el);\n                    if (orig) {\n                        el.style.fontSize = (parseFloat(orig.fontSize) * scale) + 'px';\n                        el.style.lineHeight = '1.2';\n                    }\n                });\n            }\n        });\n    }\n\n    function setupEvents(wrapper) {\n        let lastWheel = 0;\n        wrapper.addEventListener('wheel', (e) => {\n            e.stopPropagation(); \n            if (isAnimating) { e.preventDefault(); return; }\n            const now = Date.now();\n            if (now - lastWheel < COOLDOWN) { e.preventDefault(); return; }\n            if (Math.abs(e.deltaY) > 5) { \n                e.preventDefault();\n                lastWheel = now; \n                handleIntent(e.deltaY); \n            }\n        }, { passive: false });\n\n        let touchY = 0;\n        wrapper.addEventListener('touchstart', (e) => { \n            touchY = e.touches[0].clientY; \n        }, { passive: true });\n\n        wrapper.addEventListener('touchmove', (e) => {\n            if (isAnimating) { e.preventDefault(); return; }\n            const diff = e.touches[0].clientY - touchY;\n            if (Math.abs(diff) > 60) {\n                e.stopPropagation(); \n                e.preventDefault();\n                touchY = e.touches[0].clientY;\n                handleIntent(-diff);\n            }\n        }, { passive: false });\n    }\n\n    window.addEventListener('resize', () => {\n        clearTimeout(window.rszTmr);\n        window.rszTmr = setTimeout(() => {\n            if (IS_MOBILE_VIEW()) { destroySlideDeck(); } \n            else if (!isInitialized) { initSlideDeck(); } \n            else {\n                scaleAllSections();\n                sections.forEach(sec => {\n                    sec.style.transition = 'none';\n                    sec.style.transform = `translateY(${-currentSec * 100}vh)`;\n                });\n            }\n        }, 200);\n    });\n\n    if (document.readyState === 'loading') {\n        document.addEventListener('DOMContentLoaded', initSlideDeck);\n    } else {\n        initSlideDeck();\n    }\n})();\n<\/script>\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-66a73b37 section-slide e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"66a73b37\" data-element_type=\"container\" data-e-type=\"container\" id=\"home\" 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-3777462 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"3777462\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1f37f19e early-access-open elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-invisible elementor-widget elementor-widget-icon-list\" data-id=\"1f37f19e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-circle\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Early Access Open<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-12cbec64 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"12cbec64\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">You + A Coach + <span class=\"gf-shimmer\">Behavioral Intelligence<\/span><\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4ac799a5 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"4ac799a5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p data-hero-desc=\"true\">Real coaching. Real AI. The first fat-loss program that knows when you&#8217;re about to quit \u2014 and does something about it.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-15ea99b5 e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"15ea99b5\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-54dcefbc btn-primary elementor-widget elementor-widget-button\" data-id=\"54dcefbc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#early-access\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">EARLY ACCESS<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-850b3a6 btn-ghost elementor-widget elementor-widget-button\" data-id=\"850b3a6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#the-formula\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">How It Works<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\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-3f43634c e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"3f43634c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-565b8acc elementor-invisible elementor-widget elementor-widget-image\" data-id=\"565b8acc\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"720\" height=\"905\" src=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/hero-image-cropped.gif\" class=\"attachment-large size-large wp-image-9735\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\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-4359cf81 section-slide e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"4359cf81\" data-element_type=\"container\" data-e-type=\"container\" id=\"the-formula\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-1896a334 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"1896a334\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7f0ce5f6 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"7f0ce5f6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">THE FORMULA<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3e8ab8bc elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"3e8ab8bc\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">How Gymfluence helps you <span style=\"font-weight: 700\"> stay consistent <\/span><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-23974b23 elementor-widget__width-initial elementor-widget-mobile__width-initial elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"23974b23\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<div><div><p>Most people do not fail because they lack a plan. They fall off when life gets busy, motivation drops, or small misses start to add up. Gymfluence helps catch that early.<\/p><\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5f5f59bc elementor-absolute elementor-invisible elementor-widget elementor-widget-html\" data-id=\"5f5f59bc\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div style=\"position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(240, 64, 0, 0.125) 0%, transparent 70%); filter: blur(80px);\"><\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-54f69c04 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"54f69c04\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-26bdddbc e-con-full gf-the-formula e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"26bdddbc\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-40897820 e-con-full gf-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"40897820\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-79895aa2 e-con-full gf-card e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"79895aa2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1e56d40b e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"1e56d40b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-4d93ddf2 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"4d93ddf2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2ffba79b elementor-widget elementor-widget-heading\" data-id=\"2ffba79b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">01<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3690941f elementor-widget elementor-widget-heading\" data-id=\"3690941f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">You<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3f89ad9f elementor-widget elementor-widget-text-editor\" data-id=\"3f89ad9f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Follow your plan and log your meals. No calorie math, no guesswork \u2014 just check in daily.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-536168fe elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"536168fe\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\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-7599635f e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"7599635f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6924e734 elementor-view-default elementor-invisible elementor-widget elementor-widget-icon\" data-id=\"6924e734\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<i aria-hidden=\"true\" class=\"icofont icofont-plus\"><\/i>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3ef2c10b e-con-full gf-the-formula e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"3ef2c10b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-1197b1cd e-con-full gf-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"1197b1cd\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5dd01172 e-con-full gf-card e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"5dd01172\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-37e548 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"37e548\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-73ce3b32 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"73ce3b32\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-581cf8ac elementor-widget elementor-widget-heading\" data-id=\"581cf8ac\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">02<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4068a49d elementor-widget elementor-widget-heading\" data-id=\"4068a49d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Your Coach\n<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-72038e0 elementor-widget elementor-widget-text-editor\" data-id=\"72038e0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Reviews your data weekly. Adjusts your plan. Reaches out when it matters.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a940c59 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"a940c59\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\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-64c35626 e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"64c35626\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8803ce6 elementor-view-default elementor-invisible elementor-widget elementor-widget-icon\" data-id=\"8803ce6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"icon.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-wrapper\">\n\t\t\t<div class=\"elementor-icon\">\n\t\t\t<i aria-hidden=\"true\" class=\"icofont icofont-plus\"><\/i>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-34ca2b57 e-con-full gf-the-formula e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"34ca2b57\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-14c2c983 e-con-full gf-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"14c2c983\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-573e55c8 e-con-full gf-card e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"573e55c8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6de178a8 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"6de178a8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-5d24758b e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"5d24758b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-65b210ad elementor-widget elementor-widget-heading\" data-id=\"65b210ad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">03<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-40e9ae7c elementor-widget elementor-widget-heading\" data-id=\"40e9ae7c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Behavioral Intelligence\n<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-73125569 elementor-widget elementor-widget-text-editor\" data-id=\"73125569\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Gives your coach the full picture \u2014 so their guidance is always timely, always personal.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6c1a2ba7 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"6c1a2ba7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/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-75ec64f7 section-slide e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"75ec64f7\" data-element_type=\"container\" data-e-type=\"container\" id=\"app-preview\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1d74a745 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"1d74a745\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">CLIENT MOBILE APP<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7900399c elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"7900399c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">All in one <span style=\"color: #FFFFFF;font-weight: 700\"> control system<\/span><\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-24542c63 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"24542c63\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-78f8155e gf-mobile-app-carousel lakit-arrow--showonhover-no elementor-widget lastudio-kit elementor-widget-lakit-n-carousel lakit-carousel-v2\" data-id=\"78f8155e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"lakit-nested-carousel.default\">\n\t\t\t\t\t<style>.swiper-wrapper-78f8155e{--e-c-col:1}@media(max-width: 1366px){.swiper-wrapper-78f8155e{--e-c-col:1}}@media(max-width: 1024px){.swiper-wrapper-78f8155e{--e-c-col:1}}@media(max-width: 767px){.swiper-wrapper-78f8155e{--e-c-col:}}<\/style>        <div class=\"lakit-carousel\" data-slider_options=\"{&quot;slidesToScroll&quot;:{&quot;desktop&quot;:&quot;1&quot;,&quot;mobile&quot;:&quot;&quot;,&quot;tablet&quot;:&quot;1&quot;,&quot;laptop&quot;:&quot;1&quot;},&quot;rows&quot;:{&quot;desktop&quot;:&quot;1&quot;,&quot;mobile&quot;:&quot;&quot;,&quot;tablet&quot;:&quot;1&quot;,&quot;laptop&quot;:&quot;1&quot;},&quot;autoplaySpeed&quot;:5000,&quot;autoplay&quot;:true,&quot;infinite&quot;:true,&quot;centerMode&quot;:false,&quot;pauseOnHover&quot;:false,&quot;pauseOnInteraction&quot;:false,&quot;reverseDirection&quot;:false,&quot;infiniteEffect&quot;:false,&quot;speed&quot;:500,&quot;arrows&quot;:true,&quot;dots&quot;:true,&quot;variableWidth&quot;:false,&quot;prevArrow&quot;:&quot;.lakit-carousel__prev-arrow-78f8155e&quot;,&quot;nextArrow&quot;:&quot;.lakit-carousel__next-arrow-78f8155e&quot;,&quot;dotsElm&quot;:&quot;.lakit-carousel__dots_78f8155e&quot;,&quot;rtl&quot;:false,&quot;effect&quot;:&quot;slide&quot;,&quot;coverflowEffect&quot;:{&quot;rotate&quot;:null,&quot;stretch&quot;:null,&quot;depth&quot;:null,&quot;modifier&quot;:null,&quot;scale&quot;:null},&quot;creativeEffect&quot;:{&quot;translateX&quot;:100},&quot;dotType&quot;:&quot;bullets&quot;,&quot;direction&quot;:&quot;horizontal&quot;,&quot;uniqueID&quot;:&quot;lakit_carousel_78f8155e&quot;,&quot;asFor&quot;:&quot;&quot;,&quot;thumbs&quot;:&quot;&quot;,&quot;autoHeight&quot;:false,&quot;scrollbar&quot;:{&quot;enabled&quot;:false,&quot;el&quot;:&quot;.lakit-carousel__scrollbar_78f8155e&quot;},&quot;directionbkp&quot;:{&quot;desktop&quot;:&quot;horizontal&quot;,&quot;mobile&quot;:&quot;&quot;,&quot;tablet&quot;:&quot;horizontal&quot;,&quot;laptop&quot;:&quot;horizontal&quot;},&quot;slidesToShow&quot;:{&quot;desktop&quot;:&quot;1&quot;,&quot;mobile&quot;:&quot;&quot;,&quot;tablet&quot;:&quot;1&quot;,&quot;laptop&quot;:&quot;1&quot;}}\" dir=\"ltr\">\n            <div class=\"lakit-carousel-inner\">\n                <div class=\"swiper-container swiper-container-78f8155e\" id=\"lakit_carousel_78f8155e\">\n                    <div class=\"swiper-wrapper swiper-wrapper-78f8155e\">\n                                                    <div class=\"swiper-slide swiper-slide--78f8155e\" data-slide=\"1\">\n                                <div class=\"elementor-element elementor-element-6188ece e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"6188ece\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5a7ee427 e-flex e-con-boxed lakit-col-width-auto-no e-container e-con e-child\" data-id=\"5a7ee427\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-3a738acd e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"3a738acd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-541fb9dc elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"541fb9dc\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">01<\/h1>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d9a7282 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"d9a7282\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7bec65c elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"7bec65c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">CLIENT MOBILE APP<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3daec743 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"3daec743\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">This isn\u2019t just tracking.\n<br>\nIt\u2019s transformation.<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-637abdd7 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"637abdd7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Everything you do daily builds into real progress &#8211; guided by your coach.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7bcdddb1 e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"7bcdddb1\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1a817c1 elementor-widget elementor-widget-icon-box\" data-id=\"1a817c1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tHabit Tracking\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6b9ed402 elementor-widget elementor-widget-icon-box\" data-id=\"6b9ed402\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tReal Insights\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-42b3d6e7 elementor-widget elementor-widget-icon-box\" data-id=\"42b3d6e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tCoach Guidances\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\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-65b001e7 e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"65b001e7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2544844c elementor-invisible elementor-widget elementor-widget-image\" data-id=\"2544844c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"535\" height=\"1024\" src=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-dashboard-535x1024.png\" class=\"attachment-large size-large wp-image-9468\" alt=\"\" srcset=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-dashboard-535x1024.png 535w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-dashboard-157x300.png 157w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-dashboard-768x1469.png 768w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-dashboard-803x1536.png 803w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-dashboard.png 1055w\" sizes=\"(max-width: 535px) 100vw, 535px\" \/>\t\t\t\t\t\t\t\t\t\t\t\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                            <\/div>\n                                                        <div class=\"swiper-slide swiper-slide--78f8155e\" data-slide=\"2\">\n                                <div class=\"elementor-element elementor-element-2d41f730 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"2d41f730\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-119be8fd e-flex e-con-boxed lakit-col-width-auto-no e-container e-con e-child\" data-id=\"119be8fd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-b81ef6d e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"b81ef6d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-540ee792 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"540ee792\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">02<\/h1>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-49eae55b e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"49eae55b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1b500c5e elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"1b500c5e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">PERSONALIZED TARGETS<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1ffa206f elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"1ffa206f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Built around YOU.<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-21647cb8 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"21647cb8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Your coach sets your calories and macros &#8211; and adapts them weekly. Not just numbers &#8211; your coach is behind every update.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5fa357a7 e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"5fa357a7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-250f1b7b elementor-widget elementor-widget-icon-box\" data-id=\"250f1b7b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tPersonalized\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1efca59d elementor-widget elementor-widget-icon-box\" data-id=\"1efca59d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tWeekly Updates\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3d2c3d60 elementor-widget elementor-widget-icon-box\" data-id=\"3d2c3d60\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tSmart Adjustment\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\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-3374439 e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"3374439\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2725ea12 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"2725ea12\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"535\" height=\"1024\" src=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-target-summary-535x1024.png\" class=\"attachment-large size-large wp-image-9473\" alt=\"\" srcset=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-target-summary-535x1024.png 535w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-target-summary-157x300.png 157w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-target-summary-768x1469.png 768w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-target-summary-803x1536.png 803w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-target-summary.png 1055w\" sizes=\"(max-width: 535px) 100vw, 535px\" \/>\t\t\t\t\t\t\t\t\t\t\t\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                            <\/div>\n                                                        <div class=\"swiper-slide swiper-slide--78f8155e\" data-slide=\"3\">\n                                <div class=\"elementor-element elementor-element-5fe62cd e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"5fe62cd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5607928e e-flex e-con-boxed lakit-col-width-auto-no e-container e-con e-child\" data-id=\"5607928e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-4d3cbc61 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"4d3cbc61\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3d9cd7b5 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"3d9cd7b5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">03<\/h1>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4df9b5ae e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"4df9b5ae\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4219e2de elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"4219e2de\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">PERSONALIZED TARGETS<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-69f0f94d elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"69f0f94d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Track your day in seconds.<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-354cf87c elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"354cf87c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Log workouts, mood, sleep, and energy &#8211; all in one place.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5e256985 e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"5e256985\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4df33fef elementor-widget elementor-widget-icon-box\" data-id=\"4df33fef\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tQuick Logging\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1891cc7b elementor-widget elementor-widget-icon-box\" data-id=\"1891cc7b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tSimple UI\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2675147b elementor-widget elementor-widget-icon-box\" data-id=\"2675147b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tConsistancy\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\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-2b3e98d9 e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"2b3e98d9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-19bfc151 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"19bfc151\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"352\" height=\"673\" src=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-current-weight.png\" class=\"attachment-large size-large wp-image-9472\" alt=\"\" srcset=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-current-weight.png 352w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-current-weight-157x300.png 157w\" sizes=\"(max-width: 352px) 100vw, 352px\" \/>\t\t\t\t\t\t\t\t\t\t\t\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                            <\/div>\n                                                        <div class=\"swiper-slide swiper-slide--78f8155e\" data-slide=\"4\">\n                                <div class=\"elementor-element elementor-element-44942735 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"44942735\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4badb870 e-flex e-con-boxed lakit-col-width-auto-no e-container e-con e-child\" data-id=\"4badb870\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-3404537a e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"3404537a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-57ef9ece elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"57ef9ece\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">04<\/h1>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-66b795ab e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"66b795ab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-339c0735 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"339c0735\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">RESULTS<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3b6c59d7 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"3b6c59d7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">See the progress.\n<br>\nFeel the change.<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-440648bc elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"440648bc\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Track your transformation with clear data and milestones.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-43f8bcd3 e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"43f8bcd3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7029536f elementor-widget elementor-widget-icon-box\" data-id=\"7029536f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tVisual Progress\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-314c8c31 elementor-widget elementor-widget-icon-box\" data-id=\"314c8c31\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tMilestones\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-11e6d7fd elementor-widget elementor-widget-icon-box\" data-id=\"11e6d7fd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tMotivation\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\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-2f205c52 e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"2f205c52\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-59dd62af elementor-invisible elementor-widget elementor-widget-image\" data-id=\"59dd62af\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"352\" height=\"673\" src=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-progress.png\" class=\"attachment-large size-large wp-image-9471\" alt=\"\" srcset=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-progress.png 352w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-mobile-progress-157x300.png 157w\" sizes=\"(max-width: 352px) 100vw, 352px\" \/>\t\t\t\t\t\t\t\t\t\t\t\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                            <\/div>\n                                                        <div class=\"swiper-slide swiper-slide--78f8155e\" data-slide=\"5\">\n                                <div class=\"elementor-element elementor-element-56c0705c e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"56c0705c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2ebf52a e-flex e-con-boxed lakit-col-width-auto-no e-container e-con e-child\" data-id=\"2ebf52a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-3d7bcd3e e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"3d7bcd3e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-402019fa elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"402019fa\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">05<\/h1>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5aba8583 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"5aba8583\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7c40b71f elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"7c40b71f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">REAL DATA<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-43853b8 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"43853b8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Behavioral intelligence at work.<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5728b7ff elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"5728b7ff\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Instantly see how every client is doing &#8211; from adherence and activity to recovery and mindset &#8211; all in one unified dashboard.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9096e3e e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"9096e3e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-69082b2d elementor-widget elementor-widget-icon-box\" data-id=\"69082b2d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tStatus &amp; Alerts\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-24dd0208 elementor-widget elementor-widget-icon-box\" data-id=\"24dd0208\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tRisk Identification\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\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-7a676e9b e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"7a676e9b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-374989b9 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"374989b9\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"470\" src=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-laptop-dashboard-1024x602.png\" class=\"attachment-large size-large wp-image-9469\" alt=\"\" srcset=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-laptop-dashboard-1024x602.png 1024w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-laptop-dashboard-300x176.png 300w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-laptop-dashboard-768x452.png 768w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-laptop-dashboard-1536x903.png 1536w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-laptop-dashboard-2048x1204.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\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                            <\/div>\n                                                        <div class=\"swiper-slide swiper-slide--78f8155e\" data-slide=\"6\">\n                                <div class=\"elementor-element elementor-element-2515b6be e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"2515b6be\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5943274d e-flex e-con-boxed lakit-col-width-auto-no e-container e-con e-child\" data-id=\"5943274d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-3aa64d8d e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"3aa64d8d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-19bba09 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"19bba09\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">06<\/h1>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-77ec3869 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"77ec3869\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-13b40333 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"13b40333\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">COACHING SYSTEM<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2df781b elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"2df781b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Take action.\n<br>\nNot just insights.<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1e0fbaa3 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"1e0fbaa3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Build plans, review weekly reports, and guide clients with clarity and precision.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d7e5be2 e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"d7e5be2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5ca18a95 elementor-widget elementor-widget-icon-box\" data-id=\"5ca18a95\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tPlan Builder\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-32535d38 elementor-widget elementor-widget-icon-box\" data-id=\"32535d38\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-box.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-icon-box-wrapper\">\n\n\t\t\t\n\t\t\t\t\t\t<div class=\"elementor-icon-box-content\">\n\n\t\t\t\t\t\t\t\t\t<p class=\"elementor-icon-box-title\">\n\t\t\t\t\t\t<span  >\n\t\t\t\t\t\t\tFeedback Reports\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/p>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n\t\t\t\n\t\t<\/div>\n\t\t\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-7a754399 e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"7a754399\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-30194b21 elementor-invisible elementor-widget elementor-widget-image\" data-id=\"30194b21\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"470\" src=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-laptop-client-hub-1024x602.png\" class=\"attachment-large size-large wp-image-9470\" alt=\"\" srcset=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-laptop-client-hub-1024x602.png 1024w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-laptop-client-hub-300x176.png 300w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-laptop-client-hub-768x452.png 768w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-laptop-client-hub-1536x903.png 1536w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2026\/04\/gf-laptop-client-hub-2048x1204.png 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\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                            <\/div>\n                                                <\/div>\n                <\/div>\n            <\/div>\n            <div class=\"lakit-carousel__dots lakit-carousel__dots_78f8155e swiper-pagination\"><\/div><div class=\"lakit-carousel__prev-arrow-78f8155e lakit-arrow prev-arrow\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" class=\"lakit-font-icon-svg\" data-icon-name=\"arrow-left\" data-icon-type=\"LaStudioIcons\"><path d=\"M54 101.4L5.4 150l48.9 48.9 48.9 48.9 6.6-6.6 6.9-6.9-37.5-37.5-37.5-37.5h239.7v-18.6H41.7l37.5-37.5 37.5-37.5-6.6-6.6c-3.3-3.6-6.6-6.3-6.9-6.3S80.7 74.7 54 101.4\" fill=\"currentColor\"\/><\/svg><\/div><div class=\"lakit-carousel__next-arrow-78f8155e lakit-arrow next-arrow\"><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"300\" height=\"300\" viewBox=\"0 0 300 300\" class=\"lakit-font-icon-svg\" data-icon-name=\"arrow-right\" data-icon-type=\"LaStudioIcons\"><path d=\"M189.9 59.1l-6.3 6.6 37.2 37.5 37.5 37.5H18.9v18.6h239.4l-37.5 37.5-37.5 37.5 6.9 6.9 6.6 6.6 48.9-48.9 48.9-48.9-48.6-48.6c-26.7-26.7-48.9-48.6-49.2-48.6s-3.3 2.7-6.9 6.3\" fill=\"currentColor\"\/><\/svg><\/div>        <\/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-4a32d82c section-slide e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"4a32d82c\" data-element_type=\"container\" data-e-type=\"container\" id=\"the-reality\" 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-347db5f9 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"347db5f9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5d42ed71 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"5d42ed71\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-35c758dd elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"35c758dd\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">THE REALITY<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2577d033 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"2577d033\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">You've already<br><span style=\"color: #FFFFFF;font-weight: 700\"> tried doing this alone<\/span>\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1c22c828 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"1c22c828\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3bf47559 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"3bf47559\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Most people don&#8217;t need more information. They need someone who pays attention.<\/p>\t\t\t\t\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-33a16ff4 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"33a16ff4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-477eda73 e-con-full gf-the-reality e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"477eda73\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-4976b0d7 e-con-full gf-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"4976b0d7\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1a6dd76 e-con-full gf-card gf-glass has-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"1a6dd76\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-6bbce784 e-con-full gf-sounds-familiar e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"6bbce784\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-27eaf462 elementor-widget elementor-widget-heading\" data-id=\"27eaf462\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">SOUND FAMILIAR?<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-733bdd3b elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"733bdd3b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-remove\" data-icon-type=\"dlicon\"><path d=\"M886.624 137.376c-12.512-12.512-32.736-12.512-45.248 0L512 466.752 182.624 137.376c-12.512-12.512-32.736-12.512-45.248 0s-12.512 32.736 0 45.248L466.752 512 137.376 841.376c-12.512 12.512-12.512 32.736 0 45.248 6.24 6.24 14.432 9.376 22.624 9.376s16.384-3.136 22.624-9.376L512 557.248l329.376 329.376c6.24 6.24 14.432 9.376 22.624 9.376s16.384-3.136 22.624-9.376c12.512-12.512 12.512-32.736 0-45.248L557.248 512l329.376-329.376c12.512-12.512 12.512-32.736 0-45.248z\" fill=\"currentColor\"\/><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Start strong, lose momentum after 2\u20133 weeks<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-remove\" data-icon-type=\"dlicon\"><path d=\"M886.624 137.376c-12.512-12.512-32.736-12.512-45.248 0L512 466.752 182.624 137.376c-12.512-12.512-32.736-12.512-45.248 0s-12.512 32.736 0 45.248L466.752 512 137.376 841.376c-12.512 12.512-12.512 32.736 0 45.248 6.24 6.24 14.432 9.376 22.624 9.376s16.384-3.136 22.624-9.376L512 557.248l329.376 329.376c6.24 6.24 14.432 9.376 22.624 9.376s16.384-3.136 22.624-9.376c12.512-12.512 12.512-32.736 0-45.248L557.248 512l329.376-329.376c12.512-12.512 12.512-32.736 0-45.248z\" fill=\"currentColor\"\/><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Apps and programs that felt impersonal<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-remove\" data-icon-type=\"dlicon\"><path d=\"M886.624 137.376c-12.512-12.512-32.736-12.512-45.248 0L512 466.752 182.624 137.376c-12.512-12.512-32.736-12.512-45.248 0s-12.512 32.736 0 45.248L466.752 512 137.376 841.376c-12.512 12.512-12.512 32.736 0 45.248 6.24 6.24 14.432 9.376 22.624 9.376s16.384-3.136 22.624-9.376L512 557.248l329.376 329.376c6.24 6.24 14.432 9.376 22.624 9.376s16.384-3.136 22.624-9.376c12.512-12.512 12.512-32.736 0-45.248L557.248 512l329.376-329.376c12.512-12.512 12.512-32.736 0-45.248z\" fill=\"currentColor\"\/><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Know what to do but can't make it stick<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-remove\" data-icon-type=\"dlicon\"><path d=\"M886.624 137.376c-12.512-12.512-32.736-12.512-45.248 0L512 466.752 182.624 137.376c-12.512-12.512-32.736-12.512-45.248 0s-12.512 32.736 0 45.248L466.752 512 137.376 841.376c-12.512 12.512-12.512 32.736 0 45.248 6.24 6.24 14.432 9.376 22.624 9.376s16.384-3.136 22.624-9.376L512 557.248l329.376 329.376c6.24 6.24 14.432 9.376 22.624 9.376s16.384-3.136 22.624-9.376c12.512-12.512 12.512-32.736 0-45.248L557.248 512l329.376-329.376c12.512-12.512 12.512-32.736 0-45.248z\" fill=\"currentColor\"\/><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Doctor said \"lose weight\" \u2014 no real roadmap<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-remove\" data-icon-type=\"dlicon\"><path d=\"M886.624 137.376c-12.512-12.512-32.736-12.512-45.248 0L512 466.752 182.624 137.376c-12.512-12.512-32.736-12.512-45.248 0s-12.512 32.736 0 45.248L466.752 512 137.376 841.376c-12.512 12.512-12.512 32.736 0 45.248 6.24 6.24 14.432 9.376 22.624 9.376s16.384-3.136 22.624-9.376L512 557.248l329.376 329.376c6.24 6.24 14.432 9.376 22.624 9.376s16.384-3.136 22.624-9.376c12.512-12.512 12.512-32.736 0-45.248L557.248 512l329.376-329.376c12.512-12.512 12.512-32.736 0-45.248z\" fill=\"currentColor\"\/><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Dieted so many times you don't trust the process<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\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-2e55d821 e-con-full gf-the-reality e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"2e55d821\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-7d94d7e1 e-con-full gf-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"7d94d7e1\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-766d977b e-con-full gf-card gf-glass has-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"766d977b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-736b144a e-con-full gf-what-changes e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"736b144a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-264e2dcc elementor-widget elementor-widget-heading\" data-id=\"264e2dcc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">WHAT CHANGES WITH GYMFLUENCE<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1dbfbea5 elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-widget elementor-widget-icon-list\" data-id=\"1dbfbea5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"icofont icofont-check\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">A real coach who contacts you when things go quiet \u2014 because the system told them to<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"icofont icofont-check\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">A plan adjusted to your actual schedule and preferences<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"icofont icofont-check\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Weekly accountability \u2014 not daily anxiety<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"icofont icofont-check\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Behavioral Intelligence spots trouble before you feel it<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"icofont icofont-check\"><\/i>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Progress tracked and visible \u2014 trust what's working<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/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-22a5dd5f section-slide e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"22a5dd5f\" data-element_type=\"container\" data-e-type=\"container\" id=\"who-this-is-for\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-4ab00101 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"4ab00101\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5f8bd601 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"5f8bd601\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">WHO THIS IS FOR<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-114493cd elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"114493cd\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">If this sounds like you, <span style=\"color: #FFFFFF;font-weight: 700\">we need to talk<\/span><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7dd0038e e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"7dd0038e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-73ef3816 e-con-full gf-who-this-is-for e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"73ef3816\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-1fa2f6e8 e-con-full gf-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"1fa2f6e8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-71a51611 e-con-full gf-card has-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"71a51611\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7cb3b76a elementor-widget elementor-widget-heading\" data-id=\"7cb3b76a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">01<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4c8bad14 elementor-widget elementor-widget-heading\" data-id=\"4c8bad14\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">Structured &amp; Data-Driven\n<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-75bc7cac elementor-widget elementor-widget-heading\" data-id=\"75bc7cac\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">You want a system, not a vibe<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-549fcd9 elementor-widget elementor-widget-text-editor\" data-id=\"549fcd9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>You like tracking, seeing numbers move, and want a coach who speaks that language.<\/p>\t\t\t\t\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-7be7a64d e-con-full gf-who-this-is-for e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"7be7a64d\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-3fb6370e e-con-full gf-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"3fb6370e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5bf5b0b7 e-con-full gf-card has-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"5bf5b0b7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7f889905 elementor-widget elementor-widget-heading\" data-id=\"7f889905\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">02<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-33b57bf elementor-widget elementor-widget-heading\" data-id=\"33b57bf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">Done With Diet Culture<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1b01f4ea elementor-widget elementor-widget-heading\" data-id=\"1b01f4ea\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">You've tried everything<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3faebe88 elementor-widget elementor-widget-text-editor\" data-id=\"3faebe88\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Yo-yo dieting, restriction, guilt cycles \u2014 you&#8217;re done. Sustainable, evidence-based nutrition.<\/p>\t\t\t\t\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-3e9d345c e-con-full gf-who-this-is-for e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"3e9d345c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-75237658 e-con-full gf-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"75237658\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-227b5c09 e-con-full gf-card has-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"227b5c09\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-21124655 elementor-widget elementor-widget-heading\" data-id=\"21124655\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">03<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-469dac8e elementor-widget elementor-widget-heading\" data-id=\"469dac8e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">Health As Priority<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-554b0430 elementor-widget elementor-widget-heading\" data-id=\"554b0430\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">A wake-up call made it real<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6e97a4ad elementor-widget elementor-widget-text-editor\" data-id=\"6e97a4ad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Blood test, doctor visit, or just deciding it&#8217;s time. You want to be healthy for the long haul.<\/p>\t\t\t\t\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-51d8f7e8 e-con-full gf-who-this-is-for e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"51d8f7e8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeInUp&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-2366c592 e-con-full gf-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"2366c592\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3db0af2e e-con-full gf-card has-border-beam e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"3db0af2e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3b2ae5d2 elementor-widget elementor-widget-heading\" data-id=\"3b2ae5d2\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">04<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1f31a3b7 elementor-widget elementor-widget-heading\" data-id=\"1f31a3b7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h6 class=\"elementor-heading-title elementor-size-default\">Busy But Committed<\/h6>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7e19bd7c elementor-widget elementor-widget-heading\" data-id=\"7e19bd7c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">You need it to just work<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-43af54c8 elementor-widget elementor-widget-text-editor\" data-id=\"43af54c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Between work, family, and life \u2014 you can&#8217;t spend hours on meal prep. You need a coach who makes it simple.<\/p>\t\t\t\t\t\t\t\t<\/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-123321dc section-slide e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"123321dc\" data-element_type=\"container\" data-e-type=\"container\" id=\"faqs\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1d9c5039 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"1d9c5039\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">FAQS<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6a2a06dd elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"6a2a06dd\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Before you <span style=\"color: #FFFFFF;font-weight: 700\">decide<\/span>\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2a9decf2 gf-faq elementor-invisible elementor-widget elementor-widget-n-accordion\" data-id=\"2a9decf2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;default_state&quot;:&quot;all_collapsed&quot;,&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;max_items_expended&quot;:&quot;one&quot;,&quot;n_accordion_animation_duration&quot;:{&quot;unit&quot;:&quot;ms&quot;,&quot;size&quot;:400,&quot;sizes&quot;:[]}}\" data-widget_type=\"nested-accordion.default\">\n\t\t\t\t\t\t\t<div class=\"e-n-accordion\" aria-label=\"Accordion. Open links with Enter or Space, close with Escape, and navigate with Arrow Keys\">\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-7140\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"1\" tabindex=\"0\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-7140\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> What does \"early access\" mean? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-add\" data-icon-type=\"dlicon\"><path d=\"M64 544h416v416c0 17.696 14.304 32 32 32s32-14.304 32-32V544h416c17.696 0 32-14.304 32-32s-14.304-32-32-32H544V64c0-17.696-14.304-32-32-32s-32 14.304-32 32v416H64c-17.696 0-32 14.304-32 32s14.304 32 32 32z\" fill=\"currentColor\"\/><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-add\" data-icon-type=\"dlicon\"><path d=\"M64 544h416v416c0 17.696 14.304 32 32 32s32-14.304 32-32V544h416c17.696 0 32-14.304 32-32s-14.304-32-32-32H544V64c0-17.696-14.304-32-32-32s-32 14.304-32 32v416H64c-17.696 0-32 14.304-32 32s14.304 32 32 32z\" fill=\"currentColor\"\/><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-7140\" class=\"elementor-element elementor-element-3d356c6e e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"3d356c6e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5de51230 elementor-widget elementor-widget-text-editor\" data-id=\"5de51230\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<div><div><div><p>We&#8217;re launching with a small group of early clients. You get a reduced rate and direct influence on how the program develops. Real coaching at a fraction of the regular price \u2014 in exchange for being among the first.<\/p><\/div><\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-7141\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"2\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-7141\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Who are the coaches? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-add\" data-icon-type=\"dlicon\"><path d=\"M64 544h416v416c0 17.696 14.304 32 32 32s32-14.304 32-32V544h416c17.696 0 32-14.304 32-32s-14.304-32-32-32H544V64c0-17.696-14.304-32-32-32s-32 14.304-32 32v416H64c-17.696 0-32 14.304-32 32s14.304 32 32 32z\" fill=\"currentColor\"\/><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-add\" data-icon-type=\"dlicon\"><path d=\"M64 544h416v416c0 17.696 14.304 32 32 32s32-14.304 32-32V544h416c17.696 0 32-14.304 32-32s-14.304-32-32-32H544V64c0-17.696-14.304-32-32-32s-32 14.304-32 32v416H64c-17.696 0-32 14.304-32 32s14.304 32 32 32z\" fill=\"currentColor\"\/><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-7141\" class=\"elementor-element elementor-element-27f61443 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"27f61443\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-706b22b elementor-widget elementor-widget-text-editor\" data-id=\"706b22b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Experienced nutrition professionals \u2014 certified nutritionists and licensed dietitians with real client experience in fat loss and body composition. Every coach is vetted, credentialed, and works within evidence-based frameworks.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-7142\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"3\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-7142\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> What is Behavioral Intelligence? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-add\" data-icon-type=\"dlicon\"><path d=\"M64 544h416v416c0 17.696 14.304 32 32 32s32-14.304 32-32V544h416c17.696 0 32-14.304 32-32s-14.304-32-32-32H544V64c0-17.696-14.304-32-32-32s-32 14.304-32 32v416H64c-17.696 0-32 14.304-32 32s14.304 32 32 32z\" fill=\"currentColor\"\/><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-add\" data-icon-type=\"dlicon\"><path d=\"M64 544h416v416c0 17.696 14.304 32 32 32s32-14.304 32-32V544h416c17.696 0 32-14.304 32-32s-14.304-32-32-32H544V64c0-17.696-14.304-32-32-32s-32 14.304-32 32v416H64c-17.696 0-32 14.304-32 32s14.304 32 32 32z\" fill=\"currentColor\"\/><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-7142\" class=\"elementor-element elementor-element-339bfe20 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"339bfe20\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-29c74b5d elementor-widget elementor-widget-text-editor\" data-id=\"29c74b5d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>The system that tracks your patterns between check-ins \u2014 logging frequency, macro adherence, engagement. When it detects a shift, it alerts your coach to reach out proactively. Not a chatbot, not replacing your coach.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-7143\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"4\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-7143\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> Do I need to track macros? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-add\" data-icon-type=\"dlicon\"><path d=\"M64 544h416v416c0 17.696 14.304 32 32 32s32-14.304 32-32V544h416c17.696 0 32-14.304 32-32s-14.304-32-32-32H544V64c0-17.696-14.304-32-32-32s-32 14.304-32 32v416H64c-17.696 0-32 14.304-32 32s14.304 32 32 32z\" fill=\"currentColor\"\/><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-add\" data-icon-type=\"dlicon\"><path d=\"M64 544h416v416c0 17.696 14.304 32 32 32s32-14.304 32-32V544h416c17.696 0 32-14.304 32-32s-14.304-32-32-32H544V64c0-17.696-14.304-32-32-32s-32 14.304-32 32v416H64c-17.696 0-32 14.304-32 32s14.304 32 32 32z\" fill=\"currentColor\"\/><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-7143\" class=\"elementor-element elementor-element-124a21a1 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"124a21a1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6cc65157 elementor-widget elementor-widget-text-editor\" data-id=\"6cc65157\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Macro tracking is core to the program \u2014 it gives your coach concrete data and powers Behavioral Intelligence. You&#8217;ll use MyFitnessPal or Cronometer. Your coach can adapt if you&#8217;re newer to tracking.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-7144\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"5\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-7144\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> How long is the program? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-add\" data-icon-type=\"dlicon\"><path d=\"M64 544h416v416c0 17.696 14.304 32 32 32s32-14.304 32-32V544h416c17.696 0 32-14.304 32-32s-14.304-32-32-32H544V64c0-17.696-14.304-32-32-32s-32 14.304-32 32v416H64c-17.696 0-32 14.304-32 32s14.304 32 32 32z\" fill=\"currentColor\"\/><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-add\" data-icon-type=\"dlicon\"><path d=\"M64 544h416v416c0 17.696 14.304 32 32 32s32-14.304 32-32V544h416c17.696 0 32-14.304 32-32s-14.304-32-32-32H544V64c0-17.696-14.304-32-32-32s-32 14.304-32 32v416H64c-17.696 0-32 14.304-32 32s14.304 32 32 32z\" fill=\"currentColor\"\/><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-7144\" class=\"elementor-element elementor-element-7329baac e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"7329baac\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-289744d8 elementor-widget elementor-widget-text-editor\" data-id=\"289744d8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>No fixed end date. Most clients see meaningful results within 8\u201312 weeks, but the program is designed around sustainable habits. Stay as long as it&#8217;s helping you.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t\t<details id=\"e-n-accordion-item-7145\" class=\"e-n-accordion-item\" >\n\t\t\t\t<summary class=\"e-n-accordion-item-title\" data-accordion-index=\"6\" tabindex=\"-1\" aria-expanded=\"false\" aria-controls=\"e-n-accordion-item-7145\" >\n\t\t\t\t\t<span class='e-n-accordion-item-title-header'><div class=\"e-n-accordion-item-title-text\"> What happens after I apply? <\/div><\/span>\n\t\t\t\t\t\t\t<span class='e-n-accordion-item-title-icon'>\n\t\t\t<span class='e-opened' ><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-add\" data-icon-type=\"dlicon\"><path d=\"M64 544h416v416c0 17.696 14.304 32 32 32s32-14.304 32-32V544h416c17.696 0 32-14.304 32-32s-14.304-32-32-32H544V64c0-17.696-14.304-32-32-32s-32 14.304-32 32v416H64c-17.696 0-32 14.304-32 32s14.304 32 32 32z\" fill=\"currentColor\"\/><\/svg><\/span>\n\t\t\t<span class='e-closed'><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"1024\" height=\"1024\" viewBox=\"0 0 1024 1024\" class=\"lakit-font-icon-svg\" data-icon-name=\"ui-1_simple-add\" data-icon-type=\"dlicon\"><path d=\"M64 544h416v416c0 17.696 14.304 32 32 32s32-14.304 32-32V544h416c17.696 0 32-14.304 32-32s-14.304-32-32-32H544V64c0-17.696-14.304-32-32-32s-32 14.304-32 32v416H64c-17.696 0-32 14.304-32 32s14.304 32 32 32z\" fill=\"currentColor\"\/><\/svg><\/span>\n\t\t<\/span>\n\n\t\t\t\t\t\t<\/summary>\n\t\t\t\t<div role=\"region\" aria-labelledby=\"e-n-accordion-item-7145\" class=\"elementor-element elementor-element-9f04b57 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"9f04b57\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5b6cb1a9 elementor-widget elementor-widget-text-editor\" data-id=\"5b6cb1a9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>We review your application, match you with a coach, and schedule a short intro call. You decide if it feels right \u2014 no pressure.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/details>\n\t\t\t\t\t<\/div>\n\t\t\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-5278011c section-slide e-flex e-con-boxed lakit-col-width-auto-no e-container e-root-container elementor-top-section e-con e-parent\" data-id=\"5278011c\" data-element_type=\"container\" data-e-type=\"container\" id=\"early-access\" 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-37492089 e-con-full e-flex lakit-col-width-auto-no elementor-invisible e-container e-con e-child\" data-id=\"37492089\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-6393be1e e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"6393be1e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-584a732a e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"584a732a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-3f8cc687 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"3f8cc687\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-42964530 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"42964530\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">EARLY ACCESS<\/p>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-22deb9ae elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"22deb9ae\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Ready to start \u2014 \n <span style=\"color: #FFFFFF;font-weight: 700\">for real<\/span>\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-249fb5cc elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"249fb5cc\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Early access spot. Reduced rate. Personal coach. A system built around your life \u2014 with Behavioral Intelligence from day one.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7b3661e0 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"7b3661e0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-32ce3c33 early-access-open elementor-icon-list--layout-traditional elementor-list-item-link-full_width elementor-invisible elementor-widget elementor-widget-icon-list\" data-id=\"32ce3c33\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-icon\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-circle\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8z\"><\/path><\/svg>\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Cohort 01 \u2014 Filling<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-17489d71 elementor-invisible elementor-widget lastudio-kit elementor-lakit-subscribe-form\" data-id=\"17489d71\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"lakit-subscribe-form.default\">\n\t\t\t\t\t<div class=\"lakit-subscribe-form lakit-subscribe-form--inline-layout\" data-settings=\"{&quot;redirect&quot;:false,&quot;redirect_url&quot;:&quot;#&quot;,&quot;use_target_list_id&quot;:false,&quot;target_list_id&quot;:&quot;&quot;}\">\n\t<form method=\"POST\" action=\"#\" class=\"lakit-subscribe-form__form\">\n\t\t<div class=\"lakit-subscribe-form__input-group\">\n\t\t\t<div class=\"lakit-subscribe-form__fields\">\n\t\t\t\t<input class=\"lakit-subscribe-form__input lakit-subscribe-form__mail-field\" type=\"email\" name=\"email\" placeholder=\"Enter your email address...\" autocomplete=\"email\" data-instance-data=\"[]\"\/><\/div>\n            <a class=\"lakit-subscribe-form__submit elementor-button elementor-size-md\" href=\"#\" aria-label=\"Subscribe to newsletter\"><span class=\"lakit-subscribe-form__submit-text\">Subscribe<\/span><\/a>\t\t<\/div>\n        \t\t<div class=\"lakit-subscribe-form__message\"><div class=\"lakit-subscribe-form__message-inner\"><span><\/span><\/div><\/div>\n\t<\/form>\n<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\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-6343bc37 e-con-full e-flex lakit-col-width-auto-no e-container e-con e-child\" data-id=\"6343bc37\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;position&quot;:&quot;absolute&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-44d0a84d e-flex e-con-boxed lakit-col-width-auto-no e-container e-con e-child\" data-id=\"44d0a84d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2799676c elementor-invisible elementor-widget elementor-widget-image\" data-id=\"2799676c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"647\" height=\"189\" src=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2024\/10\/gymfluence-landscape-light-shade.png\" class=\"attachment-large size-large wp-image-3957\" alt=\"\" srcset=\"https:\/\/gymfluence.ai\/wp-content\/uploads\/2024\/10\/gymfluence-landscape-light-shade.png 647w, https:\/\/gymfluence.ai\/wp-content\/uploads\/2024\/10\/gymfluence-landscape-light-shade-300x88.png 300w\" sizes=\"(max-width: 647px) 100vw, 647px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4989f444 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"4989f444\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<div class=\"elementor-element elementor-element-903da11 elementor-position-top elementor-widget elementor-widget-image-box\" data-id=\"903da11\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image-box.default\"><div class=\"elementor-widget-container\"><div class=\"elementor-image-box-wrapper\"><div class=\"elementor-image-box-content\"><p class=\"elementor-image-box-description\">Real coaching. Real AI. Built for consistency.<\/p><\/div><\/div><\/div><\/div><div class=\"elementor-element elementor-element-1621053 elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-widget elementor-widget-social-icons\" data-id=\"1621053\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"social-icons.default\"><div class=\"elementor-widget-container\"><div class=\"elementor-social-icons-wrapper elementor-grid\" role=\"list\">\u00a0<\/div><\/div><\/div>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6061f67f elementor-widget-mobile__width-inherit elementor-shape-rounded elementor-grid-0 e-grid-align-center elementor-invisible elementor-widget elementor-widget-social-icons\" data-id=\"6061f67f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"social-icons.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-social-icons-wrapper elementor-grid\" role=\"list\">\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-icofont-instagram elementor-repeater-item-42df7b6\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Icofont-instagram<\/span>\n\t\t\t\t\t\t<i aria-hidden=\"true\" class=\"icofont icofont-instagram\"><\/i>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-tiktok elementor-repeater-item-1f4150c\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">Tiktok<\/span>\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fab-tiktok\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"elementor-grid-item\" role=\"listitem\">\n\t\t\t\t\t<a class=\"elementor-icon elementor-social-icon elementor-social-icon-x-twitter elementor-repeater-item-2b4c4da\" target=\"_blank\">\n\t\t\t\t\t\t<span class=\"elementor-screen-only\">X-twitter<\/span>\n\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fab-x-twitter\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z\"><\/path><\/svg>\t\t\t\t\t<\/a>\n\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1caa2e23 elementor-icon-list--layout-inline elementor-align-center elementor-widget-tablet__width-inherit elementor-list-item-link-full_width elementor-invisible elementor-widget elementor-widget-icon-list\" data-id=\"1caa2e23\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"icon-list.default\">\n\t\t\t\t\t\t\t<ul class=\"elementor-icon-list-items elementor-inline-items\">\n\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Privacy Policy<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">Terms of Service<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t\t\t<li class=\"elementor-icon-list-item elementor-inline-item\">\n\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-icon-list-text\">hello@gymfluence.ai<\/span>\n\t\t\t\t\t\t\t\t\t<\/li>\n\t\t\t\t\t\t<\/ul>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-246d42c8 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"246d42c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">\u00a9 2026 Gymfluence. All Rights Reserved.\nGymfluence is a product of Hrobjartz AS.<\/p>\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>Early Access Open You + A Coach + Behavioral Intelligence Real coaching. Real AI. The first fat-loss program that knows when you&#8217;re about to quit \u2014 and does something about it. EARLY ACCESS How It Works THE FORMULA How Gymfluence helps you stay consistent Most people do not fail because they lack a plan. They [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-12","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/gymfluence.ai\/index.php?rest_route=\/wp\/v2\/pages\/12","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/gymfluence.ai\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/gymfluence.ai\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/gymfluence.ai\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/gymfluence.ai\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=12"}],"version-history":[{"count":13,"href":"https:\/\/gymfluence.ai\/index.php?rest_route=\/wp\/v2\/pages\/12\/revisions"}],"predecessor-version":[{"id":9749,"href":"https:\/\/gymfluence.ai\/index.php?rest_route=\/wp\/v2\/pages\/12\/revisions\/9749"}],"wp:attachment":[{"href":"https:\/\/gymfluence.ai\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=12"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}