{"id":4449,"date":"2026-01-13T16:59:17","date_gmt":"2026-01-13T15:59:17","guid":{"rendered":"https:\/\/innovacore.group\/?page_id=4449"},"modified":"2026-03-17T09:29:44","modified_gmt":"2026-03-17T08:29:44","slug":"diventare-membro-core","status":"publish","type":"page","link":"https:\/\/innovacore.group\/it\/diventare-membro-core\/","title":{"rendered":"Diventa un membro CORE"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4449\" class=\"elementor elementor-4449 elementor-2946\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ba1ff3f e-con-full hero-trigger e-flex e-con e-parent\" data-id=\"ba1ff3f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-233ac3b e-con-full animated-background e-flex e-con e-child\" data-id=\"233ac3b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-3c1bcde e-con-full e-flex e-con e-child\" data-id=\"3c1bcde\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c4480c elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget elementor-widget-html\" data-id=\"3c4480c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div id=\"innovacore-magnet\">\\r\\n    <canvas id=\"magnetCanvas\"><\/canvas>\\r\\n<\/div>\\r\\n\\r\\n<style>\\r\\n    #innovacore-magnet { \\r\\n        width: 100%; \\r\\n        height: 400px; \\r\\n        display: flex; \\r\\n        justify-content: center;\\r\\n        align-items: center;\\r\\n        background: transparent; \\r\\n        overflow: hidden;\\r\\n        position: relative;\\r\\n        z-index: 10; \/* Z-index \u00e9lev\u00e9 pour garantir la capture de la souris *\/\\r\\n        cursor: crosshair; \\r\\n        \/* Important : permet les \u00e9v\u00e9nements de souris m\u00eame si transparent *\/\\r\\n        pointer-events: auto; \\r\\n    }\\r\\n<\/style>\\r\\n\\r\\n<script>\\r\\n(function() {\\r\\n    const canvas = document.getElementById('magnetCanvas');\\r\\n    const ctx = canvas.getContext('2d');\\r\\n    const root = document.getElementById('innovacore-magnet');\\r\\n    \\r\\n    let w, h;\\r\\n    let particles = [];\\r\\n    \\r\\n    \/\/ Souris (initialis\u00e9e hors champ)\\r\\n    let mouse = { x: -9999, y: -9999 };\\r\\n    \\r\\n    \/\/ Configuration\\r\\n    const particleColor = 'rgba(245, 245, 245, 1)'; \\r\\n    const particleCount = 150; \/\/ Nombre de particules pour un pilier dense\\r\\n    const magneticForce = 0.05; \/\/ Force d'attraction vers le centre\\r\\n    const mouseRepulsion = 2.5; \/\/ Force de dispersion (tr\u00e8s forte)\\r\\n    const mouseRadius = 150; \/\/ Rayon d'effet de la souris\\r\\n    const friction = 0.94; \/\/ Ralentissement pour \u00e9viter l'effet \"ressort\" infini\\r\\n\\r\\n    function init() {\\r\\n        w = root.offsetWidth;\\r\\n        h = 400;\\r\\n        \\r\\n        const dpr = window.devicePixelRatio || 1;\\r\\n        canvas.width = w * dpr;\\r\\n        canvas.height = h * dpr;\\r\\n        canvas.style.width = w + 'px';\\r\\n        canvas.style.height = h + 'px';\\r\\n        ctx.scale(dpr, dpr);\\r\\n        \\r\\n        createParticles();\\r\\n    }\\r\\n\\r\\n    function createParticles() {\\r\\n        particles = [];\\r\\n        for (let i = 0; i < particleCount; i++) {\\r\\n            resetParticle({});\\r\\n        }\\r\\n    }\\r\\n\\r\\n    function resetParticle(p) {\\r\\n        \/\/ Appara\u00eet al\u00e9atoirement \u00e0 gauche OU \u00e0 droite de l'\u00e9cran\\r\\n        const side = Math.random() > 0.5 ? 0 : w;\\r\\n        \\r\\n        p.x = side + (Math.random() - 0.5) * 50; \/\/ Un peu en dehors ou au bord\\r\\n        p.y = Math.random() * h;\\r\\n        \\r\\n        \/\/ Vitesse initiale vers le centre\\r\\n        p.vx = (Math.random() - 0.5) * 2;\\r\\n        p.vy = (Math.random() - 0.5) * 2;\\r\\n        \\r\\n        p.size = Math.random() * 2 + 1; \/\/ Taille variable\\r\\n        p.life = 1; \/\/ Vie pour g\u00e9rer l'opacit\u00e9 ou le respawn si besoin\\r\\n        \\r\\n        \/\/ Vitesse verticale constante une fois au centre (pour l'effet de flux ascendant)\\r\\n        p.flowSpeed = -0.5 - Math.random(); \\r\\n        \\r\\n        \/\/ Est-ce une particule existante qu'on recycle ?\\r\\n        if (p.push) particles.push(p);\\r\\n        return p;\\r\\n    }\\r\\n\\r\\n    function draw() {\\r\\n        ctx.clearRect(0, 0, w, h);\\r\\n        \\r\\n        const centerX = w \/ 2;\\r\\n        \\r\\n        \/\/ Lueur centrale pour le pilier (Background)\\r\\n        ctx.globalCompositeOperation = 'screen'; \/\/ Mode fusion pour la lumi\u00e8re\\r\\n        const gradient = ctx.createLinearGradient(centerX - 20, 0, centerX + 20, 0);\\r\\n        gradient.addColorStop(0, 'rgba(245, 245, 245, 0)');\\r\\n        gradient.addColorStop(0.5, 'rgba(245, 245, 245, 0.05)'); \/\/ Lueur tr\u00e8s subtile\\r\\n        gradient.addColorStop(1, 'rgba(245, 245, 245, 0)');\\r\\n        ctx.fillStyle = gradient;\\r\\n        ctx.fillRect(centerX - 50, 0, 100, h);\\r\\n        ctx.globalCompositeOperation = 'source-over'; \/\/ Retour normal\\r\\n\\r\\n        particles.forEach(p => {\\r\\n            \/\/ 1. ATTRACTION MAGN\u00c9TIQUE (Le Pilier)\\r\\n            \/\/ Calcul de la distance au centre X\\r\\n            const dxCenter = centerX - p.x;\\r\\n\\r\\n            \/\/ Force horizontale : Attire vers le centre\\r\\n            \/\/ Plus on est loin, plus on est attir\u00e9. Plus on est pr\u00e8s, plus \u00e7a se calme.\\r\\n            p.vx += dxCenter * 0.001 * (p.size * 0.5); \\r\\n\\r\\n            \/\/ Force verticale : Tendance \u00e0 monter (flux d'\u00e9nergie)\\r\\n            p.vy += -0.02; \\r\\n\\r\\n            \/\/ 2. DISPERSION (Souris)\\r\\n            const dxMouse = p.x - mouse.x;\\r\\n            const dyMouse = p.y - mouse.y;\\r\\n            const distMouse = Math.sqrt(dxMouse * dxMouse + dyMouse * dyMouse);\\r\\n\\r\\n            if (distMouse < mouseRadius) {\\r\\n                \/\/ Calcul de la force de r\u00e9pulsion (inversement proportionnelle \u00e0 la distance)\\r\\n                const force = (mouseRadius - distMouse) \/ mouseRadius;\\r\\n                \\r\\n                \/\/ On explose la v\u00e9locit\u00e9\\r\\n                p.vx += (dxMouse \/ distMouse) * force * mouseRepulsion;\\r\\n                p.vy += (dyMouse \/ distMouse) * force * mouseRepulsion;\\r\\n            }\\r\\n\\r\\n            \/\/ 3. PHYSIQUE\\r\\n            p.vx *= friction; \/\/ Friction pour que les particules ne partent pas \u00e0 l'infini\\r\\n            p.vy *= friction;\\r\\n            \\r\\n            p.x += p.vx;\\r\\n            p.y += p.vy;\\r\\n\\r\\n            \/\/ Si la particule est pi\u00e9g\u00e9e au centre (dans le pilier), on limite sa vitesse X\\r\\n            \/\/ pour qu'elle ne \"vibre\" pas trop, mais on la laisse monter\\r\\n            if (Math.abs(p.x - centerX) < 20 && distMouse > mouseRadius) {\\r\\n                p.vx *= 0.8; \/\/ Friction X plus forte au centre\\r\\n                p.y += p.flowSpeed; \/\/ Monte plus vite\\r\\n            }\\r\\n\\r\\n            \/\/ 4. RESPAWN (Cycle de vie)\\r\\n            \/\/ Si la particule sort en haut, en bas, ou trop sur les c\u00f4t\u00e9s (apr\u00e8s dispersion)\\r\\n            if (p.y < -50 || p.y > h + 50 || p.x < -100 || p.x > w + 100) {\\r\\n                resetParticle(p);\\r\\n            }\\r\\n\\r\\n            \/\/ 5. DESSIN\\r\\n            \/\/ Opacit\u00e9 : plus c'est proche du centre, plus c'est solide\\r\\n            const distToCenter = Math.abs(p.x - centerX);\\r\\n            const alpha = Math.max(0.2, 1 - (distToCenter \/ (w\/2)));\\r\\n            \\r\\n            ctx.fillStyle = particleColor;\\r\\n            ctx.globalAlpha = alpha;\\r\\n            ctx.beginPath();\\r\\n            ctx.arc(p.x, p.y, p.size, 0, Math.PI * 2);\\r\\n            ctx.fill();\\r\\n        });\\r\\n        \\r\\n        ctx.globalAlpha = 1;\\r\\n        requestAnimationFrame(draw);\\r\\n    }\\r\\n\\r\\n    const updateMouse = (e) => {\\r\\n        const r = canvas.getBoundingClientRect();\\r\\n        mouse.x = e.clientX - r.left;\\r\\n        mouse.y = e.clientY - r.top;\\r\\n    };\\r\\n\\r\\n    window.addEventListener('resize', init);\\r\\n    \\r\\n    \/\/ \u00c9v\u00e9nements souris\\r\\n    canvas.addEventListener('mousemove', updateMouse);\\r\\n    \/\/ Important : quand la souris part, on met ses coordonn\u00e9es tr\u00e8s loin\\r\\n    \/\/ pour arr\u00eater la dispersion imm\u00e9diatement\\r\\n    canvas.addEventListener('mouseleave', () => { \\r\\n        mouse.x = -9999; \\r\\n        mouse.y = -9999; \\r\\n    });\\r\\n\\r\\n    init();\\r\\n    \\r\\n    \/\/ Initialisation des particules\\r\\n    for (let i = 0; i < particleCount; i++) {\\r\\n        particles.push(resetParticle({}));\\r\\n    }\\r\\n    \\r\\n    draw();\\r\\n})();\\r\\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-18ba1ca elementor-widget elementor-widget-heading\" data-id=\"18ba1ca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h1 class=\"elementor-heading-title elementor-size-default\">Diventa un <span class=\"ic-nycd\">membro CORE<\/span>.<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2f9f5e9 elementor-widget elementor-widget-text-editor\" data-id=\"2f9f5e9\" 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>Ferma di consigliare, inizia a costruire. Implementa la metodologia CORE nelle aziende e allinea il tuo successo finanziario ai risultati che offri.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b24f958 e-con-full e-flex e-con e-child\" data-id=\"b24f958\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5d879c3 elementor-widget elementor-widget-button\" data-id=\"5d879c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#concept\">\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\">SCOPRI DI PI\u00d9<\/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-0153046 elementor-widget elementor-widget-button\" data-id=\"0153046\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#cta\">\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\">COSTRUISCI CON NOI<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-02eca23 animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"02eca23\" data-element_type=\"container\" data-e-type=\"container\" id=\"concept\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-6dbab67 e-con-full e-flex e-con e-child\" data-id=\"6dbab67\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0401e53 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"0401e53\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">IL CONCETTO<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f9de8b4 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"f9de8b4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-5bd7df4 e-con-full e-flex e-con e-child\" data-id=\"5bd7df4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-413f6fc e-con-full e-flex e-con e-child\" data-id=\"413f6fc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-194a169 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"194a169\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"433\" height=\"433\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-job-optimized.jpg\" class=\"attachment-large size-large wp-image-4356\" alt=\"\" srcset=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-job-optimized.jpg 433w, https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-job-optimized-300x300.jpg 300w, https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-job-optimized-150x150.jpg 150w\" sizes=\"(max-width: 433px) 100vw, 433px\" \/>\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-21d0889 animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"21d0889\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Unisciti al CORE. Un collettivo di operatori d&#8217;\u00e9lite guidati da una sola ambizione: penetrare, stabilizzare e far crescere le aziende pi\u00f9 promettenti trattandole come nostre.<\/p><p data-path-to-node=\"8\">Il modello di agenzia \u00e8 rotto. Stiamo costruendo una <b data-path-to-node=\"8\" data-index-in-node=\"57\">alternativa dirompente<\/b>. Come Membro CORE, non sei un freelance n\u00e9 un&#8217;agenzia tradizionale\/modello vecchio che invia una fattura. Sei un <b data-path-to-node=\"8\" data-index-in-node=\"154\">Partner Strategico e Mentore<\/b>. Entri in un progetto per condividere la tua conoscenza e i tuoi asset senza restrizioni.<\/p><p data-path-to-node=\"9\">La tua missione \u00e8 semplice ma impegnativa: accompagnare le aziende a ottenere fondi, pivotare o scalare a livello internazionale. Lavoriamo come un cervello unificato che si integra a vicenda per far prosperare l&#8217;azienda. Non fatturiamo per lo sforzo; siamo remunerati in base ai risultati, all&#8217;equit\u00e0, e al valore a lungo termine che creiamo insieme.<\/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-d06fb77 e-con-full e-flex e-con e-child\" data-id=\"d06fb77\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c1bd029 e-con-full e-flex e-con e-child\" data-id=\"c1bd029\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5a8fcd2 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"5a8fcd2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInRight&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Non fatturiamo ore,<br>\nCostruiamo <span class=\"ic-nycd\">assets<\/span>.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-bfb6544 e-con-full e-flex e-con e-child\" data-id=\"bfb6544\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4057e64 e-con-full e-flex e-con e-child\" data-id=\"4057e64\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-cbd2ec6 e-con-full e-flex e-con e-child\" data-id=\"cbd2ec6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8c95abf e-con-full e-flex e-con e-child\" data-id=\"8c95abf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dfbe1fc elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image\" data-id=\"dfbe1fc\" 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=\"1\" height=\"1\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/solar_document-add-outline.svg\" class=\"attachment-large size-large wp-image-1163\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-2052546 e-con-full e-flex e-con e-child\" data-id=\"2052546\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0e0ee16 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"0e0ee16\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Generosit\u00e0 radicale<\/h3>\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-7db6c6e e-con-full e-flex e-con e-child\" data-id=\"7db6c6e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6b7a07f animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"6b7a07f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Non teniamo la conoscenza per noi. Apriamo i nostri playbook e asset alle aziende che supportiamo. Il loro successo \u00e8 letteralmente il nostro successo.<\/p>\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-811232e e-con-full e-flex e-con e-child\" data-id=\"811232e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e340447 e-con-full e-flex e-con e-child\" data-id=\"e340447\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-a9220f6 e-con-full e-flex e-con e-child\" data-id=\"a9220f6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-bdc167e e-con-full e-flex e-con e-child\" data-id=\"bdc167e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-83693f2 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image\" data-id=\"83693f2\" 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=\"1\" height=\"1\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/solar_tuning-square-2-outline-about-us-2.svg\" class=\"attachment-large size-large wp-image-2291\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0233f37 e-con-full e-flex e-con e-child\" data-id=\"0233f37\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8f1e9e1 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8f1e9e1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Nessuna fattura, allineamento al 100%<\/h3>\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-20ec175 e-con-full e-flex e-con e-child\" data-id=\"20ec175\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5c4628e animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"5c4628e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Rivoluzioniamo il mercato eliminando la barriera delle commissioni. Investiamo il nostro tempo per catturare equity e flussi di entrate ricorrenti in seguito.<\/p>\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-a78e32b e-con-full e-flex e-con e-child\" data-id=\"a78e32b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6ea80c3 e-con-full e-flex e-con e-child\" data-id=\"6ea80c3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d870e26 e-con-full e-flex e-con e-child\" data-id=\"d870e26\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2b92617 e-con-full e-flex e-con e-child\" data-id=\"2b92617\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-93ba148 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image\" data-id=\"93ba148\" 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=\"1\" height=\"1\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/solar_settings-minimalistic-outline-about-us-3.svg\" class=\"attachment-large size-large wp-image-2302\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-02ad853 e-con-full e-flex e-con e-child\" data-id=\"02ad853\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8edec9b animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8edec9b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Mentore e Operatore<\/h3>\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-65a93c4 e-con-full e-flex e-con e-child\" data-id=\"65a93c4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bf3d7c8 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"bf3d7c8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Intervieni come stratega al fianco di altri esperti. Guiderai il fondatore, risolvi i colli di bottiglia e esegui con la precisione di un proprietario.<\/p>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4bb11c2 e-flex e-con-boxed e-con e-parent\" data-id=\"4bb11c2\" 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-212099e e-con-full e-flex e-con e-child\" data-id=\"212099e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7c8fcb2 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"7c8fcb2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">LA COMUNIT\u00c0<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2fcac5a elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"2fcac5a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e23fce2 e-con-full e-flex e-con e-child\" data-id=\"e23fce2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c331d3d animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"c331d3d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Un ecosistema in cui la tua expertise <span class=\"ic-nycd\">cresce<\/span>.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0216c7b elementor-widget elementor-widget-text-editor\" data-id=\"0216c7b\" 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>Non sei pi\u00f9 un <strong>consulente solitario<\/strong> o un&#8217;<strong>agenzia modello vecchio<\/strong>. Fai parte di una macchina industriale progettata per penetrare i mercati.<\/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-b73a9d0 e-con-full e-flex e-con e-child\" data-id=\"b73a9d0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-85a00f9 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"85a00f9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-aeaf5c4 e-con-full e-flex e-con e-child\" data-id=\"aeaf5c4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4768954 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"4768954\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1}\" 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=\"1\" height=\"1\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-icone-experts-founders.svg\" class=\"attachment-large size-large wp-image-2240\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6ac3479 e-con-full e-flex e-con e-child\" data-id=\"6ac3479\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-15b70ae elementor-widget elementor-widget-heading\" data-id=\"15b70ae\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Mentalit\u00e0 da proprietario<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a8103c0 elementor-widget elementor-widget-text-editor\" data-id=\"a8103c0\" 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>Non prendiamo &#8220;brief dei clienti&#8221;. Entro in sala riunioni. Prendiamo decisioni come se fosse il nostro denaro sul tavolo.<\/p><p><strong>L&#8217;obiettivo<\/strong>: guidare l&#8217;azienda dal potenziale a un asset &#8220;bankable&#8221;.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-33b8463 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"33b8463\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInUp&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-00174c6 e-con-full e-flex e-con e-child\" data-id=\"00174c6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e67097c animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"e67097c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1}\" 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=\"1\" height=\"1\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-icone-experts-operators.svg\" class=\"attachment-large size-large wp-image-2262\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-32b224f e-con-full e-flex e-con e-child\" data-id=\"32b224f\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-362a2cd elementor-widget elementor-widget-heading\" data-id=\"362a2cd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Forza Complementare<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-42239e7 elementor-widget elementor-widget-text-editor\" data-id=\"42239e7\" 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>Nessuno vince da solo. Porti il tuo asset specifico (Vendite, Tecnologia, M&amp;A) e ti inserisci nel lavoro degli altri membri CORE.<\/p><p><strong>L&#8217;obiettivo<\/strong>: un intervento olistico in cui ogni aspetto dell&#8217;azienda \u00e8 coperto da uno specialista.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3669a8b e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"3669a8b\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;,&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-017a661 e-con-full e-flex e-con e-child\" data-id=\"017a661\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c67fd80 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"c67fd80\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1}\" 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=\"1\" height=\"1\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-icone-experts-investors.svg\" class=\"attachment-large size-large wp-image-2251\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0f9bec8 e-con-full e-flex e-con e-child\" data-id=\"0f9bec8\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6d5003f elementor-widget elementor-widget-heading\" data-id=\"6d5003f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Portafoglio Diversificato<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d58c070 elementor-widget elementor-widget-text-editor\" data-id=\"d58c070\" 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>Invece di uno stipendio, costruisci un portafoglio. Guadagni tramite Commissioni di Successo, Equity, Fatturato di gestione a lungo termine e team operativi.<\/p><p><strong>L&#8217;obiettivo<\/strong>: Essere azionista nell&#8217;ecosistema di aziende che riusciamo a far crescere.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4372856 e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"4372856\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:500}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5c3e331 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"5c3e331\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#cta\">\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\">PARLIAMO DEL TUO PROGETTO<\/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-e2dc2d0 e-con-full e-flex e-con e-child\" data-id=\"e2dc2d0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4017fb1 e-con-full e-flex e-con e-child\" data-id=\"4017fb1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a1641a7 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"a1641a7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_delay&quot;:1,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"619\" height=\"283\" src=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-apropos-avantage-optimized.jpg\" class=\"attachment-large size-large wp-image-1209\" alt=\"\" srcset=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-apropos-avantage-optimized.jpg 619w, https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-apropos-avantage-optimized-300x137.jpg 300w\" sizes=\"(max-width: 619px) 100vw, 619px\" \/>\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<div class=\"elementor-element elementor-element-9be19a8 e-con-full e-flex e-con e-child\" data-id=\"9be19a8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a5899b1 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"a5899b1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInUp&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Unendoti a Innovacore, smetti di scambiare tempo per denaro. Inizi a <span class=\"ic-nycd\">accumulare valore<\/span>.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6d27d1b e-flex e-con-boxed e-con e-parent\" data-id=\"6d27d1b\" 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-d16af87 e-con-full e-flex e-con e-child\" data-id=\"d16af87\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8692d23 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8692d23\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">PROCESSO<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-77bfe67 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"77bfe67\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-248a2c5 e-con-full e-flex e-con e-child\" data-id=\"248a2c5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4e3f512 e-con-full e-flex e-con e-child\" data-id=\"4e3f512\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e7614b4 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"e7614b4\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeInLeft&quot;,&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Il tuo percorso come <span class=\"ic-nycd\">operatore CORE<\/span>.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-54178d6 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"54178d6\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_delay&quot;:100,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e127eac elementor-widget elementor-widget-text-editor\" data-id=\"e127eac\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Dall&#8217;onboarding di un progetto alla condivisione del potenziale. Ecco come impieghiamo la nostra forza collettiva.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b7565c2 e-con-full e-flex e-con e-child\" data-id=\"b7565c2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-44c587d e-con-full e-flex e-con e-child\" data-id=\"44c587d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9af5f28 e-con-full e-flex e-con e-child\" data-id=\"9af5f28\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-74bd5c3 circle elementor-widget elementor-widget-heading\" data-id=\"74bd5c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">01<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2269917 elementor-widget elementor-widget-heading\" data-id=\"2269917\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Approfondimento sull'integrazione e Iniezione degli Asset<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-393922f elementor-widget elementor-widget-text-editor\" data-id=\"393922f\" 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>Ti unisci a una squadra. Apri la tua cassetta degli attrezzi. Analizziamo l&#8217;azienda target e invochiamo i nostri &#8220;Asset&#8221; (modelli, strategie, reti) immediatamente per fermare il sanguinamento o innescare la crescita.<\/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-3e05b14 e-con-full e-flex e-con e-child\" data-id=\"3e05b14\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-68429c3 elementor-widget elementor-widget-html\" data-id=\"68429c3\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"arrow-widget-container\">\r\n    <div class=\"standalone-arrow\"><\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4cd115b e-con-full e-flex e-con e-child\" data-id=\"4cd115b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c09813b circle elementor-widget elementor-widget-heading\" data-id=\"c09813b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">02<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3094bb8 elementor-widget elementor-widget-heading\" data-id=\"3094bb8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Strategia e Direzione del Mentoring<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-575e1ff elementor-widget elementor-widget-text-editor\" data-id=\"575e1ff\" 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>Prendi il controllo del tuo vertical. Micro mentoring al team interno o al fondatore. Strutturi la road map per Fundraising, Turnaround o Scale. Sei l&#8217;architetto.<\/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-e96cbc9 e-con-full e-flex e-con e-child\" data-id=\"e96cbc9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9a7eb42 elementor-widget elementor-widget-html\" data-id=\"9a7eb42\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"arrow-widget-container\">\r\n    <div class=\"standalone-arrow\"><\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c8aef94 e-con-full e-flex e-con e-child\" data-id=\"c8aef94\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e469076 circle elementor-widget elementor-widget-heading\" data-id=\"e469076\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">03<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-de43646 elementor-widget elementor-widget-heading\" data-id=\"de43646\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Esecuzione: la fase del \"Skin in the Game\"<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-38a6af7 elementor-widget elementor-widget-text-editor\" data-id=\"38a6af7\" 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>Non ci limitiamo a consigliare; agiamo. Eseguiamo la roadmap insieme per raggiungere lo &#8220;Unlock&#8221; (Funding, Profitability). Qui viene misurato il tuo impatto.<\/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-b204675 e-con-full e-flex e-con e-child\" data-id=\"b204675\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d837354 elementor-widget elementor-widget-html\" data-id=\"d837354\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"arrow-widget-container\">\r\n    <div class=\"standalone-arrow\"><\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-92c71ee e-con-full e-flex e-con e-child\" data-id=\"92c71ee\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-22ef9ea circle elementor-widget elementor-widget-heading\" data-id=\"22ef9ea\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">04<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4dd26f9 elementor-widget elementor-widget-heading\" data-id=\"4dd26f9\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Cattura del valore, successo e remunerazione<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6a3b767 elementor-widget elementor-widget-text-editor\" data-id=\"6a3b767\" 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>Una volta raggiunto l&#8217;obiettivo, il modello cambia. Attiviamo contratti ricorrenti e convalidiamo le nostre posizioni in equity. Sei pagato in base alle prestazioni che hai progettato.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-04f8709 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"04f8709\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeIn&quot;,&quot;animation_delay&quot;:200}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d650426 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"d650426\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm\" href=\"#cta\">\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\">PARLIAMO DEL TUO PROGETTO<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8c26c67 animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"8c26c67\" data-element_type=\"container\" data-e-type=\"container\" id=\"cta\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-d74e966 e-con-full e-flex e-con e-child\" data-id=\"d74e966\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b7c8c30 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"b7c8c30\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">AZIONE<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-222c1a7 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"222c1a7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f320f2e e-con-full e-flex e-con e-child\" data-id=\"f320f2e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-ea41033 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"ea41033\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6c4700c elementor-widget elementor-widget-heading\" data-id=\"6c4700c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation_mobile&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Sei pronto a smettere di <span class=\"ic-nycd\">fatturare<\/span> e iniziare a <span class=\"ic-nycd\">costruire<\/span> ?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-46283c6 elementor-widget elementor-widget-text-editor\" data-id=\"46283c6\" 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>Cerchiamo esperti maturi, Direttori Commerciali, CFO, CTO, COO, CMO, Growth Hacker che vogliono costruire asset rilevanti.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6b33bad elementor-widget elementor-widget-heading\" data-id=\"6b33bad\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Accetti di condividere<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e355618 elementor-widget elementor-widget-html\" data-id=\"e355618\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"give-item-wrapper\">\\r\\n    <div class=\"give-icon\">\\r\\n        <div class=\"give-css-check\"><\/div>\\r\\n    <\/div>\\r\\n    <div class=\"give-text\">\\r\\n        I tuoi asset operativi (playbook, modelli, rete) senza restrizioni\\r\\n    <\/div>\\r\\n<\/div>\\r\\n\\r\\n<div class=\"give-item-wrapper\">\\r\\n    <div class=\"give-icon\">\\r\\n        <div class=\"give-css-check\"><\/div>\\r\\n    <\/div>\\r\\n    <div class=\"give-text\">\\r\\n        Impegno di tempo con una mentalit\u00e0 di \"skin in the game\" (nessuna tariffa immediata)\\r\\n    <\/div>\\r\\n<\/div>\\r\\n\\r\\n<div class=\"give-item-wrapper\">\\r\\n    <div class=\"give-icon\">\\r\\n        <div class=\"give-css-check\"><\/div>\\r\\n    <\/div>\\r\\n    <div class=\"give-text\">\\r\\n        Onest\u00e0 radicale e capacit\u00e0 di mentoring attivo\\r\\n    <\/div>\\r\\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-43734f7 elementor-widget elementor-widget-heading\" data-id=\"43734f7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h4 class=\"elementor-heading-title elementor-size-default\">Riceverai<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1239bca elementor-widget elementor-widget-html\" data-id=\"1239bca\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"get-item-wrapper\">\\r\\n    <div class=\"get-icon\">\\r\\n        <div class=\"get-css-check\"><\/div>\\r\\n    <\/div>\\r\\n    <div class=\"get-text\">\\r\\n        Flusso di affari esclusivo di imprese ad alto potenziale e turnaround\\r\\n    <\/div>\\r\\n<\/div>\\r\\n\\r\\n<div class=\"get-item-wrapper\">\\r\\n    <div class=\"get-icon\">\\r\\n        <div class=\"get-css-check\"><\/div>\\r\\n    <\/div>\\r\\n    <div class=\"get-text\">\\r\\n        Partecipazione azionaria e remunerazione basata sul successo\\r\\n    <\/div>\\r\\n<\/div>\\r\\n\\r\\n<div class=\"get-item-wrapper\">\\r\\n    <div class=\"get-icon\">\\r\\n        <div class=\"get-css-check\"><\/div>\\r\\n    <\/div>\\r\\n    <div class=\"get-text\">\\r\\n        Accesso a un gruppo elitario di operatori di livello C\\r\\n    <\/div>\\r\\n<\/div>\\r\\n\\r\\n<div class=\"get-item-wrapper\">\\r\\n    <div class=\"get-icon\">\\r\\n        <div class=\"get-css-check\"><\/div>\\r\\n    <\/div>\\r\\n    <div class=\"get-text\">\\r\\n        Entrate ricorrenti a lungo termine dai contratti di esecuzione\\r\\n    <\/div>\\r\\n<\/div>\\r\\n\\r\\n<div class=\"get-item-wrapper\">\\r\\n    <div class=\"get-icon\">\\r\\n        <div class=\"get-css-check\"><\/div>\\r\\n    <\/div>\\r\\n    <div class=\"get-text\">\\r\\n        La libert\u00e0 di agire come partner strategico, non come fornitore\\r\\n    <\/div>\\r\\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9c248a2 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"9c248a2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_delay&quot;:1,&quot;background_background&quot;:&quot;classic&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-976531f elementor-widget elementor-widget-jet-form-builder-form\" data-id=\"976531f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"jet-form-builder-form.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<link rel='stylesheet' id='wp-block-library-css' href='https:\/\/innovacore.group\/wp-includes\/css\/dist\/block-library\/common.min.css?ver=7.0' media='all' \/>\n<style id=\"jet-form-builder-2598-inline-css\"><\/style><form  class=\"jet-form-builder layout-column submit-type-reload\" action=\"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/pages\/4449\/?87rU8v=j8B14n44Q0sm&amp;method=reload\" method=\"POST\" data-form-id=\"2598\" data-layout=\"column\" enctype=\"multipart\/form-data\" novalidate=\"null\" ssr_validation_method=\"rest\"><input type=\"hidden\" id=\"_wpnonce\" name=\"_wpnonce\" value=\"b611b054ac\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/it\/wp-json\/wp\/v2\/pages\/4449\" \/>\r\n<input type=\"hidden\" name=\"_jfb_current_render_states[]\" value=\"DEFAULT.STATE\" data-jfb-sync \/><input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"_jet_engine_booking_form_id\" data-field-name=\"_jet_engine_booking_form_id\" value=\"2598\">\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"_jet_engine_refer\" data-field-name=\"_jet_engine_refer\" value=\"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/pages\/4449\/\">\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"__queried_post_id\" data-field-name=\"__queried_post_id\" value=\"4449\">\n<div class=\"jet-form-builder-page \" data-page=\"1\" data-page-offset=\"75\">\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"postID\" data-field-name=\"postID\" data-jfb-sync=\"null\" value=\"4449\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_source\" data-field-name=\"utm_source\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_medium\" data-field-name=\"utm_medium\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_campaign\" data-field-name=\"utm_campaign\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_content\" data-field-name=\"utm_content\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"utm_id\" data-field-name=\"utm_id\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"fbclid\" data-field-name=\"fbclid\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"ggclid\" data-field-name=\"ggclid\" data-jfb-sync=\"null\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"isocode\" data-field-name=\"isocode\" data-jfb-sync=\"null\" value=\"en\">\n\n\n\n\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"form-type\" data-field-name=\"form-type\" data-jfb-sync=\"null\" value=\"general\">\n\n\n\n<div  data-validation-type=\"advanced\" data-validation-messages=\"{&quot;url&quot;:&quot;Please fill a valid url.&quot;,&quot;empty&quot;:&quot;Please fill in this field.&quot;}\" class=\"jet-form-builder-row field-type-text-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t\t\t<input placeholder=\"Your website url\" name=\"web_url\" id=\"web_url\" type=\"url\" data-field-name=\"web_url\" class=\"jet-form-builder__field text-field\" data-jfb-sync=\"null\" autocomplete=\"off_D9UNJLm4\">\n\t\t\t\t\t<\/div><div class=\"jet-form-builder__desc\"><small>Please feel free to share your URL so that we can become familiar with the specifics of your activity. If you wish to share other links and\/or any additional useful information, please use the field below.<\/small><\/div>\n<\/div>\n\n<div  class=\"jet-form-builder-row field-type-textarea-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t<textarea class=\"jet-form-builder__field textarea-field\" placeholder=\"Your message \/ project\" required=\"required\" name=\"project_description\" data-field-name=\"project_description\" id=\"project_description\" data-jfb-sync=\"null\"><\/textarea>\n\t<\/div><div class=\"jet-form-builder__desc\"><small>You will be contacted soon by a innovacore team member; to help them prepare for your discussion effectively, we invite you to describe your project in as much detail as possible and to share any useful information with them.<\/small><\/div>\n<\/div>\n\n<div class=\"jet-form-builder__next-page-wrap\">\n\t\t\t\t\t<button class=\"jet-form-builder__next-page\" type=\"button\">Next<\/button>\n\t<\/div>\n<\/div>\n<div class=\"jet-form-builder-page jet-form-builder-page--hidden\" data-page=\"2\" data-page-offset=\"75\">\n\n<div  data-validation-type=\"advanced\" data-validation-messages=\"{&quot;empty&quot;:&quot;Please fill in this field.&quot;}\" class=\"jet-form-builder-row field-type-text-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t\t\t<input placeholder=\"Your first and last name*\" required=\"required\" name=\"firstname\" id=\"firstname\" type=\"text\" data-field-name=\"firstname\" class=\"jet-form-builder__field text-field\" data-jfb-sync=\"null\" autocomplete=\"off_o8cpOnm7\">\n\t\t\t\t\t<\/div>\n<\/div>\n\n<div  data-validation-type=\"advanced\" data-validation-rules=\"[{&quot;__visible&quot;:true,&quot;message&quot;:&quot;Veuillez entrer une adresse e-mail correcte.&quot;,&quot;type&quot;:&quot;regexp&quot;,&quot;value&quot;:&quot;^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\\\.[a-zA-Z]{2,}$&quot;}]\" data-validation-messages=\"{&quot;empty&quot;:&quot;Please enter a valid email.&quot;,&quot;email&quot;:&quot;Please enter a valid email.&quot;}\" class=\"jet-form-builder-row field-type-text-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t\t\t<input placeholder=\"Your email *\" required=\"required\" name=\"email\" id=\"email\" type=\"text\" data-field-name=\"email\" class=\"jet-form-builder__field text-field\" data-jfb-sync=\"null\" autocomplete=\"off_Se3UYd9H\">\n\t\t\t\t\t<\/div>\n<\/div>\n\n<div  data-validation-type=\"advanced\" data-validation-rules=\"[{&quot;__visible&quot;:true,&quot;type&quot;:&quot;regexp&quot;,&quot;value&quot;:&quot;^\\\\s*(?:\\\\+|00)?\\\\d{1,4}[\\\\s.-]?(?:\\\\d{1,4}[\\\\s.-]?){3,10}\\\\d\\\\s*$&quot;,&quot;message&quot;:&quot;Sorry, the mobile phone number you entered is incorrect. Please check your entry and enter a valid mobile phone number.&quot;}]\" data-validation-messages=\"{&quot;empty&quot;:&quot;Please fill out this field.&quot;,&quot;email&quot;:&quot;Merci d&#039;entrer un email valide.&quot;}\" class=\"jet-form-builder-row field-type-text-field\" >\n<div class=\"jet-form-builder__field-wrap\">\n\t\t\t\t<input placeholder=\"Your phone *\" required=\"required\" name=\"phone\" id=\"phone\" type=\"tel\" data-field-name=\"phone\" class=\"jet-form-builder__field text-field\" data-jfb-sync=\"null\" autocomplete=\"off_lAZVusJk\">\n\t\t\t\t\t<\/div><div class=\"jet-form-builder__desc\"><small>Please enter your international phone prefix in the format 00XXx or +XXx.<\/small><\/div>\n<\/div>\n\n<div  class=\"jet-form-builder-row field-type-checkbox-field\" >\n<div class=\"jet-form-builder__fields-group checkradio-wrap\" data-jfb-sync><div class=\"jet-form-builder__field-wrap checkboxes-wrap checkradio-wrap\"><label class=\"jet-form-builder__field-label for-checkbox\">\n\t\t\t<input type=\"checkbox\" name=\"field_name\" value=\"true\" data-field-name=\"field_name\"  class=\"jet-form-builder__field checkboxes-field checkradio-field\" required=\"required\" data-default-val=\"[&quot;&quot;]\"><span>I accept the privacy policy and wish to be contacted by a innovacore representative.<\/span><\/label><\/div><\/div>\n<\/div>\n\n<input type=\"hidden\" class=\"captcha-token\" name=\"_captcha_token\" value=\"\"\/><div  class=\"jet-form-builder-row field-type-submit-field\" >\n\t<div data-type=\"submit\" class=\"jet-form-builder__action-button-wrapper jet-form-builder__submit-wrap\">\n\t<button class=\"jet-form-builder__action-button jet-form-builder__submit submit-type-reload\" type=\"submit\">Submit<\/button>\n\t<\/div>\n\t\n<\/div>\n\n<\/div>\t<div class=\"jet-form-builder-messages-wrap\" data-form-id=\"2598\"><\/div>\n<\/form>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ab7640e animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"ab7640e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;,&quot;animation&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-64a1470 e-con-full e-flex e-con e-child\" data-id=\"64a1470\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ac0797d animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"ac0797d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_animation&quot;:&quot;fadeIn&quot;}\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h3 class=\"elementor-heading-title elementor-size-default\">Domande frequenti<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b118ace elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"b118ace\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"divider.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-divider\">\n\t\t\t<span class=\"elementor-divider-separator\">\n\t\t\t\t\t\t<\/span>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-4a95063 e-con-full e-flex e-con e-child\" data-id=\"4a95063\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6787fb9 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"6787fb9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInLeft&quot;,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c811cf7 elementor-widget elementor-widget-text-editor\" data-id=\"c811cf7\" 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>Domande? Avete obiezioni? Consultate le nostre FAQ per risposte alle domande pi\u00f9 comuni.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3f68e10 elementor-widget elementor-widget-html\" data-id=\"3f68e10\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<script>\r\ndocument.addEventListener(\"DOMContentLoaded\", function() {\r\n    \r\n    \/\/ On attache l'\u00e9v\u00e9nement au document pour attraper les clics \r\n    \/\/ m\u00eame si les \u00e9l\u00e9ments sont charg\u00e9s dynamiquement par JetEngine\r\n    document.body.addEventListener('click', function(e) {\r\n        \r\n        \/\/ On v\u00e9rifie si on a cliqu\u00e9 sur un header (ou un de ses enfants)\r\n        const header = e.target.closest('.faq-header');\r\n        \r\n        if (header) {\r\n            \/\/ On trouve l'item parent\r\n            const item = header.closest('.faq-item');\r\n            if (!item) return;\r\n\r\n            \/\/ Est-ce qu'il est d\u00e9j\u00e0 ouvert ?\r\n            const isActive = item.classList.contains('active');\r\n            \r\n            \/\/ 1. FERMER TOUS LES AUTRES (Mode Accord\u00e9on strict)\r\n            \/\/ On cherche tous les items qui sont dans le m\u00eame conteneur\r\n            const parentList = item.closest('.jet-listing-dynamic-repeater__items');\r\n            if (parentList) {\r\n                const siblings = parentList.querySelectorAll('.faq-item');\r\n                siblings.forEach(sibling => {\r\n                    sibling.classList.remove('active');\r\n                    const body = sibling.querySelector('.faq-body');\r\n                    if(body) body.style.maxHeight = null;\r\n                });\r\n            }\r\n\r\n            \/\/ 2. OUVRIR CELUI-CI (S'il n'\u00e9tait pas d\u00e9j\u00e0 ouvert)\r\n            if (!isActive) {\r\n                item.classList.add('active');\r\n                const body = item.querySelector('.faq-body');\r\n                if (body) {\r\n                    body.style.maxHeight = body.scrollHeight + \"px\";\r\n                }\r\n            }\r\n        }\r\n    });\r\n\r\n});\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-daf2403 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"daf2403\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;animation&quot;:&quot;fadeInRight&quot;,&quot;animation_delay&quot;:1,&quot;animation_mobile&quot;:&quot;fadeIn&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c664584 elementor-widget elementor-widget-html\" data-id=\"c664584\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"custom-faq-wrapper\">\\r\\n\\r\\n    <div class=\"faq-item\">\\r\\n        <div class=\"faq-header\">\\r\\n            <h4 class=\"faq-question\">Questo \u00e8 un lavoro retribuito o una missione freelance?<\/h4>\\r\\n            <div class=\"faq-icon\">\\r\\n                <div class=\"faq-icon-line horizontal\"><\/div>\\r\\n                <div class=\"faq-icon-line vertical\"><\/div>\\r\\n            <\/div>\\r\\n        <\/div>\\r\\n        <div class=\"faq-body\">\\r\\n            <div class=\"faq-answer\">\\r\\n                Niente delle due. \u00c8 una <strong>partnership<\/strong>. Ti unisci a Innovacore come membro. Investi la tua expertise nei progetti in cambio di una quota del valore creato (Equity, Commissioni di successo, contratti futuri). \u00c8 per chi pu\u00f2 permettersi di investire tempo per guadagnare molto di pi\u00f9 in seguito.\\r\\n            <\/div>\\r\\n        <\/div>\\r\\n    <\/div>\\r\\n\\r\\n    <div class=\"faq-item\">\\r\\n        <div class=\"faq-header\">\\r\\n            <h4 class=\"faq-question\">Cosa intendi con \"Condivisione degli asset senza limiti\"?<\/h4>\\r\\n            <div class=\"faq-icon\">\\r\\n                <div class=\"faq-icon-line horizontal\"><\/div>\\r\\n                <div class=\"faq-icon-line vertical\"><\/div>\\r\\n            <\/div>\\r\\n        <\/div>\\r\\n        <div class=\"faq-body\">\\r\\n            <div class=\"faq-answer\">\\r\\n                Crediamo in una <strong>esecuzione open-source<\/strong> all'interno del nostro portafoglio. Se hai un copione di vendita eccezionale o un modello finanziario, lo porti al tavolo. Non vendiamo modelli; li usiamo per costruire aziende di successo.\\r\\n            <\/div>\\r\\n        <\/div>\\r\\n    <\/div>\\r\\n\\r\\n    <div class=\"faq-item\">\\r\\n        <div class=\"faq-header\">\\r\\n            <h4 class=\"faq-question\">Come scegliamo le aziende che aiutiamo?<\/h4>\\r\\n            <div class=\"faq-icon\">\\r\\n                <div class=\"faq-icon-line horizontal\"><\/div>\\r\\n                <div class=\"faq-icon-line vertical\"><\/div>\\r\\n            <\/div>\\r\\n        <\/div>\\r\\n        <div class=\"faq-body\">\\r\\n            <div class=\"faq-answer\">\\r\\n                Selezioniamo aziende in base al loro potenziale di scalare o di riprendersi. Il CORE decide <strong>collettivamente<\/strong>. Se il progetto rientra nel nostro programma Venture o Turnaround e crediamo di poter \"sbloccare\" fondi o crescita, entriamo.\\r\\n            <\/div>\\r\\n        <\/div>\\r\\n    <\/div>\\r\\n\\r\\n    <div class=\"faq-item\">\\r\\n        <div class=\"faq-header\">\\r\\n            <h4 class=\"faq-question\">Posso fare questo accanto ad un'altra attivit\u00e0?<\/h4>\\r\\n            <div class=\"faq-icon\">\\r\\n                <div class=\"faq-icon-line horizontal\"><\/div>\\r\\n                <div class=\"faq-icon-line vertical\"><\/div>\\r\\n            <\/div>\\r\\n        <\/div>\\r\\n        <div class=\"faq-body\">\\r\\n            <div class=\"faq-answer\">\\r\\n                S\u00ec, inizialmente. Molti membri iniziano come <strong>esperti frazionari<\/strong> o mentori. Tuttavia, l'obiettivo finale \u00e8 costruire entrate ricorrenti sufficienti dai nostri progetti di successo per concentrarsi completamente sull'ecosistema Innovacore.\\r\\n            <\/div>\\r\\n        <\/div>\\r\\n    <\/div>\\r\\n\\r\\n    <div class=\"faq-item\">\\r\\n        <div class=\"faq-header\">\\r\\n            <h4 class=\"faq-question\">Cos'\u00e8 il \"Modello dirompente\"?<\/h4>\\r\\n            <div class=\"faq-icon\">\\r\\n                <div class=\"faq-icon-line horizontal\"><\/div>\\r\\n                <div class=\"faq-icon-line vertical\"><\/div>\\r\\n            <\/div>\\r\\n        <\/div>\\r\\n        <div class=\"faq-body\">\\r\\n            <div class=\"faq-answer\">\\r\\n                Il mercato \u00e8 stanco dei consulenti che consigliano senza rischi. Rompiamo questo modello dicendo: <strong>\"Vinci solo se vinci tu.\"<\/strong> Permeiamo l'ecosistema essendo i partner pi\u00f9 allineati che un fondatore possa trovare. Non costiamo denaro; creiamo ricchezza.\\r\\n            <\/div>\\r\\n        <\/div>\\r\\n    <\/div>\\r\\n\\r\\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>rn rnrnrnrn #innovacore-magnet { rn width: 100%; rn height: 400px; rn display: flex; rn justify-content: center;rn align-items: center;rn background: transparent; rn overflow: hidden;rn position: relative;rn z-index: 10; \/* Z-index \u00e9lev\u00e9 pour garantir la capture de la souris *\/rn cursor: crosshair; rn \/* Important : permet les \u00e9v\u00e9nements de souris m\u00eame si transparent *\/rn pointer-events: auto; [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2369,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-4449","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/pages\/4449","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/comments?post=4449"}],"version-history":[{"count":6,"href":"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/pages\/4449\/revisions"}],"predecessor-version":[{"id":7474,"href":"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/pages\/4449\/revisions\/7474"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/media\/2369"}],"wp:attachment":[{"href":"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/media?parent=4449"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}