{"id":4429,"date":"2026-01-13T16:56:56","date_gmt":"2026-01-13T15:56:56","guid":{"rendered":"https:\/\/innovacore.group\/?page_id=4429"},"modified":"2026-03-17T09:29:41","modified_gmt":"2026-03-17T08:29:41","slug":"progetto","status":"publish","type":"page","link":"https:\/\/innovacore.group\/it\/progetto\/","title":{"rendered":"Invia il tuo progetto"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4429\" class=\"elementor elementor-4429 elementor-2941\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-02177e1 e-con-full hero-trigger e-flex e-con e-parent\" data-id=\"02177e1\" 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-e320f86 e-con-full animated-background e-flex e-con e-child\" data-id=\"e320f86\" 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-c9af5ab e-con-full e-flex e-con e-child\" data-id=\"c9af5ab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4187c13 elementor-widget__width-initial elementor-widget-tablet__width-inherit elementor-widget elementor-widget-html\" data-id=\"4187c13\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div id=\"innovacore-flower\">\r\n    <canvas id=\"flowerCanvas\"><\/canvas>\r\n<\/div>\r\n\r\n<style>\r\n    #innovacore-flower { \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 \u00e9lev\u00e9 pour \u00eatre s\u00fbr de passer au-dessus du reste *\/\r\n        z-index: 10; \r\n        cursor: crosshair; \r\n        pointer-events: auto;\r\n    }\r\n<\/style>\r\n\r\n<script>\r\n(function() {\r\n    const canvas = document.getElementById('flowerCanvas');\r\n    const ctx = canvas.getContext('2d');\r\n    const root = document.getElementById('innovacore-flower');\r\n    \r\n    let w, h, centerX, seedY;\r\n    let stemParticles = [];\r\n    let petalParticles = [];\r\n    let time = 0;\r\n    \r\n    \/\/ \u00c9tat\r\n    let growthState = 0; \/\/ 0 \u00e0 1\r\n    let stemBend = 0;    \/\/ Inclinaison de la tige vers la souris\r\n    let isHovering = false;\r\n    let mouse = { x: null, y: null };\r\n    \r\n    \/\/ Config\r\n    const colorStr = '245, 245, 245'; \r\n    const stemCount = 40;    \r\n    const petalCount = 150;  \r\n    const maxStemHeight = 280; \r\n    const bloomRadius = 90; \r\n    const growSpeed = 0.05;  \/\/ Vitesse de r\u00e9action\r\n\r\n    function init() {\r\n        w = root.offsetWidth;\r\n        h = 400;\r\n        centerX = w \/ 2;\r\n        seedY = h * 0.95; \/\/ Tout en bas\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        stemParticles = [];\r\n        petalParticles = [];\r\n\r\n        \/\/ TIGE\r\n        for (let i = 0; i < stemCount; i++) {\r\n            const progress = i \/ (stemCount - 1);\r\n            stemParticles.push({\r\n                progress: progress,\r\n                size: (1 - progress) * 4 + 1, \/\/ Base \u00e9paisse, haut fin\r\n                windOffset: Math.random() * Math.PI * 2\r\n            });\r\n        }\r\n\r\n        \/\/ P\u00c9TALES (Golden Spiral)\r\n        const goldenAngle = Math.PI * (3 - Math.sqrt(5)); \r\n        for (let i = 0; i < petalCount; i++) {\r\n            const angle = i * goldenAngle;\r\n            const radiusRatio = Math.sqrt(i \/ petalCount); \r\n            \r\n            petalParticles.push({\r\n                targetRelX: Math.cos(angle) * radiusRatio * bloomRadius,\r\n                targetRelY: Math.sin(angle) * radiusRatio * bloomRadius,\r\n                size: Math.random() * 2 + 1.5,\r\n                alpha: 1 - (radiusRatio * 0.6),\r\n                angle: angle,\r\n                zOffset: Math.random() \/\/ Pour effet 3D l\u00e9ger\r\n            });\r\n        }\r\n    }\r\n\r\n    function draw() {\r\n        ctx.clearRect(0, 0, w, h);\r\n        time += 0.02;\r\n        \r\n        \/\/ --- 1. LOGIQUE D'INTERACTION ---\r\n        \r\n        \/\/ Croissance\r\n        const targetGrowth = isHovering ? 1 : 0;\r\n        growthState += (targetGrowth - growthState) * growSpeed;\r\n\r\n        \/\/ Inclinaison (La tige suit la souris)\r\n        let targetBend = 0;\r\n        if (mouse.x !== null) {\r\n            \/\/ Calcule la distance relative de la souris par rapport au centre (-1 \u00e0 1)\r\n            const relX = (mouse.x - centerX) \/ (w \/ 2);\r\n            targetBend = relX * 100; \/\/ Amplitude de penchement\r\n        }\r\n        \/\/ Lissage du mouvement de la tige\r\n        stemBend += (targetBend - stemBend) * 0.05;\r\n\r\n        \/\/ --- 2. CALCUL DE LA TIGE ---\r\n        \r\n        const currentStemH = maxStemHeight * growthState;\r\n        \/\/ La t\u00eate de la fleur bouge selon la courbure\r\n        let flowerHeadX = centerX + stemBend * growthState; \r\n        let flowerHeadY = seedY - currentStemH;\r\n\r\n        \/\/ Dessin de la tige\r\n        ctx.fillStyle = `rgba(${colorStr}, 0.9)`;\r\n        \r\n        \/\/ On stocke les positions de la tige pour que les feuilles\/p\u00e9tales suivent\r\n        let lastStemX = centerX;\r\n        let lastStemY = seedY;\r\n\r\n        stemParticles.forEach(p => {\r\n            \/\/ Courbure quadratique simple : plus on monte, plus \u00e7a penche\r\n            const bendOffset = (p.progress * p.progress) * stemBend * growthState;\r\n            \r\n            p.y = seedY - (p.progress * currentStemH);\r\n            p.x = centerX + bendOffset;\r\n            \r\n            \/\/ Ajout du vent (seulement si \u00e9clos)\r\n            const wind = Math.sin(time + p.windOffset) * (p.progress * 5 * growthState);\r\n            p.x += wind;\r\n\r\n            \/\/ Dessin particule tige\r\n            \/\/ On ne dessine que si growthState > 0.01 pour \u00e9conomiser\r\n            if (growthState > 0.01) {\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            \/\/ On garde la position du haut de la tige pour attacher la fleur\r\n            if (p.progress > 0.95) {\r\n                flowerHeadX = p.x;\r\n                flowerHeadY = p.y;\r\n            }\r\n        });\r\n\r\n        \/\/ --- 3. DESSIN DE LA FLEUR (P\u00e9tales) ---\r\n        \r\n        \/\/ Rotation de la fleur sur elle-m\u00eame\r\n        const rotation = time * 0.2;\r\n        \r\n        petalParticles.forEach(p => {\r\n            \/\/ Si la fleur est ferm\u00e9e, tous les p\u00e9tales sont au sommet de la tige\r\n            \/\/ Si ouverte, ils vont vers leur targetRelX\/Y\r\n            \r\n            \/\/ Rotation locale\r\n            const rotX = p.targetRelX * Math.cos(rotation) - p.targetRelY * Math.sin(rotation);\r\n            const rotY = p.targetRelX * Math.sin(rotation) + p.targetRelY * Math.cos(rotation);\r\n\r\n            \/\/ Interpolation position\r\n            const finalX = flowerHeadX + (rotX * growthState);\r\n            const finalY = flowerHeadY + (rotY * growthState);\r\n            \r\n            \/\/ Effet \"Bourgeon\" : quand growthState est faible, les particules sont serr\u00e9es\r\n            \/\/ Effet \"\u00c9closion\" : elles s'\u00e9cartent\r\n            \r\n            \/\/ Taille dynamique (pulse)\r\n            const pulse = 1 + Math.sin(time * 3 + p.angle) * 0.1 * growthState;\r\n            \r\n            if (growthState > 0.05) {\r\n                ctx.fillStyle = `rgba(${colorStr}, ${p.alpha * growthState})`; \/\/ Fade in\r\n                ctx.beginPath();\r\n                ctx.arc(finalX, finalY, p.size * pulse, 0, Math.PI * 2);\r\n                ctx.fill();\r\n            }\r\n        });\r\n        \r\n        \/\/ Petite lueur au sol (graine)\r\n        if (growthState < 0.2) {\r\n            ctx.fillStyle = `rgba(${colorStr}, ${0.5 - growthState})`;\r\n            ctx.beginPath();\r\n            ctx.arc(centerX, seedY, 3 + Math.sin(time*5), 0, Math.PI*2);\r\n            ctx.fill();\r\n        }\r\n\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    \/\/ On \u00e9coute sur le canvas\r\n    canvas.addEventListener('mousemove', (e) => {\r\n        isHovering = true;\r\n        updateMouse(e);\r\n    });\r\n    \r\n    canvas.addEventListener('mouseenter', (e) => {\r\n        isHovering = true;\r\n        updateMouse(e);\r\n    });\r\n    \r\n    canvas.addEventListener('mouseleave', () => { \r\n        isHovering = false;\r\n        mouse.x = null; \/\/ Reset de l'inclinaison\r\n    });\r\n\r\n    init();\r\n    draw();\r\n})();\r\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-142016c elementor-widget elementor-widget-heading\" data-id=\"142016c\" 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\">\u00c8 ora di sviluppare <span class=\"ic-nycd\">il tuo progetto<\/span>.<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9252328 elementor-widget elementor-widget-text-editor\" data-id=\"9252328\" 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>Smetti di gestire da solo. Attiva il CORE per strutturare, finanziare ed eseguire la tua roadmap.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6169c24 e-con-full e-flex e-con e-child\" data-id=\"6169c24\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f949a22 elementor-widget elementor-widget-button\" data-id=\"f949a22\" 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\">ESPLORA IL NOSTRO APPROCCIO<\/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-0a65d35 elementor-widget elementor-widget-button\" data-id=\"0a65d35\" 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-155edac animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"155edac\" 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-efb751e e-con-full e-flex e-con e-child\" data-id=\"efb751e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-c122c87 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"c122c87\" 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-f67ed8b elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"f67ed8b\" 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-bafea70 e-con-full e-flex e-con e-child\" data-id=\"bafea70\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-f2e20ea e-con-full e-flex e-con e-child\" data-id=\"f2e20ea\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9060a09 animated-slow elementor-invisible elementor-widget elementor-widget-image\" data-id=\"9060a09\" 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-project-submission-optimized.jpg\" class=\"attachment-large size-large wp-image-4355\" alt=\"\" srcset=\"https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-project-submission-optimized.jpg 433w, https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-project-submission-optimized-300x300.jpg 300w, https:\/\/innovacore.group\/wp-content\/uploads\/innovacore-cta-project-submission-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-791094e animated-slow elementor-invisible elementor-widget elementor-widget-text-editor\" data-id=\"791094e\" 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 data-path-to-node=\"13,0\">Innovacore non \u00e8 una societ\u00e0 di consulenza. Siamo un <b data-path-to-node=\"13,0\" data-index-in-node=\"45\">Venture Builder<\/b> e un <b data-path-to-node=\"13,0\" data-index-in-node=\"65\">Turnaround Operator<\/b>.<\/p><p data-path-to-node=\"13,0\">Quando proponi un progetto, non stai chiedendo un preventivo. Stai chiedendo di collegare la tua azienda a una macchina progettata per una sola cosa: <b data-path-to-node=\"13,1\" data-index-in-node=\"136\">Creazione di Valore<\/b>.<\/p><p data-path-to-node=\"13,2\">Se hai bisogno di assicurarti il tuo primo round di finanziamento (Create) o salvare il flusso di cassa da una crisi (Turnaround), portiamo il &#8220;Core Team&#8221;\u2014Sales, Finance, Ops\u2014a eseguire il lavoro insieme a te.<\/p><p data-path-to-node=\"13,3\">Non fatturiamo per ore; investiamo nei risultati. Condividiamo il rischio per condividere il ritorno.<\/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-7a5d14a e-con-full e-flex e-con e-child\" data-id=\"7a5d14a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9ea8d0a e-con-full e-flex e-con e-child\" data-id=\"9ea8d0a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5546416 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"5546416\" 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\">La tua visione,<br>\nil nostro <span class=\"ic-nycd\">su misura<\/span> motore.<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1c3938c e-con-full e-flex e-con e-child\" data-id=\"1c3938c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5bb0616 e-con-full e-flex e-con e-child\" data-id=\"5bb0616\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7a36d87 e-con-full e-flex e-con e-child\" data-id=\"7a36d87\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-df6dd48 e-con-full e-flex e-con e-child\" data-id=\"df6dd48\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ec78376 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image\" data-id=\"ec78376\" 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-6bc87f3 e-con-full e-flex e-con e-child\" data-id=\"6bc87f3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ecfdaad animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"ecfdaad\" 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\">Allineamento Strategico<\/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-53b4844 e-con-full e-flex e-con e-child\" data-id=\"53b4844\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ff26a57 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"ff26a57\" 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\">Entriamo solo in progetti dove vediamo una chiara strada verso la redditivit\u00e0 o il finanziamento. Il tuo obiettivo diventa il nostro unico KPI.<\/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-7b3dc06 e-con-full e-flex e-con e-child\" data-id=\"7b3dc06\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1adf7ab e-con-full e-flex e-con e-child\" data-id=\"1adf7ab\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-02964ec e-con-full e-flex e-con e-child\" data-id=\"02964ec\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5c055d2 e-con-full e-flex e-con e-child\" data-id=\"5c055d2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-970a1f8 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image\" data-id=\"970a1f8\" 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-7031b27 e-con-full e-flex e-con e-child\" data-id=\"7031b27\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5e21210 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"5e21210\" 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\">Iniezione Operativa<\/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-cde61db e-con-full e-flex e-con e-child\" data-id=\"cde61db\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4f54db4 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"4f54db4\" 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 ci limitiamo a consigliare. Impieghiamo operatori interim di livello C per sistemare il motore mentre guidiamo l'auto.<\/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-8178960 e-con-full e-flex e-con e-child\" data-id=\"8178960\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5875a7b e-con-full e-flex e-con e-child\" data-id=\"5875a7b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c9dd329 e-con-full e-flex e-con e-child\" data-id=\"c9dd329\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-095a9da e-con-full e-flex e-con e-child\" data-id=\"095a9da\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a4369d3 elementor-widget-mobile__width-inherit elementor-widget elementor-widget-image\" data-id=\"a4369d3\" 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-4f13738 e-con-full e-flex e-con e-child\" data-id=\"4f13738\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-8f639db animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"8f639db\" 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\">Rischio Condiviso<\/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-15c3579 e-con-full e-flex e-con e-child\" data-id=\"15c3579\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b6030c6 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"b6030c6\" 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\">I nostri modelli di remunerazione (Equity, Success Fees) significano che vinciamo solo quando il valore dell'asset aumenta.<\/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-f7f8b30 e-flex e-con-boxed e-con e-parent\" data-id=\"f7f8b30\" 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-a795b83 e-con-full e-flex e-con e-child\" data-id=\"a795b83\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-63bb867 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"63bb867\" 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\">I NOSTRI PROGRAMMI<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e4f5344 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"e4f5344\" 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-711775e e-con-full e-flex e-con e-child\" data-id=\"711775e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d33e66b animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"d33e66b\" 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\">Percorsi operativi per ogni <span class=\"ic-nycd\">sfida<\/span>.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4dfb435 elementor-widget elementor-widget-text-editor\" data-id=\"4dfb435\" 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>Dalla creazione della Venture al Turnaround. Identifica la tua fase attuale per implementare il Core Team specifico e la strategia di cui hai bisogno.<\/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-029b54f e-con-full e-flex e-con e-child\" data-id=\"029b54f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8c63c23 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"8c63c23\" 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-e4372cb e-con-full e-flex e-con e-child\" data-id=\"e4372cb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-79e11da elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"79e11da\" data-element_type=\"widget\" data-e-type=\"widget\" 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-cubes\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cf15755 e-con-full e-flex e-con e-child\" data-id=\"cf15755\" 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-0898914 elementor-widget elementor-widget-heading\" data-id=\"0898914\" 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\">Crea (0 a 1)<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b594516 elementor-widget elementor-widget-text-editor\" data-id=\"b594516\" 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>Dalla Visione alla Traction. Strutturiamo l&#8217;MVP, definiamo il Go-To-Market e assicuriamo il finanziamento seed iniziale.<\/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-3899e51 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"3899e51\" 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-2a3c893 e-con-full e-flex e-con e-child\" data-id=\"2a3c893\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2928042 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"2928042\" data-element_type=\"widget\" data-e-type=\"widget\" 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-cube\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cedac50 e-con-full e-flex e-con e-child\" data-id=\"cedac50\" 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-a0b8761 elementor-widget elementor-widget-heading\" data-id=\"a0b8761\" 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\">Sviluppa (1 a 10)<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e6bfab4 elementor-widget elementor-widget-text-editor\" data-id=\"e6bfab4\" 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>Dal prodotto al mercato. Installiamo l&#8217;architettura di vendita e i report finanziari necessari per il Series A.<\/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-faa56af e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"faa56af\" 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-202867f e-con-full e-flex e-con e-child\" data-id=\"202867f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3c982e9 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"3c982e9\" data-element_type=\"widget\" data-e-type=\"widget\" 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-cubes\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-e9cd1b3 e-con-full e-flex e-con e-child\" data-id=\"e9cd1b3\" 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-7ce59e7 elementor-widget elementor-widget-heading\" data-id=\"7ce59e7\" 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\">Scala (10 a 100)<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7f3aac3 elementor-widget elementor-widget-text-editor\" data-id=\"7f3aac3\" 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>Da locale a globale. Eseguiamo l&#8217;espansione internazionale e gestiamo le sfide della crescita esplosiva.<\/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-d6c4636 e-con-full e-flex e-con e-child\" data-id=\"d6c4636\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-de70d2a e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"de70d2a\" 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-9529bf1 e-con-full e-flex e-con e-child\" data-id=\"9529bf1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-51b3654 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"51b3654\" data-element_type=\"widget\" data-e-type=\"widget\" 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-cubes\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6cf57f6 e-con-full e-flex e-con e-child\" data-id=\"6cf57f6\" 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-2a9b33a elementor-widget elementor-widget-heading\" data-id=\"2a9b33a\" 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\">Evolvi (100 a 1000)<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1f7cea4 elementor-widget elementor-widget-text-editor\" data-id=\"1f7cea4\" 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>Rinascita aziendale. Lanciamo iniziative interne e modernizziamo i sistemi legacy per leader affermati.<\/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-85162e5 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"85162e5\" 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-6c684fe e-con-full e-flex e-con e-child\" data-id=\"6c684fe\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-08c07fb elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"08c07fb\" data-element_type=\"widget\" data-e-type=\"widget\" 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-cube\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M239.1 6.3l-208 78c-18.7 7-31.1 25-31.1 45v225.1c0 18.2 10.3 34.8 26.5 42.9l208 104c13.5 6.8 29.4 6.8 42.9 0l208-104c16.3-8.1 26.5-24.8 26.5-42.9V129.3c0-20-12.4-37.9-31.1-44.9l-208-78C262 2.2 250 2.2 239.1 6.3zM256 68.4l192 72v1.1l-192 78-192-78v-1.1l192-72zm32 356V275.5l160-65v133.9l-160 80z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b9e7d12 e-con-full e-flex e-con e-child\" data-id=\"b9e7d12\" 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-dc058a8 elementor-widget elementor-widget-heading\" data-id=\"dc058a8\" 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\">Acquisire (Compra &amp; Costruisci)<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3a43562 elementor-widget elementor-widget-text-editor\" data-id=\"3a43562\" 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>Crescita esterna. Gestiamo il processo di M&amp;A, la due diligence e l&#8217;integrazione post-fusione (PMI).<\/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-393b723 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"393b723\" 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-4646714 e-con-full e-flex e-con e-child\" data-id=\"4646714\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-da0a3e9 elementor-view-default elementor-widget elementor-widget-icon\" data-id=\"da0a3e9\" data-element_type=\"widget\" data-e-type=\"widget\" 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-cubes\" viewBox=\"0 0 512 512\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><path d=\"M488.6 250.2L392 214V105.5c0-15-9.3-28.4-23.4-33.7l-100-37.5c-8.1-3.1-17.1-3.1-25.3 0l-100 37.5c-14.1 5.3-23.4 18.7-23.4 33.7V214l-96.6 36.2C9.3 255.5 0 268.9 0 283.9V394c0 13.6 7.7 26.1 19.9 32.2l100 50c10.1 5.1 22.1 5.1 32.2 0l103.9-52 103.9 52c10.1 5.1 22.1 5.1 32.2 0l100-50c12.2-6.1 19.9-18.6 19.9-32.2V283.9c0-15-9.3-28.4-23.4-33.7zM358 214.8l-85 31.9v-68.2l85-37v73.3zM154 104.1l102-38.2 102 38.2v.6l-102 41.4-102-41.4v-.6zm84 291.1l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6zm240 112l-85 42.5v-79.1l85-38.8v75.4zm0-112l-102 41.4-102-41.4v-.6l102-38.2 102 38.2v.6z\"><\/path><\/svg>\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f36f46c e-con-full e-flex e-con e-child\" data-id=\"f36f46c\" 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-70216eb elementor-widget elementor-widget-heading\" data-id=\"70216eb\" 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\">Turnaround (Ristrutturazione)<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-34bea84 elementor-widget elementor-widget-text-editor\" data-id=\"34bea84\" 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>Crisi a liquidit\u00e0. Controllo immediato della cassa, rinegoziazione del debito e esecuzione di pivot per salvare l&#8217;asset.<\/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-9ea83ec e-con-full e-flex elementor-invisible e-con e-child\" data-id=\"9ea83ec\" 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-8cbb90a elementor-align-center elementor-widget elementor-widget-button\" data-id=\"8cbb90a\" 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\">COSTRUIAMO INSIEME<\/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-8efcb18 e-flex e-con-boxed e-con e-parent\" data-id=\"8efcb18\" 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-19d182d e-con-full e-flex e-con e-child\" data-id=\"19d182d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-526a928 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"526a928\" 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-5c4bb1c elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"5c4bb1c\" 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-84f080f e-con-full e-flex e-con e-child\" data-id=\"84f080f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6663138 e-con-full e-flex e-con e-child\" data-id=\"6663138\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-09db195 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"09db195\" 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\">Dall'applicazione all'<span class=\"ic-nycd\">esecuzione<\/span>.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0e0d80d e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"0e0d80d\" 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-78fd68d elementor-widget elementor-widget-text-editor\" data-id=\"78fd68d\" 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 profitto. Ecco come dispieghiamo 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-7282c18 e-con-full e-flex e-con e-child\" data-id=\"7282c18\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9c560cb e-con-full e-flex e-con e-child\" data-id=\"9c560cb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-fd5a41d e-con-full e-flex e-con e-child\" data-id=\"fd5a41d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cb4e6d2 circle elementor-widget elementor-widget-heading\" data-id=\"cb4e6d2\" 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-b7b481e elementor-widget elementor-widget-heading\" data-id=\"b7b481e\" 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\">Verifica e Adeguamento<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dff09e1 elementor-widget elementor-widget-text-editor\" data-id=\"dff09e1\" 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>Analizziamo il collo di bottiglia. Se c&#8217;\u00e8 l&#8217;adeguamento operativo, definiamo la strategia di leva (Sovvenzioni, Equity o Correzione del flusso di cassa).<\/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-2bfcbdf e-con-full e-flex e-con e-child\" data-id=\"2bfcbdf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9f3968a elementor-widget elementor-widget-html\" data-id=\"9f3968a\" 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-7ccc77e e-con-full e-flex e-con e-child\" data-id=\"7ccc77e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eee7ebe circle elementor-widget elementor-widget-heading\" data-id=\"eee7ebe\" 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-090eef4 elementor-widget elementor-widget-heading\" data-id=\"090eef4\" 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\">Lo Sblocco<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-499f71e elementor-widget elementor-widget-text-editor\" data-id=\"499f71e\" 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>Lavoriamo a rischio per sbloccare le risorse. Prepariamo il dossier e assicuriamo il Funding, il Grant o il cliente chiave che convalida la roadmap.<\/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-cc7cbf1 e-con-full e-flex e-con e-child\" data-id=\"cc7cbf1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-201505c elementor-widget elementor-widget-html\" data-id=\"201505c\" 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-1a394d7 e-con-full e-flex e-con e-child\" data-id=\"1a394d7\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-80ec210 circle elementor-widget elementor-widget-heading\" data-id=\"80ec210\" 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-9b4c739 elementor-widget elementor-widget-heading\" data-id=\"9b4c739\" 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\">Implementazione<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1da3d61 elementor-widget elementor-widget-text-editor\" data-id=\"1da3d61\" 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 sbloccato, il CORE installa la macchina. Governance, Sales Ops, controlli finanziari. Eseguiamo il piano dall&#8217;interno.<\/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-5aaa4ec e-con-full e-flex e-con e-child\" data-id=\"5aaa4ec\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0441f96 elementor-widget elementor-widget-html\" data-id=\"0441f96\" 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-eef8994 e-con-full e-flex e-con e-child\" data-id=\"eef8994\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eb41f3f circle elementor-widget elementor-widget-heading\" data-id=\"eb41f3f\" 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-2a84f96 elementor-widget elementor-widget-heading\" data-id=\"2a84f96\" 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<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b70688e elementor-widget elementor-widget-text-editor\" data-id=\"b70688e\" 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>Usciremo o rimarremo come partner strategici. Monetizziamo l&#8217;impatto tramite Success Fees, Equity o contratti di gestione ricorrenti.<\/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-f8fc930 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"f8fc930\" 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-f04c0c9 elementor-align-center elementor-widget elementor-widget-button\" data-id=\"f04c0c9\" 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-bd49aa9 animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"bd49aa9\" 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-e7ea398 e-con-full e-flex e-con e-child\" data-id=\"e7ea398\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-923ea99 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"923ea99\" 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-c79db76 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"c79db76\" 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-bd334dd e-con-full e-flex e-con e-child\" data-id=\"bd334dd\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-cd4d396 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"cd4d396\" 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-5edfc05 elementor-widget elementor-widget-heading\" data-id=\"5edfc05\" 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\">Candidati per una <span class=\"ic-nycd\">Partneria Operativa<\/span>.<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dd57b19 elementor-widget elementor-widget-heading\" data-id=\"dd57b19\" 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\">Sei d'accordo nel condividere<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c03cd2a elementor-widget elementor-widget-html\" data-id=\"c03cd2a\" 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        30 minuti di tempo di leadership mirato\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        Accesso trasparente ai dettagli del progetto e agli ostacoli attuali\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        Disponibilit\u00e0 a discutere modelli di \"Rischio Condiviso\" o Equity\r\n    <\/div>\r\n<\/div>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6ca6cae elementor-widget elementor-widget-heading\" data-id=\"6ca6cae\" 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\">Otterrai<\/h4>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-43a19fd elementor-widget elementor-widget-html\" data-id=\"43a19fd\" 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        Revisione da parte di un esperto esterno della tua situazione attuale\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        Identificazione dei tuoi 2\u20133 principali ostacoli operativi\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        Una bozza preliminare della strategia di Sblocco\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        Schema di KPI obiettivi misurabili\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        Ritmo di governance consigliato\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        Chiarezza sulle opzioni di tempistiche di consegna\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        Comprensione delle opzioni di investimento o tariffe (Go\/No-Go)\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        Un breve documento per l'allineamento degli stakeholder interni\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-1fbbac6 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"1fbbac6\" 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-799dba4 elementor-widget elementor-widget-jet-form-builder-form\" data-id=\"799dba4\" 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\/style.min.css?ver=6.9.4' 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\/4429\/?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=\"c0b7d39497\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/it\/wp-json\/wp\/v2\/pages\/4429\" \/>\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\/4429\/\">\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"__queried_post_id\" data-field-name=\"__queried_post_id\" value=\"4429\">\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=\"4429\">\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_al0TZjLA\">\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_5OB4cRZf\">\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_rCOFJflp\">\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_8BpR1TVx\">\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\"><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-2e04125 animated-slow e-flex e-con-boxed elementor-invisible e-con e-parent\" data-id=\"2e04125\" 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-cde60a0 e-con-full e-flex e-con e-child\" data-id=\"cde60a0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1964e34 animated-slow elementor-invisible elementor-widget elementor-widget-heading\" data-id=\"1964e34\" 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\">FAQ<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cd36751 elementor-widget-divider--view-line elementor-widget elementor-widget-divider\" data-id=\"cd36751\" 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-a2d1256 e-con-full e-flex e-con e-child\" data-id=\"a2d1256\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-dd3a4e0 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"dd3a4e0\" 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-8939a64 elementor-widget elementor-widget-text-editor\" data-id=\"8939a64\" 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>Questions? Any objections? Browse our FAQ for answers to the most frequently asked questions.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-348daff elementor-widget elementor-widget-html\" data-id=\"348daff\" 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 sono charg\u00e9s dynamiquement par JetEngine\r\n    document.body.addEventListener('click', function(e) {\r\n        \r\n        \/\/ On verifica se abbiamo cliccato su un header (o su uno dei suoi figli)\r\n        const header = e.target.closest('.faq-header');\r\n        \r\n        if (header) {\r\n            \/\/ On trova l'item genitore\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-1191b24 e-con-full animated-slow e-flex elementor-invisible e-con e-child\" data-id=\"1191b24\" 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-38633d4 elementor-widget elementor-widget-html\" data-id=\"38633d4\" 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\">Does it cost money to submit a project?<\/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                No. The initial qualification is free. We invest this time to assess the fit. If we proceed, we propose a partnership model (Equity, Success Fee, or Hybrid) tailored to your cash flow.\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\">I am in a critical financial situation. Is this confidential?<\/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                Absolutely. We handle special situations daily. All data shared via this form is covered by strict NDAs to protect your brand and stakeholder relationships.\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\">Do I have to give up equity?<\/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                Not necessarily. While we prefer \"Equity for Execution\" for long-term alignment, we also work with Performance-Linked fees or Hybrid models depending on the program.\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\">Can you help me get funding or grants?<\/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                Yes. This is often step one. We use \"Financing Engineering\" to unlock non-dilutive funds (subsidies) or prepare the company for private investment. We build the file and defend it.\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\">How fast can the Core Team deploy?<\/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                We are designed for speed. For Turnaround cases, we can deploy an interim CFO or CEO within 48 to 72 hours. For Venture programs, onboarding typically takes 1 to 2 weeks.\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>#innovacore-flower { width: 100%; height: 400px; display: flex; justify-content: center; align-items: center; background: transparent; overflow: hidden; position: relative; \/* Z-index \u00e9lev\u00e9 pour \u00eatre s\u00fbr de passer au-dessus du reste *\/ z-index: 10; cursor: crosshair; pointer-events: auto; } \u00c8 ora di sviluppare il tuo progetto. Smetti di gestire da solo. Attiva il CORE per strutturare, finanziare [&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-4429","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/pages\/4429","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=4429"}],"version-history":[{"count":6,"href":"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/pages\/4429\/revisions"}],"predecessor-version":[{"id":7462,"href":"https:\/\/innovacore.group\/it\/wp-json\/wp\/v2\/pages\/4429\/revisions\/7462"}],"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=4429"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}