{"id":4445,"date":"2026-01-13T16:59:17","date_gmt":"2026-01-13T15:59:17","guid":{"rendered":"https:\/\/innovacore.group\/?page_id=4445"},"modified":"2026-03-17T09:29:43","modified_gmt":"2026-03-17T08:29:43","slug":"devenir-membre-core","status":"publish","type":"page","link":"https:\/\/innovacore.group\/fr\/devenir-membre-core\/","title":{"rendered":"Devenir un membre central"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"4445\" class=\"elementor elementor-4445 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\">Devenir une <span class=\"ic-nycd\">membre central<\/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>Cessez de conseiller, commencez \u00e0 construire. D\u00e9ployez la m\u00e9thodologie CORE au sein des entreprises et alignez votre succ\u00e8s financier sur les r\u00e9sultats que vous d\u00e9livrez.<\/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\">EN SAVOIR PLUS<\/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\">CONSTRUIRE AVEC NOUS<\/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\">LE CONCEPT<\/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 loading=\"lazy\" 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-888\" 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=\"auto, (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>Rejoignez le CORE. Une collectivit\u00e9 d&rsquo;op\u00e9rateurs d&rsquo;\u00e9lite guid\u00e9s par une seule ambition : p\u00e9n\u00e9trer, stabiliser et faire cro\u00eetre les entreprises les plus prometteuses en les traitant comme les n\u00f4tres.<\/p><p data-path-to-node=\"8\">Le mod\u00e8le d&rsquo;agence est cass\u00e9. Nous construisons une <b data-path-to-node=\"8\" data-index-in-node=\"57\">alternative perturbatrice<\/b>. En tant que Membre CORE, vous n&rsquo;\u00eates pas un pigiste ou une agence traditionnelle\/ancien mod\u00e8le envoyant une facture. Vous \u00eates un <b data-path-to-node=\"8\" data-index-in-node=\"154\">Partenaire Strat\u00e9gique et Mentor<\/b>. Vous entrez dans un projet pour partager vos connaissances et vos actifs sans restriction.<\/p><p data-path-to-node=\"9\">Votre mission est simple mais exigeante : accompagner les entreprises pour s\u00e9curiser des fonds, pivoter ou se d\u00e9velopper \u00e0 l&rsquo;international. Nous travaillons comme un cerveau uni qui se compl\u00e8te pour faire r\u00e9ussir l&rsquo;entreprise. Nous ne facturons pas l&rsquo;effort ; nous sommes r\u00e9mun\u00e9r\u00e9s sur les r\u00e9sultats, l&rsquo;\u00e9quit\u00e9 et la valeur \u00e0 long terme que nous cr\u00e9ons ensemble.<\/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\">Nous ne facturons pas les heures,<br>\nNous construisons <span class=\"ic-nycd\">des actifs<\/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 loading=\"lazy\" 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-1161\" 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\">G\u00e9n\u00e9rosit\u00e9 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\">Nous ne th\u00e9saurisons pas le savoir. Nous ouvrons nos playbooks et nos actifs pleinement aux entreprises que nous soutenons. Leur succ\u00e8s est litt\u00e9ralement notre succ\u00e8s.<\/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 loading=\"lazy\" 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-2289\" 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\">Zero Facture, 100% Alignement<\/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\">Nous perturbons le march\u00e9 en supprimant la barri\u00e8re des honoraires. Nous investissons notre temps pour capturer des actions et des flux de revenus r\u00e9currents plus tard.<\/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 loading=\"lazy\" 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-2300\" 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\">Mentor &amp; Op\u00e9rateur<\/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\">Vous agissez en strat\u00e8ge aux c\u00f4t\u00e9s d'autres experts. Vous guidez le fondateur, r\u00e9solvez les goulets d'\u00e9tranglement et ex\u00e9cutez avec la pr\u00e9cision d'un propri\u00e9taire.<\/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 COMMUNAUT\u00c9<\/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 \u00e9cosyst\u00e8me o\u00f9 votre expertise <span class=\"ic-nycd\">s'\u00c9CHELLE<\/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>Vous n&rsquo;\u00eates plus un <strong> consultant solitaire<\/strong> ou une <strong>agence de l&rsquo;ancien mod\u00e8le<\/strong>. Vous faites partie d&rsquo;une machine industrielle con\u00e7ue pour p\u00e9n\u00e9trer les march\u00e9s.<\/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 loading=\"lazy\" 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-2238\" 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\u00e9 de propri\u00e9taire<\/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>Nous ne prenons pas de \u00ab briefs clients \u00bb. Nous entrons dans la salle du conseil. Nous prenons des d\u00e9cisions comme si c&rsquo;\u00e9tait notre argent sur la table.<\/p><p><strong>L&rsquo;objectif<\/strong>: transformer l&rsquo;entreprise de potentiel en actif \u00ab bancable \u00bb. <\/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 loading=\"lazy\" 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-2260\" 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\">Force Compl\u00e9mentaire<\/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>Aucun gagnant seul. Vous apportez votre actif sp\u00e9cifique (Ventes, Tech, F&#038;A) et vous vous connectez au travail des autres membres CORE.<\/p><p><strong>L&rsquo;objectif<\/strong>: une intervention holistique o\u00f9 chaque angle de l&rsquo;entreprise est couvert par un sp\u00e9cialiste.<\/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 loading=\"lazy\" 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-2249\" 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\">Portefeuille diversifi\u00e9<\/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>Au lieu d&rsquo;un salaire, vous constituez un portefeuille. Vous gagnez par les Success Fees, l&rsquo;\u00c9quit\u00e9, les frais de gestion \u00e0 long terme et les \u00e9quipes op\u00e9rationnelles.<\/p><p><strong>L&rsquo;objectif<\/strong>: \u00eatre actionnaire dans l&rsquo;\u00e9cosyst\u00e8me des entreprises que nous aidons \u00e0 cro\u00eetre.<\/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\">PARLONS DE VOTRE PROJET<\/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 loading=\"lazy\" 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-1207\" 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=\"auto, (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\">En rejoignant Innovacore, vous arr\u00eatez d\u2019\u00e9changer du temps contre de l'argent. Vous commencez \u00e0 <span class=\"ic-nycd\">accumuler de la valeur<\/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\">PROCESSUS<\/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\">Votre parcours en tant que <span class=\"ic-nycd\">op\u00e9rateur central<\/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>De l&rsquo;int\u00e9gration d&rsquo;un projet au partage de l&rsquo;ascenseur. Voici comment nous d\u00e9ployons notre force collective.<\/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\">Plong\u00e9e d'int\u00e9gration et injection d'actifs<\/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>Vous rejoignez une escouade. Vous ouvrez votre bo\u00eete \u00e0 outils. Nous analysons l&rsquo;entreprise cibl\u00e9e et injectons nos \u00ab Assets \u00bb (mod\u00e8les, strat\u00e9gies, r\u00e9seaux) imm\u00e9diatement pour arr\u00eater les saignements ou d\u00e9clencher la croissance.<\/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\">Strat\u00e9gie et direction du mentorat<\/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>Vous prenez les r\u00eanes sur votre verticale. Vous mentoriez l&rsquo;\u00e9quipe interne ou le fondateur. Vous structurez la feuille de route pour la lev\u00e9e de fonds, le redressement ou la croissance. Vous \u00eates l&rsquo;architecte.<\/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\">Ex\u00e9cution La phase \u00ab Skin in the Game \u00bb<\/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>Nous ne faisons pas que conseiller; nous agissons. Nous ex\u00e9cutons la feuille de route ensemble pour atteindre le \u00ab Unlock \u00bb (Financement, Rentabilit\u00e9). C&rsquo;est l\u00e0 que votre impact est mesur\u00e9.<\/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\">R\u00e9ussite de la capture de valeur et r\u00e9mun\u00e9ration<\/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>Une fois l&rsquo;\u00e9tape atteinte, le mod\u00e8le change. Nous activons des contrats r\u00e9currents et validons nos positions d&rsquo;\u00e9quit\u00e9. Vous \u00eates pay\u00e9 sur les performances que vous avez con\u00e7ues.<\/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\">PARLONS DE VOTRE PROJET<\/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\">ACTION<\/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\">\u00cates-vous pr\u00eat \u00e0 arr\u00eater <span class=\"ic-nycd\">la facturation<\/span> et \u00e0 commencer <span class=\"ic-nycd\">\u00e0 construire<\/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>Nous recherchons des experts chevron\u00e9s, Directeurs Commerciaux, CFOs, CTOs, COOs, CMOs, Growth Hackers qui veulent construire des actifs pertinents.<\/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\">Vous acceptez de partager<\/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        Vos actifs op\u00e9rationnels (playbooks, mod\u00e8les, r\u00e9seau) sans restriction\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        Investissement en temps avec une mentalit\u00e9 \u00ab skin in the game \u00bb (aucuels frais imm\u00e9diats)\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        Franchise et capacit\u00e9s de mentorat actives\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\">Vous obtiendrez<\/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        Flux d'opportunit\u00e9s exclusif de ventures \u00e0 fort potentiel et de redressements\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        Participation en actions et r\u00e9mun\u00e9ration li\u00e9e au succ\u00e8s\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        Acc\u00e8s \u00e0 un groupe d'\u00e9lite de cadres de haut niveau\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        Revenu r\u00e9current \u00e0 long terme gr\u00e2ce aux contrats d'ex\u00e9cution\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\u00e9 d'agir en tant que partenaire strat\u00e9gique, non comme vendeur\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.1' 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\/fr\/wp-json\/wp\/v2\/pages\/4445\/?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_2598\" name=\"_wpnonce\" value=\"5ef8851eca\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/fr\/wp-json\/wp\/v2\/pages\/4445\" \/>\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\/fr\/wp-json\/wp\/v2\/pages\/4445\/\">\n<input type=\"hidden\" class=\"jet-form-builder__field hidden-field\" name=\"__queried_post_id\" data-field-name=\"__queried_post_id\" value=\"4445\">\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=\"4445\">\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_UMfiqWRo\">\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_wPUTxgEu\">\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_tp6x8PeR\">\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_5aEVyBiP\">\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\">FAQ<\/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>Des questions ? Des objections ? Parcourez notre FAQ pour trouver les r\u00e9ponses aux questions les plus fr\u00e9quemment pos\u00e9es.<\/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\">Est-ce un travail r\u00e9mun\u00e9r\u00e9 ou une mission 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                Ni l'un ni l'autre. Il s'agit d\u2019un <strong>partenariat<\/strong>. Vous rejoignez Innovacore en tant que membre. Vous investissez votre expertise dans des projets en \u00e9change d'une part de la valeur cr\u00e9\u00e9e (\u00c9quit\u00e9, Success Fees, Contrats futurs). C\u2019est pour ceux qui peuvent se permettre d\u2019investir du temps pour gagner sensiblement plus tard.\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\">Que signifie \u00ab partager des actifs sans limite \u00bb ?<\/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                Nous croyons en une <strong>ex\u00e9cution open-source<\/strong> au sein de notre portefeuille. Si vous avez un script de vente redoutable ou un mod\u00e8le financier, vous l\u2019apportez \u00e0 la table. Nous ne vendons pas des mod\u00e8les ; nous les utilisons pour construire des entreprises prosp\u00e8res.\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\">Comment choisissons-nous les entreprises que nous aidons ?<\/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                Nous s\u00e9lectionnons les entreprises en fonction de leur potentiel de mont\u00e9e en puissance ou de rebond. Le CORE d\u00e9cide <strong>collectivement<\/strong>. Si le projet correspond \u00e0 notre programme Ventures ou Turnaround, et que nous pensons pouvoir \u00ab Unlock \u00bb des fonds ou une croissance, nous y allons.\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\">Puis-je faire cela parall\u00e8lement \u00e0 une autre activit\u00e9 ?<\/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                Oui, au d\u00e9but. Beaucoup de membres commencent comme <strong>experts fractionnels<\/strong> ou mentors. Cependant, l\u2019objectif final est de g\u00e9n\u00e9rer suffisamment de revenus r\u00e9currents \u00e0 partir de nos projets r\u00e9ussis pour se concentrer enti\u00e8rement sur l\u2019\u00e9cosyst\u00e8me 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\">Quel est le \u00ab Mod\u00e8le perturbateur \u00bb ?<\/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                Le march\u00e9 est fatigu\u00e9 des consultants qui conseillent sans risque. Nous perturbons cela en disant : <strong>\u00ab Nous ne gagnons que si vous gagnez. \u00bb<\/strong> Nous p\u00e9n\u00e9trons l\u2019\u00e9cosyst\u00e8me en \u00e9tant les partenaires les plus align\u00e9s qu\u2019un fondateur puisse trouver. Nous ne co\u00fbte pas d\u2019argent ; nous cr\u00e9ons de la richesse.\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-magnet { width: 100%; height: 400px; display: flex; justify-content: center; align-items: center; background: transparent; overflow: hidden; position: relative; z-index: 10; \/* Z-index \u00e9lev\u00e9 pour garantir la capture de la souris *\/ cursor: crosshair; \/* Important : permet les \u00e9v\u00e9nements de souris m\u00eame si transparent *\/ pointer-events: auto; } Devenir une membre central. Cessez de conseiller, [&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-4445","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/innovacore.group\/fr\/wp-json\/wp\/v2\/pages\/4445","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/innovacore.group\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/innovacore.group\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/innovacore.group\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/innovacore.group\/fr\/wp-json\/wp\/v2\/comments?post=4445"}],"version-history":[{"count":6,"href":"https:\/\/innovacore.group\/fr\/wp-json\/wp\/v2\/pages\/4445\/revisions"}],"predecessor-version":[{"id":7471,"href":"https:\/\/innovacore.group\/fr\/wp-json\/wp\/v2\/pages\/4445\/revisions\/7471"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/innovacore.group\/fr\/wp-json\/wp\/v2\/media\/2369"}],"wp:attachment":[{"href":"https:\/\/innovacore.group\/fr\/wp-json\/wp\/v2\/media?parent=4445"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}