{"id":32771,"date":"2026-09-24T09:20:28","date_gmt":"2026-09-24T09:20:28","guid":{"rendered":"https:\/\/www.cycloid.io\/?page_id=32771"},"modified":"2026-09-25T06:38:14","modified_gmt":"2026-09-25T06:38:14","slug":"accueil-dirigeants","status":"publish","type":"page","link":"https:\/\/www.cycloid.io\/fr\/accueil-dirigeants\/","title":{"rendered":"Page d\u2019accueil \u2014 Dirigeants"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"32771\" class=\"elementor elementor-32771 elementor-32216\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-332c8b4 e-con-full cy-pp-embed e-no-lazyload e-flex e-con e-parent\" data-id=\"332c8b4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-06d1c20 cy-pp-tpl elementor-widget elementor-widget-template\" data-id=\"06d1c20\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"template.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-template\">\n\t\t\t\t\t<div data-elementor-type=\"container\" data-elementor-id=\"32670\" class=\"elementor elementor-32670 elementor-32649 elementor-32649\" data-elementor-post-type=\"elementor_library\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a5e4f60 e-con-full cy-pp-js-root e-no-lazyload e-flex e-con e-parent\" data-id=\"a5e4f60\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6be3d7f cy-pp-js elementor-widget elementor-widget-shortcode\" data-id=\"6be3d7f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><script>\n\/* Homepage persona layer \u2014 behaviour only. No copy lives here.\n *\n * REDIRECT IS ON (Am\u00e9lia's decision, 2026-09-21): a returning visitor who chose a\n * persona is sent to that homepage. Both problems I raised are engineered around\n * rather than accepted \u2014 read this before changing any of it.\n *\n *  1. THE BACK BUTTON. The hop uses location.replace(), so \"\/\" is REPLACED in\n *     history rather than added to it. History goes [wherever they were] ->\n *     [Developers], so Back returns to where they came from, not to \"\/\" (which\n *     would bounce them forward again and trap them). Never change this to\n *     location.href = ... or assign to location.\n *\n *  2. THE FLASH. This script root is inserted as the FIRST root on the page and\n *     the redirect runs at PARSE TIME, not on DOMContentLoaded, so the decision\n *     is taken before the hero paints. It also hides the document until it has\n *     decided \u2014 behind a 400ms failsafe that reveals the page no matter what, so\n *     a JS error can never leave a blank homepage.\n *\n *  3. LOOPS. It redirects only when the stored key names a DIFFERENT page, only\n *     once per page load, and never when \"?nopersona=1\" is present \u2014 which is\n *     also the escape hatch for looking at the raw general page.\n *\n * IN-PLACE SWITCHING (her requirement, 2026-09-21): a pill segment or a chooser\n * card never reloads the page. The target persona's page is fetched once (on the\n * first hover or touch of the pill, or when the chooser opens), its widgets are\n * read by position, and the ones whose text differs are swapped into this page.\n * The section under the reader is re-anchored so nothing moves; the URL and title\n * follow with replaceState, so a refresh or a share lands on the right page. The\n * four pages stay the editable, crawlable source. Widgets are paired by class key,\n * nth with nth, so a widget added or re-classed on one page only excludes itself;\n * when fewer than 90% pair up the pages are no longer the same page and the click\n * is a plain navigation.\n *\n * Query switches (for review, never linked from the site):\n *     ?nopersona=1    no redirect, no chooser \u2014 the raw page\n *     ?persona=ask    no redirect, the chooser opens whatever is stored \u2014 this is\n *                     how to SEE the pop-up again after choosing or dismissing\n *   Inside the Elementor canvas (?elementor-preview=\u2026) the script does nothing at\n *   all: style.css renders both layers in flow there so they can be edited.\n *\/\n(function () {\n  'use strict';\n  var KEY = 'cy_pp_choice', HOURS = 24;\n  var URLS = {\"general\":\"\/fr\/\",\"platform\":\"\/fr\/accueil-plateforme-devops\/\",\"developers\":\"\/fr\/accueil-developpeurs\/\",\"executives\":\"\/fr\/accueil-dirigeants\/\"};                       \/* {persona: url} \u2014 the pill's native links override these at load *\/\n  var PAGES = {\"32771\":\"executives\",\"32773\":\"platform\",\"32775\":\"developers\",\"32777\":\"general\"};                     \/* {post id: persona} \u2014 which homepage this is *\/\n  \/* ONE shared template serves all four homepages, so the persona is read from the page\n     itself: WordPress puts page-id-N on <body>, and <body> is already open when this\n     script (the first thing inside it) runs. No match \u2192 behave as the general page. *\/\n  var ME = (function () {\n    var m = \/(?:^|\\s)page-id-(\\d+)(?:\\s|$)\/.exec((document.body && document.body.className) || '');\n    return (m && PAGES[m[1]]) || 'general';\n  })();\n  \/* the three colour knobs each page declares on :root (wp-port-homepage\/style.css KNOBS);\n     an inline declaration on <html> outranks :root, so the swap sets them there *\/\n  var KNOBS = {\n    executives: { pp: 'var(--cy-accent)', corner: 'var(--cy-accent)', glow: 'rgba(240,139,2,.55)' },\n    platform:   { pp: 'var(--cy-teal)',   corner: 'var(--cy-teal)',   glow: 'rgba(28,151,151,.55)' },\n    developers: { pp: 'var(--cy-devops)', corner: 'var(--cy-devops)', glow: 'rgba(60,84,119,.55)' },\n    general:    { pp: 'var(--cy-faint)',  corner: '#fff',             glow: 'rgba(128,132,139,.55)' }\n  };\n\n  function read() {\n    try {\n      var raw = localStorage.getItem(KEY);\n      if (!raw) return null;\n      var v = JSON.parse(raw);\n      if (!v || typeof v.t !== 'number') return null;\n      if (Date.now() - v.t > HOURS * 3600e3) { localStorage.removeItem(KEY); return null; }\n      return v.k;\n    } catch (e) { return null; }             \/* blocked storage: behave like a first visit *\/\n  }\n  function write(k) {\n    try { localStorage.setItem(KEY, JSON.stringify({ k: k, t: Date.now() })); } catch (e) {}\n  }\n  window.cyPP = { read: read, write: write, me: ME };\n\n  var params = String(window.location.search || '');\n  var inEditor = params.indexOf('elementor-preview') !== -1;\n  var ask = \/[?&]persona=ask(?:&|$)\/.test(params);\n  var optedOut = params.indexOf('nopersona=1') !== -1;\n  var el = document.documentElement;\n\n  if (inEditor) return;                      \/* the canvas is for editing, not for behaving *\/\n\n  \/* ---------- 1. the redirect, at parse time ---------- *\/\n  var HIDE = 'cy-pp-deciding';\n  function reveal() { el.classList.remove(HIDE); }\n\n  if (!optedOut && !ask && !window.__cyPPDecided) {\n    window.__cyPPDecided = true;\n    var stored = read();\n    if (stored && stored !== ME && URLS[stored]) {\n      el.classList.add(HIDE);\n      \/* failsafe: whatever happens, the page becomes visible *\/\n      setTimeout(reveal, 400);\n      window.addEventListener('pageshow', reveal);\n      try {\n        window.location.replace(URLS[stored]);   \/* replace, never assign \u2014 see note 1 *\/\n      } catch (e) { reveal(); }\n    }\n  }\n\n  \/* ---------- 2. the chooser, the pill and the in-place switch ---------- *\/\n  function ready(fn) {\n    if (document.readyState !== 'loading') fn();\n    else document.addEventListener('DOMContentLoaded', fn);\n  }\n\n  ready(function () {\n    reveal();\n    var root = document.querySelector('.cy-pp-modal-root');\n    var pill = document.querySelector('.cy-pp-pill-root');\n    var reduce = window.matchMedia && window.matchMedia('(prefers-reduced-motion: reduce)').matches;\n    var qs = function (s, r) { return (r || document).querySelector(s); };\n    var qsa = function (s, r) { return Array.prototype.slice.call((r || document).querySelectorAll(s)); };\n    var revealPill = function () { if (pill) pill.classList.add('is-revealed'); };\n\n    \/* the destinations are the pill's own native links, so an edit in Elementor moves\n       the switch too; the baked copy above only serves the parse-time redirect *\/\n    if (pill) qsa('.cy-pp-seg', pill).forEach(function (s) {\n      var k = (s.className.match(\/cy-pp-seg-([a-z]+)\/) || [])[1], a = qs('a[href]', s);\n      if (k && a) URLS[k] = a.getAttribute('href');\n    });\n\n    \/* ---- the switch ---- *\/\n    var SEL = '[data-elementor-type=\"wp-page\"] .elementor-widget';\n    var OWN = '.cy-pp-modal-root,.cy-pp-pill-root,.cy-pp-js-root,.cy-pp-embed,.elementor-widget-template';\n    var cache = {}, pending = {};\n    function widgets(doc) { return qsa(SEL, doc).filter(function (w) { return !w.closest(OWN); }); }\n    function sigOne(w) {\n      return Array.prototype.filter.call(w.classList, function (c) { return \/^cy-hp-|^elementor-widget-[a-z-]+$\/.test(c); }).join(' ');\n    }\n    function norm(s) { return String(s || '').replace(\/\\s+\/g, ' ').trim(); }\n    function prefetch(k) {\n      if (!URLS[k] || k === ME || cache[k]) return Promise.resolve(cache[k] || null);\n      if (pending[k]) return pending[k];\n      pending[k] = fetch(URLS[k], { credentials: 'same-origin' })\n        .then(function (r) { if (!r.ok) throw new Error(String(r.status)); return r.text(); })\n        .then(function (html) {\n          var doc = new DOMParser().parseFromString(html, 'text\/html');\n          var list = widgets(doc);\n          cache[k] = { title: doc.title, widgets: list };\n          return cache[k];\n        })\n        .catch(function () { return null; })\n        .then(function (t) { delete pending[k]; return t; });\n      return pending[k];\n    }\n    function prefetchAll() { Object.keys(URLS).forEach(prefetch); }\n    \/* the page we started on is never fetched, so coming back to it would wait \u2014\n       snapshot its own widgets now (before the homepage script splits any words) *\/\n    cache[ME] = { title: document.title, widgets: widgets(document).map(function (w) { return w.cloneNode(true); }) };\n\n    \/* the homepage script's own word split, byte for byte, so a swapped title paints\n       word by word exactly like the ones that were there on load *\/\n    var probe = document.createElement('div');\n    function splitWords(h) {\n      h.innerHTML = h.innerHTML.split(\/<br\\s*\\\/?>\/i).map(function (seg) { probe.innerHTML = seg; return probe.textContent.split(\/(\\s+)\/).map(function (ch) { if (ch.trim() === '') return ch; return ch.split(\/(?<=-)\/).map(function (p) { return '<span class=\"w\">' + p + '<\/span>'; }).join(''); }).join(''); }).join('<br>');\n    }\n    \/* the testimonial's word list is captured once by the homepage script and goes\n       stale after a swap; this mirrors its formula for the words only *\/\n    var quoteWords = null;\n    function quoteUpdate() {\n      var pin = qs('.cy-hp-qregion'), sticky = qs('.cy-hp-qsticky');\n      if (!pin || !sticky || !quoteWords) return;\n      var r = pin.getBoundingClientRect(), vh = window.innerHeight, sc = r.height - vh, p = sc > 0 ? Math.min(1, Math.max(0, -r.top \/ sc)) : 1;\n      if (getComputedStyle(sticky).position !== 'sticky' || reduce) p = 1;\n      var lp = Math.min(1, Math.max(0, (p - 0.15) \/ 0.40));\n      var cut = lp > 0 ? Math.max(1, Math.round(lp * quoteWords.length)) : 0;\n      quoteWords.forEach(function (w, i) { w.style.opacity = i < cut ? '1' : ''; });\n    }\n    window.addEventListener('scroll', quoteUpdate, { passive: true });\n    window.addEventListener('resize', quoteUpdate);\n\n    function setCurrent(k) {\n      if (!pill) return;\n      Object.keys(KNOBS).forEach(function (p) { pill.classList.remove('cy-pp-me-' + p); });\n      pill.classList.add('cy-pp-me-' + k);\n      qsa('.cy-pp-seg', pill).forEach(function (s) { s.classList.toggle('is-current', s.classList.contains('cy-pp-seg-' + k)); });\n      var seg = qs('.cy-pp-seg-' + k + ' .elementor-button-text', pill), name = qs('.cy-pp-cur-name p', pill);\n      if (seg && name) name.textContent = seg.textContent.trim();\n    }\n\n    \/* widgets are paired by their cy-hp-* class key, nth with nth \u2014 the same\n       class#index addressing the four pages were built with \u2014 so a widget she adds\n       or re-classes on ONE page only excludes itself; everything else still swaps.\n       Below 90% pairing the pages are no longer the same page: plain navigation. *\/\n    function pair(cur, target) {\n      var pool = {};\n      target.widgets.forEach(function (w) { var key = sigOne(w); (pool[key] = pool[key] || []).push(w); });\n      var pairs = [], used = {};\n      cur.forEach(function (w) {\n        var key = sigOne(w), list = pool[key] || [], n = used[key] || 0;\n        if (n < list.length) { pairs.push([w, list[n]]); used[key] = n + 1; }\n      });\n      return pairs;\n    }\n    function apply(k, target) {\n      var t0 = (window.performance && performance.now) ? performance.now() : 0;\n      var cur = widgets(document);\n      if (!target || !target.widgets.length) return false;\n      var pairs = pair(cur, target);\n      if (pairs.length < cur.length * 0.9) return false;\n      \/* the first block under the top edge keeps its offset, whatever the copy above or\n         inside its band does to the heights. Anchoring on the band's own top was not\n         enough: copy inside the band above the reading point reflowed and the reader\n         drifted 107px (measured 2026-09-21). *\/\n      var anchor = null;\n      cur.some(function (w) { if (w.getBoundingClientRect().bottom > 24) { anchor = w; return true; } return false; });\n      var aTop = anchor ? anchor.getBoundingClientRect().top : 0;\n\n      var changed = [];\n      pairs.forEach(function (pr) {\n        var w = pr[0], t = pr[1];\n        var a1 = w.querySelector('a'), a2 = t.querySelector('a');\n        var hrefDiff = a1 && a2 && a1.getAttribute('href') !== a2.getAttribute('href');\n        if (norm(w.textContent) === norm(t.textContent) && !hrefDiff) return;\n        var h = w.querySelector('.elementor-heading-title'), th = t.querySelector('.elementor-heading-title');\n        if (h && th) {\n          h.innerHTML = th.innerHTML;\n          if (w.classList.contains('cy-hp-qtext')) { splitWords(h); quoteWords = qsa('.w', h); }\n          else if (w.classList.contains('cy-hp-sc') && !reduce) splitWords(h);\n        } else {\n          var bt = w.querySelector('.elementor-button-text'), tbt = t.querySelector('.elementor-button-text');\n          if (bt && tbt) {\n            bt.innerHTML = tbt.innerHTML;\n            var a = w.querySelector('a.elementor-button'), ta = t.querySelector('a.elementor-button');\n            if (a && ta && ta.getAttribute('href')) a.setAttribute('href', ta.getAttribute('href'));\n          } else {\n            var c = w.querySelector('.elementor-widget-container'), tc = t.querySelector('.elementor-widget-container');\n            if (c && tc) c.innerHTML = tc.innerHTML; else w.innerHTML = t.innerHTML;\n          }\n        }\n        w.classList.remove('cy-pp-swapped');\n        changed.push(w);\n      });\n      \/* one animation restart for all of them on the next frame \u2014 restarting each one with a\n         forced layout cost ~1s for 75 widgets (measured 2026-09-21); the swap must be instant *\/\n      if (!reduce && changed.length) {\n        requestAnimationFrame(function () { changed.forEach(function (w) { w.classList.add('cy-pp-swapped'); }); });\n      }\n      window.__cyPPLastSwap = { changed: changed.length, ms: 0 };\n\n      var kn = KNOBS[k];\n      if (kn) { el.style.setProperty('--cy-pp', kn.pp); el.style.setProperty('--cy-pp-corner', kn.corner); el.style.setProperty('--cy-glow', kn.glow); }\n      if (target.title) document.title = target.title;\n      try { history.replaceState(null, '', URLS[k]); } catch (e) {}\n      ME = k; window.cyPP.me = k; write(k);\n      setCurrent(k);\n\n      if (anchor) {\n        var d = anchor.getBoundingClientRect().top - aTop;\n        if (Math.abs(d) > 0.5) {\n          var sb = el.style.scrollBehavior; el.style.scrollBehavior = 'auto';\n          window.scrollBy(0, d);\n          el.style.scrollBehavior = sb;\n        }\n      }\n      if (window.__cyHpPaint) { try { window.__cyHpPaint(); } catch (e) {} }\n      quoteUpdate();\n      window.dispatchEvent(new Event('scroll'));\n      if (t0) window.__cyPPLastSwap.ms = Math.round(performance.now() - t0);\n      return true;\n    }\n    function nav(k) { write(k); window.location.href = URLS[k]; }\n    function loading(k, on) {\n      var seg = pill && qs('.cy-pp-seg-' + k, pill);\n      if (seg) seg.classList.toggle('is-loading', !!on);\n    }\n    \/* swap when the page is here; when it is still on its way the clicked segment\n       pulses and the swap runs the moment it lands; navigate only when it never does *\/\n    function go(k) {\n      if (k === ME || !URLS[k]) return;\n      if (cache[k]) { if (!apply(k, cache[k])) nav(k); return; }\n      var done = false;\n      loading(k, true);\n      var timer = setTimeout(function () { if (!done) { done = true; loading(k, false); nav(k); } }, 8000);\n      prefetch(k).then(function (t) {\n        if (done) return; done = true; clearTimeout(timer); loading(k, false);\n        if (!apply(k, t)) nav(k);\n      });\n    }\n\n    \/* ---- the chooser ---- *\/\n    if (root) {\n      \/* after 6s of no decision the dismiss control reveals itself \u2014 the same state as\n         :hover, no pointer needed (the wireframe's .hint). Cleared on close so it cannot\n         fire into a closed chooser; dropped the moment the pointer reaches the control, so\n         moving away returns it to the plain \u00d7 rather than snapping back to the arrow. *\/\n      var x = qs('.cy-pp-dismiss a, .cy-pp-dismiss button', root);\n      var xw = x ? (x.closest('.cy-pp-dismiss') || x) : null, hintT = null;\n      var hintOff = function () { clearTimeout(hintT); if (xw) xw.classList.remove('hint'); };\n      if (xw) xw.addEventListener('mouseenter', hintOff);\n      var close = function (k) {\n        write(k || 'general');\n        hintOff();\n        root.classList.remove('is-open');\n        el.classList.remove('cy-pp-locked');\n        setTimeout(revealPill, 450);\n      };\n      qsa('.cy-pp-card', root).forEach(function (c) {\n        var k = (c.className.match(\/cy-pp-card-([a-z]+)\/) || [])[1];\n        c.addEventListener('click', function (e) {\n          if (!k || !URLS[k]) return;\n          e.preventDefault();\n          close(k);\n          go(k);\n        });\n      });\n      if (x) x.addEventListener('click', function (e) { e.preventDefault(); close('general'); });\n      var scrim = qs('.cy-pp-scrim', root);\n      if (scrim) scrim.addEventListener('click', function () { close('general'); });\n      document.addEventListener('keydown', function (e) {\n        if (e.key === 'Escape' && root.classList.contains('is-open')) close('general');\n      });\n\n      if (ask || (read() === null && !optedOut)) {\n        root.classList.add('is-open');\n        el.classList.add('cy-pp-locked');\n        hintOff();\n        hintT = setTimeout(function () { if (xw && root.classList.contains('is-open')) xw.classList.add('hint'); }, 6000);\n        var t = qs('.cy-pp-title', root);\n        if (t) { t.setAttribute('tabindex', '-1'); t.focus({ preventScroll: true }); }\n        prefetchAll();                       \/* a card click should never have to wait *\/\n      } else {\n        setTimeout(revealPill, 400);\n      }\n    } else {\n      setTimeout(revealPill, 400);\n    }\n\n    if (!pill) return;\n    setTimeout(prefetchAll, 800);              \/* warm the other three as soon as the page is parsed *\/\n    window.addEventListener('load', prefetchAll);\n\n    \/* ---- the pill: the wireframe's .ppill, state for state ----\n       Which page this is decides the dot colour (cy-pp-me-*) and which segment is lit.\n       No .has-general: on the General page too, 04 waits for the 3s hover (her call). *\/\n    setCurrent(ME);                          \/* dot colour, lit segment and the name, from this page's persona *\/\n\n    var hover = false, idleT = null, moreT = null, openY = 0;\n    var canHover = window.matchMedia && window.matchMedia('(hover:hover) and (pointer:fine)').matches;\n\n    function isOpen() { return pill.classList.contains('is-open'); }\n    function open() {\n      pill.classList.add('is-open');\n      pill.setAttribute('aria-expanded', 'true');\n      openY = window.scrollY;\n      resetIdle();\n      prefetchAll();                         \/* the other three pages, before any click *\/\n    }\n    \/* while the pointer is on the pill NOTHING may collapse it \u2014 not the 5s idle\n       timer, not the scroll threshold, not an outside click. Only leaving does. *\/\n    function collapse() { if (hover) return; forceCollapse(); }\n    function forceCollapse() {\n      pill.classList.remove('is-open');\n      pill.classList.remove('more');\n      pill.setAttribute('aria-expanded', 'false');\n      clearTimeout(idleT); clearTimeout(moreT);\n    }\n    function resetIdle() { clearTimeout(idleT); idleT = setTimeout(collapse, 5000); }\n\n    if (canHover) {\n      pill.addEventListener('mouseenter', function () {\n        hover = true; clearTimeout(idleT); open();\n        \/* the fourth tab waits 3s of continuous hover \u2014 long enough that someone who\n           opened the pill just to switch persona never sees a new option appear\n           under their pointer. *\/\n        clearTimeout(moreT);\n        moreT = setTimeout(function () { pill.classList.add('more'); }, 3000);\n      });\n      pill.addEventListener('mouseleave', function () { hover = false; forceCollapse(); });\n    }\n    pill.addEventListener('touchstart', function () { prefetchAll(); }, { passive: true });\n\n    var cur = qs('.cy-pp-cur', pill);\n    if (cur) {\n      cur.setAttribute('role', 'button');\n      cur.setAttribute('tabindex', '0');\n      var toggle = function (e) {\n        e.preventDefault(); e.stopPropagation();\n        if (isOpen()) forceCollapse(); else open();\n      };\n      cur.addEventListener('click', toggle);\n      cur.addEventListener('keydown', function (e) {\n        if (e.key === 'Enter' || e.key === ' ') toggle(e);\n      });\n      cur.addEventListener('focus', prefetchAll);\n    }\n    qsa('.cy-pp-seg a', pill).forEach(function (a) {\n      a.addEventListener('click', function (e) {\n        var seg = a.closest('.cy-pp-seg');\n        var k = seg && (seg.className.match(\/cy-pp-seg-([a-z]+)\/) || [])[1];\n        if (!k || !URLS[k]) return;          \/* an unknown segment stays an ordinary link *\/\n        e.preventDefault();\n        go(k);\n        if (canHover) resetIdle(); else forceCollapse();\n      });\n    });\n    document.addEventListener('click', function (e) {\n      if (isOpen() && !pill.contains(e.target)) collapse();\n    });\n    window.addEventListener('scroll', function () {\n      if (isOpen() && Math.abs(window.scrollY - openY) > 260) collapse();\n    }, { passive: true });\n    document.addEventListener('keydown', function (e) {\n      if (e.key === 'Escape' && isOpen()) forceCollapse();\n    });\n  });\n})();\n\n<\/script><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-26057fb e-con-full cy-pp-modal-root e-no-lazyload e-flex e-con e-parent\" data-id=\"26057fb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-716215c e-con-full cy-pp-scrim e-flex e-con e-child\" data-id=\"716215c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0968c3d cy-pp-modal e-flex e-con-boxed e-con e-child\" data-id=\"0968c3d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b6aa2b9 cy-pp-dismiss elementor-widget elementor-widget-button\" data-id=\"b6aa2b9\" 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=\"#cy-pp-dismiss\">\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\">Vous h\u00e9sitez&nbsp;? <b>Tout voir<\/b><\/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-2c606d9 cy-pp-eyebrow elementor-widget elementor-widget-text-editor\" data-id=\"2c606d9\" 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>Avant de commencer<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e41d186 cy-pp-title elementor-widget elementor-widget-heading\" data-id=\"e41d186\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">De quoi avez-vous besoin aujourd\u2019hui&nbsp;?<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-df65514 cy-pp-sub elementor-widget elementor-widget-text-editor\" data-id=\"df65514\" 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>Choisissez la page d\u2019accueil Cycloid qui correspond \u00e0 votre besoin, ou fermez cette fen\u00eatre pour une vue d\u2019ensemble. Vous pouvez changer de page d\u2019accueil \u00e0 tout moment, en un clic.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-85a1509 e-con-full cy-pp-cards e-flex e-con e-child\" data-id=\"85a1509\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8405704 e-con-full cy-pp-card cy-pp-card-platform e-flex e-con e-child\" data-id=\"8405704\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e3f1f96 cy-pp-no elementor-widget elementor-widget-text-editor\" data-id=\"e3f1f96\" 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>01<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d415ac0 cy-pp-ic elementor-widget elementor-widget-text-editor\" data-id=\"d415ac0\" 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>\u25a6<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-acc1661 cy-pp-role elementor-widget elementor-widget-heading\" data-id=\"acc1661\" 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\"><a href=\"\/fr\/accueil-plateforme-devops\/\">Plateforme &amp; DevOps<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-04e75c4 cy-pp-say elementor-widget elementor-widget-text-editor\" data-id=\"04e75c4\" 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>J\u2019ai besoin de contr\u00f4le<\/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-c99e407 e-con-full cy-pp-card cy-pp-card-developers e-flex e-con e-child\" data-id=\"c99e407\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-263ecf4 cy-pp-no elementor-widget elementor-widget-text-editor\" data-id=\"263ecf4\" 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>02<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-996281e cy-pp-ic elementor-widget elementor-widget-text-editor\" data-id=\"996281e\" 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>\u2442<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b3a8ef8 cy-pp-role elementor-widget elementor-widget-heading\" data-id=\"b3a8ef8\" 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\"><a href=\"\/fr\/accueil-developpeurs\/\">D\u00e9veloppeurs<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-59fa313 cy-pp-say elementor-widget elementor-widget-text-editor\" data-id=\"59fa313\" 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>Je veux de la libert\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-094f5e5 e-con-full cy-pp-card cy-pp-card-executives e-flex e-con e-child\" data-id=\"094f5e5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e9c5fca cy-pp-no elementor-widget elementor-widget-text-editor\" data-id=\"e9c5fca\" 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>03<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-cd25cc2 cy-pp-ic elementor-widget elementor-widget-text-editor\" data-id=\"cd25cc2\" 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>\u25ce<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0c12e68 cy-pp-role elementor-widget elementor-widget-heading\" data-id=\"0c12e68\" 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\"><a href=\"\/fr\/accueil-dirigeants\/\">Dirigeants<\/a><\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b93dea7 cy-pp-say elementor-widget elementor-widget-text-editor\" data-id=\"b93dea7\" 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>J\u2019exige de la visibilit\u00e9<\/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 class=\"elementor-element elementor-element-accaede cy-pp-aside elementor-widget elementor-widget-text-editor\" data-id=\"accaede\" 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 venez pour l\u2019IA&nbsp;?<a href=\"\/solutions\/ai-cmp\/\"> D\u00e9couvrez comment les agents construisent sur Cycloid \u2197<\/a><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8dcf5a1 e-con-full cy-pp-pill-root e-no-lazyload e-flex e-con e-parent\" data-id=\"8dcf5a1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-7780313 e-con-full cy-pp-pill e-flex e-con e-child\" data-id=\"7780313\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dd643bb cy-pp-lead elementor-widget elementor-widget-text-editor\" data-id=\"dd643bb\" 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 consultez la vue<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-918d17e e-con-full cy-pp-cur e-flex e-con e-child\" data-id=\"918d17e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-d31c993 cy-pp-cur-name elementor-widget elementor-widget-text-editor\" data-id=\"d31c993\" 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>G\u00e9n\u00e9rale<\/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-377f1ea e-con-full cy-pp-segwrap e-flex e-con e-child\" data-id=\"377f1ea\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6eb75d5 e-con-full cy-pp-seg-row e-flex e-con e-child\" data-id=\"6eb75d5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2e3567d cy-pp-seg cy-pp-s1 cy-pp-seg-platform elementor-widget elementor-widget-button\" data-id=\"2e3567d\" 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=\"\/fr\/accueil-plateforme-devops\/\">\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\">Plateforme &amp; DevOps<\/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-34d6b42 cy-pp-seg cy-pp-s2 cy-pp-seg-developers elementor-widget elementor-widget-button\" data-id=\"34d6b42\" 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=\"\/fr\/accueil-developpeurs\/\">\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\">D\u00e9veloppeurs<\/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-4741021 cy-pp-seg cy-pp-s3 cy-pp-seg-executives elementor-widget elementor-widget-button\" data-id=\"4741021\" 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=\"\/fr\/accueil-dirigeants\/\">\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\">Dirigeants<\/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-5d1883f cy-pp-seg cy-pp-s4 cy-pp-seg-general elementor-widget elementor-widget-button\" data-id=\"5d1883f\" 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=\"\/fr\/\">\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\">Vue g\u00e9n\u00e9rale<\/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\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-356a58e cy-hp cy-hp-hero e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"356a58e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3536e2f cy-hp-h1 elementor-widget elementor-widget-heading\" data-id=\"3536e2f\" 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\">Concr\u00e9tisez votre strat\u00e9gie de plateforme*, pas un outil de plus<\/h1>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-75cac7e cy-hp-hsub elementor-widget elementor-widget-text-editor\" data-id=\"75cac7e\" 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 adoption que vous pouvez mesurer, une gouvernance qui tient devant un auditeur, au service de votre strat\u00e9gie IA ou de souverainet\u00e9. Auto-h\u00e9berg\u00e9, air-gapped ou cloud souverain.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b9a175b cy-hp-demolink elementor-widget elementor-widget-button\" data-id=\"b9a175b\" 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=\"\/fr\/comparaisons\/\">\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\">Voir le calcul build vs buy \u2197<\/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<div class=\"elementor-element elementor-element-36270d2 e-con-full cy-hp-logoframe cy-hp-logoreveal e-flex e-con e-child\" data-id=\"36270d2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1bb2af5 e-con-full cy-hp-frtop e-flex e-con e-child\" data-id=\"1bb2af5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-5b9c8f5 cy-hp-frlabel elementor-widget elementor-widget-text-editor\" data-id=\"5b9c8f5\" 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>En production chez<\/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-51dd8a4 e-con-full cy-hp-logorow e-flex e-con e-child\" data-id=\"51dd8a4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0c5d988 cy-hp-logo cy-hp-logo-ec elementor-widget__width-auto elementor-widget-tablet__width-auto elementor-widget-mobile__width-auto elementor-widget elementor-widget-image\" data-id=\"0c5d988\" 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=\"168\" height=\"64\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cs-european-commission.png\" class=\"attachment-full size-full wp-image-28148\" alt=\"Logo de la Commission europ\u00e9enne\" \/>\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-de0bb7f cy-hp-logo cy-hp-logo-cma elementor-widget__width-auto elementor-widget-tablet__width-auto elementor-widget-mobile__width-auto elementor-widget elementor-widget-image\" data-id=\"de0bb7f\" 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=\"102\" height=\"62\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/12\/CMA_CGM_logo.webp\" class=\"attachment-full size-full wp-image-21607\" alt=\"logo of CMA CGM\" \/>\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-8419614 cy-hp-logo cy-hp-logo-siemens elementor-widget__width-auto elementor-widget-tablet__width-auto elementor-widget-mobile__width-auto elementor-widget elementor-widget-image\" data-id=\"8419614\" 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 fetchpriority=\"high\" decoding=\"async\" width=\"684\" height=\"163\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/03\/siemens.svg\" class=\"attachment-full size-full wp-image-7879\" alt=\"Logo Siemens\" \/>\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-a7ef870 cy-hp-logo cy-hp-logo-capgemini elementor-widget__width-auto elementor-widget-tablet__width-auto elementor-widget-mobile__width-auto elementor-widget elementor-widget-image\" data-id=\"a7ef870\" 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\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/06\/Capgemini_201x_logo.svg\" class=\"attachment-full size-full wp-image-18274\" alt=\"Logo Capgemini\" \/>\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-42744c7 cy-hp-logo cy-hp-logo-ntt elementor-widget__width-auto elementor-widget-tablet__width-auto elementor-widget-mobile__width-auto elementor-widget elementor-widget-image\" data-id=\"42744c7\" 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=\"171\" height=\"47\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/12\/GlobalLogo_NTTDATA_FutureBlue_RGB.webp\" class=\"attachment-full size-full wp-image-21604\" alt=\"logo of NTT Data\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-11c3df6 cy-hp-code elementor-widget elementor-widget-shortcode\" data-id=\"11c3df6\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><script>\n\/* Cycloid homepage (V2) \u2014 page script, carried by the ONE shortcode widget (script only; CSS lives in the\n   document's Custom CSS). Every routine fails open: without JS the page is static and complete.\n   The widget rides at the end of the hero root and the targets live in later roots, so it runs at\n   DOMContentLoaded (or at once if the document is already parsed). Nothing runs in the editor canvas. *\/\nfunction cyHomeInit(){\n  var qs=function(s,r){return (r||document).querySelector(s)}, qsa=function(s,r){return Array.prototype.slice.call((r||document).querySelectorAll(s))};\n  if(document.body.classList.contains('elementor-editor-active')) return;\n  var reduce=window.matchMedia&&window.matchMedia('(prefers-reduced-motion: reduce)').matches;\n\n  \/* scroll reveals \u2014 containers carrying .cy-hp-reveal get .in as they enter (200px early) *\/\n  (function(){\n    var targets=qsa('.cy-hp-reveal');\n    if(!targets.length) return;\n    if(!('IntersectionObserver' in window)||reduce){ targets.forEach(function(el){el.classList.add('in')}); return; }\n    var io=new IntersectionObserver(function(entries){ entries.forEach(function(e){ if(e.isIntersecting){ e.target.classList.add('in'); io.unobserve(e.target); } }); },{threshold:0,rootMargin:'0px 0px 200px 0px'});\n    targets.forEach(function(el){io.observe(el)});\n  })();\n\n  \/* hero logo frame \u2014 rises on the first scroll *\/\n  (function(){\n    var f=qs('.cy-hp-logoreveal'); if(!f) return;\n    if(reduce){ f.classList.add('in'); return; }\n    var done=false; function reveal(){ if(done) return; done=true; f.classList.add('in'); window.removeEventListener('scroll',reveal); }\n    window.addEventListener('scroll',reveal,{passive:true});\n    setTimeout(function(){ if(window.scrollY>10) reveal(); },800);\n  })();\n\n  \/* word paint \u2014 titles carrying .cy-hp-sc rest at ghost opacity .16 and paint word by word,\n     bottom-anchored: complete when the title's bottom reaches the viewport's middle *\/\n  (function(){\n    var titles=qsa('.cy-hp-sc .elementor-heading-title'); if(!titles.length) return;\n    if(reduce){ return; }\n    var probe=document.createElement('div');\n    titles.forEach(function(el){\n      el.innerHTML=el.innerHTML.split(\/<br\\s*\\\/?>\/i).map(function(seg){ probe.innerHTML=seg; return probe.textContent.split(\/(\\s+)\/).map(function(ch){ if(ch.trim()==='') return ch; return ch.split(\/(?<=-)\/).map(function(p){return '<span class=\"w\">'+p+'<\/span>'}).join(''); }).join(''); }).join('<br>');\n    });\n    var ticking=false;\n    function paint(){\n      var line=window.innerHeight*0.5, band=window.innerHeight*0.5;\n      titles.forEach(function(el){\n        var words=qsa('.w',el), r=el.getBoundingClientRect(), f=Math.min(1,Math.max(0,(line+band-r.bottom)\/band));\n        var cut=f>0?Math.max(1,Math.round(f*words.length)):0;\n        words.forEach(function(w,i){ w.classList.toggle('on',i<cut); });\n      });\n      ticking=false;\n    }\n    window.addEventListener('scroll',function(){ if(!ticking){ requestAnimationFrame(paint); ticking=true; } },{passive:true});\n    window.addEventListener('resize',paint); paint();\n    window.__cyHpPaint=paint;\n  })();\n\n  \/* 12 \u00b7 testimonial \u2014 pinned for 2.3 viewports, quote reveals word by word, then attribution + link *\/\n  (function(){\n    var pin=qs('.cy-hp-qregion'), sticky=qs('.cy-hp-qsticky'), mark=qs('.cy-hp-qmark'), attr=qs('.cy-hp-qattr'), cta=qs('.cy-hp-testi .cy-hp-fine'), q=qs('.cy-hp-qtext .elementor-heading-title')||qs('.cy-hp-qtext');\n    if(!pin||!sticky||!mark||!attr||!q) return;\n    try{\n      var probe=document.createElement('div');\n      q.innerHTML=q.innerHTML.split(\/<br\\s*\\\/?>\/i).map(function(seg){ probe.innerHTML=seg; return probe.textContent.split(\/(\\s+)\/).map(function(ch){ if(ch.trim()==='') return ch; return ch.split(\/(?<=-)\/).map(function(p){return '<span class=\"w\">'+p+'<\/span>'}).join(''); }).join(''); }).join('<br>');\n      var words=qsa('.w',q);\n      function update(){\n        var r=pin.getBoundingClientRect(), vh=window.innerHeight, sc=r.height-vh, p=sc>0?Math.min(1,Math.max(0,-r.top\/sc)):1;\n        if(getComputedStyle(sticky).position!=='sticky'||reduce) p=1;\n        var mp=Math.min(1,Math.max(0,(p-0.08)\/0.10)), lp=Math.min(1,Math.max(0,(p-0.15)\/0.40)), ap=Math.min(1,Math.max(0,(p-0.55)\/0.10)), cp=Math.min(1,Math.max(0,(p-0.65)\/0.25));\n        mark.style.opacity=mp; mark.style.transform='translateY('+((1-mp)*16)+'px)';\n        attr.style.opacity=ap; attr.style.transform='translateY('+((1-ap)*16)+'px)';\n        if(cta){ cta.style.opacity=cp; cta.style.transform='translateY('+((1-cp)*16)+'px)'; }\n        var cut=lp>0?Math.max(1,Math.round(lp*words.length)):0;\n        words.forEach(function(w,i){ w.style.opacity=i<cut?'1':''; });\n      }\n      window.addEventListener('scroll',update,{passive:true}); window.addEventListener('resize',update); update();\n      window.__cyHpQuote=update;\n    }catch(e){ [mark,attr,cta].forEach(function(el){ if(el){el.style.opacity=1;el.style.transform='none'} }); qsa('.w',q).forEach(function(w){w.style.opacity=1}); }\n  })();\n\n  \/* 11 \u00b7 deployment table \u2014 the gradient border follows the pointer *\/\n  (function(){\n    var m=qs('.cy-hp-deptable'); if(!m||reduce) return;\n    function aim(e){ var r=m.getBoundingClientRect(), cx=r.left+r.width\/2, cy=r.top+r.height\/2; var deg=(Math.atan2(e.clientY-cy,e.clientX-cx)*180\/Math.PI+90+360)%360; m.style.setProperty('--sweep-ang',deg.toFixed(1)+'deg'); }\n    window.addEventListener('pointermove',aim,{passive:true});\n    document.addEventListener('pointerleave',function(){ m.style.setProperty('--sweep-ang','160deg'); });\n  })();\n\n  \/* 07 \u00b7 build-vs-buy banner \u2014 the whole banner is the link *\/\n  (function(){\n    var b=qs('.cy-hp-banner'), a=qs('.cy-hp-banner a.elementor-button'); if(!b||!a) return;\n    b.addEventListener('click',function(e){ if(e.target.closest('a')) return; window.location.href=a.getAttribute('href'); });\n  })();\n}\nif(document.readyState==='loading'){document.addEventListener('DOMContentLoaded',cyHomeInit)}else{cyHomeInit()}\n\n<\/script><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-13cced8 cy-hp cy-hp-trio e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"13cced8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-a57ac64 e-con-full cy-hp-xf cy-hp-vframe e-flex e-con e-child\" data-id=\"a57ac64\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-59404c9 e-con-full cy-hp-xf-in e-flex e-con e-child\" data-id=\"59404c9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-cb3901e e-con-full cy-hp-hatch e-flex e-con e-child\" data-id=\"cb3901e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-02af0d2 e-con-full cy-hp-v3top e-flex e-con e-child\" data-id=\"02af0d2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-430bdbe e-con-full cy-hp-v3col e-flex e-con e-child\" data-id=\"430bdbe\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a8350af cy-hp-h2 cy-hp-sc cy-hp-v3h2 elementor-widget elementor-widget-heading\" data-id=\"a8350af\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Personne ne peut vous dire si \u00e7a fonctionne<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-64f5066 e-con-full cy-hp-v3col e-flex e-con e-child\" data-id=\"64f5066\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-38d6ca9 cy-hp-v3p elementor-widget elementor-widget-text-editor\" data-id=\"38d6ca9\" 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 avez valid\u00e9 la plateforme. R\u00e9pondez maintenant \u00e0 trois questions&nbsp;: combien d\u2019\u00e9quipes l\u2019utilisent&nbsp;? Combien fait-elle \u00e9conomiser&nbsp;? Combien co\u00fbte-t-elle \u00e0 exploiter&nbsp;?<\/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-0d139bb e-con-full cy-hp-v3col e-flex e-con e-child\" data-id=\"0d139bb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-295cfef cy-hp-v3p elementor-widget elementor-widget-text-editor\" data-id=\"295cfef\" 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>C\u2019est un d\u00e9ficit de mesure. Sur 518 \u00e9quipes plateforme interrog\u00e9es, 29,6&nbsp;% ne mesurent pas leur propre r\u00e9ussite, et 47&nbsp;% font tourner la plateforme avec &lt;1&nbsp;M$ par an.<\/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-3369f57 e-con-full cy-hp-v3col e-flex e-con e-child\" data-id=\"3369f57\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6e83af0 cy-hp-v3p elementor-widget elementor-widget-text-editor\" data-id=\"6e83af0\" 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>Selon DORA, 90\u00a0% des organisations ont un IDP et 76\u00a0% une \u00e9quipe. En avoir un est banal, prouver qu\u2019il marche ne l\u2019est pas. 63\u00a0% des devs jugent que la direction ne voit pas le probl\u00e8me, en hausse de 19%.<\/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-7a92120 e-con-full cy-hp-v3stats e-flex e-con e-child\" data-id=\"7a92120\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-915702c e-con-full cy-hp-stat e-flex e-con e-child\" data-id=\"915702c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-157ec99 cy-hp-v3num elementor-widget elementor-widget-text-editor\" data-id=\"157ec99\" 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>90&nbsp;%<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-36a895b cy-hp-v3label elementor-widget elementor-widget-text-editor\" data-id=\"36a895b\" 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>Ont d\u00e9j\u00e0 une plateforme<\/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-74fda9c e-con-full cy-hp-stat e-flex e-con e-child\" data-id=\"74fda9c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-22c90b8 cy-hp-v3num elementor-widget elementor-widget-text-editor\" data-id=\"22c90b8\" 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>76&nbsp;%<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0a7a973 cy-hp-v3label elementor-widget elementor-widget-text-editor\" data-id=\"0a7a973\" 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>Ont une \u00e9quipe plateforme<\/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-254f1e0 e-con-full cy-hp-stat e-flex e-con e-child\" data-id=\"254f1e0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f4e220b cy-hp-v3num elementor-widget elementor-widget-text-editor\" data-id=\"f4e220b\" 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>29,6&nbsp;%<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d34b202 cy-hp-v3label elementor-widget elementor-widget-text-editor\" data-id=\"d34b202\" 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>Ne mesurent pas leur r\u00e9ussite<\/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-e255fc0 e-con-full cy-hp-stat e-flex e-con e-child\" data-id=\"e255fc0\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4027144 cy-hp-v3num elementor-widget elementor-widget-text-editor\" data-id=\"4027144\" 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>47,4&nbsp;%<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5cdaf3d cy-hp-v3label elementor-widget elementor-widget-text-editor\" data-id=\"5cdaf3d\" 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>Tournent \u00e0 moins d\u20191M$ par an<\/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-fc9d317 e-con-full cy-hp-hatch e-flex e-con e-child\" data-id=\"fc9d317\" data-element_type=\"container\" data-e-type=\"container\">\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-dc9e920 cy-hp cy-hp-pillars e-flex e-con-boxed e-con e-parent\" data-id=\"dc9e920\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-b7193fb e-con-full cy-hp-plhead e-flex e-con e-child\" data-id=\"b7193fb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e2dff99 cy-hp-eyebrow cy-hp-plkick elementor-widget elementor-widget-text-editor\" data-id=\"e2dff99\" 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>Solutions<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0bb87b0 cy-hp-h2 cy-hp-sc cy-hp-ondark cy-hp-plh2 elementor-widget elementor-widget-heading\" data-id=\"0bb87b0\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Trois r\u00e9ponses \u00e0 remonter \u00e0 la direction<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-573afc4 cy-hp-plsub elementor-widget elementor-widget-text-editor\" data-id=\"573afc4\" 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>Ce qui tourne, et qui en est responsable. Si c\u2019est ma\u00eetris\u00e9. \u00c0 quelle vitesse les \u00e9quipes obtiennent ce dont elles ont besoin.<\/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-cf40980 e-con-full cy-hp-plrow e-flex e-con e-child\" data-id=\"cf40980\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1b2a61f e-con-full cy-hp-plcol e-flex e-con e-child\" data-id=\"1b2a61f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-56747f5 e-con-full cy-hp-plnode e-flex e-con e-child\" data-id=\"56747f5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-39f9742 cy-hp-pln elementor-widget elementor-widget-text-editor\" data-id=\"39f9742\" 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>01<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-136c320 cy-hp-plt elementor-widget elementor-widget-heading\" data-id=\"136c320\" 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\">Portail &amp; visibilit\u00e9<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ed8608d cy-hp-pld elementor-widget elementor-widget-text-editor\" data-id=\"ed8608d\" 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>Les analyses d\u2019adoption et les tableaux de bord montrent qui utilise la plateforme et ce qu\u2019elle fait tourner.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dbd745c cy-hp-pllink elementor-widget elementor-widget-heading\" data-id=\"dbd745c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/www.cycloid.io\/solutions\/developer-portal\/\">Explorer le portail et la visibilit\u00e9 \u2192<\/a><\/p>\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-84fd53f e-con-full cy-hp-plcol e-flex e-con e-child\" data-id=\"84fd53f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c3c3934 e-con-full cy-hp-plnode e-flex e-con e-child\" data-id=\"c3c3934\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-44c2a66 cy-hp-pln elementor-widget elementor-widget-text-editor\" data-id=\"44c2a66\" 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>02<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5b67de1 cy-hp-plt elementor-widget elementor-widget-heading\" data-id=\"5b67de1\" 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\">Gouvernance &amp; plateforme<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4c2bbf7 cy-hp-pld elementor-widget elementor-widget-text-editor\" data-id=\"4c2bbf7\" 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>Auto-h\u00e9berg\u00e9, air-gapped ou souverain, avec les acc\u00e8s et l\u2019audit r\u00e9gl\u00e9s avant qu\u2019une ressource n\u2019existe.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fdbe422 cy-hp-pllink elementor-widget elementor-widget-heading\" data-id=\"fdbe422\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/www.cycloid.io\/solutions\/cloud-governance\/\">Explorer la plateforme de gouvernance cloud \u2192<\/a><\/p>\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-ee60c34 e-con-full cy-hp-plcol e-flex e-con e-child\" data-id=\"ee60c34\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d4b6eed e-con-full cy-hp-plnode e-flex e-con e-child\" data-id=\"d4b6eed\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7af1355 cy-hp-pln elementor-widget elementor-widget-text-editor\" data-id=\"7af1355\" 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>03<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-34dac90 cy-hp-plt elementor-widget elementor-widget-heading\" data-id=\"34dac90\" 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\">Libre-service<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a89b2ee cy-hp-pld elementor-widget elementor-widget-text-editor\" data-id=\"a89b2ee\" 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>Les \u00e9quipes obtiennent leurs environnements par des chemins approuv\u00e9s, et non par une file de tickets.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f59ef07 cy-hp-pllink elementor-widget elementor-widget-heading\" data-id=\"f59ef07\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/www.cycloid.io\/solutions\/infrastructure-automation\/\">Explorer l\u2019automatisation d\u2019infrastructure \u2192<\/a><\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0bce20b cy-hp cy-hp-dora e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"0bce20b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-6b0875f e-con-full cy-hp-doragrid e-flex e-con e-child\" data-id=\"6b0875f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d99c2ac e-con-full cy-hp-doraleft e-flex e-con e-child\" data-id=\"d99c2ac\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-66700f1 cy-hp-h2 cy-hp-dorah2 elementor-widget elementor-widget-heading\" data-id=\"66700f1\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Votre budget IA s\u2019ex\u00e9cute sur la plateforme<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7411a23 e-con-full cy-hp-quote e-flex e-con e-child\" data-id=\"7411a23\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9b19d84 cy-hp-quotep elementor-widget elementor-widget-text-editor\" data-id=\"9b19d84\" 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>Lorsque la qualit\u00e9 de la plateforme est \u00e9lev\u00e9e, l\u2019effet de l\u2019adoption de l\u2019IA sur la performance de l\u2019organisation devient fort et positif. \u00c0 l\u2019inverse, lorsque la qualit\u00e9 de la plateforme est faible, l\u2019effet de l\u2019adoption de l\u2019IA sur la performance de l\u2019organisation peut \u00eatre n\u00e9faste.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b95551d cy-hp-cite elementor-widget elementor-widget-text-editor\" data-id=\"b95551d\" 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>DORA, Platform engineering capability, janvier 2026<\/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-7b4b319 e-con-full cy-hp-doraright e-flex e-con e-child\" data-id=\"7b4b319\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-dcc2776 cy-hp-dorap elementor-widget elementor-widget-text-editor\" data-id=\"dcc2776\" 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>Tout ce que vous avez engag\u00e9 sur l\u2019IA cette ann\u00e9e s\u2019ex\u00e9cute sur la plateforme que vous avez d\u00e9j\u00e0. DORA est sans ambigu\u00eft\u00e9 sur ce que cela implique, et c\u2019est le constat qui m\u00e9rite de remonter \u00e0 la direction.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0bdbf40 cy-hp-dorap elementor-widget elementor-widget-text-editor\" data-id=\"0bdbf40\" 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>Flexera chiffre le gaspillage cloud \u00e0 29&nbsp;% en 2026, premi\u00e8re hausse en cinq ans, et l\u2019attribue aux charges de travail IA. La d\u00e9pense arrive, que la gouvernance suive ou non, et le directeur financier vous posera la question dans les deux cas.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ddb2307 cy-hp-dorap elementor-widget elementor-widget-text-editor\" data-id=\"ddb2307\" 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>Un seul enregistrement, pas quatre reconstitutions.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d0de168 cy-hp-dorap elementor-widget elementor-widget-text-editor\" data-id=\"d0de168\" 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><strong>Un agent obtient les acc\u00e8s de son propri\u00e9taire. Rien de plus.<\/strong><\/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 class=\"elementor-element elementor-element-86627bc elementor-widget__width-initial elementor-widget elementor-widget-html\" data-id=\"86627bc\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<div class=\"cy-wistia-facade\" data-video-id=\"4jhgzl24ep\" style=\"position:relative; cursor:pointer; width:100%; aspect-ratio:16\/9; background:#000; overflow:hidden;border-radius:2%;\">\n\n  <img decoding=\"async\"\n    src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-platform-demo-video-promotion-pipeline.webp\"\n    alt=\"Vid\u00e9o de d\u00e9monstration de la plateforme Cycloid : promotion d\u2019une version de Development \u00e0 Production\"\n    style=\"width:100%; height:100%; object-fit:cover; opacity:1; display:block;border-radius:2%;\">\n\n  <div class=\"cy-vf-veil\" aria-hidden=\"true\"><\/div>\n\n  <div style=\"position:absolute; inset:0; display:flex; align-items:center; justify-content:center;\">\n    <span class=\"cy-vf-play\"><span>Voir la d\u00e9mo<\/span><svg viewBox=\"0 0 448 512\" aria-hidden=\"true\"><path d=\"M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z\"\/><\/svg><\/span>\n  <\/div>\n\n  <script>\n  (function(){\n    var videoId = '4jhgzl24ep';\n    if (window['cyWistiaBound_' + videoId]) return;\n    window['cyWistiaBound_' + videoId] = true;\n    document.addEventListener('click', function(e){\n      var facade = e.target.closest && e.target.closest('[data-video-id=\"' + videoId + '\"]');\n      if (!facade || facade.getAttribute('data-playing')) return;\n      facade.setAttribute('data-playing', '1');\n      facade.style.cursor = 'default';\n      facade.innerHTML = '<div class=\"wistia_embed wistia_async_' + videoId + '\" style=\"height:100%;width:100%\">&nbsp;<\/div>';\n      window._wq = window._wq || [];\n      window._wq.push({ id: videoId, onReady: function(video) { video.play(); } });\n      if(!document.querySelector('script[src*=\"fast.wistia.com\/assets\/external\/E-v1\"]')){\n        var s = document.createElement('script');\n        s.src = 'https:\/\/fast.wistia.com\/assets\/external\/E-v1.js';\n        s.async = true;\n        document.head.appendChild(s);\n      }\n    });\n  })();\n  <\/script>\n\n<\/div>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-bb4790b e-con-full cy-hp-statsrow e-flex e-con e-child\" data-id=\"bb4790b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-35b884a e-con-full cy-hp-stat cy-hp-stat4 e-flex e-con e-child\" data-id=\"35b884a\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1b63006 cy-hp-statnum elementor-widget elementor-widget-text-editor\" data-id=\"1b63006\" 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>&lt;1&nbsp;h<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-38d133d cy-hp-statlab elementor-widget elementor-widget-text-editor\" data-id=\"38d133d\" 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>Par environnement chez Alchemy<\/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-59933e2 e-con-full cy-hp-stat cy-hp-stat4 e-flex e-con e-child\" data-id=\"59933e2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-290eadf cy-hp-statnum elementor-widget elementor-widget-text-editor\" data-id=\"290eadf\" 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>120 000+<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-dfb75ba cy-hp-statlab elementor-widget elementor-widget-text-editor\" data-id=\"dfb75ba\" 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>VM chez Orange Cloud<\/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-be81e8f e-con-full cy-hp-stat cy-hp-stat4 e-flex e-con e-child\" data-id=\"be81e8f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-88a7a8a cy-hp-statnum elementor-widget elementor-widget-text-editor\" data-id=\"88a7a8a\" 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>4 semaines<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-48c98f2 cy-hp-statlab elementor-widget elementor-widget-text-editor\" data-id=\"48c98f2\" 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>Jusqu\u2019en production chez CloudXcelerate<\/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-1014c20 e-con-full cy-hp-stat cy-hp-stat4 e-flex e-con e-child\" data-id=\"1014c20\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-527b697 cy-hp-statnum elementor-widget elementor-widget-text-editor\" data-id=\"527b697\" 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>10\/jour<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-39ec009 cy-hp-statlab elementor-widget elementor-widget-text-editor\" data-id=\"39ec009\" 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>D\u00e9ploiements chez Hotel Spider<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-aeca29b cy-hp cy-hp-manifesto e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"aeca29b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-bffdbff e-con-full cy-hp-mframe cy-hp-reveal e-flex e-con e-child\" data-id=\"bffdbff\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b3f6411 e-con-full cy-hp-mtop e-flex e-con e-child\" data-id=\"b3f6411\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-f6fe184 e-con-full cy-hp-mhead e-flex e-con e-child\" data-id=\"f6fe184\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cee484f cy-hp-eyebrow cy-hp-eyebrow-teal elementor-widget elementor-widget-text-editor\" data-id=\"cee484f\" 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>Sous le capot<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b8dd857 cy-hp-h2 cy-hp-sc cy-hp-ondark elementor-widget elementor-widget-heading\" data-id=\"b8dd857\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Aucun verrouillage \u00e0 croire sur parole<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-801531e cy-hp-mp elementor-widget elementor-widget-text-editor\" data-id=\"801531e\" 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>Chaque couche est document\u00e9e et rempla\u00e7able, et la strat\u00e9gie de sortie est \u00e9crite noir sur blanc. Trois de nos propres outils sont open source.<\/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-09a02f2 e-con-full cy-hp-btnrow e-flex e-con e-child\" data-id=\"09a02f2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7f3ee13 cy-hp-obtn cy-on-dark elementor-widget elementor-widget-button\" data-id=\"7f3ee13\" 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=\"#\">\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\">Voir l\u2019architecture<\/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 class=\"elementor-element elementor-element-df276d2 cy-hp-millu elementor-widget elementor-widget-image\" data-id=\"df276d2\" 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\" loading=\"lazy\" width=\"1024\" height=\"493\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1024x493.webp\" class=\"attachment-large size-large wp-image-34437\" alt=\"Vue d\u2019ensemble Cycloid d\u2019un environnement de production r\u00e9glement\u00e9 : ressources, \u00e9tat de sant\u00e9 par type, services d\u00e9ploy\u00e9s avec leur d\u00e9rive et leur statut de d\u00e9ploiement, responsables et blueprint.\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1024x493.webp 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-300x145.webp 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-768x370.webp 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1536x740.webp 1536w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production.webp 1887w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-0145f24 cy-hp cy-hp-bvb e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"0145f24\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-86693a6 e-con-full cy-hp-banner e-flex e-con e-child\" data-id=\"86693a6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6c92141 e-con-full cy-hp-bvbtxt e-flex e-con e-child\" data-id=\"6c92141\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0cd6048 cy-hp-eyebrow cy-hp-eyebrow-faintw elementor-widget elementor-widget-text-editor\" data-id=\"0cd6048\" 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>Build vs buy<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b0f136c cy-hp-h2 cy-hp-ondark cy-hp-bvbh2 elementor-widget elementor-widget-heading\" data-id=\"b0f136c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Ce que co\u00fbte vraiment de construire sa plateforme<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f7b0b38 cy-hp-bvbsub elementor-widget elementor-widget-text-editor\" data-id=\"f7b0b38\" 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>La comparaison compl\u00e8te, ligne par ligne, du d\u00e9lai de mise en production \u00e0 celui qui porte l\u2019astreinte.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b07954c cy-hp-btn elementor-widget elementor-widget-button\" data-id=\"b07954c\" 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=\"\/fr\/comparaisons\/\">\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\">Voir le comparatif complet<\/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-94d9463 e-con-full cy-hp-bvbhold e-flex e-con e-child\" data-id=\"94d9463\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-984fe04 e-con-full cy-hp-contable e-flex e-con e-child\" data-id=\"984fe04\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-e67b859 e-con-full cy-hp-colheads e-flex e-con e-child\" data-id=\"e67b859\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7a2771c cy-hp-colh elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"7a2771c\" 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>En interne<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e3bb14e cy-hp-colh-logo elementor-widget__width-initial elementor-widget elementor-widget-image\" data-id=\"e3bb14e\" 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\" loading=\"lazy\" width=\"300\" height=\"80\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-logo-300.webp\" class=\"attachment-full size-full wp-image-34423\" alt=\"Logo Cycloid\" \/>\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-4a17542 e-con-full cy-hp-conrow2 e-flex e-con e-child\" data-id=\"4a17542\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e18fcbb cy-hp-rowtitle elementor-widget elementor-widget-text-editor\" data-id=\"e18fcbb\" 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>D\u00e9lai jusqu\u2019au premier golden path<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-c342686 e-con-full cy-hp-rowcells e-flex e-con e-child\" data-id=\"c342686\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7d33c52 cy-hp-cell elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"7d33c52\" 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>6 \u00e0 12 mois jusqu\u2019en production<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8aca64f cy-hp-cell cy-hp-cell-cy elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"8aca64f\" 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>Moins de quatre semaines chez CloudXcelerate<\/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-a1db008 e-con-full cy-hp-conrow2 e-flex e-con e-child\" data-id=\"a1db008\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-990b5ed cy-hp-rowtitle elementor-widget elementor-widget-text-editor\" data-id=\"990b5ed\" 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>Effectif n\u00e9cessaire \u00e0 l\u2019exploitation<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b67e948 e-con-full cy-hp-rowcells e-flex e-con e-child\" data-id=\"b67e948\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-87dcc4b cy-hp-cell elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"87dcc4b\" 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>Trois personnes ou plus, en permanence<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8d36309 cy-hp-cell cy-hp-cell-cy elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"8d36309\" 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>Votre \u00e9quipe plateforme, sur les Blueprints<\/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-7148a80 e-con-full cy-hp-conrow2 e-flex e-con e-child\" data-id=\"7148a80\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7d204cb cy-hp-rowtitle elementor-widget elementor-widget-text-editor\" data-id=\"7d204cb\" 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>Ce que co\u00fbte cet effectif<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cf6ae0f e-con-full cy-hp-rowcells e-flex e-con e-child\" data-id=\"cf6ae0f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-36e6062 cy-hp-cell elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"36e6062\" 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>Trois salaires, charges comprises, chaque ann\u00e9e<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-ebbc8d1 cy-hp-cell cy-hp-cell-cy elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"ebbc8d1\" 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>\u00c0 partir de 39\u20ac par utilisateur et par mois, en annuel. Tarifs publi\u00e9s.<\/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-cae28b1 e-con-full cy-hp-conrow2 e-flex e-con e-child\" data-id=\"cae28b1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-69c5748 cy-hp-rowtitle elementor-widget elementor-widget-text-editor\" data-id=\"69c5748\" 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>Ce que voit l\u2019auditeur<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-30adf63 e-con-full cy-hp-rowcells e-flex e-con e-child\" data-id=\"30adf63\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-01c5748 cy-hp-cell elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"01c5748\" 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 piste que vous reconstituez \u00e0 la main, apr\u00e8s coup<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b4098d9 cy-hp-cell cy-hp-cell-cy elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"b4098d9\" 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>Les politiques sont v\u00e9rifi\u00e9es \u00e0 la soumission. RBAC, MFA, SSO et journaux d\u2019audit inclus.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/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-0669211 cy-hp cy-hp-flow e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"0669211\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-7b14082 e-con-full cy-hp-cmphead cy-hp-reveal e-flex e-con e-child\" data-id=\"7b14082\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-eefcb73 cy-hp-eyebrow cy-hp-eyebrow-faint elementor-widget elementor-widget-text-editor\" data-id=\"eefcb73\" 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>La m\u00eame demande, de bout en bout<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-834b84a cy-hp-h2 elementor-widget elementor-widget-heading\" data-id=\"834b84a\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Une demande, et tout ce qu\u2019elle touche<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-fcd994c e-con-full cy-hp-flowgrid e-flex e-con e-child\" data-id=\"fcd994c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-276a43c e-con-full cy-hp-flowpanel cy-hp-reveal e-flex e-con e-child\" data-id=\"276a43c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-58ac5f8 cy-hp-flowimg elementor-widget elementor-widget-image\" data-id=\"58ac5f8\" 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\" loading=\"lazy\" width=\"1024\" height=\"493\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1024x493.webp\" class=\"attachment-large size-large wp-image-34437\" alt=\"Vue d\u2019ensemble Cycloid d\u2019un environnement de production r\u00e9glement\u00e9 : ressources, \u00e9tat de sant\u00e9 par type, services d\u00e9ploy\u00e9s avec leur d\u00e9rive et leur statut de d\u00e9ploiement, responsables et blueprint.\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1024x493.webp 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-300x145.webp 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-768x370.webp 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1536x740.webp 1536w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production.webp 1887w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/>\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-8f73483 e-con-full cy-hp-flowpanel cy-hp-flow-cy cy-hp-reveal e-flex e-con e-child\" data-id=\"8f73483\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-724b4f4 cy-hp-flowimg elementor-widget elementor-widget-image\" data-id=\"724b4f4\" 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\" loading=\"lazy\" width=\"1024\" height=\"493\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1024x493.webp\" class=\"attachment-large size-large wp-image-34437\" alt=\"Vue d\u2019ensemble Cycloid d\u2019un environnement de production r\u00e9glement\u00e9 : ressources, \u00e9tat de sant\u00e9 par type, services d\u00e9ploy\u00e9s avec leur d\u00e9rive et leur statut de d\u00e9ploiement, responsables et blueprint.\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1024x493.webp 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-300x145.webp 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-768x370.webp 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1536x740.webp 1536w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production.webp 1887w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-ff8ff8f cy-hp cy-hp-pv e-no-lazyload elementor-hidden-desktop elementor-hidden-tablet elementor-hidden-mobile e-flex e-con-boxed e-con e-parent\" data-id=\"ff8ff8f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-edc0fa8 e-con-full cy-hp-pvhead cy-hp-reveal e-flex e-con e-child\" data-id=\"edc0fa8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a602f4e cy-hp-eyebrow cy-hp-eyebrow-teal elementor-widget elementor-widget-text-editor\" data-id=\"a602f4e\" 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>Dans la plateforme<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6f6f8d4 cy-hp-h2 cy-hp-sc cy-hp-ondark elementor-widget elementor-widget-heading\" data-id=\"6f6f8d4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">\u00c0 quoi ressemble la \u00ab&nbsp;production&nbsp;\u00bb quand elle rend des comptes<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-32b7b6a cy-hp-pvp elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"32b7b6a\" 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>Chaque environnement porte son blueprint, son propri\u00e9taire, son fournisseur et l\u2019\u00e9tat en temps r\u00e9el de tout ce qui y est d\u00e9ploy\u00e9. \u00ab Qu\u2019est-ce qui tourne vraiment en production ? \u00bb devient un \u00e9cran, et non une r\u00e9union.<\/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-a6987af e-con-full cy-hp-pvshot e-flex e-con e-child\" data-id=\"a6987af\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-0b0f9ed cy-hp-pvimg elementor-widget elementor-widget-image\" data-id=\"0b0f9ed\" 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\" loading=\"lazy\" width=\"1024\" height=\"493\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1024x493.webp\" class=\"attachment-large size-large wp-image-34437\" alt=\"Vue d\u2019ensemble Cycloid d\u2019un environnement de production r\u00e9glement\u00e9 : ressources, \u00e9tat de sant\u00e9 par type, services d\u00e9ploy\u00e9s avec leur d\u00e9rive et leur statut de d\u00e9ploiement, responsables et blueprint.\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1024x493.webp 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-300x145.webp 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-768x370.webp 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1536x740.webp 1536w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production.webp 1887w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/>\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-df625eb e-con-full cy-hp-pvcaps e-flex e-con e-child\" data-id=\"df625eb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-2409402 e-con-full cy-hp-pvcap cy-hp-reveal e-flex e-con e-child\" data-id=\"2409402\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2180e67 cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"2180e67\" 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\">Le blueprint voyage avec l\u2019environnement<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2a69f90 cy-hp-pvcapp elementor-widget elementor-widget-text-editor\" data-id=\"2a69f90\" 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>Propri\u00e9taire, fournisseur, r\u00e9gion et version sont des attributs de l\u2019environnement lui-m\u00eame, et non une page de wiki que quelqu\u2019un doit penser \u00e0 mettre \u00e0 jour.<\/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-c251975 e-con-full cy-hp-pvcap cy-hp-reveal e-flex e-con e-child\" data-id=\"c251975\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-135cea1 cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"135cea1\" 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\">La d\u00e9rive remonte, on ne la d\u00e9couvre pas<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-011d9a5 cy-hp-pvcapp elementor-widget elementor-widget-text-editor\" data-id=\"011d9a5\" 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>En \u00e9chec, en d\u00e9rive, en cours de d\u00e9ploiement\u00a0: ce sont des \u00e9tats affich\u00e9s \u00e0 l\u2019\u00e9cran. Personne n\u2019a \u00e0 les chercher, et personne ne les d\u00e9couvre lors d\u2019un audit.<\/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-ebed6a1 e-con-full cy-hp-pvcap cy-hp-reveal e-flex e-con e-child\" data-id=\"ebed6a1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f37aecb cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"f37aecb\" 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\">Un seul saut vers les outils que vous exploitez d\u00e9j\u00e0<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2072b90 cy-hp-pvcapp elementor-widget elementor-widget-text-editor\" data-id=\"2072b90\" 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>Grafana, Jira et Linear sont rattach\u00e9s \u00e0 l\u2019environnement\u00a0: de l\u2019alerte au ticket qui la prend en charge, il n\u2019y a qu\u2019un clic.<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-992cf54 cy-hp cy-hp-certs e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"992cf54\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-bed53ba e-con-full cy-hp-ctahead e-flex e-con e-child\" data-id=\"bed53ba\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fdf8df8 cy-hp-h2 cy-hp-sc elementor-widget elementor-widget-heading\" data-id=\"fdf8df8\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Reconnu par les experts, certifi\u00e9 par les standards<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-654fa33 cy-hp-ctap elementor-widget elementor-widget-text-editor\" data-id=\"654fa33\" 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>Certifi\u00e9 ISO 27001. Certified B Corporation, score 95, v\u00e9rifiable aupr\u00e8s de B Lab. Gartner Cool Vendor 2024.<\/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-27d44cb e-con-full cy-hp-badgerow e-flex e-con e-child\" data-id=\"27d44cb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-66a4e6f e-con-full cy-hp-badge cy-hp-badge-iso e-flex e-con e-child\" data-id=\"66a4e6f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9b1fa34 e-con-full cy-hp-badgebox e-flex e-con e-child\" data-id=\"9b1fa34\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b72e20a elementor-widget elementor-widget-image\" data-id=\"b72e20a\" 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\" loading=\"lazy\" width=\"300\" height=\"303\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/iso-27001.webp\" class=\"attachment-medium_large size-medium_large wp-image-21792\" alt=\"logo of the certification ISO 27001\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/iso-27001.webp 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/iso-27001-297x300.webp 297w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e52af87 cy-hp-badgelab elementor-widget elementor-widget-text-editor\" data-id=\"e52af87\" 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>Certifi\u00e9 ISO 27001<\/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-fb3bc6d e-con-full cy-hp-badge cy-hp-badge-gartner e-flex e-con e-child\" data-id=\"fb3bc6d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-da252b3 e-con-full cy-hp-badgebox e-flex e-con e-child\" data-id=\"da252b3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-b49058b cy-hp-badgeimg elementor-widget elementor-widget-image\" data-id=\"b49058b\" 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\" loading=\"lazy\" width=\"768\" height=\"177\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-768x177.png\" class=\"attachment-medium_large size-medium_large wp-image-32692\" alt=\"logo of Gartner\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-768x177.png 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-300x69.png 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-1024x236.png 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-1536x354.png 1536w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-2048x471.png 2048w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\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-532f60f cy-hp-hypebar elementor-widget elementor-widget-text-editor\" data-id=\"532f60f\" 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>HYPE CYCLE 2026<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a66ce00 cy-hp-badgelab elementor-widget elementor-widget-text-editor\" data-id=\"a66ce00\" 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>Platform Engineering<\/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-df2891c e-con-full cy-hp-badge cy-hp-badge-bcorp e-flex e-con e-child\" data-id=\"df2891c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-3fa8b63 e-con-full cy-hp-badgebox e-flex e-con e-child\" data-id=\"3fa8b63\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-fc0154b cy-hp-badgeimg elementor-widget elementor-widget-image\" data-id=\"fc0154b\" 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\" loading=\"lazy\" width=\"619\" height=\"495\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/bcorp-mark.png\" class=\"attachment-full size-full wp-image-32222\" alt=\"Logo Certified B Corporation\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/bcorp-mark.png 619w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/bcorp-mark-300x240.png 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\t\t<div class=\"elementor-element elementor-element-9eb1e75 cy-hp-badgelab elementor-widget elementor-widget-text-editor\" data-id=\"9eb1e75\" 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>Certifi\u00e9 B Corp<\/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-008070e e-con-full cy-hp-badge cy-hp-badge-gartner e-flex e-con e-child\" data-id=\"008070e\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-ba72cc4 e-con-full cy-hp-badgebox e-flex e-con e-child\" data-id=\"ba72cc4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cb38295 cy-hp-badgeimg elementor-widget elementor-widget-image\" data-id=\"cb38295\" 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\" loading=\"lazy\" width=\"768\" height=\"233\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/IDC-logo-768x233.webp\" class=\"attachment-medium_large size-medium_large wp-image-22699\" alt=\"Logo IDC\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/IDC-logo-768x233.webp 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/IDC-logo-300x91.webp 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2025\/02\/IDC-logo.webp 1000w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-bddb424 cy-hp-badgelab elementor-widget elementor-widget-text-editor\" data-id=\"bddb424\" 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>IDC Market Glance<\/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-dc1ca75 e-con-full cy-hp-badge cy-hp-badge-cool e-flex e-con e-child\" data-id=\"dc1ca75\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-43857db e-con-full cy-hp-badgebox e-flex e-con e-child\" data-id=\"43857db\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3747291 cy-hp-badgeimg elementor-widget elementor-widget-image\" data-id=\"3747291\" 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\" loading=\"lazy\" width=\"768\" height=\"177\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-768x177.png\" class=\"attachment-medium_large size-medium_large wp-image-32692\" alt=\"logo of Gartner\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-768x177.png 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-300x69.png 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-1024x236.png 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-1536x354.png 1536w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/Gartner_logo.svg-2048x471.png 2048w\" sizes=\"auto, (max-width: 768px) 100vw, 768px\" \/>\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-ddf879c cy-hp-hypebar elementor-widget elementor-widget-text-editor\" data-id=\"ddf879c\" 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>COOL VENDOR 2024<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-32bc68f cy-hp-badgelab elementor-widget elementor-widget-text-editor\" data-id=\"32bc68f\" 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>Cool Vendor 2024<\/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 class=\"elementor-element elementor-element-4fb83f6 cy-hp-fine elementor-widget elementor-widget-button\" data-id=\"4fb83f6\" 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=\"\/fr\/certification-bcorp\/\">\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 sur notre conformit\u00e9 &rarr;<\/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\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a3911a3 cy-hp cy-hp-op e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"a3911a3\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-a18c757 e-con-full cy-hp-opsplit e-flex e-con e-child\" data-id=\"a18c757\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-1eb6c21 e-con-full cy-hp-oplines cy-hp-reveal e-flex e-con e-child\" data-id=\"1eb6c21\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bd73f17 cy-hp-opline cy-hp-opfaint elementor-widget elementor-widget-text-editor\" data-id=\"bd73f17\" 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 demande, un formulaire.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-171b9a8 cy-hp-opline cy-hp-opbold elementor-widget elementor-widget-text-editor\" data-id=\"171b9a8\" 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>Un enregistrement que votre auditeur sait lire.<\/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-9d3775b e-con-full cy-hp-xf cy-hp-opframe e-flex e-con e-child\" data-id=\"9d3775b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4d30658 e-con-full cy-hp-xf-in e-flex e-con e-child\" data-id=\"4d30658\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ed8deba cy-hp-h2 cy-hp-sc cy-hp-ondark cy-hp-optitle elementor-widget elementor-widget-heading\" data-id=\"ed8deba\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Une plateforme, cinq fonctions<\/h2>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-608e403 e-con-full cy-hp-oprows e-flex e-con e-child\" data-id=\"608e403\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5d354e8 e-con-full cy-hp-oprow e-flex e-con e-child\" data-id=\"5d354e8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1d3a6f9 cy-hp-opnum elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"1d3a6f9\" 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>01<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7e4f709 e-con-full cy-hp-opbody e-flex e-con e-child\" data-id=\"7e4f709\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-9693880 cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"9693880\" 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\">Un catalogue pour toutes les \u00e9quipes<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-9abcc0f cy-hp-opp elementor-widget elementor-widget-text-editor\" data-id=\"9abcc0f\" 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>Landing zones, infrastructure et applications au m\u00eame endroit. La d\u00e9couverte int\u00e8gre ce qui tourne d\u00e9j\u00e0 sur votre cloud.<\/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-0422989 e-con-full cy-hp-oprow e-flex e-con e-child\" data-id=\"0422989\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e9df940 cy-hp-opnum elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"e9df940\" 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>02<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-742d1f8 e-con-full cy-hp-opbody e-flex e-con e-child\" data-id=\"742d1f8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7f202a1 cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"7f202a1\" 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\">Des r\u00e8gles qui s\u2019ex\u00e9cutent dans le formulaire<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4c1cf33 cy-hp-opp elementor-widget elementor-widget-text-editor\" data-id=\"4c1cf33\" 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>Forms transforme un module Terraform en formulaire web, et la politique v\u00e9rifie chaque soumission. Une ressource non conforme est refus\u00e9e avant d\u2019exister, au lieu d\u2019\u00eatre d\u00e9couverte plus tard lors d\u2019un audit.<\/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-2702028 e-con-full cy-hp-oprow e-flex e-con e-child\" data-id=\"2702028\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f20e51c cy-hp-opnum elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"f20e51c\" 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>03<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-8ae897b e-con-full cy-hp-opbody e-flex e-con e-child\" data-id=\"8ae897b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-7bdbe4f cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"7bdbe4f\" 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\">Un seul mod\u00e8le d\u2019identit\u00e9, humains et agents<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0e4b414 cy-hp-opp elementor-widget elementor-widget-text-editor\" data-id=\"0e4b414\" 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>RBAC sur mesure \u00e0 l\u2019\u00e9chelle de votre organisation, SSO via Okta, Entra ID ou SAML 2.0, MFA et journaux d\u2019audit complets. Le m\u00eame mod\u00e8le couvre un agent comme il couvre une personne.<\/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-0dec6cc e-con-full cy-hp-oprow e-flex e-con e-child\" data-id=\"0dec6cc\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6217d75 cy-hp-opnum elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"6217d75\" 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>04<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b689816 e-con-full cy-hp-opbody e-flex e-con e-child\" data-id=\"b689816\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-406c316 cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"406c316\" 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\">Co\u00fbt et carbone avant la d\u00e9pense<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-57f6fa0 cy-hp-opp elementor-widget elementor-widget-text-editor\" data-id=\"57f6fa0\" 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>L\u2019estimation des co\u00fbts dans le formulaire avant de d\u00e9ployer, et le reporting co\u00fbt-carbone sur AWS, Azure, GCP et votre parc priv\u00e9, arrivent sur la plateforme, construits sur les m\u00eames donn\u00e9es gouvern\u00e9es que le reste.<\/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-a614006 e-con-full cy-hp-oprow e-flex e-con e-child\" data-id=\"a614006\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-541abe5 cy-hp-opnum elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget-mobile__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"541abe5\" 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>05<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-6324f04 e-con-full cy-hp-opbody e-flex e-con e-child\" data-id=\"6324f04\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bcb4fd8 cy-hp-h3w elementor-widget elementor-widget-heading\" data-id=\"bcb4fd8\" 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\">L\u2019\u00e9tendre sans la forker<\/h3>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2d440ff cy-hp-opp elementor-widget elementor-widget-text-editor\" data-id=\"2d440ff\" 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 plug-ins officiels et sur mesure, une API REST document\u00e9e et un serveur MCP pour que les \u00e9quipes interrogent la plateforme depuis les outils IA qu\u2019elles utilisent d\u00e9j\u00e0.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/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-277f7c1 cy-hp cy-hp-deploy e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"277f7c1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-fbeabcf e-con-full cy-hp-congrid e-flex e-con e-child\" data-id=\"fbeabcf\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c54d638 e-con-full cy-hp-conhead cy-hp-reveal e-flex e-con e-child\" data-id=\"c54d638\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4e22f8e cy-hp-eyebrow cy-hp-eyebrow-faint elementor-widget elementor-widget-text-editor\" data-id=\"4e22f8e\" 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>D\u00e9ploiement<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4563574 cy-hp-h2 cy-hp-conh2 elementor-widget elementor-widget-heading\" data-id=\"4563574\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">D\u00e9ployez l\u00e0 o\u00f9 la conformit\u00e9 l\u2019exige<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-66fa9a7 cy-hp-conp elementor-widget elementor-widget-text-editor\" data-id=\"66fa9a7\" 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>Compatible avec vos Terraform, Ansible, Helm et Argo CD. TerraCognita, InfraMap et TerraCost sont publics et open source.<\/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-7f1ac46 e-con-full cy-hp-deptablecol e-flex e-con e-child\" data-id=\"7f1ac46\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-dedd8b8 e-con-full cy-hp-deptable e-flex e-con e-child\" data-id=\"dedd8b8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6dc3566 e-con-full cy-hp-colheads3 e-flex e-con e-child\" data-id=\"6dc3566\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-cf707bc cy-hp-colh3-empty elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"cf707bc\" 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><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0954e15 cy-hp-colh3 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"0954e15\" 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>Ce que cela signifie<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1a941dd cy-hp-colh3 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"1a941dd\" 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>O\u00f9 r\u00e9sident vos donn\u00e9es<\/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-9b1d44f e-con-full cy-hp-conrow3 e-flex e-con e-child\" data-id=\"9b1d44f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-4cf8f5e cy-hp-rowlabel elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"4cf8f5e\" 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>Auto-h\u00e9berg\u00e9, sur site ou bare metal<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-31fc69e cy-hp-cell3 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"31fc69e\" 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>Tous les modules sur votre infrastructure. Cycloid n\u2019y a ensuite aucun acc\u00e8s.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-d14c6da cy-hp-cell3 cy-hp-cell3-cy elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"d14c6da\" 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>Votre r\u00e9seau. Air-gapped pris en charge.<\/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-89c8dc1 e-con-full cy-hp-conrow3 e-flex e-con e-child\" data-id=\"89c8dc1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-06c5531 cy-hp-rowlabel elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"06c5531\" 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>SaaS d\u00e9di\u00e9<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8995449 cy-hp-cell3 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"8995449\" 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 d\u00e9ployons et exploitons tous les modules dans un compte cloud que vous choisissez.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0b6788f cy-hp-cell3 cy-hp-cell3-cy elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"0b6788f\" 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>Compte isol\u00e9 sur AWS, Azure, GCP, Scaleway, OVH ou Outscale.<\/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-4d9255f e-con-full cy-hp-conrow3 e-flex e-con e-child\" data-id=\"4d9255f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ab04fc6 cy-hp-rowlabel elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"ab04fc6\" 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>Hybride<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4367ba4 cy-hp-cell3 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"4367ba4\" 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>Control plane g\u00e9r\u00e9 par nos soins, workers dans votre environnement.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-494f45c cy-hp-cell3 cy-hp-cell3-cy elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"494f45c\" 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>Les charges de travail restent chez vous.<\/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-991638d e-con-full cy-hp-conrow3 e-flex e-con e-child\" data-id=\"991638d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-268ef71 cy-hp-rowlabel elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"268ef71\" 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>SaaS<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f5594c0 cy-hp-cell3 elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"f5594c0\" 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>Enti\u00e8rement g\u00e9r\u00e9, la voie la plus rapide vers une plateforme op\u00e9rationnelle.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-44ccad0 cy-hp-cell3 cy-hp-cell3-cy elementor-widget__width-initial elementor-widget-tablet__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"44ccad0\" 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>H\u00e9bergement dans l\u2019UE disponible.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-50fb093 e-con-full cy-hp cy-hp-testi e-no-lazyload e-flex e-con e-parent\" data-id=\"50fb093\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8d48ff6 e-con-full cy-hp-qregion e-flex e-con e-child\" data-id=\"8d48ff6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-c21deed e-con-full cy-hp-qsticky e-flex e-con e-child\" data-id=\"c21deed\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-ed11bb9 e-con-full cy-hp-quoteblock e-flex e-con e-child\" data-id=\"ed11bb9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-bc900de cy-hp-qmark elementor-widget elementor-widget-text-editor\" data-id=\"bc900de\" 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>\u00ab<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-7cc11d4 cy-hp-qtext elementor-widget elementor-widget-heading\" data-id=\"7cc11d4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<p class=\"elementor-heading-title elementor-size-default\">Cycloid sert \u00e0 la fois de chapeau pour nos services cloud int\u00e9gr\u00e9s et d\u2019outil quotidien pour nos utilisateurs DevOps et Platform Engineers.<\/p>\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-caf8af1 e-con-full cy-hp-qattr e-flex e-con e-child\" data-id=\"caf8af1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-1501100 cy-hp-qname elementor-widget elementor-widget-text-editor\" data-id=\"1501100\" 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>Alexander H\u00f6llwart<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a5a814c cy-hp-qrole elementor-widget elementor-widget-text-editor\" data-id=\"a5a814c\" 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>Managing Director, CloudXcelerate<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-91ad61c cy-hp-fine elementor-widget elementor-widget-button\" data-id=\"91ad61c\" 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=\"\/fr\/temoignages-clients\/\">\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\">Lire les t\u00e9moignages clients &rarr;<\/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-4a55bea cy-hp cy-hp-closing e-no-lazyload e-flex e-con-boxed e-con e-parent\" data-id=\"4a55bea\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-a5e496c cy-hp-ch2 elementor-widget elementor-widget-heading\" data-id=\"a5e496c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Venez avec la strat\u00e9gie <br>que vous devrez d\u00e9fendre<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-83fe27b cy-hp-csub elementor-widget elementor-widget-text-editor\" data-id=\"83fe27b\" 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>Choisissez la d\u00e9cision plateforme que l\u2019on vous demandera de justifier ce trimestre. En vingt minutes, voyez le calcul, la cha\u00eene d\u2019approbation et le journal d\u2019audit qui la soutiennent.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-78ea8cb e-con-full cy-hp-btnrow e-flex e-con e-child\" data-id=\"78ea8cb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-18fa7b9 cy-hp-btn elementor-widget elementor-widget-button\" data-id=\"18fa7b9\" 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=\"\/fr\/demander-une-demo\/\">\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\">Voir le calcul en 20 minutes<\/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-05d770f cy-hp-obtn cy-on-dark elementor-widget elementor-widget-button\" data-id=\"05d770f\" 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=\"\/fr\/tarification\/\">\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\">Voir les tarifs<\/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-1a8c1c6 e-con-full cy-hp-device e-flex e-con e-child\" data-id=\"1a8c1c6\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-996958a cy-hp-devshot elementor-widget elementor-widget-image\" data-id=\"996958a\" 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\" loading=\"lazy\" width=\"1024\" height=\"493\" src=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1024x493.webp\" class=\"attachment-large size-large wp-image-34437\" alt=\"Vue d\u2019ensemble Cycloid d\u2019un environnement de production r\u00e9glement\u00e9 : ressources, \u00e9tat de sant\u00e9 par type, services d\u00e9ploy\u00e9s avec leur d\u00e9rive et leur statut de d\u00e9ploiement, responsables et blueprint.\" srcset=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1024x493.webp 1024w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-300x145.webp 300w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-768x370.webp 768w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production-1536x740.webp 1536w, https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-environment-overview-production.webp 1887w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Concr\u00e9tisez votre strat\u00e9gie de plateforme*, pas un outil de plus *une adoption que vous pouvez mesurer, une gouvernance qui tient devant un auditeur, au service de votre strat\u00e9gie IA ou de souverainet\u00e9. Auto-h\u00e9berg\u00e9, air-gapped ou cloud souverain. Voir le calcul build vs buy \u2197 En production chez Personne ne peut vous dire si \u00e7a fonctionne &#8230; <a title=\"Page d\u2019accueil \u2014 Dirigeants\" class=\"read-more\" href=\"https:\/\/www.cycloid.io\/fr\/accueil-dirigeants\/\" aria-label=\"En savoir plus sur Page d\u2019accueil \u2014 Dirigeants\">Lire la suite<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-32771","page","type-page","status-publish"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Page d\u2019accueil \u2014 Dirigeants - Cycloid<\/title>\n<meta name=\"robots\" content=\"noindex, follow\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Page d\u2019accueil \u2014 Dirigeants - Cycloid\" \/>\n<meta property=\"og:description\" content=\"Concr\u00e9tisez votre strat\u00e9gie de plateforme*, pas un outil de plus *une adoption que vous pouvez mesurer, une gouvernance qui tient devant un auditeur, au service de votre strat\u00e9gie IA ou de souverainet\u00e9. Auto-h\u00e9berg\u00e9, air-gapped ou cloud souverain. Voir le calcul build vs buy \u2197 En production chez Personne ne peut vous dire si \u00e7a fonctionne ... Lire la suite\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.cycloid.io\/fr\/accueil-dirigeants\/\" \/>\n<meta property=\"og:site_name\" content=\"Cycloid\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-25T06:38:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cs-european-commission.png\" \/>\n\t<meta property=\"og:image:width\" content=\"168\" \/>\n\t<meta property=\"og:image:height\" content=\"64\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-dirigeants\\\/\",\"url\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-dirigeants\\\/\",\"name\":\"Page d\u2019accueil \u2014 Dirigeants - Cycloid\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-dirigeants\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-dirigeants\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.cycloid.io\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/cs-european-commission.png\",\"datePublished\":\"2026-09-24T09:20:28+00:00\",\"dateModified\":\"2026-09-25T06:38:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-dirigeants\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-dirigeants\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-dirigeants\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.cycloid.io\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/cs-european-commission.png\",\"contentUrl\":\"https:\\\/\\\/www.cycloid.io\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/cs-european-commission.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/accueil-dirigeants\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Page d\u2019accueil \u2014 Dirigeants\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/#website\",\"url\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/\",\"name\":\"Cycloid\",\"description\":\"Cycloid Internal Developer Portal and Platform revolutionizes governance, cloud management, sovereignty, and DevX. Available on-prem or in any cloud.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/#organization\",\"name\":\"Cycloid\",\"url\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.cycloid.io\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/cycloid-owl-696-white.png\",\"contentUrl\":\"https:\\\/\\\/www.cycloid.io\\\/wp-content\\\/uploads\\\/2026\\\/09\\\/cycloid-owl-696-white.png\",\"width\":696,\"height\":696,\"caption\":\"Cycloid\"},\"image\":{\"@id\":\"https:\\\/\\\/www.cycloid.io\\\/fr\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Page d\u2019accueil \u2014 Dirigeants - Cycloid","robots":{"index":"noindex","follow":"follow"},"og_locale":"fr_FR","og_type":"article","og_title":"Page d\u2019accueil \u2014 Dirigeants - Cycloid","og_description":"Concr\u00e9tisez votre strat\u00e9gie de plateforme*, pas un outil de plus *une adoption que vous pouvez mesurer, une gouvernance qui tient devant un auditeur, au service de votre strat\u00e9gie IA ou de souverainet\u00e9. Auto-h\u00e9berg\u00e9, air-gapped ou cloud souverain. Voir le calcul build vs buy \u2197 En production chez Personne ne peut vous dire si \u00e7a fonctionne ... Lire la suite","og_url":"https:\/\/www.cycloid.io\/fr\/accueil-dirigeants\/","og_site_name":"Cycloid","article_modified_time":"2026-09-25T06:38:14+00:00","og_image":[{"width":168,"height":64,"url":"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cs-european-commission.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.cycloid.io\/fr\/accueil-dirigeants\/","url":"https:\/\/www.cycloid.io\/fr\/accueil-dirigeants\/","name":"Page d\u2019accueil \u2014 Dirigeants - Cycloid","isPartOf":{"@id":"https:\/\/www.cycloid.io\/fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.cycloid.io\/fr\/accueil-dirigeants\/#primaryimage"},"image":{"@id":"https:\/\/www.cycloid.io\/fr\/accueil-dirigeants\/#primaryimage"},"thumbnailUrl":"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cs-european-commission.png","datePublished":"2026-09-24T09:20:28+00:00","dateModified":"2026-09-25T06:38:14+00:00","breadcrumb":{"@id":"https:\/\/www.cycloid.io\/fr\/accueil-dirigeants\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.cycloid.io\/fr\/accueil-dirigeants\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/www.cycloid.io\/fr\/accueil-dirigeants\/#primaryimage","url":"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cs-european-commission.png","contentUrl":"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cs-european-commission.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.cycloid.io\/fr\/accueil-dirigeants\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.cycloid.io\/fr\/"},{"@type":"ListItem","position":2,"name":"Page d\u2019accueil \u2014 Dirigeants"}]},{"@type":"WebSite","@id":"https:\/\/www.cycloid.io\/fr\/#website","url":"https:\/\/www.cycloid.io\/fr\/","name":"Cycloid","description":"Cycloid Internal Developer Portal and Platform revolutionizes governance, cloud management, sovereignty, and DevX. Available on-prem or in any cloud.","publisher":{"@id":"https:\/\/www.cycloid.io\/fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.cycloid.io\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/www.cycloid.io\/fr\/#organization","name":"Cycloid","url":"https:\/\/www.cycloid.io\/fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/www.cycloid.io\/fr\/#\/schema\/logo\/image\/","url":"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-owl-696-white.png","contentUrl":"https:\/\/www.cycloid.io\/wp-content\/uploads\/2026\/09\/cycloid-owl-696-white.png","width":696,"height":696,"caption":"Cycloid"},"image":{"@id":"https:\/\/www.cycloid.io\/fr\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/pages\/32771","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/comments?post=32771"}],"version-history":[{"count":51,"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/pages\/32771\/revisions"}],"predecessor-version":[{"id":34574,"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/pages\/32771\/revisions\/34574"}],"wp:attachment":[{"href":"https:\/\/www.cycloid.io\/fr\/wp-json\/wp\/v2\/media?parent=32771"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}