{"id":14162,"date":"2025-03-15T13:14:56","date_gmt":"2025-03-15T12:14:56","guid":{"rendered":"https:\/\/weight-loss-wizard.com\/?page_id=14162"},"modified":"2026-02-09T10:23:47","modified_gmt":"2026-02-09T09:23:47","slug":"data","status":"publish","type":"page","link":"https:\/\/weight-loss-wizard.com\/nl\/data\/","title":{"rendered":"Data"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"14162\" class=\"elementor elementor-14162\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-43c1510 e-flex e-con-boxed e-con e-parent\" data-id=\"43c1510\" 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-d998788 elementor-absolute animated-slow elementor-invisible elementor-widget elementor-widget-spacer\" data-id=\"d998788\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\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-538aec0 e-flex e-con-boxed e-con e-parent\" data-id=\"538aec0\" 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-623410f elementor-absolute animated-slow elementor-invisible elementor-widget elementor-widget-spacer\" data-id=\"623410f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation_delay&quot;:500,&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\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-5c8be73 e-flex e-con-boxed e-con e-parent\" data-id=\"5c8be73\" 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-90b00c2 e-flex e-con-boxed e-con e-child\" data-id=\"90b00c2\" 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-1faf83a e-flex e-con-boxed e-con e-child\" data-id=\"1faf83a\" 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-630193d e-con-full e-flex e-con e-child\" data-id=\"630193d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ea38852 elementor-widget-tablet__width-initial elementor-widget elementor-widget-html\" data-id=\"ea38852\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\n(function() {\n    function wrapTextNodes(node, delayIndex) {\n        if (node.nodeType === 3 && node.textContent.trim()) {\n            const text = node.textContent;\n            const words = text.split(\/\\s+\/).filter(word => word);\n            const fragment = document.createDocumentFragment();\n            const leadingSpace = text.match(\/^\\s+\/) ? text.match(\/^\\s+\/)[0] : '';\n            const trailingSpace = text.match(\/\\s+$\/) ? text.match(\/\\s+$\/)[0] : '';\n\n            if (leadingSpace) fragment.appendChild(document.createTextNode(leadingSpace));\n            words.forEach((word, i) => {\n                const span = document.createElement('span');\n                span.className = 'word-span';\n                span.textContent = word;\n                span.style.animationDelay = `${0.25 + (delayIndex + i) * 0.15}s`;\n                fragment.appendChild(span);\n                if (i < words.length - 1) fragment.appendChild(document.createTextNode(' '));\n            });\n            if (trailingSpace) fragment.appendChild(document.createTextNode(trailingSpace));\n\n            node.parentNode.replaceChild(fragment, node);\n            return delayIndex + words.length;\n        } else if (node.nodeType === 1 && !node.classList.contains('word-span')) {\n            let currentDelay = delayIndex;\n            Array.from(node.childNodes).forEach(child => {\n                currentDelay = wrapTextNodes(child, currentDelay);\n            });\n            return currentDelay;\n        }\n        return delayIndex;\n    }\n\n    function animateWords(heading) {\n        if (heading.classList.contains('words-animated')) return;\n\n        const clone = heading.cloneNode(true);\n        let delayIndex = 0;\n        Array.from(clone.childNodes).forEach(node => {\n            delayIndex = wrapTextNodes(node, delayIndex);\n        });\n        heading.innerHTML = clone.innerHTML;\n        heading.classList.add('words-animated');\n        heading.style.opacity = '1'; \/\/ Reveal after spans are added\n    }\n\n    const observer = new IntersectionObserver(entries => {\n        entries.forEach(entry => {\n            if (entry.isIntersecting) {\n                animateWords(entry.target);\n                observer.unobserve(entry.target);\n            }\n        });\n    }, { threshold: 0.5, rootMargin: '0px' });\n\n    function observeHeaders() {\n        document.querySelectorAll('.animate-float .elementor-heading-title').forEach(heading => {\n            if (!heading.classList.contains('words-animated')) {\n                observer.observe(heading);\n            }\n        });\n    }\n\n    observeHeaders();\n    document.addEventListener('DOMContentLoaded', observeHeaders);\n    const mutationObserver = new MutationObserver(observeHeaders);\n    mutationObserver.observe(document.body, { childList: true, subtree: true });\n})();\n<\/script>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f47c66f e-con-full e-flex e-con e-child\" data-id=\"f47c66f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d66a0d9 elementor-view-default elementor-invisible elementor-widget elementor-widget-icon\" data-id=\"d66a0d9\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;rotateInUpRight&quot;,&quot;_animation_delay&quot;:1500}\" 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<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#A04AB3\" width=\"800px\" height=\"800px\" viewBox=\"0 0 60 60\" id=\"Capa_1\" xml:space=\"preserve\"><g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"><\/g><g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/g><g id=\"SVGRepo_iconCarrier\"> <g> <path d=\"M59,55.5v-39H47v39h-3v-31H32v31h-3v-23H17v23h-3v-14H2v14H1c-0.552,0-1,0.447-1,1s0.448,1,1,1h1h12h3h12h3h12h3h12 c0.552,0,1-0.447,1-1S59.552,55.5,59,55.5z M4,55.5v-12h8v12H4z M19,55.5v-21h8v21H19z M34,55.5v-29h8v29H34z M49,55.5v-37h8v37H49 z\"><\/path> <path d=\"M8.03,27.83c0.169,0,0.342-0.043,0.499-0.134l36.269-20.94l-2.27,4.99c-0.229,0.503-0.007,1.096,0.496,1.324 c0.134,0.062,0.275,0.09,0.414,0.09c0.38,0,0.743-0.218,0.911-0.586l3.562-7.83c0.011-0.025,0.009-0.052,0.018-0.078 c0.019-0.053,0.034-0.104,0.044-0.16c0.005-0.028,0.021-0.051,0.023-0.08c0.001-0.012-0.004-0.022-0.003-0.034 c0.002-0.038-0.002-0.073-0.004-0.111c-0.003-0.055-0.012-0.107-0.024-0.162c-0.008-0.038-0.01-0.077-0.023-0.114 c-0.012-0.036-0.033-0.066-0.049-0.101C47.88,3.881,47.88,3.854,47.866,3.83c-0.014-0.024-0.038-0.038-0.054-0.061 c-0.021-0.031-0.037-0.064-0.062-0.092c-0.026-0.03-0.059-0.051-0.089-0.078c-0.041-0.037-0.082-0.071-0.128-0.101 c-0.031-0.02-0.059-0.042-0.093-0.059c-0.011-0.005-0.017-0.015-0.028-0.02c-0.025-0.011-0.052-0.009-0.077-0.018 c-0.055-0.02-0.109-0.034-0.166-0.044c-0.026-0.005-0.047-0.02-0.074-0.022l-8.562-0.83c-0.555-0.056-1.039,0.35-1.092,0.898 c-0.054,0.55,0.349,1.039,0.898,1.092l5.456,0.529L7.529,25.964C7.05,26.24,6.887,26.852,7.163,27.33 C7.348,27.651,7.684,27.83,8.03,27.83z\"><\/path> <\/g> <g><\/g> <g><\/g> <g><\/g> <g><\/g> <g><\/g> <g><\/g> <g><\/g> <g><\/g> <g><\/g> <g><\/g> <g><\/g> <g><\/g> <g><\/g> <g><\/g> <g><\/g> <\/g><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a7bc7b0 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"a7bc7b0\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:1500}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">SCIENCE, DATA &amp; YOUR BODY<br>\nCREATE A CUSTOM APPROACH<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d666774 elementor-widget__width-initial elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"d666774\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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 class=\"elementor-element elementor-element-f941651 animate-float elementor-widget-tablet__width-initial elementor-widget elementor-widget-heading\" data-id=\"f941651\" 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\">Data drives <span style=\"color:#45acff\">strategy <\/span><br>\nstrategy drives <span style=\"color:#45acff\">action<\/span><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bae83d2 elementor-widget__width-initial elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"bae83d2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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 class=\"elementor-element elementor-element-ce4da71 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"ce4da71\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>&#8216;Trust the science&#8217;, but which science? In the world of weight loss the amount of conflicting evidence is so overwhelming it can lead to inertia. We start with a few basics that have proven their effectiveness, but always use data and reality to create a customized model that works for you. If it doesn&#8217;t, we course correct &#8211; until it does.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0ebc26f elementor-widget__width-initial elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"0ebc26f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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<div class=\"elementor-element elementor-element-ce6e181 e-con-full e-flex e-con e-child\" data-id=\"ce6e181\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f9870e7 elementor-widget__width-initial elementor-view-default elementor-invisible elementor-widget elementor-widget-icon\" data-id=\"f9870e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;rotateInUpRight&quot;,&quot;_animation_delay&quot;:1500}\" 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<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#A04AB3\" height=\"800px\" width=\"800px\" id=\"Capa_1\" viewBox=\"0 0 64 64\" xml:space=\"preserve\"><g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"><\/g><g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/g><g id=\"SVGRepo_iconCarrier\"> <g> <g id=\"venture-risk-climb-mountain-success_1_\"> <path d=\"M61,30V9V1c0-0.332-0.165-0.642-0.439-0.828c-0.275-0.186-0.624-0.224-0.932-0.101l-10,4C49.249,4.224,49,4.591,49,5 s0.249,0.776,0.628,0.929L59,9.677V30h-1c-0.265,0-0.52,0.105-0.707,0.293L39.5,48.086l-3.793-3.793 c-0.391-0.391-1.023-0.391-1.414,0L22.5,56.086l-7.293-7.293c-0.391-0.391-1.023-0.391-1.414,0l-13.5,13.5 C0.105,62.48,0,62.734,0,63v1h2v-0.586l12.5-12.5l7.293,7.293c0.391,0.391,1.023,0.391,1.414,0L35,46.414l3.793,3.793 c0.391,0.391,1.023,0.391,1.414,0L58.414,32H64v-2H61z M52.692,5L59,2.477v5.047L52.692,5z\"><\/path> <path d=\"M1.726,43.687c2.424-2.562,7.46-0.953,10.469,0.007c1.247,0.398,2.446,0.597,3.579,0.597c1.153,0,2.229-0.228,3.226-0.636 V50c0,0.553,0.448,1,1,1h5c0.552,0,1-0.447,1-1v-9.717c0.221-0.33,0.63-0.588,1.253-0.893c0.201-0.099,0.406-0.19,0.611-0.281 c0.573-0.256,1.166-0.521,1.72-0.932c0.653-0.484,1.138-1.317,1.331-2.177H33v6c0,0.553,0.448,1,1,1h5c0.552,0,1-0.447,1-1v-8 c0-2.757-2.243-5-5-5h-6v-3h5c2.757,0,5-2.243,5-5v-9c0-0.553-0.448-1-1-1h-4c-0.552,0-1,0.447-1,1v8h-4.89 c0.513-0.884,0.812-1.907,0.812-3c0-3.309-2.691-6-6-6s-6,2.691-6,6c0,1.002,0.25,1.945,0.686,2.777 c-3.378,0.996-6.423,3.234-8.845,6.551c-1.076,1.473-1.873,3.151-2.644,4.773c-0.206,0.434-0.411,0.865-0.619,1.288 c-0.469,0.952-0.911,1.992-1.339,2.998c-1.072,2.518-2.179,5.121-3.886,6.925l-0.001,0.001c-0.38,0.401-0.362,1.034,0.039,1.414 C0.714,44.105,1.348,44.089,1.726,43.687z M19,30.742l-1.165-1.164L19,28.414V30.742z M28.394,36.569 c-0.379,0.281-0.849,0.49-1.345,0.713c-0.227,0.101-0.453,0.202-0.675,0.311c-0.123,0.06-0.248,0.13-0.374,0.196V36h2.81 C28.698,36.236,28.555,36.45,28.394,36.569z M34,22c0.552,0,1-0.447,1-1v-8h2v8c0,1.654-1.346,3-3,3h-6c-0.552,0-1,0.447-1,1v5 c0,0.553,0.448,1,1,1h7c1.654,0,3,1.346,3,3v7h-3v-6c0-0.553-0.448-1-1-1h-9c-0.552,0-1,0.447-1,1v14h-3V26 c0-0.404-0.244-0.77-0.617-0.924c-0.374-0.156-0.803-0.069-1.09,0.217l-3.579,3.578c-0.188,0.188-0.293,0.441-0.293,0.707 s0.105,0.52,0.293,0.707l2.793,2.793l-1.586,1.586L13.957,31.7c-1.169-1.17-1.169-3.073,0-4.243l5.538-5.538 C20.468,22.598,21.648,23,22.921,23c0.027,0,0.052-0.004,0.079-0.004V29h2v-6.379c0.436-0.162,0.849-0.368,1.231-0.621H34z M22.921,13c2.206,0,4,1.794,4,4s-1.794,4-4,4s-4-1.794-4-4S20.716,13,22.921,13z M6.001,36.17 c0.437-1.026,0.849-1.995,1.293-2.898c0.212-0.431,0.421-0.87,0.631-1.312c0.731-1.539,1.487-3.131,2.452-4.452 c1.224-1.676,3.107-3.696,5.698-4.996l-3.533,3.533c-1.949,1.949-1.949,5.122,0,7.071l3.671,3.671 c0.391,0.391,1.023,0.391,1.414,0L19,35.414v6.018c-2.102,1.233-4.503,0.898-6.197,0.358c-2.353-0.752-5.786-1.846-8.772-1.375 C4.773,39.055,5.393,37.6,6.001,36.17z\"><\/path> <\/g> <g id=\"Layer_1_32_\"> <\/g> <\/g> <\/g><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0876ec7 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"0876ec7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:1500}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">DATA FOCUSSED<br>\nCLIENT CENTRIC<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-28bb4bb elementor-widget__width-initial elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"28bb4bb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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<div class=\"elementor-element elementor-element-2f69c61 e-con-full e-flex e-con e-child\" data-id=\"2f69c61\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d46705a elementor-align-center elementor-mobile-align-left elementor-tablet-align-left elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial animated-fast elementor-invisible elementor-widget elementor-widget-button\" data-id=\"d46705a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation_delay&quot;:750,&quot;_animation&quot;:&quot;fadeInLeft&quot;}\" 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 elementor-animation-sink\" href=\"#call\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t<span class=\"elementor-button-icon\">\n\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-chevron-down\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z\"><\/path><\/svg>\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Plan Your Sparring Session<\/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-c3f2e67 elementor-widget__width-initial animated-fast elementor-widget-mobile__width-auto elementor-widget-tablet__width-initial elementor-invisible elementor-widget elementor-widget-image\" data-id=\"c3f2e67\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;,&quot;_animation_delay&quot;:1000}\" 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=\"453\" height=\"75\" src=\"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png\" class=\"attachment-large size-large wp-image-15454\" alt=\"\" srcset=\"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png 453w, https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2-300x50.png 300w, https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2-18x3.png 18w\" sizes=\"(max-width: 453px) 100vw, 453px\" \/>\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<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3c7dac5 elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-video\" data-id=\"3c7dac5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;video_type&quot;:&quot;hosted&quot;,&quot;autoplay&quot;:&quot;yes&quot;,&quot;mute&quot;:&quot;yes&quot;,&quot;loop&quot;:&quot;yes&quot;,&quot;play_on_mobile&quot;:&quot;yes&quot;,&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t\t\t\t<div class=\"e-hosted-video elementor-wrapper elementor-open-inline\">\n\t\t\t\t\t<video class=\"elementor-video\" src=\"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/03\/data-3-mp4.mp4\" autoplay=\"\" loop=\"\" muted=\"muted\" playsinline=\"\" controlsList=\"nodownload\"><\/video>\n\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\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-b766337 e-flex e-con-boxed e-con e-parent\" data-id=\"b766337\" 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-6aa4641 animate-float elementor-widget elementor-widget-heading\" data-id=\"6aa4641\" 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\">Better <font color=\"#45acff\">health<\/font><br>\nback in <font color=\"#45acff\">control<\/font><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-058905b elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"058905b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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 class=\"elementor-element elementor-element-fa488b2 elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"fa488b2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Not being at your ideal weight is frustrating. Being unable to control it &#8211; and prevent further weight gain &#8211; is something my clients unanimously report as a significant problem. The program increases both the measurable &#8211; and perceived health of my clients, but also puts them back in the driver&#8217;s seat. This is a key element of the program&#8217;s long-term focus.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f245501 elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"f245501\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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<div class=\"elementor-element elementor-element-288eb4d e-flex e-con-boxed e-con e-child\" data-id=\"288eb4d\" 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-03b4a51 animated-fast elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-html\" data-id=\"03b4a51\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:5}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"progress-ring-container\" \n     data-delay=\"500\" \n     data-counter-desktop=\"30px\" \n     data-counter-tablet=\"24px\" \n     data-counter-mobile=\"18px\" \n     data-header-desktop=\"26px\" \n     data-header-tablet=\"22px\" \n     data-header-mobile=\"18px\" \n     style=\"position: relative; width: 100%; display: flex; flex-direction: column; align-items: center;\">\n  <div style=\"position: relative; width: 100%; padding-bottom: 100%;\">\n    <svg class=\"progress-ring\" width=\"100%\" height=\"100%\" viewBox=\"0 0 120 120\" preserveAspectRatio=\"xMidYMid meet\" style=\"position: absolute; top: 0; left: 0; transform: rotate(-90deg);\">\n      <circle class=\"progress-ring-second\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #45acff;\"\/>\n      <circle class=\"progress-ring-first\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #a04AB3;\"\/>\n    <\/svg>\n    <div class=\"counter\" style=\"position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Ubuntu', sans-serif; font-weight: 400; color: #4e339d; text-align: center;\"><\/div>\n  <\/div>\n  <h3 class=\"progress-header\" style=\"font-family: 'Ubuntu', sans-serif; font-weight: 500; text-align: center; color: #45ACFF; margin-top: 20px; opacity: 0;\">Weight<br>control<\/h3>\n\n  <script>\n    (function() {\n      const container = document.currentScript.closest('.progress-ring-container');\n      if (!container) return;\n\n      const uniqueId = 'ring-' + Math.random().toString(36).substr(2, 9);\n      container.classList.add(uniqueId);\n\n      const baseDelay = parseInt(container.getAttribute('data-delay')) || 0;\n      const isMobile = window.innerWidth <= 768;\n      const delay = isMobile ? 500 : baseDelay;\n\n      const firstRing = container.querySelector('.progress-ring-first');\n      const secondRing = container.querySelector('.progress-ring-second');\n      firstRing.style.strokeDasharray = '0 314';\n      firstRing.style.opacity = '0';\n      secondRing.style.strokeDasharray = '0 314';\n      secondRing.style.opacity = '0';\n\n      const firstPercent = 30;\n      const secondPercent = 90;\n      const radius = 50;\n      const circumference = 2 * Math.PI * radius;\n      const firstDash = (firstPercent \/ 100) * circumference;\n      const secondDash = (secondPercent \/ 100) * circumference;\n\n      const counter = container.querySelector('.counter');\n      const startValue = 0;\n      const endValue = 201;\n      const prefix = '+';\n      const suffix = '%';\n      const duration = 1000;\n\n      const header = container.querySelector('.progress-header');\n\n      function startCounter() {\n        const startTime = performance.now();\n        function updateCounter(currentTime) {\n          const elapsedTime = currentTime - startTime;\n          const progress = Math.min(elapsedTime \/ duration, 1);\n          const value = Math.floor(startValue + (endValue - startValue) * progress);\n          counter.textContent = `${prefix}${value}${suffix}`;\n          if (progress < 1) requestAnimationFrame(updateCounter);\n        }\n        requestAnimationFrame(updateCounter);\n      }\n\n      const styleSheet = document.createElement('style');\n      document.head.appendChild(styleSheet);\n      \n      styleSheet.textContent = `\n        .${uniqueId} .progress-ring-first {\n          z-index: 2;\n        }\n        .${uniqueId} .progress-ring-second {\n          z-index: 1;\n        }\n        .${uniqueId}.animate .progress-ring-first {\n          animation: fillFirst-${uniqueId} 0.5s ease-in-out 0.5s forwards;\n        }\n        .${uniqueId}.animate .progress-ring-second {\n          animation: fillSecond-${uniqueId} 1s ease-in-out 1s forwards;\n          filter: drop-shadow(1px 1px 1px #0000001A);\n        }\n        @keyframes fillFirst-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 0;\n          }\n          to {\n            stroke-dasharray: ${firstDash} ${circumference};\n            opacity: 1;\n          }\n        }\n        @keyframes fillSecond-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 1;\n          }\n          to {\n            stroke-dasharray: ${secondDash} ${circumference};\n            opacity: 1;\n          }\n        }\n      `;\n\n      function setContainerHeight() {\n        const parentContainer = container.closest('.elementor-widget-container');\n        if (parentContainer) {\n          const totalHeight = container.offsetHeight;\n          parentContainer.style.height = `${totalHeight}px`;\n        }\n      }\n\n      \/\/ Minimal addition for responsive font sizes\n      const mobileMax = 768;\n      const tabletMax = 1024;\n      const defaultCounterSizes = { mobile: '18px', tablet: '24px', desktop: '30px' };\n      const defaultHeaderSizes = { mobile: '18px', tablet: '22px', desktop: '26px' };\n\n      function setFontSizes() {\n        const width = window.innerWidth;\n        const device = width <= mobileMax ? 'mobile' : width <= tabletMax ? 'tablet' : 'desktop';\n        counter.style.fontSize = container.getAttribute(`data-counter-${device}`) || defaultCounterSizes[device];\n        header.style.fontSize = container.getAttribute(`data-header-${device}`) || defaultHeaderSizes[device];\n      }\n\n      window.addEventListener('load', () => { setFontSizes(); setContainerHeight(); });\n      window.addEventListener('resize', () => { setFontSizes(); setContainerHeight(); });\n\n      const observer = new IntersectionObserver((entries, observer) => {\n        entries.forEach(entry => {\n          if (entry.isIntersecting) {\n            setTimeout(() => {\n              container.classList.add('animate');\n              secondRing.addEventListener('animationstart', startCounter, { once: true });\n              firstRing.addEventListener('animationstart', () => {\n                if (header) header.style.opacity = '1';\n                setContainerHeight();\n              }, { once: true });\n            }, delay);\n            observer.unobserve(container);\n          }\n        });\n      }, { threshold: 0.1 });\n\n      observer.observe(container);\n    })();\n  <\/script>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0c59264 elementor-widget__width-initial animated-fast elementor-invisible elementor-widget elementor-widget-html\" data-id=\"0c59264\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:5}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"progress-ring-container\" \n     data-delay=\"1000\" \n     data-counter-desktop=\"30px\" \n     data-counter-tablet=\"24px\" \n     data-counter-mobile=\"18px\" \n     data-header-desktop=\"26px\" \n     data-header-tablet=\"22px\" \n     data-header-mobile=\"18px\" \n     style=\"position: relative; width: 100%; display: flex; flex-direction: column; align-items: center;\">\n  <div style=\"position: relative; width: 100%; padding-bottom: 100%;\">\n    <svg class=\"progress-ring\" width=\"100%\" height=\"100%\" viewBox=\"0 0 120 120\" preserveAspectRatio=\"xMidYMid meet\" style=\"position: absolute; top: 0; left: 0; transform: rotate(-90deg);\">\n      <circle class=\"progress-ring-second\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #45acff;\"\/>\n      <circle class=\"progress-ring-first\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #a04AB3;\"\/>\n    <\/svg>\n    <div class=\"counter\" style=\"position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Ubuntu', sans-serif; font-weight: 400; color: #4e339d; text-align: center;\"><\/div>\n  <\/div>\n  <h3 class=\"progress-header\" style=\"font-family: 'Ubuntu', sans-serif; font-weight: 500; text-align: center; color: #45ACFF; margin-top: 20px; opacity: 0;\">Physical<br>health<\/h3>\n\n  <script>\n    (function() {\n      const container = document.currentScript.closest('.progress-ring-container');\n      if (!container) return;\n\n      const uniqueId = 'ring-' + Math.random().toString(36).substr(2, 9);\n      container.classList.add(uniqueId);\n\n      const baseDelay = parseInt(container.getAttribute('data-delay')) || 0;\n      const isMobile = window.innerWidth <= 768;\n      const delay = isMobile ? 500 : baseDelay;\n\n      const firstRing = container.querySelector('.progress-ring-first');\n      const secondRing = container.querySelector('.progress-ring-second');\n      firstRing.style.strokeDasharray = '0 314';\n      firstRing.style.opacity = '0';\n      secondRing.style.strokeDasharray = '0 314';\n      secondRing.style.opacity = '0';\n\n      const firstPercent = 42;\n      const secondPercent = 82;\n      const radius = 50;\n      const circumference = 2 * Math.PI * radius;\n      const firstDash = (firstPercent \/ 100) * circumference;\n      const secondDash = (secondPercent \/ 100) * circumference;\n\n      const counter = container.querySelector('.counter');\n      const startValue = 0;\n      const endValue = 95;\n      const prefix = '+';\n      const suffix = '%';\n      const duration = 1000;\n\n      const header = container.querySelector('.progress-header');\n\n      function startCounter() {\n        const startTime = performance.now();\n        function updateCounter(currentTime) {\n          const elapsedTime = currentTime - startTime;\n          const progress = Math.min(elapsedTime \/ duration, 1);\n          const value = Math.floor(startValue + (endValue - startValue) * progress);\n          counter.textContent = `${prefix}${value}${suffix}`;\n          if (progress < 1) requestAnimationFrame(updateCounter);\n        }\n        requestAnimationFrame(updateCounter);\n      }\n\n      const styleSheet = document.createElement('style');\n      document.head.appendChild(styleSheet);\n      \n      styleSheet.textContent = `\n        .${uniqueId} .progress-ring-first {\n          z-index: 2;\n        }\n        .${uniqueId} .progress-ring-second {\n          z-index: 1;\n        }\n        .${uniqueId}.animate .progress-ring-first {\n          animation: fillFirst-${uniqueId} 0.5s ease-in-out 0.5s forwards;\n        }\n        .${uniqueId}.animate .progress-ring-second {\n          animation: fillSecond-${uniqueId} 1s ease-in-out 1s forwards;\n          filter: drop-shadow(1px 1px 1px #0000001A);\n        }\n        @keyframes fillFirst-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 0;\n          }\n          to {\n            stroke-dasharray: ${firstDash} ${circumference};\n            opacity: 1;\n          }\n        }\n        @keyframes fillSecond-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 1;\n          }\n          to {\n            stroke-dasharray: ${secondDash} ${circumference};\n            opacity: 1;\n          }\n        }\n      `;\n\n      function setContainerHeight() {\n        const parentContainer = container.closest('.elementor-widget-container');\n        if (parentContainer) {\n          const totalHeight = container.offsetHeight;\n          parentContainer.style.height = `${totalHeight}px`;\n        }\n      }\n\n      \/\/ Minimal addition for responsive font sizes\n      const mobileMax = 768;\n      const tabletMax = 1024;\n      const defaultCounterSizes = { mobile: '18px', tablet: '24px', desktop: '30px' };\n      const defaultHeaderSizes = { mobile: '18px', tablet: '22px', desktop: '26px' };\n\n      function setFontSizes() {\n        const width = window.innerWidth;\n        const device = width <= mobileMax ? 'mobile' : width <= tabletMax ? 'tablet' : 'desktop';\n        counter.style.fontSize = container.getAttribute(`data-counter-${device}`) || defaultCounterSizes[device];\n        header.style.fontSize = container.getAttribute(`data-header-${device}`) || defaultHeaderSizes[device];\n      }\n\n      window.addEventListener('load', () => { setFontSizes(); setContainerHeight(); });\n      window.addEventListener('resize', () => { setFontSizes(); setContainerHeight(); });\n\n      const observer = new IntersectionObserver((entries, observer) => {\n        entries.forEach(entry => {\n          if (entry.isIntersecting) {\n            setTimeout(() => {\n              container.classList.add('animate');\n              secondRing.addEventListener('animationstart', startCounter, { once: true });\n              firstRing.addEventListener('animationstart', () => {\n                if (header) header.style.opacity = '1';\n                setContainerHeight();\n              }, { once: true });\n            }, delay);\n            observer.unobserve(container);\n          }\n        });\n      }, { threshold: 0.1 });\n\n      observer.observe(container);\n    })();\n  <\/script>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fbaf09e elementor-widget__width-initial elementor-widget elementor-widget-html\" data-id=\"fbaf09e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"progress-ring-container\" \n     data-delay=\"1500\" \n     data-counter-desktop=\"30px\" \n     data-counter-tablet=\"24px\" \n     data-counter-mobile=\"18px\" \n     data-header-desktop=\"26px\" \n     data-header-tablet=\"22px\" \n     data-header-mobile=\"18px\" \n     style=\"position: relative; width: 100%; display: flex; flex-direction: column; align-items: center;\">\n  <div style=\"position: relative; width: 100%; padding-bottom: 100%;\">\n    <svg class=\"progress-ring\" width=\"100%\" height=\"100%\" viewBox=\"0 0 120 120\" preserveAspectRatio=\"xMidYMid meet\" style=\"position: absolute; top: 0; left: 0; transform: rotate(-90deg);\">\n      <circle class=\"progress-ring-second\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #45acff;\"\/>\n      <circle class=\"progress-ring-first\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #a04AB3;\"\/>\n    <\/svg>\n    <div class=\"counter\" style=\"position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Ubuntu', sans-serif; font-weight: 400; color: #4e339d; text-align: center;\"><\/div>\n  <\/div>\n  <h3 class=\"progress-header\" style=\"font-family: 'Ubuntu', sans-serif; font-weight: 500; text-align: center; color: #45ACFF; margin-top: 20px; opacity: 0;\">Nutrition<br>level<\/h3>\n\n  <script>\n    (function() {\n      const container = document.currentScript.closest('.progress-ring-container');\n      if (!container) return;\n\n      const uniqueId = 'ring-' + Math.random().toString(36).substr(2, 9);\n      container.classList.add(uniqueId);\n\n      const baseDelay = parseInt(container.getAttribute('data-delay')) || 0;\n      const isMobile = window.innerWidth <= 768;\n      const delay = isMobile ? 500 : baseDelay;\n\n      const firstRing = container.querySelector('.progress-ring-first');\n      const secondRing = container.querySelector('.progress-ring-second');\n      firstRing.style.strokeDasharray = '0 314';\n      firstRing.style.opacity = '0';\n      secondRing.style.strokeDasharray = '0 314';\n      secondRing.style.opacity = '0';\n\n      const firstPercent = 42;\n      const secondPercent = 80;\n      const radius = 50;\n      const circumference = 2 * Math.PI * radius;\n      const firstDash = (firstPercent \/ 100) * circumference;\n      const secondDash = (secondPercent \/ 100) * circumference;\n\n      const counter = container.querySelector('.counter');\n      const startValue = 0;\n      const endValue = 91;\n      const prefix = '+';\n      const suffix = '%';\n      const duration = 1000;\n\n      const header = container.querySelector('.progress-header');\n\n      function startCounter() {\n        const startTime = performance.now();\n        function updateCounter(currentTime) {\n          const elapsedTime = currentTime - startTime;\n          const progress = Math.min(elapsedTime \/ duration, 1);\n          const value = Math.floor(startValue + (endValue - startValue) * progress);\n          counter.textContent = `${prefix}${value}${suffix}`;\n          if (progress < 1) requestAnimationFrame(updateCounter);\n        }\n        requestAnimationFrame(updateCounter);\n      }\n\n      const styleSheet = document.createElement('style');\n      document.head.appendChild(styleSheet);\n      \n      styleSheet.textContent = `\n        .${uniqueId} .progress-ring-first {\n          z-index: 2;\n        }\n        .${uniqueId} .progress-ring-second {\n          z-index: 1;\n        }\n        .${uniqueId}.animate .progress-ring-first {\n          animation: fillFirst-${uniqueId} 0.5s ease-in-out 0.5s forwards;\n        }\n        .${uniqueId}.animate .progress-ring-second {\n          animation: fillSecond-${uniqueId} 1s ease-in-out 1s forwards;\n          filter: drop-shadow(1px 1px 1px #0000001A);\n        }\n        @keyframes fillFirst-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 0;\n          }\n          to {\n            stroke-dasharray: ${firstDash} ${circumference};\n            opacity: 1;\n          }\n        }\n        @keyframes fillSecond-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 1;\n          }\n          to {\n            stroke-dasharray: ${secondDash} ${circumference};\n            opacity: 1;\n          }\n        }\n      `;\n\n      function setContainerHeight() {\n        const parentContainer = container.closest('.elementor-widget-container');\n        if (parentContainer) {\n          const totalHeight = container.offsetHeight;\n          parentContainer.style.height = `${totalHeight}px`;\n        }\n      }\n\n      \/\/ Minimal addition for responsive font sizes\n      const mobileMax = 768;\n      const tabletMax = 1024;\n      const defaultCounterSizes = { mobile: '18px', tablet: '24px', desktop: '30px' };\n      const defaultHeaderSizes = { mobile: '18px', tablet: '22px', desktop: '26px' };\n\n      function setFontSizes() {\n        const width = window.innerWidth;\n        const device = width <= mobileMax ? 'mobile' : width <= tabletMax ? 'tablet' : 'desktop';\n        counter.style.fontSize = container.getAttribute(`data-counter-${device}`) || defaultCounterSizes[device];\n        header.style.fontSize = container.getAttribute(`data-header-${device}`) || defaultHeaderSizes[device];\n      }\n\n      window.addEventListener('load', () => { setFontSizes(); setContainerHeight(); });\n      window.addEventListener('resize', () => { setFontSizes(); setContainerHeight(); });\n\n      const observer = new IntersectionObserver((entries, observer) => {\n        entries.forEach(entry => {\n          if (entry.isIntersecting) {\n            setTimeout(() => {\n              container.classList.add('animate');\n              secondRing.addEventListener('animationstart', startCounter, { once: true });\n              firstRing.addEventListener('animationstart', () => {\n                if (header) header.style.opacity = '1';\n                setContainerHeight();\n              }, { once: true });\n            }, delay);\n            observer.unobserve(container);\n          }\n        });\n      }, { threshold: 0.1 });\n\n      observer.observe(container);\n    })();\n  <\/script>\n<\/div>\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-845382e elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"845382e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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 class=\"elementor-element elementor-element-cdbb6b6 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"cdbb6b6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Based on actual qualitative improvements reported by clients<\/p>\t\t\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-20d6b81 e-flex e-con-boxed e-con e-parent\" data-id=\"20d6b81\" 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-366d6eb elementor-absolute animated-slow elementor-invisible elementor-widget elementor-widget-spacer\" data-id=\"366d6eb\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\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-38f5ae3 e-flex e-con-boxed e-con e-parent\" data-id=\"38f5ae3\" 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-07f6f61 e-con-full e-flex e-con e-child\" data-id=\"07f6f61\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f8e8978 animate-float elementor-widget elementor-widget-heading\" data-id=\"f8e8978\" 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\">Data drives <font color=\"#FFFFFF\">strategy<\/font><br>\nStrategy drives <font color=\"#FFFFFF\">action<\/font><br><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5afde74 elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"5afde74\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:1000}\" 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 class=\"elementor-element elementor-element-9bf2c27 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"9bf2c27\" 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>Weight loss is a science. However, it&#8217;s more complicated than calories-in vs calories-out (CICO).\u00a0<\/p><p>Reigniting your body&#8217;s natural ability to burn fat mass for energy requires key steps.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-631b614 elementor-absolute elementor-widget elementor-widget-spacer\" data-id=\"631b614\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;}\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-83d462f elementor-mobile-align-center elementor-invisible elementor-widget elementor-widget-button\" data-id=\"83d462f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:5000}\" 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 elementor-animation-sink\" href=\"\/data\">\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\">MORE DATA<\/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<div class=\"elementor-element elementor-element-2eb8db9 e-con-full e-flex e-con e-child\" data-id=\"2eb8db9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateX_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateX_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:2,&quot;sizes&quot;:[]},&quot;motion_fx_translateX_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:50}},&quot;motion_fx_range&quot;:&quot;viewport&quot;,&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f49894b animate-float elementor-widget elementor-widget-heading\" data-id=\"f49894b\" 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\">Metabolic<font color=\"#4e339d\"><br>\nFlexibility<\/font><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-50bc631 elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"50bc631\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:1000}\" 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 class=\"elementor-element elementor-element-6940fb9 elementor-widget elementor-widget-text-editor\" data-id=\"6940fb9\" 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>To get your body to burn fat for energy can be tricky, as many people experience side-effects &#8211; and often stop. Approaching this with deep experience and hard data removes 90% of these obstacles.<\/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-5f511ec e-con-full e-flex e-con e-child\" data-id=\"5f511ec\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;,&quot;motion_fx_motion_fx_scrolling&quot;:&quot;yes&quot;,&quot;motion_fx_translateX_effect&quot;:&quot;yes&quot;,&quot;motion_fx_translateX_speed&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:10,&quot;sizes&quot;:[]},&quot;motion_fx_translateX_affectedRange&quot;:{&quot;unit&quot;:&quot;%&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:{&quot;start&quot;:0,&quot;end&quot;:50}},&quot;motion_fx_devices&quot;:[&quot;desktop&quot;,&quot;tablet&quot;,&quot;mobile&quot;]}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a7eb4b2 animate-float elementor-widget elementor-widget-heading\" data-id=\"a7eb4b2\" 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\"><font color=\"#4e339d\">Less<\/font> food<br>\n<font color=\"#4e339d\">Less<\/font> hunger<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-295709a elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"295709a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:1000}\" 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 class=\"elementor-element elementor-element-d8d604a elementor-widget elementor-widget-text-editor\" data-id=\"d8d604a\" 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>When metabolic flexibility is achieved, we will apply a data driven way to reduce caloric intake without the hunger &#8211; but without a lack of energy.<\/p>\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-e553a1a e-flex e-con-boxed e-con e-parent\" data-id=\"e553a1a\" 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-09cf56a elementor-absolute animated-slow elementor-invisible elementor-widget elementor-widget-spacer\" data-id=\"09cf56a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation_delay&quot;:500,&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\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-91a4b4a e-flex e-con-boxed e-con e-parent\" data-id=\"91a4b4a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-82c278a animate-float elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"82c278a\" 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\">On <font color=\"#45acff\"> average<\/font> my clients\nget <font color=\"#45acff\">unaverage <\/font> achievements<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1db1b41 elementor-widget-tablet__width-inherit elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"1db1b41\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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 class=\"elementor-element elementor-element-a471a07 elementor-widget__width-initial elementor-widget elementor-widget-counter\" data-id=\"a471a07\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<div class=\"elementor-counter-title\">weekly weight loss<\/div>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\">-<\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"1000\" data-to-value=\"0.8\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"> kg<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c57886f elementor-widget__width-initial elementor-widget elementor-widget-counter\" data-id=\"c57886f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<div class=\"elementor-counter-title\">body fat<\/div>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\">-<\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"1000\" data-to-value=\"38.3\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\">%<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d1fe656 elementor-widget__width-initial elementor-widget elementor-widget-counter\" data-id=\"d1fe656\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<div class=\"elementor-counter-title\">total weight loss<\/div>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\">-<\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"1000\" data-to-value=\"16.3\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"> kg<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c78623a elementor-widget__width-initial elementor-widget elementor-widget-counter\" data-id=\"c78623a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<div class=\"elementor-counter-title\">50% of weight loss reached<\/div>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\"><\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"1000\" data-to-value=\"1.9\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"> months<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0562422 elementor-widget__width-initial elementor-widget elementor-widget-counter\" data-id=\"0562422\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<div class=\"elementor-counter-title\">waist circumference<\/div>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\">-<\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"1000\" data-to-value=\"18.2\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"> cm<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-265971c elementor-widget__width-initial elementor-widget elementor-widget-counter\" data-id=\"265971c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"counter.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-counter\">\n\t\t\t<div class=\"elementor-counter-title\">hip circumference<\/div>\t\t\t<div class=\"elementor-counter-number-wrapper\">\n\t\t\t\t<span class=\"elementor-counter-number-prefix\">-<\/span>\n\t\t\t\t<span class=\"elementor-counter-number\" data-duration=\"1000\" data-to-value=\"12.2\" data-from-value=\"0\" data-delimiter=\",\">0<\/span>\n\t\t\t\t<span class=\"elementor-counter-number-suffix\"> cm<\/span>\n\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-003e2c4 elementor-widget-tablet__width-inherit elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"003e2c4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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 class=\"elementor-element elementor-element-a4c49b0 elementor-widget__width-inherit elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"a4c49b0\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Based on my clients&#8217; actual quantitative data during entire\/majority of the program<\/p>\t\t\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-8fcff18 e-flex e-con-boxed e-con e-parent\" data-id=\"8fcff18\" 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-bce97e7 elementor-absolute animated-slow elementor-invisible elementor-widget elementor-widget-spacer\" data-id=\"bce97e7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\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-1ae28d3 e-flex e-con-boxed e-con e-parent\" data-id=\"1ae28d3\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d498a4e e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"d498a4e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:1500}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6f1cbd4 elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-html\" data-id=\"6f1cbd4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n  .radar-container {\n    position: relative;\n    width: 100%;\n    padding-bottom: 100%; \/* Square shape *\/\n    max-width: 450px; \/* Max size for desktop *\/\n    margin: 0 auto; \/* Center horizontally *\/\n  }\n  .radar-container canvas {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n  }\n<\/style>\n<div class=\"radar-container\">\n  <canvas id=\"myRadar\"><\/canvas>\n<\/div>\n\n<script>\n  const canvas = document.getElementById('myRadar');\n  const ctx = canvas.getContext('2d');\n\n  \/\/ Data\n  const labels = ['Spouse', 'Friend', 'Family', 'Parent', 'Happiness'];\n  const beforeScores = [6.5, 6.4, 6.6, 6.7, 6.8];\n  const afterScores = [7.8, 7.4, 7.6, 7.6, 8.2];\n  const beforeColor = 'rgba(160, 74, 179, 0.5)';\n  const afterColor = 'rgba(69, 172, 255, 0.5)';\n  const legendColorBefore = '#A04AB3';\n  const legendColorAfter = '#45ACFF';\n\n  \/\/ Animation settings\n  const segmentDuration = 500;\n  const pauseDuration = 250;\n\n  let finalState = null;\n\n  \/\/ Resize canvas\n  function resizeCanvas() {\n    const container = canvas.parentElement;\n    const width = container.clientWidth;\n    const height = width; \/\/ Square shape\n    canvas.width = width * 2;\n    canvas.height = height * 2;\n    canvas.style.width = `${width}px`;\n    canvas.style.height = `${height}px`;\n    ctx.setTransform(1, 0, 0, 1, 0, 0);\n    ctx.scale(2, 2);\n    return { width, height };\n  }\n\n  \/\/ Responsive font size\n  function getFontSize(baseSize, width) {\n    const baseWidth = 450;\n    return Math.max(baseSize * 0.5, baseSize * (width \/ baseWidth)); \/\/ Minimum 50% of base\n  }\n\n  \/\/ Draw grid, labels, and scale\n  function drawGrid(centerX, centerY, maxRadius, activeLabels, padding) {\n    ctx.strokeStyle = '#ddd';\n    ctx.lineWidth = 1;\n    for (let i = 1; i <= 5; i++) {\n      ctx.beginPath();\n      ctx.arc(centerX, centerY, (i * maxRadius) \/ 5, 0, 2 * Math.PI);\n      ctx.stroke();\n    }\n    labels.forEach((label, i) => {\n      const angle = (i * 2 * Math.PI) \/ labels.length - Math.PI \/ 2;\n      const x = centerX + maxRadius * Math.cos(angle);\n      const y = centerY + maxRadius * Math.sin(angle);\n      ctx.beginPath();\n      ctx.moveTo(centerX, centerY);\n      ctx.lineTo(x, y);\n      ctx.stroke();\n      if (activeLabels.includes(label)) {\n        const labelX = centerX + (maxRadius + padding) * Math.cos(angle);\n        const labelY = centerY + (maxRadius + padding) * Math.sin(angle);\n        ctx.fillStyle = '#4E339D';\n        const fontSize = getFontSize(12, canvas.style.width.replace('px', ''));\n        ctx.font = `300 ${fontSize}px Inter, sans-serif`;\n        ctx.textAlign = 'center';\n        ctx.textBaseline = 'middle';\n        ctx.fillText(label, labelX, labelY);\n      }\n    });\n\n    const scaleAngle = -Math.PI \/ 2;\n    ctx.fillStyle = '#666';\n    const scaleFontSize = getFontSize(10, canvas.style.width.replace('px', ''));\n    ctx.font = `300 ${scaleFontSize}px Inter, sans-serif`;\n    for (let i = 0; i <= 10; i += 2) {\n      const radius = (i \/ 10) * maxRadius;\n      const x = centerX + radius * Math.cos(scaleAngle) - 10;\n      const y = centerY + radius * Math.sin(scaleAngle);\n      ctx.fillText(i, x, y);\n    }\n  }\n\n  \/\/ Updated drawLegend function\n  function drawLegend(centerX, centerY, maxRadius, padding, canvasHeight) {\n    const legendFontSize = getFontSize(12, canvas.style.width.replace('px', ''));\n    ctx.font = `300 ${legendFontSize}px Inter, sans-serif`;\n    const beforeText = 'Before';\n    const afterText = 'After';\n    const boxSize = legendFontSize * 0.8; \/\/ Slightly smaller boxes\n    const gap = 3; \/\/ Reduced gap\n    const spacing = 10; \/\/ Reduced spacing\n    const totalWidth = boxSize * 2 + gap * 2 + ctx.measureText(beforeText).width + ctx.measureText(afterText).width + spacing;\n    const legendX = centerX - totalWidth \/ 2;\n    const legendY = centerY + maxRadius + padding * 1.5; \/\/ Closer to chart\n\n    \/\/ Draw legend below chart\n    ctx.fillStyle = legendColorBefore;\n    ctx.fillRect(legendX, legendY - boxSize \/ 2, boxSize, boxSize);\n    ctx.fillStyle = '#4E339D';\n    ctx.textAlign = 'left';\n    ctx.textBaseline = 'middle';\n    ctx.fillText(beforeText, legendX + boxSize + gap, legendY);\n\n    const afterX = legendX + boxSize + gap + ctx.measureText(beforeText).width + spacing;\n    ctx.fillStyle = legendColorAfter;\n    ctx.fillRect(afterX, legendY - boxSize \/ 2, boxSize, boxSize);\n    ctx.fillStyle = '#4E339D';\n    ctx.fillText(afterText, afterX + boxSize + gap, legendY);\n\n    \/\/ Check if legend fits; if not, reduce chart size later in startAnimation\n  }\n\n  \/\/ Get point coordinates\n  function getPointCoords(score, index, centerX, centerY, maxRadius) {\n    const angle = (index * 2 * Math.PI) \/ labels.length - Math.PI \/ 2;\n    const radius = (score \/ 10) * maxRadius;\n    return { x: centerX + radius * Math.cos(angle), y: centerY + radius * Math.sin(angle) };\n  }\n\n  \/\/ Draw radar segments\n  function drawRadarSegments(segments, color, centerX, centerY) {\n    segments.forEach(segment => {\n      ctx.beginPath();\n      ctx.moveTo(segment.prev.x, segment.prev.y);\n      ctx.lineTo(centerX, centerY);\n      ctx.lineTo(segment.current.x, segment.current.y);\n      ctx.closePath();\n      ctx.fillStyle = color;\n      ctx.fill();\n      ctx.strokeStyle = color.replace('0.5)', '1)');\n      ctx.lineWidth = 2;\n      ctx.stroke();\n    });\n  }\n\n  \/\/ Redraw the final state\n  function redrawFinalState() {\n    if (!finalState) return;\n    const { centerX, centerY, maxRadius, activeLabels, beforeSegments, afterSegments, padding } = finalState;\n    const { height } = resizeCanvas();\n    ctx.clearRect(0, 0, canvas.width, canvas.height);\n    drawGrid(centerX, centerY, maxRadius, activeLabels, padding);\n    drawLegend(centerX, centerY, maxRadius, padding, height);\n    drawRadarSegments(beforeSegments, beforeColor, centerX, centerY);\n    drawRadarSegments(afterSegments, afterColor, centerX, centerY);\n  }\n\n  \/\/ Throttle function\n  function throttle(func, limit) {\n    let inThrottle;\n    return function (...args) {\n      if (!inThrottle) {\n        func.apply(this, args);\n        inThrottle = true;\n        setTimeout(() => (inThrottle = false), limit);\n      }\n    };\n  }\n\n  \/\/ Animate a single segment\n  async function animateSegment(prevPoint, toScore, index, color, centerX, centerY, maxRadius, allPoints, activeLabels, padding) {\n    const toPoint = getPointCoords(toScore, index, centerX, centerY, maxRadius);\n    let startTime = null;\n\n    return new Promise((resolve) => {\n      function drawFrame(timestamp) {\n        if (!startTime) startTime = timestamp;\n        const elapsed = timestamp - startTime;\n        const progress = Math.min(elapsed \/ segmentDuration, 1);\n        const currentPoint = {\n          x: prevPoint.x + (toPoint.x - prevPoint.x) * progress,\n          y: prevPoint.y + (toPoint.y - prevPoint.y) * progress\n        };\n\n        ctx.clearRect(0, 0, canvas.width, canvas.height);\n        const { height } = resizeCanvas();\n        drawGrid(centerX, centerY, maxRadius, activeLabels, padding);\n        drawLegend(centerX, centerY, maxRadius, padding, height);\n        drawRadarSegments(allPoints.before, beforeColor, centerX, centerY);\n        drawRadarSegments(allPoints.after, afterColor, centerX, centerY);\n\n        ctx.beginPath();\n        ctx.moveTo(prevPoint.x, prevPoint.y);\n        ctx.lineTo(centerX, centerY);\n        ctx.lineTo(currentPoint.x, currentPoint.y);\n        ctx.closePath();\n        ctx.fillStyle = color;\n        ctx.fill();\n        ctx.strokeStyle = color.replace('0.5)', '1)');\n        ctx.lineWidth = 2;\n        ctx.stroke();\n\n        if (progress < 1) {\n          requestAnimationFrame(drawFrame);\n        } else {\n          resolve({ prev: prevPoint, current: toPoint });\n        }\n      }\n      requestAnimationFrame(drawFrame);\n    });\n  }\n\n  \/\/ Main animation function\n  async function startAnimation() {\n    const { width, height } = resizeCanvas();\n    const padding = Math.min(width, height) * 0.05;\n    \/\/ Adjust maxRadius to leave room for legend, scaling with width\n    const legendSpace = getFontSize(12, width) * 2 + padding * 2; \/\/ Approx legend height\n    const maxRadius = Math.min(width, height) * 0.35; \/\/ Reduced size for mobile\n\n    const centerX = width \/ 2;\n    const centerY = height \/ 2;\n\n    let activeLabels = [];\n    let beforeSegments = [];\n    let afterSegments = [];\n    let prevBeforePoint = { x: centerX, y: centerY };\n    let prevAfterPoint = { x: centerX, y: centerY };\n\n    for (let i = 0; i < labels.length; i++) {\n      activeLabels.push(labels[i]);\n\n      const beforeSegment = await animateSegment(\n        prevBeforePoint,\n        beforeScores[i],\n        i,\n        beforeColor,\n        centerX,\n        centerY,\n        maxRadius,\n        { before: beforeSegments, after: afterSegments },\n        activeLabels,\n        padding\n      );\n      beforeSegments.push(beforeSegment);\n      prevBeforePoint = beforeSegment.current;\n      await new Promise(resolve => setTimeout(resolve, pauseDuration));\n\n      const afterSegment = await animateSegment(\n        prevAfterPoint,\n        afterScores[i],\n        i,\n        afterColor,\n        centerX,\n        centerY,\n        maxRadius,\n        { before: beforeSegments, after: afterSegments },\n        activeLabels,\n        padding\n      );\n      afterSegments.push(afterSegment);\n      prevAfterPoint = afterSegment.current;\n      await new Promise(resolve => setTimeout(resolve, pauseDuration));\n    }\n\n    const closeBefore = await animateSegment(\n      prevBeforePoint,\n      beforeScores[0],\n      0,\n      beforeColor,\n      centerX,\n      centerY,\n      maxRadius,\n      { before: beforeSegments, after: afterSegments },\n      activeLabels,\n      padding\n    );\n    beforeSegments.push(closeBefore);\n    await new Promise(resolve => setTimeout(resolve, pauseDuration));\n\n    const closeAfter = await animateSegment(\n      prevAfterPoint,\n      afterScores[0],\n      0,\n      afterColor,\n      centerX,\n      centerY,\n      maxRadius,\n      { before: beforeSegments, after: afterSegments },\n      activeLabels,\n      padding\n    );\n    afterSegments.push(closeAfter);\n\n    finalState = {\n      centerX,\n      centerY,\n      maxRadius,\n      activeLabels,\n      beforeSegments,\n      afterSegments,\n      padding\n    };\n\n    redrawFinalState();\n\n    const throttledRedraw = throttle(redrawFinalState, 100);\n    window.addEventListener('scroll', throttledRedraw);\n    window.addEventListener('resize', () => {\n      resizeCanvas();\n      redrawFinalState();\n    });\n    document.addEventListener('visibilitychange', () => {\n      if (document.visibilityState === 'visible') redrawFinalState();\n    });\n  }\n\n  \/\/ Trigger animation when in view\n  const observer = new IntersectionObserver(\n    (entries) => {\n      if (entries[0].isIntersecting) {\n        startAnimation();\n        observer.unobserve(canvas);\n      }\n    },\n    { threshold: 0.5 }\n  );\n\n  resizeCanvas();\n  observer.observe(canvas);\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f08c889 e-con-full e-flex e-con e-child\" data-id=\"f08c889\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a47fdc7 animate-float elementor-widget elementor-widget-heading\" data-id=\"a47fdc7\" 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\">Better <font color=\"#45acff\">health<\/font>\nbetter <font color=\"#45acff\">person<\/font><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b91683d elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"b91683d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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 class=\"elementor-element elementor-element-fa44d7c elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"fa44d7c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Weight loss seems like an obvious goal. However, with better nutrition, habits and awareness my clients also feel they&#8217;re happier and become a better person for the people around them.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-70c9b46 elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"70c9b46\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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 class=\"elementor-element elementor-element-427ceb9 elementor-align-center elementor-mobile-align-center elementor-tablet-align-left elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-button\" data-id=\"427ceb9\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:4000}\" 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 elementor-animation-sink\" href=\"https:\/\/weight-loss-wizard.com\/call\">\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\">Become better<\/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-0b41b87 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"0b41b87\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Based on actual qualitative improvements reported by clients<\/p>\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-2853d06 e-flex e-con-boxed e-con e-parent\" data-id=\"2853d06\" 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-97e3a12 elementor-absolute animated-slow elementor-invisible elementor-widget elementor-widget-spacer\" data-id=\"97e3a12\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation_delay&quot;:500,&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\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-e54b3bf e-flex e-con-boxed e-con e-parent\" data-id=\"e54b3bf\" 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-b1c915a animate-float elementor-widget elementor-widget-heading\" data-id=\"b1c915a\" 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\">Better <font color=\"#45acff\"> health<\/font> better <font color=\"#45acff\">work<\/font><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b57015c elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"b57015c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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 class=\"elementor-element elementor-element-5b1c7ab elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"5b1c7ab\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Changing poor nutrition patterns and applying a strategy that fits the needs of both your body and brain like a glove leads to weight loss. However, it also leads to a measurable increase in work performance and increased ability to manage stress.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4eece94 elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"4eece94\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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<div class=\"elementor-element elementor-element-675188e e-flex e-con-boxed e-con e-child\" data-id=\"675188e\" 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-0510fc5 elementor-widget__width-initial animated-fast elementor-invisible elementor-widget elementor-widget-html\" data-id=\"0510fc5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:5}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"progress-ring-container\" \n     data-delay=\"500\" \n     data-counter-desktop=\"30px\" \n     data-counter-tablet=\"24px\" \n     data-counter-mobile=\"18px\" \n     data-header-desktop=\"26px\" \n     data-header-tablet=\"22px\" \n     data-header-mobile=\"18px\" \n     style=\"position: relative; width: 100%; display: flex; flex-direction: column; align-items: center;\">\n  <div style=\"position: relative; width: 100%; padding-bottom: 100%;\">\n    <svg class=\"progress-ring\" width=\"100%\" height=\"100%\" viewBox=\"0 0 120 120\" preserveAspectRatio=\"xMidYMid meet\" style=\"position: absolute; top: 0; left: 0; transform: rotate(-90deg);\">\n      <circle class=\"progress-ring-second\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #45acff;\"\/>\n      <circle class=\"progress-ring-first\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #a04AB3;\"\/>\n    <\/svg>\n    <div class=\"counter\" style=\"position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Ubuntu', sans-serif; font-weight: 400; color: #4e339d; text-align: center;\"><\/div>\n  <\/div>\n  <h3 class=\"progress-header\" style=\"font-family: 'Ubuntu', sans-serif; font-weight: 500; text-align: center; color: #45ACFF; margin-top: 20px; opacity: 0;\">Work<br>performance<\/h3>\n\n  <script>\n    (function() {\n      const container = document.currentScript.closest('.progress-ring-container');\n      if (!container) return;\n\n      const uniqueId = 'ring-' + Math.random().toString(36).substr(2, 9);\n      container.classList.add(uniqueId);\n\n      const baseDelay = parseInt(container.getAttribute('data-delay')) || 0;\n      const isMobile = window.innerWidth <= 768;\n      const delay = isMobile ? 500 : baseDelay;\n\n      const firstRing = container.querySelector('.progress-ring-first');\n      const secondRing = container.querySelector('.progress-ring-second');\n      firstRing.style.strokeDasharray = '0 314';\n      firstRing.style.opacity = '0';\n      secondRing.style.strokeDasharray = '0 314';\n      secondRing.style.opacity = '0';\n\n      const firstPercent = 58;\n      const secondPercent = 80;\n      const radius = 50;\n      const circumference = 2 * Math.PI * radius;\n      const firstDash = (firstPercent \/ 100) * circumference;\n      const secondDash = (secondPercent \/ 100) * circumference;\n\n      const counter = container.querySelector('.counter');\n      const startValue = 0;\n      const endValue = 40;\n      const prefix = '+';\n      const suffix = '%';\n      const duration = 1000;\n\n      const header = container.querySelector('.progress-header');\n\n      function startCounter() {\n        const startTime = performance.now();\n        function updateCounter(currentTime) {\n          const elapsedTime = currentTime - startTime;\n          const progress = Math.min(elapsedTime \/ duration, 1);\n          const value = Math.floor(startValue + (endValue - startValue) * progress);\n          counter.textContent = `${prefix}${value}${suffix}`;\n          if (progress < 1) requestAnimationFrame(updateCounter);\n        }\n        requestAnimationFrame(updateCounter);\n      }\n\n      const styleSheet = document.createElement('style');\n      document.head.appendChild(styleSheet);\n      \n      styleSheet.textContent = `\n        .${uniqueId} .progress-ring-first {\n          z-index: 2;\n        }\n        .${uniqueId} .progress-ring-second {\n          z-index: 1;\n        }\n        .${uniqueId}.animate .progress-ring-first {\n          animation: fillFirst-${uniqueId} 0.5s ease-in-out 0.5s forwards;\n        }\n        .${uniqueId}.animate .progress-ring-second {\n          animation: fillSecond-${uniqueId} 1s ease-in-out 1s forwards;\n          filter: drop-shadow(1px 1px 1px #0000001A);\n        }\n        @keyframes fillFirst-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 0;\n          }\n          to {\n            stroke-dasharray: ${firstDash} ${circumference};\n            opacity: 1;\n          }\n        }\n        @keyframes fillSecond-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 1;\n          }\n          to {\n            stroke-dasharray: ${secondDash} ${circumference};\n            opacity: 1;\n          }\n        }\n      `;\n\n      function setContainerHeight() {\n        const parentContainer = container.closest('.elementor-widget-container');\n        if (parentContainer) {\n          const totalHeight = container.offsetHeight;\n          parentContainer.style.height = `${totalHeight}px`;\n        }\n      }\n\n      \/\/ Minimal addition for responsive font sizes\n      const mobileMax = 768;\n      const tabletMax = 1024;\n      const defaultCounterSizes = { mobile: '18px', tablet: '24px', desktop: '30px' };\n      const defaultHeaderSizes = { mobile: '18px', tablet: '22px', desktop: '26px' };\n\n      function setFontSizes() {\n        const width = window.innerWidth;\n        const device = width <= mobileMax ? 'mobile' : width <= tabletMax ? 'tablet' : 'desktop';\n        counter.style.fontSize = container.getAttribute(`data-counter-${device}`) || defaultCounterSizes[device];\n        header.style.fontSize = container.getAttribute(`data-header-${device}`) || defaultHeaderSizes[device];\n      }\n\n      window.addEventListener('load', () => { setFontSizes(); setContainerHeight(); });\n      window.addEventListener('resize', () => { setFontSizes(); setContainerHeight(); });\n\n      const observer = new IntersectionObserver((entries, observer) => {\n        entries.forEach(entry => {\n          if (entry.isIntersecting) {\n            setTimeout(() => {\n              container.classList.add('animate');\n              secondRing.addEventListener('animationstart', startCounter, { once: true });\n              firstRing.addEventListener('animationstart', () => {\n                if (header) header.style.opacity = '1';\n                setContainerHeight();\n              }, { once: true });\n            }, delay);\n            observer.unobserve(container);\n          }\n        });\n      }, { threshold: 0.5 });\n\n      observer.observe(container);\n    })();\n  <\/script>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b39765a animated-fast elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-html\" data-id=\"b39765a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:5}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"progress-ring-container\" \n     data-delay=\"1000\" \n     data-counter-desktop=\"30px\" \n     data-counter-tablet=\"24px\" \n     data-counter-mobile=\"18px\" \n     data-header-desktop=\"26px\" \n     data-header-tablet=\"22px\" \n     data-header-mobile=\"18px\" \n     style=\"position: relative; width: 100%; display: flex; flex-direction: column; align-items: center;\">\n  <div style=\"position: relative; width: 100%; padding-bottom: 100%;\">\n    <svg class=\"progress-ring\" width=\"100%\" height=\"100%\" viewBox=\"0 0 120 120\" preserveAspectRatio=\"xMidYMid meet\" style=\"position: absolute; top: 0; left: 0; transform: rotate(-90deg);\">\n      <circle class=\"progress-ring-second\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #45acff;\"\/>\n      <circle class=\"progress-ring-first\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #a04AB3;\"\/>\n    <\/svg>\n    <div class=\"counter\" style=\"position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Ubuntu', sans-serif; font-weight: 400; color: #4e339d; text-align: center;\"><\/div>\n  <\/div>\n  <h3 class=\"progress-header\" style=\"font-family: 'Ubuntu', sans-serif; font-weight: 500; text-align: center; color: #45ACFF; margin-top: 20px; opacity: 0;\">Stress<br>handling<\/h3>\n\n<script>\n    (function() {\n      const container = document.currentScript.closest('.progress-ring-container');\n      if (!container) return;\n\n      const uniqueId = 'ring-' + Math.random().toString(36).substr(2, 9);\n      container.classList.add(uniqueId);\n\n      const baseDelay = parseInt(container.getAttribute('data-delay')) || 0;\n      const isMobile = window.innerWidth <= 768;\n      const delay = isMobile ? 500 : baseDelay;\n\n      const firstRing = container.querySelector('.progress-ring-first');\n      const secondRing = container.querySelector('.progress-ring-second');\n      firstRing.style.strokeDasharray = '0 314';\n      firstRing.style.opacity = '0';\n      secondRing.style.strokeDasharray = '0 314';\n      secondRing.style.opacity = '0';\n\n      const firstPercent = 60;\n      const secondPercent = 74;\n      const radius = 50;\n      const circumference = 2 * Math.PI * radius;\n      const firstDash = (firstPercent \/ 100) * circumference;\n      const secondDash = (secondPercent \/ 100) * circumference;\n\n      const counter = container.querySelector('.counter');\n      const startValue = 0;\n      const endValue = 24;\n      const prefix = '+';\n      const suffix = '%';\n      const duration = 1000;\n\n      const header = container.querySelector('.progress-header');\n\n      function startCounter() {\n        const startTime = performance.now();\n        function updateCounter(currentTime) {\n          const elapsedTime = currentTime - startTime;\n          const progress = Math.min(elapsedTime \/ duration, 1);\n          const value = Math.floor(startValue + (endValue - startValue) * progress);\n          counter.textContent = `${prefix}${value}${suffix}`;\n          if (progress < 1) requestAnimationFrame(updateCounter);\n        }\n        requestAnimationFrame(updateCounter);\n      }\n\n      const styleSheet = document.createElement('style');\n      document.head.appendChild(styleSheet);\n      \n      styleSheet.textContent = `\n        .${uniqueId} .progress-ring-first {\n          z-index: 2;\n        }\n        .${uniqueId} .progress-ring-second {\n          z-index: 1;\n        }\n        .${uniqueId}.animate .progress-ring-first {\n          animation: fillFirst-${uniqueId} 0.5s ease-in-out 0.5s forwards;\n        }\n        .${uniqueId}.animate .progress-ring-second {\n          animation: fillSecond-${uniqueId} 1s ease-in-out 1s forwards;\n          filter: drop-shadow(1px 1px 1px #0000001A);\n        }\n        @keyframes fillFirst-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 0;\n          }\n          to {\n            stroke-dasharray: ${firstDash} ${circumference};\n            opacity: 1;\n          }\n        }\n        @keyframes fillSecond-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 1;\n          }\n          to {\n            stroke-dasharray: ${secondDash} ${circumference};\n            opacity: 1;\n          }\n        }\n      `;\n\n      function setContainerHeight() {\n        const parentContainer = container.closest('.elementor-widget-container');\n        if (parentContainer) {\n          const totalHeight = container.offsetHeight;\n          parentContainer.style.height = `${totalHeight}px`;\n        }\n      }\n\n      \/\/ Minimal addition for responsive font sizes\n      const mobileMax = 768;\n      const tabletMax = 1024;\n      const defaultCounterSizes = { mobile: '18px', tablet: '24px', desktop: '30px' };\n      const defaultHeaderSizes = { mobile: '18px', tablet: '22px', desktop: '26px' };\n\n      function setFontSizes() {\n        const width = window.innerWidth;\n        const device = width <= mobileMax ? 'mobile' : width <= tabletMax ? 'tablet' : 'desktop';\n        counter.style.fontSize = container.getAttribute(`data-counter-${device}`) || defaultCounterSizes[device];\n        header.style.fontSize = container.getAttribute(`data-header-${device}`) || defaultHeaderSizes[device];\n      }\n\n      window.addEventListener('load', () => { setFontSizes(); setContainerHeight(); });\n      window.addEventListener('resize', () => { setFontSizes(); setContainerHeight(); });\n\n      const observer = new IntersectionObserver((entries, observer) => {\n        entries.forEach(entry => {\n          if (entry.isIntersecting) {\n            setTimeout(() => {\n              container.classList.add('animate');\n              secondRing.addEventListener('animationstart', startCounter, { once: true });\n              firstRing.addEventListener('animationstart', () => {\n                if (header) header.style.opacity = '1';\n                setContainerHeight();\n              }, { once: true });\n            }, delay);\n            observer.unobserve(container);\n          }\n        });\n      }, { threshold: 0.5 });\n\n      observer.observe(container);\n    })();\n  <\/script>\n<\/div>\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-9a2e225 elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"9a2e225\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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 class=\"elementor-element elementor-element-ee8a578 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"ee8a578\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Based on actual qualitative improvements reported by clients<\/p>\t\t\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-5e4e2b4 e-flex e-con-boxed e-con e-parent\" data-id=\"5e4e2b4\" 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-914f919 elementor-absolute animated-slow elementor-invisible elementor-widget elementor-widget-spacer\" data-id=\"914f919\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:500}\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\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-b734ddb e-flex e-con-boxed e-con e-parent\" data-id=\"b734ddb\" 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-28bafe8 elementor-widget elementor-widget-menu-anchor\" data-id=\"28bafe8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"menu-anchor.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-menu-anchor\" id=\"call\"><\/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-07f3b98 elementor-hidden-desktop e-flex e-con-boxed e-con e-parent\" data-id=\"07f3b98\" 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-8d0afd6 elementor-absolute animated-slow elementor-invisible elementor-widget elementor-widget-spacer\" data-id=\"8d0afd6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_position&quot;:&quot;absolute&quot;,&quot;_animation_delay&quot;:500,&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\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-25efe6c e-flex e-con-boxed e-con e-parent\" data-id=\"25efe6c\" 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-6a0bce0 e-flex e-con-boxed e-con e-child\" data-id=\"6a0bce0\" 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-a016a3d e-flex e-con-boxed e-con e-child\" data-id=\"a016a3d\" 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-70a9f97 e-con-full e-flex e-con e-child\" data-id=\"70a9f97\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-a8676af e-con-full e-flex e-con e-child\" data-id=\"a8676af\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-68e1c96 elementor-widget-tablet__width-initial elementor-widget elementor-widget-html\" data-id=\"68e1c96\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\n(function() {\n    function wrapTextNodes(node, delayIndex) {\n        if (node.nodeType === 3 && node.textContent.trim()) {\n            const text = node.textContent;\n            const words = text.split(\/\\s+\/).filter(word => word);\n            const fragment = document.createDocumentFragment();\n            const leadingSpace = text.match(\/^\\s+\/) ? text.match(\/^\\s+\/)[0] : '';\n            const trailingSpace = text.match(\/\\s+$\/) ? text.match(\/\\s+$\/)[0] : '';\n\n            if (leadingSpace) fragment.appendChild(document.createTextNode(leadingSpace));\n            words.forEach((word, i) => {\n                const span = document.createElement('span');\n                span.className = 'word-span';\n                span.textContent = word;\n                span.style.animationDelay = `${0.25 + (delayIndex + i) * 0.15}s`;\n                fragment.appendChild(span);\n                if (i < words.length - 1) fragment.appendChild(document.createTextNode(' '));\n            });\n            if (trailingSpace) fragment.appendChild(document.createTextNode(trailingSpace));\n\n            node.parentNode.replaceChild(fragment, node);\n            return delayIndex + words.length;\n        } else if (node.nodeType === 1 && !node.classList.contains('word-span')) {\n            let currentDelay = delayIndex;\n            Array.from(node.childNodes).forEach(child => {\n                currentDelay = wrapTextNodes(child, currentDelay);\n            });\n            return currentDelay;\n        }\n        return delayIndex;\n    }\n\n    function animateWords(heading) {\n        if (heading.classList.contains('words-animated')) return;\n\n        const clone = heading.cloneNode(true);\n        let delayIndex = 0;\n        Array.from(clone.childNodes).forEach(node => {\n            delayIndex = wrapTextNodes(node, delayIndex);\n        });\n        heading.innerHTML = clone.innerHTML;\n        heading.classList.add('words-animated');\n        heading.style.opacity = '1'; \/\/ Reveal after spans are added\n    }\n\n    const observer = new IntersectionObserver(entries => {\n        entries.forEach(entry => {\n            if (entry.isIntersecting) {\n                animateWords(entry.target);\n                observer.unobserve(entry.target);\n            }\n        });\n    }, { threshold: 0.5, rootMargin: '0px' });\n\n    function observeHeaders() {\n        document.querySelectorAll('.animate-float .elementor-heading-title').forEach(heading => {\n            if (!heading.classList.contains('words-animated')) {\n                observer.observe(heading);\n            }\n        });\n    }\n\n    observeHeaders();\n    document.addEventListener('DOMContentLoaded', observeHeaders);\n    const mutationObserver = new MutationObserver(observeHeaders);\n    mutationObserver.observe(document.body, { childList: true, subtree: true });\n})();\n<\/script>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fc86e67 e-con-full e-flex e-con e-child\" data-id=\"fc86e67\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6c886ff elementor-view-default elementor-invisible elementor-widget elementor-widget-icon\" data-id=\"6c886ff\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;rotateInUpRight&quot;,&quot;_animation_delay&quot;:1500}\" 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<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" height=\"800px\" width=\"800px\" id=\"_x32_\" viewBox=\"0 0 512 512\" xml:space=\"preserve\" fill=\"#000000\"><g id=\"SVGRepo_bgCarrier\" stroke-width=\"0\"><\/g><g id=\"SVGRepo_tracerCarrier\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><\/g><g id=\"SVGRepo_iconCarrier\"> <style type=\"text\/css\"> .st0{fill:#A04AB3;} <\/style> <g> <path class=\"st0\" d=\"M510.868,327.816c-0.61-4.281-1.471-8.474-2.528-12.572l0.733-0.095c0,0-42.276-112.08-51.077-151.655 c-7.37-29.951-28.899-53.445-56.26-64.216c-0.697-2.495-1.275-4.744-1.706-6.664c-5.963-24.275-29.473-40.554-54.752-36.975 c-25.276,3.58-43.345,25.75-42.336,50.727c0.203,3.229,0.466,7.382,0.765,12.102c-18.842,17.961-29.939,43.56-28.831,70.96 c0.047,0.765,0.096,1.546,0.143,2.359h-38.042c0.047-0.813,0.095-1.594,0.148-2.359c1.104-27.401-9.986-52.999-28.836-70.96 c0.299-4.719,0.563-8.873,0.766-12.102c1.008-24.977-17.057-47.147-42.337-50.727c-25.276-3.58-48.789,12.7-54.752,36.975 c-0.43,1.921-1.008,4.169-1.706,6.664c-27.36,10.77-48.889,34.265-56.26,64.216C45.199,203.069,2.923,315.149,2.923,315.149 l0.733,0.095c-1.056,4.098-1.917,8.291-2.523,12.572c-8.765,61.872,34.296,119.143,96.168,127.905 c61.872,8.761,119.14-34.296,127.901-96.168c0.606-4.289,0.94-8.546,1.064-12.779l0.733,0.112c0,0,0.195-3.029,0.538-8.267h56.922 c0.343,5.238,0.538,8.267,0.538,8.267l0.734-0.112c0.124,4.233,0.458,8.49,1.064,12.779 c8.762,61.872,66.029,104.929,127.901,96.168C476.576,446.96,519.629,389.688,510.868,327.816z M187.861,354.268 c-5.848,41.24-44.022,69.955-85.274,64.112c-41.248-5.844-69.952-44.031-64.108-85.27c5.84-41.248,44.018-69.956,85.266-64.113 C164.996,274.842,193.7,313.012,187.861,354.268z M409.41,418.38c-41.252,5.843-79.426-22.872-85.274-64.112 c-5.839-41.256,22.864-79.426,64.116-85.271c41.252-5.843,79.426,22.864,85.267,64.113 C479.362,374.35,450.658,412.537,409.41,418.38z\"><\/path> <\/g> <\/g><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bc9e865 elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"bc9e865\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:1500}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">WHAT IS YOUR GOAL &amp;<BR>\nHOW CAN I HELP<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-74207f4 animate-float elementor-widget__width-initial elementor-widget elementor-widget-heading\" data-id=\"74207f4\" 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\">Book your <font color=\"#45acff\">metabolic audit<\/font><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-70e13f7 elementor-widget__width-initial elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"70e13f7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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 class=\"elementor-element elementor-element-2b35a85 elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"2b35a85\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Curious to learn if my method can also help you reach (and maintain) your dream weight? <strong>Book<\/strong> a 30-minute Metabolic Audit and you&#8217;ll know for sure.<\/p><p><strong>Sales call?!<\/strong> The opposite. I&#8217;ll do my best to convince you why my program might <strong>not<\/strong> be for you. Why? I only work with people that are 100% convinced.\u00a0<\/p><p>Still believe we should do this? Then we can get concrete. Otherwise we shake virtual hands and I wish you all the best. Zero pressure.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5d11b40 elementor-widget__width-initial elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"5d11b40\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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<div class=\"elementor-element elementor-element-171020c e-con-full e-flex e-con e-child\" data-id=\"171020c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-570fce3 elementor-widget__width-initial elementor-view-default elementor-invisible elementor-widget elementor-widget-icon\" data-id=\"570fce3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;rotateInUpRight&quot;,&quot;_animation_delay&quot;:1500}\" 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<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" fill=\"#A04AB3\" height=\"800px\" width=\"800px\" id=\"Layer_1\" viewBox=\"0 0 512 512\" xml:space=\"preserve\"><g>\t<g>\t\t<path d=\"M454.313,249.708L512,206.991L462.136,38.939l-256.667,8.226l-24.727,38.398L92.839,64.42L0,256.087l42.289,36.399   l-22.328,34.553c-7.052,10.914-9.432,23.92-6.701,36.624c2.73,12.704,10.245,23.583,21.158,30.635   c7.963,5.146,17.042,7.804,26.304,7.804c2.438,0,4.887-0.193,7.333-0.565c3.097,11.013,10.047,20.988,20.388,27.67   c8.142,5.262,17.282,7.774,26.323,7.774c2.442,0,4.873-0.206,7.278-0.567c3.198,11.44,10.36,21.2,20.423,27.703   c8.143,5.262,17.282,7.774,26.323,7.774c15.973,0,31.639-7.845,40.934-22.231l6.634-10.268l38.853,25.758l0.162,0.107   c7.963,5.146,17.042,7.805,26.304,7.805c3.43,0,6.887-0.365,10.32-1.102c12.704-2.731,23.583-10.246,30.635-21.158   c4.963-7.681,7.476-16.249,7.745-24.785c2.489-0.146,4.985-0.478,7.47-1.012c12.704-2.731,23.583-10.246,30.635-21.158   c4.865-7.528,7.504-16.054,7.777-24.787c2.479-0.147,4.963-0.478,7.436-1.01c12.705-2.731,23.584-10.244,30.636-21.158   c4.968-7.688,7.481-16.267,7.745-24.811c14.973-0.869,29.358-8.609,38.102-22.144c7.052-10.914,9.432-23.92,6.703-36.624   C464.938,264.277,460.578,256.165,454.313,249.708z M223.819,79.562l213.947-6.856l36.06,121.529l-47.959,35.513L242.472,110.338   l-52.058,79.011l-0.08,0.123c-4.694,7.26-14.416,9.349-21.676,4.66c-7.26-4.691-9.35-14.415-4.645-21.697L223.819,79.562z    M73.986,361.949c-4.694,7.261-14.418,9.35-21.675,4.66c-3.517-2.273-5.939-5.779-6.819-9.873   c-0.879-4.094-0.113-8.285,2.161-11.802l32.971-51.027c2.997-4.637,8.043-7.164,13.192-7.164c2.913,0,5.86,0.81,8.484,2.505   c3.517,2.273,5.938,5.778,6.818,9.872s0.113,8.286-2.159,11.803L73.986,361.949z M128.011,396.858   c-4.694,7.26-14.417,9.348-21.676,4.659c-7.26-4.691-9.35-14.415-4.658-21.675l32.972-51.027   c2.997-4.637,8.043-7.164,13.192-7.164c2.913,0,5.86,0.81,8.484,2.506c7.26,4.691,9.35,14.415,4.659,21.675L128.011,396.858z    M215.006,380.74l-32.972,51.027c-4.691,7.262-14.415,9.349-21.674,4.659c-3.517-2.273-5.939-5.779-6.818-9.873   c-0.88-4.094-0.114-8.285,2.159-11.803l32.972-51.027c2.273-3.517,5.778-5.938,9.872-6.818c1.107-0.237,2.22-0.355,3.324-0.355   c2.985,0,5.911,0.857,8.477,2.516C217.607,363.757,219.697,373.48,215.006,380.74z M432.488,292.041   c-2.273,3.517-5.778,5.938-9.872,6.818c-4.094,0.881-8.286,0.113-11.802-2.159l-10.939-7.068l-0.001-0.001l-51.028-32.972   l-17.892,27.69l10.94,7.07l40.088,25.904c3.517,2.273,5.938,5.778,6.818,9.872s0.113,8.286-2.159,11.803s-5.779,5.939-9.872,6.819   c-4.095,0.879-8.285,0.113-11.803-2.159l-51.027-32.972l-17.892,27.69l40.087,25.902c7.26,4.691,9.35,14.414,4.659,21.675   c-2.273,3.517-5.779,5.939-9.872,6.819c-4.095,0.879-8.285,0.113-11.802-2.159l-43.558-28.145l-17.892,27.69l32.617,21.076   c7.26,4.693,9.351,14.415,4.659,21.676c-2.273,3.517-5.778,5.939-9.872,6.819c-4.068,0.874-8.232,0.122-11.735-2.117   l-39.081-25.909l8.443-13.068c14.557-22.529,8.072-52.702-14.457-67.258c-10.349-6.687-22.309-8.922-33.629-7.214   c-3.094-11.023-10.046-21.008-20.394-27.695c-10.342-6.682-22.292-8.919-33.605-7.217c-3.199-11.436-10.36-21.192-20.42-27.692   c-18.62-12.034-42.458-9.676-58.391,4.224l-21.076-18.14l70.215-144.958l50.897,12.241l-25.527,39.639   c-14.557,22.529-8.072,52.701,14.457,67.258c22.506,14.544,52.642,8.083,67.217-14.392l33.979-51.572l175.87,114.508   c3.516,2.273,5.938,5.778,6.818,9.872C435.528,284.332,434.761,288.523,432.488,292.041z\"><\/path>\t<\/g><\/g><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-aa4777d elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget-mobile__width-auto elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"aa4777d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:1500}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">NO RISK<br>\nNO PRESSURE<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-58d1b74 elementor-widget__width-initial animated-fast elementor-widget-mobile__width-auto elementor-widget-tablet__width-initial elementor-hidden-desktop elementor-invisible elementor-widget elementor-widget-image\" data-id=\"58d1b74\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;,&quot;_animation_delay&quot;:1000}\" 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=\"453\" height=\"75\" src=\"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png\" class=\"attachment-large size-large wp-image-15454\" alt=\"\" srcset=\"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png 453w, https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2-300x50.png 300w, https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2-18x3.png 18w\" sizes=\"(max-width: 453px) 100vw, 453px\" \/>\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-b4f5f68 elementor-widget__width-initial elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"b4f5f68\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" 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<div class=\"elementor-element elementor-element-d07e887 e-con-full e-flex e-con e-child\" data-id=\"d07e887\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7f800c3 elementor-widget__width-initial animated-fast elementor-widget-mobile__width-auto elementor-widget-tablet__width-initial elementor-hidden-tablet elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-image\" data-id=\"7f800c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;,&quot;_animation_delay&quot;:1000}\" 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=\"453\" height=\"75\" src=\"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png\" class=\"attachment-large size-large wp-image-15454\" alt=\"\" srcset=\"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png 453w, https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2-300x50.png 300w, https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2-18x3.png 18w\" sizes=\"(max-width: 453px) 100vw, 453px\" \/>\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<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e712469 e-con-full e-flex e-con e-child\" data-id=\"e712469\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bd166e4 elementor-widget__width-initial elementor-widget elementor-widget-video\" data-id=\"bd166e4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;youtube_url&quot;:&quot;https:\\\/\\\/youtu.be\\\/HK2xEcHlYrg&quot;,&quot;show_image_overlay&quot;:&quot;yes&quot;,&quot;image_overlay&quot;:{&quot;url&quot;:&quot;https:\\\/\\\/weight-loss-wizard.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/hellyeah.jpg&quot;,&quot;id&quot;:16956,&quot;size&quot;:&quot;&quot;,&quot;alt&quot;:&quot;&quot;,&quot;source&quot;:&quot;library&quot;},&quot;video_type&quot;:&quot;youtube&quot;,&quot;controls&quot;:&quot;yes&quot;}\" data-widget_type=\"video.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-wrapper elementor-open-inline\">\n\t\t\t<div class=\"elementor-video\"><\/div>\t\t\t\t<div class=\"elementor-custom-embed-image-overlay\" style=\"background-image: url(https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/05\/hellyeah.jpg);\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"elementor-custom-embed-play\" role=\"button\" aria-label=\"Video afspelen\" tabindex=\"0\">\n\t\t\t\t\t\t\t<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-eicon-play\" viewBox=\"0 0 1000 1000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M838 162C746 71 633 25 500 25 371 25 258 71 163 162 71 254 25 367 25 500 25 633 71 746 163 837 254 929 367 979 500 979 633 979 746 933 838 837 929 746 975 633 975 500 975 367 929 254 838 162M808 192C892 279 933 379 933 500 933 621 892 725 808 808 725 892 621 938 500 938 379 938 279 896 196 808 113 725 67 621 67 500 67 379 108 279 196 192 279 108 383 62 500 62 621 62 721 108 808 192M438 392V642L642 517 438 392Z\"><\/path><\/svg>\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\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\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-82f184e e-flex e-con-boxed e-con e-parent\" data-id=\"82f184e\" 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-d5bed55 animated-fast elementor-widget__width-initial elementor-view-default elementor-invisible elementor-widget elementor-widget-icon\" data-id=\"d5bed55\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInDown&quot;,&quot;_animation_delay&quot;:1000}\" 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<svg aria-hidden=\"true\" class=\"e-font-icon-svg e-fas-chevron-down\" viewBox=\"0 0 448 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7684344 elementor-widget elementor-widget-menu-anchor\" data-id=\"7684344\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"menu-anchor.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-menu-anchor\" id=\"timeslot\"><\/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-1738fdb e-flex e-con-boxed e-con e-parent\" data-id=\"1738fdb\" 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-082028c elementor-widget elementor-widget-html\" data-id=\"082028c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"tidycal-embed\" data-path=\"weight-loss-wizard\/metabolic-audit\"><\/div><script src=\"https:\/\/asset-tidycal.b-cdn.net\/js\/embed.js\" async><\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ba50074 elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"ba50074\" data-element_type=\"widget\" data-e-type=\"widget\" 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=\"453\" height=\"75\" src=\"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png\" class=\"attachment-large size-large wp-image-15454\" alt=\"\" srcset=\"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png 453w, https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2-300x50.png 300w, https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2-18x3.png 18w\" sizes=\"(max-width: 453px) 100vw, 453px\" \/>\t\t\t\t\t\t\t\t\t\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-0cd117b elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"0cd117b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-e7f377b e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"e7f377b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:1500}\">\n\t\t<div class=\"elementor-element elementor-element-b297bab e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"b297bab\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:1000}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ddce611 animated-fast elementor-widget__width-initial elementor-invisible elementor-widget elementor-widget-html\" data-id=\"ddce611\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:5}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"progress-ring-container\" \n     data-delay=\"1000\" \n     data-counter-desktop=\"30px\" \n     data-counter-tablet=\"24px\" \n     data-counter-mobile=\"18px\" \n     data-header-desktop=\"26px\" \n     data-header-tablet=\"22px\" \n     data-header-mobile=\"18px\" \n     style=\"position: relative; width: 100%; display: flex; flex-direction: column; align-items: center;\">\n  <div style=\"position: relative; width: 100%; padding-bottom: 100%;\">\n    <svg class=\"progress-ring\" width=\"100%\" height=\"100%\" viewBox=\"0 0 120 120\" preserveAspectRatio=\"xMidYMid meet\" style=\"position: absolute; top: 0; left: 0; transform: rotate(-90deg);\">\n      <circle class=\"progress-ring-second\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #45acff;\"\/>\n      <circle class=\"progress-ring-first\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #a04AB3;\"\/>\n    <\/svg>\n    <div class=\"counter\" style=\"position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Ubuntu', sans-serif; font-weight: 400; color: #4e339d; text-align: center;\"><\/div>\n  <\/div>\n  <h3 class=\"progress-header\" style=\"font-family: 'Ubuntu', sans-serif; font-weight: 500; text-align: center; color: #45ACFF; margin-top: 20px; opacity: 0;\">Stress<br>handling<\/h3>\n\n<script>\n    (function() {\n      const container = document.currentScript.closest('.progress-ring-container');\n      if (!container) return;\n\n      const uniqueId = 'ring-' + Math.random().toString(36).substr(2, 9);\n      container.classList.add(uniqueId);\n\n      const baseDelay = parseInt(container.getAttribute('data-delay')) || 0;\n      const isMobile = window.innerWidth <= 768;\n      const delay = isMobile ? 500 : baseDelay;\n\n      const firstRing = container.querySelector('.progress-ring-first');\n      const secondRing = container.querySelector('.progress-ring-second');\n      firstRing.style.strokeDasharray = '0 314';\n      firstRing.style.opacity = '0';\n      secondRing.style.strokeDasharray = '0 314';\n      secondRing.style.opacity = '0';\n\n      const firstPercent = 60;\n      const secondPercent = 74;\n      const radius = 50;\n      const circumference = 2 * Math.PI * radius;\n      const firstDash = (firstPercent \/ 100) * circumference;\n      const secondDash = (secondPercent \/ 100) * circumference;\n\n      const counter = container.querySelector('.counter');\n      const startValue = 0;\n      const endValue = 23;\n      const prefix = '+';\n      const suffix = '%';\n      const duration = 1000;\n\n      const header = container.querySelector('.progress-header');\n\n      function startCounter() {\n        const startTime = performance.now();\n        function updateCounter(currentTime) {\n          const elapsedTime = currentTime - startTime;\n          const progress = Math.min(elapsedTime \/ duration, 1);\n          const value = Math.floor(startValue + (endValue - startValue) * progress);\n          counter.textContent = `${prefix}${value}${suffix}`;\n          if (progress < 1) requestAnimationFrame(updateCounter);\n        }\n        requestAnimationFrame(updateCounter);\n      }\n\n      const styleSheet = document.createElement('style');\n      document.head.appendChild(styleSheet);\n      \n      styleSheet.textContent = `\n        .${uniqueId} .progress-ring-first {\n          z-index: 2;\n        }\n        .${uniqueId} .progress-ring-second {\n          z-index: 1;\n        }\n        .${uniqueId}.animate .progress-ring-first {\n          animation: fillFirst-${uniqueId} 0.5s ease-in-out 0.5s forwards;\n        }\n        .${uniqueId}.animate .progress-ring-second {\n          animation: fillSecond-${uniqueId} 1s ease-in-out 1s forwards;\n          filter: drop-shadow(1px 1px 1px #0000001A);\n        }\n        @keyframes fillFirst-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 0;\n          }\n          to {\n            stroke-dasharray: ${firstDash} ${circumference};\n            opacity: 1;\n          }\n        }\n        @keyframes fillSecond-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 1;\n          }\n          to {\n            stroke-dasharray: ${secondDash} ${circumference};\n            opacity: 1;\n          }\n        }\n      `;\n\n      function setContainerHeight() {\n        const parentContainer = container.closest('.elementor-widget-container');\n        if (parentContainer) {\n          const totalHeight = container.offsetHeight;\n          parentContainer.style.height = `${totalHeight}px`;\n        }\n      }\n\n      \/\/ Minimal addition for responsive font sizes\n      const mobileMax = 768;\n      const tabletMax = 1024;\n      const defaultCounterSizes = { mobile: '18px', tablet: '24px', desktop: '30px' };\n      const defaultHeaderSizes = { mobile: '18px', tablet: '22px', desktop: '26px' };\n\n      function setFontSizes() {\n        const width = window.innerWidth;\n        const device = width <= mobileMax ? 'mobile' : width <= tabletMax ? 'tablet' : 'desktop';\n        counter.style.fontSize = container.getAttribute(`data-counter-${device}`) || defaultCounterSizes[device];\n        header.style.fontSize = container.getAttribute(`data-header-${device}`) || defaultHeaderSizes[device];\n      }\n\n      window.addEventListener('load', () => { setFontSizes(); setContainerHeight(); });\n      window.addEventListener('resize', () => { setFontSizes(); setContainerHeight(); });\n\n      const observer = new IntersectionObserver((entries, observer) => {\n        entries.forEach(entry => {\n          if (entry.isIntersecting) {\n            setTimeout(() => {\n              container.classList.add('animate');\n              secondRing.addEventListener('animationstart', startCounter, { once: true });\n              firstRing.addEventListener('animationstart', () => {\n                if (header) header.style.opacity = '1';\n                setContainerHeight();\n              }, { once: true });\n            }, delay);\n            observer.unobserve(container);\n          }\n        });\n      }, { threshold: 0.5 });\n\n      observer.observe(container);\n    })();\n  <\/script>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-99fc07e e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"99fc07e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:2000}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9c3dd9b elementor-widget__width-initial animated-fast elementor-invisible elementor-widget elementor-widget-html\" data-id=\"9c3dd9b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:5}\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"progress-ring-container\" \n     data-delay=\"2000\" \n     data-counter-desktop=\"30px\" \n     data-counter-tablet=\"24px\" \n     data-counter-mobile=\"18px\" \n     data-header-desktop=\"26px\" \n     data-header-tablet=\"22px\" \n     data-header-mobile=\"18px\" \n     style=\"position: relative; width: 100%; display: flex; flex-direction: column; align-items: center;\">\n  <div style=\"position: relative; width: 100%; padding-bottom: 100%;\">\n    <svg class=\"progress-ring\" width=\"100%\" height=\"100%\" viewBox=\"0 0 120 120\" preserveAspectRatio=\"xMidYMid meet\" style=\"position: absolute; top: 0; left: 0; transform: rotate(-90deg);\">\n      <circle class=\"progress-ring-second\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #45acff;\"\/>\n      <circle class=\"progress-ring-first\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #a04AB3;\"\/>\n    <\/svg>\n    <div class=\"counter\" style=\"position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Ubuntu', sans-serif; font-weight: 400; color: #4e339d; text-align: center;\"><\/div>\n  <\/div>\n  <h3 class=\"progress-header\" style=\"font-family: 'Ubuntu', sans-serif; font-weight: 500; text-align: center; color: #45ACFF; margin-top: 20px; opacity: 0;\">Work<br>performance<\/h3>\n\n  <script>\n    (function() {\n      const container = document.currentScript.closest('.progress-ring-container');\n      if (!container) return;\n\n      const uniqueId = 'ring-' + Math.random().toString(36).substr(2, 9);\n      container.classList.add(uniqueId);\n\n      const baseDelay = parseInt(container.getAttribute('data-delay')) || 0;\n      const isMobile = window.innerWidth <= 768;\n      const delay = isMobile ? 500 : baseDelay;\n\n      const firstRing = container.querySelector('.progress-ring-first');\n      const secondRing = container.querySelector('.progress-ring-second');\n      firstRing.style.strokeDasharray = '0 314';\n      firstRing.style.opacity = '0';\n      secondRing.style.strokeDasharray = '0 314';\n      secondRing.style.opacity = '0';\n\n      const firstPercent = 57;\n      const secondPercent = 80;\n      const radius = 50;\n      const circumference = 2 * Math.PI * radius;\n      const firstDash = (firstPercent \/ 100) * circumference;\n      const secondDash = (secondPercent \/ 100) * circumference;\n\n      const counter = container.querySelector('.counter');\n      const startValue = 0;\n      const endValue = 39;\n      const prefix = '+';\n      const suffix = '%';\n      const duration = 1000;\n\n      const header = container.querySelector('.progress-header');\n\n      function startCounter() {\n        const startTime = performance.now();\n        function updateCounter(currentTime) {\n          const elapsedTime = currentTime - startTime;\n          const progress = Math.min(elapsedTime \/ duration, 1);\n          const value = Math.floor(startValue + (endValue - startValue) * progress);\n          counter.textContent = `${prefix}${value}${suffix}`;\n          if (progress < 1) requestAnimationFrame(updateCounter);\n        }\n        requestAnimationFrame(updateCounter);\n      }\n\n      const styleSheet = document.createElement('style');\n      document.head.appendChild(styleSheet);\n      \n      styleSheet.textContent = `\n        .${uniqueId} .progress-ring-first {\n          z-index: 2;\n        }\n        .${uniqueId} .progress-ring-second {\n          z-index: 1;\n        }\n        .${uniqueId}.animate .progress-ring-first {\n          animation: fillFirst-${uniqueId} 0.5s ease-in-out 0.5s forwards;\n        }\n        .${uniqueId}.animate .progress-ring-second {\n          animation: fillSecond-${uniqueId} 1s ease-in-out 1s forwards;\n          filter: drop-shadow(1px 1px 1px #0000001A);\n        }\n        @keyframes fillFirst-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 0;\n          }\n          to {\n            stroke-dasharray: ${firstDash} ${circumference};\n            opacity: 1;\n          }\n        }\n        @keyframes fillSecond-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 1;\n          }\n          to {\n            stroke-dasharray: ${secondDash} ${circumference};\n            opacity: 1;\n          }\n        }\n      `;\n\n      function setContainerHeight() {\n        const parentContainer = container.closest('.elementor-widget-container');\n        if (parentContainer) {\n          const totalHeight = container.offsetHeight;\n          parentContainer.style.height = `${totalHeight}px`;\n        }\n      }\n\n      \/\/ Minimal addition for responsive font sizes\n      const mobileMax = 768;\n      const tabletMax = 1024;\n      const defaultCounterSizes = { mobile: '18px', tablet: '24px', desktop: '30px' };\n      const defaultHeaderSizes = { mobile: '18px', tablet: '22px', desktop: '26px' };\n\n      function setFontSizes() {\n        const width = window.innerWidth;\n        const device = width <= mobileMax ? 'mobile' : width <= tabletMax ? 'tablet' : 'desktop';\n        counter.style.fontSize = container.getAttribute(`data-counter-${device}`) || defaultCounterSizes[device];\n        header.style.fontSize = container.getAttribute(`data-header-${device}`) || defaultHeaderSizes[device];\n      }\n\n      window.addEventListener('load', () => { setFontSizes(); setContainerHeight(); });\n      window.addEventListener('resize', () => { setFontSizes(); setContainerHeight(); });\n\n      const observer = new IntersectionObserver((entries, observer) => {\n        entries.forEach(entry => {\n          if (entry.isIntersecting) {\n            setTimeout(() => {\n              container.classList.add('animate');\n              secondRing.addEventListener('animationstart', startCounter, { once: true });\n              firstRing.addEventListener('animationstart', () => {\n                if (header) header.style.opacity = '1';\n                setContainerHeight();\n              }, { once: true });\n            }, delay);\n            observer.unobserve(container);\n          }\n        });\n      }, { threshold: 0.5 });\n\n      observer.observe(container);\n    })();\n  <\/script>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d6f677a e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"d6f677a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:3000}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7560227 elementor-widget__width-initial elementor-widget elementor-widget-html\" data-id=\"7560227\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"progress-ring-container\" \n     data-delay=\"3000\" \n     data-counter-desktop=\"30px\" \n     data-counter-tablet=\"24px\" \n     data-counter-mobile=\"18px\" \n     data-header-desktop=\"26px\" \n     data-header-tablet=\"22px\" \n     data-header-mobile=\"18px\" \n     style=\"position: relative; width: 100%; display: flex; flex-direction: column; align-items: center;\">\n  <div style=\"position: relative; width: 100%; padding-bottom: 100%;\">\n    <svg class=\"progress-ring\" width=\"100%\" height=\"100%\" viewBox=\"0 0 120 120\" preserveAspectRatio=\"xMidYMid meet\" style=\"position: absolute; top: 0; left: 0; transform: rotate(-90deg);\">\n      <circle class=\"progress-ring-second\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #45acff;\"\/>\n      <circle class=\"progress-ring-first\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #a04AB3;\"\/>\n    <\/svg>\n    <div class=\"counter\" style=\"position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Ubuntu', sans-serif; font-weight: 400; color: #4e339d; text-align: center;\"><\/div>\n  <\/div>\n  <h3 class=\"progress-header\" style=\"font-family: 'Ubuntu', sans-serif; font-weight: 500; text-align: center; color: #45ACFF; margin-top: 20px; opacity: 0;\">Energy<br>level<\/h3>\n\n  <script>\n    (function() {\n      const container = document.currentScript.closest('.progress-ring-container');\n      if (!container) return;\n\n      const uniqueId = 'ring-' + Math.random().toString(36).substr(2, 9);\n      container.classList.add(uniqueId);\n\n      const baseDelay = parseInt(container.getAttribute('data-delay')) || 0;\n      const isMobile = window.innerWidth <= 768;\n      const delay = isMobile ? 500 : baseDelay;\n\n      const firstRing = container.querySelector('.progress-ring-first');\n      const secondRing = container.querySelector('.progress-ring-second');\n      firstRing.style.strokeDasharray = '0 314';\n      firstRing.style.opacity = '0';\n      secondRing.style.strokeDasharray = '0 314';\n      secondRing.style.opacity = '0';\n\n      const firstPercent = 50;\n      const secondPercent = 82;\n      const radius = 50;\n      const circumference = 2 * Math.PI * radius;\n      const firstDash = (firstPercent \/ 100) * circumference;\n      const secondDash = (secondPercent \/ 100) * circumference;\n\n      const counter = container.querySelector('.counter');\n      const startValue = 0;\n      const endValue = 64;\n      const prefix = '+';\n      const suffix = '%';\n      const duration = 1000;\n\n      const header = container.querySelector('.progress-header');\n\n      function startCounter() {\n        const startTime = performance.now();\n        function updateCounter(currentTime) {\n          const elapsedTime = currentTime - startTime;\n          const progress = Math.min(elapsedTime \/ duration, 1);\n          const value = Math.floor(startValue + (endValue - startValue) * progress);\n          counter.textContent = `${prefix}${value}${suffix}`;\n          if (progress < 1) requestAnimationFrame(updateCounter);\n        }\n        requestAnimationFrame(updateCounter);\n      }\n\n      const styleSheet = document.createElement('style');\n      document.head.appendChild(styleSheet);\n      \n      styleSheet.textContent = `\n        .${uniqueId} .progress-ring-first {\n          z-index: 2;\n        }\n        .${uniqueId} .progress-ring-second {\n          z-index: 1;\n        }\n        .${uniqueId}.animate .progress-ring-first {\n          animation: fillFirst-${uniqueId} 0.5s ease-in-out 0.5s forwards;\n        }\n        .${uniqueId}.animate .progress-ring-second {\n          animation: fillSecond-${uniqueId} 1s ease-in-out 1s forwards;\n          filter: drop-shadow(1px 1px 1px #0000001A);\n        }\n        @keyframes fillFirst-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 0;\n          }\n          to {\n            stroke-dasharray: ${firstDash} ${circumference};\n            opacity: 1;\n          }\n        }\n        @keyframes fillSecond-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 1;\n          }\n          to {\n            stroke-dasharray: ${secondDash} ${circumference};\n            opacity: 1;\n          }\n        }\n      `;\n\n      function setContainerHeight() {\n        const parentContainer = container.closest('.elementor-widget-container');\n        if (parentContainer) {\n          const totalHeight = container.offsetHeight;\n          parentContainer.style.height = `${totalHeight}px`;\n        }\n      }\n\n      \/\/ Minimal addition for responsive font sizes\n      const mobileMax = 768;\n      const tabletMax = 1024;\n      const defaultCounterSizes = { mobile: '18px', tablet: '24px', desktop: '30px' };\n      const defaultHeaderSizes = { mobile: '18px', tablet: '22px', desktop: '26px' };\n\n      function setFontSizes() {\n        const width = window.innerWidth;\n        const device = width <= mobileMax ? 'mobile' : width <= tabletMax ? 'tablet' : 'desktop';\n        counter.style.fontSize = container.getAttribute(`data-counter-${device}`) || defaultCounterSizes[device];\n        header.style.fontSize = container.getAttribute(`data-header-${device}`) || defaultHeaderSizes[device];\n      }\n\n      window.addEventListener('load', () => { setFontSizes(); setContainerHeight(); });\n      window.addEventListener('resize', () => { setFontSizes(); setContainerHeight(); });\n\n      const observer = new IntersectionObserver((entries, observer) => {\n        entries.forEach(entry => {\n          if (entry.isIntersecting) {\n            setTimeout(() => {\n              container.classList.add('animate');\n              secondRing.addEventListener('animationstart', startCounter, { once: true });\n              firstRing.addEventListener('animationstart', () => {\n                if (header) header.style.opacity = '1';\n                setContainerHeight();\n              }, { once: true });\n            }, delay);\n            observer.unobserve(container);\n          }\n        });\n      }, { threshold: 0.3 });\n\n      observer.observe(container);\n    })();\n  <\/script>\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6d51c19 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"6d51c19\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:4000}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8be6c32 elementor-widget__width-initial elementor-widget elementor-widget-html\" data-id=\"8be6c32\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"progress-ring-container\" \n     data-delay=\"4000\" \n     data-counter-desktop=\"30px\" \n     data-counter-tablet=\"24px\" \n     data-counter-mobile=\"18px\" \n     data-header-desktop=\"26px\" \n     data-header-tablet=\"22px\" \n     data-header-mobile=\"18px\" \n     style=\"position: relative; width: 100%; display: flex; flex-direction: column; align-items: center;\">\n  <div style=\"position: relative; width: 100%; padding-bottom: 100%;\">\n    <svg class=\"progress-ring\" width=\"100%\" height=\"100%\" viewBox=\"0 0 120 120\" preserveAspectRatio=\"xMidYMid meet\" style=\"position: absolute; top: 0; left: 0; transform: rotate(-90deg);\">\n      <circle class=\"progress-ring-second\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #45acff;\"\/>\n      <circle class=\"progress-ring-first\" r=\"50\" cx=\"60\" cy=\"60\" style=\"fill: none; stroke-width: 10; stroke-linecap: round; stroke: #a04AB3;\"\/>\n    <\/svg>\n    <div class=\"counter\" style=\"position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Ubuntu', sans-serif; font-weight: 400; color: #4e339d; text-align: center;\"><\/div>\n  <\/div>\n  <h3 class=\"progress-header\" style=\"font-family: 'Ubuntu', sans-serif; font-weight: 500; text-align: center; color: #45ACFF; margin-top: 20px; opacity: 0;\">Sleep<br>quality<\/h3>\n\n  <script>\n    (function() {\n      const container = document.currentScript.closest('.progress-ring-container');\n      if (!container) return;\n\n      const uniqueId = 'ring-' + Math.random().toString(36).substr(2, 9);\n      container.classList.add(uniqueId);\n\n      const baseDelay = parseInt(container.getAttribute('data-delay')) || 0;\n      const isMobile = window.innerWidth <= 768;\n      const delay = isMobile ? 500 : baseDelay;\n\n      const firstRing = container.querySelector('.progress-ring-first');\n      const secondRing = container.querySelector('.progress-ring-second');\n      firstRing.style.strokeDasharray = '0 314';\n      firstRing.style.opacity = '0';\n      secondRing.style.strokeDasharray = '0 314';\n      secondRing.style.opacity = '0';\n\n      const firstPercent = 56;\n      const secondPercent = 76;\n      const radius = 50;\n      const circumference = 2 * Math.PI * radius;\n      const firstDash = (firstPercent \/ 100) * circumference;\n      const secondDash = (secondPercent \/ 100) * circumference;\n\n      const counter = container.querySelector('.counter');\n      const startValue = 0;\n      const endValue = 36;\n      const prefix = '+';\n      const suffix = '%';\n      const duration = 1000;\n\n      const header = container.querySelector('.progress-header');\n\n      function startCounter() {\n        const startTime = performance.now();\n        function updateCounter(currentTime) {\n          const elapsedTime = currentTime - startTime;\n          const progress = Math.min(elapsedTime \/ duration, 1);\n          const value = Math.floor(startValue + (endValue - startValue) * progress);\n          counter.textContent = `${prefix}${value}${suffix}`;\n          if (progress < 1) requestAnimationFrame(updateCounter);\n        }\n        requestAnimationFrame(updateCounter);\n      }\n\n      const styleSheet = document.createElement('style');\n      document.head.appendChild(styleSheet);\n      \n      styleSheet.textContent = `\n        .${uniqueId} .progress-ring-first {\n          z-index: 2;\n        }\n        .${uniqueId} .progress-ring-second {\n          z-index: 1;\n        }\n        .${uniqueId}.animate .progress-ring-first {\n          animation: fillFirst-${uniqueId} 0.5s ease-in-out 0.5s forwards;\n        }\n        .${uniqueId}.animate .progress-ring-second {\n          animation: fillSecond-${uniqueId} 1s ease-in-out 1s forwards;\n          filter: drop-shadow(1px 1px 1px #0000001A);\n        }\n        @keyframes fillFirst-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 0;\n          }\n          to {\n            stroke-dasharray: ${firstDash} ${circumference};\n            opacity: 1;\n          }\n        }\n        @keyframes fillSecond-${uniqueId} {\n          from {\n            stroke-dasharray: 0 ${circumference};\n            opacity: 1;\n          }\n          to {\n            stroke-dasharray: ${secondDash} ${circumference};\n            opacity: 1;\n          }\n        }\n      `;\n\n      function setContainerHeight() {\n        const parentContainer = container.closest('.elementor-widget-container');\n        if (parentContainer) {\n          const totalHeight = container.offsetHeight;\n          parentContainer.style.height = `${totalHeight}px`;\n        }\n      }\n\n      \/\/ Minimal addition for responsive font sizes\n      const mobileMax = 768;\n      const tabletMax = 1024;\n      const defaultCounterSizes = { mobile: '18px', tablet: '24px', desktop: '30px' };\n      const defaultHeaderSizes = { mobile: '18px', tablet: '22px', desktop: '26px' };\n\n      function setFontSizes() {\n        const width = window.innerWidth;\n        const device = width <= mobileMax ? 'mobile' : width <= tabletMax ? 'tablet' : 'desktop';\n        counter.style.fontSize = container.getAttribute(`data-counter-${device}`) || defaultCounterSizes[device];\n        header.style.fontSize = container.getAttribute(`data-header-${device}`) || defaultHeaderSizes[device];\n      }\n\n      window.addEventListener('load', () => { setFontSizes(); setContainerHeight(); });\n      window.addEventListener('resize', () => { setFontSizes(); setContainerHeight(); });\n\n      const observer = new IntersectionObserver((entries, observer) => {\n        entries.forEach(entry => {\n          if (entry.isIntersecting) {\n            setTimeout(() => {\n              container.classList.add('animate');\n              secondRing.addEventListener('animationstart', startCounter, { once: true });\n              firstRing.addEventListener('animationstart', () => {\n                if (header) header.style.opacity = '1';\n                setContainerHeight();\n              }, { once: true });\n            }, delay);\n            observer.unobserve(container);\n          }\n        });\n      }, { threshold: 0.3 });\n\n      observer.observe(container);\n    })();\n  <\/script>\n<\/div>\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-f371f02 e-con-full e-flex e-con e-child\" data-id=\"f371f02\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3f9c828 animate-float elementor-widget elementor-widget-heading\" data-id=\"3f9c828\" 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\">Increase your <font color=\"#45acff\"> energy<\/font><br>Increase your <font color=\"#45acff\">output<\/font><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1a5c3fa elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"1a5c3fa\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:1000}\" 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 class=\"elementor-element elementor-element-c9053fd elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"c9053fd\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:1000}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Changing poor nutrition patterns and applying a strategy that fits the needs of both your body and brain like a glove leads to weight loss. However, it also leads to more energy, better sleep and increased stress resilience. All of which contribute to a measurable increase in work performance.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2e83cff elementor-widget-divider--view-line elementor-invisible elementor-widget elementor-widget-divider\" data-id=\"2e83cff\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:1000}\" 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 class=\"elementor-element elementor-element-b074b6a elementor-align-center elementor-mobile-align-center elementor-hidden-mobile elementor-invisible elementor-widget elementor-widget-button\" data-id=\"b074b6a\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:4000}\" 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 elementor-animation-sink\" href=\"https:\/\/weight-loss-wizard.com\/call\">\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\">Get in control<\/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-254af37 elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"254af37\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;,&quot;_animation_delay&quot;:2000}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Based on actual qualitative improvements reported by clients<\/p>\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","protected":false},"excerpt":{"rendered":"<p>SCIENCE, DATA &amp; YOUR BODY CREATE A CUSTOM APPROACH Data drives strategy strategy drives action &#8216;Trust the science&#8217;, but which science? In the world of weight loss the amount of conflicting evidence is so overwhelming it can lead to inertia. We start with a few basics that have proven their effectiveness, but always use data [&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-14162","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Data | Weight Loss Wizard<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/weight-loss-wizard.com\/nl\/data\/\" \/>\n<meta property=\"og:locale\" content=\"nl_NL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Data | Weight Loss Wizard\" \/>\n<meta property=\"og:description\" content=\"SCIENCE, DATA &amp; YOUR BODY CREATE A CUSTOM APPROACH Data drives strategy strategy drives action &#8216;Trust the science&#8217;, but which science? In the world of weight loss the amount of conflicting evidence is so overwhelming it can lead to inertia. We start with a few basics that have proven their effectiveness, but always use data [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/weight-loss-wizard.com\/nl\/data\/\" \/>\n<meta property=\"og:site_name\" content=\"Weight Loss Wizard\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-09T09:23:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"453\" \/>\n\t<meta property=\"og:image:height\" content=\"75\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Geschatte leestijd\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/weight-loss-wizard.com\\\/data\\\/\",\"url\":\"https:\\\/\\\/weight-loss-wizard.com\\\/data\\\/\",\"name\":\"Data | Weight Loss Wizard\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/weight-loss-wizard.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/weight-loss-wizard.com\\\/data\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/weight-loss-wizard.com\\\/data\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/weight-loss-wizard.com\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png\",\"datePublished\":\"2025-03-15T12:14:56+00:00\",\"dateModified\":\"2026-02-09T09:23:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/weight-loss-wizard.com\\\/data\\\/#breadcrumb\"},\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/weight-loss-wizard.com\\\/data\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\\\/\\\/weight-loss-wizard.com\\\/data\\\/#primaryimage\",\"url\":\"https:\\\/\\\/weight-loss-wizard.com\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png\",\"contentUrl\":\"https:\\\/\\\/weight-loss-wizard.com\\\/wp-content\\\/uploads\\\/2025\\\/04\\\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/weight-loss-wizard.com\\\/data\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/weight-loss-wizard.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Data\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/weight-loss-wizard.com\\\/#website\",\"url\":\"https:\\\/\\\/weight-loss-wizard.com\\\/\",\"name\":\"Weight Loss Wizard\",\"description\":\"Reverse Engineer Your Ancient Biology\",\"publisher\":{\"@id\":\"https:\\\/\\\/weight-loss-wizard.com\\\/#organization\"},\"alternateName\":\"WLW\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/weight-loss-wizard.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"nl-NL\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/weight-loss-wizard.com\\\/#organization\",\"name\":\"Weight Loss Wizard\",\"alternateName\":\"HPC\",\"url\":\"https:\\\/\\\/weight-loss-wizard.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\\\/\\\/weight-loss-wizard.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/weight-loss-wizard.com\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/Profile-Picture-COMPANY-no-bg.png\",\"contentUrl\":\"https:\\\/\\\/weight-loss-wizard.com\\\/wp-content\\\/uploads\\\/2025\\\/02\\\/Profile-Picture-COMPANY-no-bg.png\",\"width\":800,\"height\":800,\"caption\":\"Weight Loss Wizard\"},\"image\":{\"@id\":\"https:\\\/\\\/weight-loss-wizard.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rfgdeleeuw\\\/\",\"https:\\\/\\\/www.instagram.com\\\/the.weight.loss.wizard\",\"https:\\\/\\\/www.youtube.com\\\/@weightlosswizard\",\"https:\\\/\\\/x.com\\\/WeightLossWZRD\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Data | Weight Loss Wizard","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/weight-loss-wizard.com\/nl\/data\/","og_locale":"nl_NL","og_type":"article","og_title":"Data | Weight Loss Wizard","og_description":"SCIENCE, DATA &amp; YOUR BODY CREATE A CUSTOM APPROACH Data drives strategy strategy drives action &#8216;Trust the science&#8217;, but which science? In the world of weight loss the amount of conflicting evidence is so overwhelming it can lead to inertia. We start with a few basics that have proven their effectiveness, but always use data [&hellip;]","og_url":"https:\/\/weight-loss-wizard.com\/nl\/data\/","og_site_name":"Weight Loss Wizard","article_modified_time":"2026-02-09T09:23:47+00:00","og_image":[{"width":453,"height":75,"url":"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Geschatte leestijd":"4 minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/weight-loss-wizard.com\/data\/","url":"https:\/\/weight-loss-wizard.com\/data\/","name":"Data | Weight Loss Wizard","isPartOf":{"@id":"https:\/\/weight-loss-wizard.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/weight-loss-wizard.com\/data\/#primaryimage"},"image":{"@id":"https:\/\/weight-loss-wizard.com\/data\/#primaryimage"},"thumbnailUrl":"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png","datePublished":"2025-03-15T12:14:56+00:00","dateModified":"2026-02-09T09:23:47+00:00","breadcrumb":{"@id":"https:\/\/weight-loss-wizard.com\/data\/#breadcrumb"},"inLanguage":"nl-NL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/weight-loss-wizard.com\/data\/"]}]},{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/weight-loss-wizard.com\/data\/#primaryimage","url":"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png","contentUrl":"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/04\/Google-Five-Star-Review-Visual-Representation-PNG2-2.png"},{"@type":"BreadcrumbList","@id":"https:\/\/weight-loss-wizard.com\/data\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/weight-loss-wizard.com\/"},{"@type":"ListItem","position":2,"name":"Data"}]},{"@type":"WebSite","@id":"https:\/\/weight-loss-wizard.com\/#website","url":"https:\/\/weight-loss-wizard.com\/","name":"Weight Loss Wizard","description":"Reverse Engineer Your Ancient Biology","publisher":{"@id":"https:\/\/weight-loss-wizard.com\/#organization"},"alternateName":"WLW","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/weight-loss-wizard.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"nl-NL"},{"@type":"Organization","@id":"https:\/\/weight-loss-wizard.com\/#organization","name":"Weight Loss Wizard","alternateName":"HPC","url":"https:\/\/weight-loss-wizard.com\/","logo":{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/weight-loss-wizard.com\/#\/schema\/logo\/image\/","url":"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/02\/Profile-Picture-COMPANY-no-bg.png","contentUrl":"https:\/\/weight-loss-wizard.com\/wp-content\/uploads\/2025\/02\/Profile-Picture-COMPANY-no-bg.png","width":800,"height":800,"caption":"Weight Loss Wizard"},"image":{"@id":"https:\/\/weight-loss-wizard.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/in\/rfgdeleeuw\/","https:\/\/www.instagram.com\/the.weight.loss.wizard","https:\/\/www.youtube.com\/@weightlosswizard","https:\/\/x.com\/WeightLossWZRD"]}]}},"_links":{"self":[{"href":"https:\/\/weight-loss-wizard.com\/nl\/wp-json\/wp\/v2\/pages\/14162","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/weight-loss-wizard.com\/nl\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/weight-loss-wizard.com\/nl\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/weight-loss-wizard.com\/nl\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/weight-loss-wizard.com\/nl\/wp-json\/wp\/v2\/comments?post=14162"}],"version-history":[{"count":0,"href":"https:\/\/weight-loss-wizard.com\/nl\/wp-json\/wp\/v2\/pages\/14162\/revisions"}],"wp:attachment":[{"href":"https:\/\/weight-loss-wizard.com\/nl\/wp-json\/wp\/v2\/media?parent=14162"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}