<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Archives des la relation client automatisée - st9ph.fr</title>
	<atom:link href="https://st9ph.fr/tag/la-relation-client-automatisee/feed/" rel="self" type="application/rss+xml" />
	<link>https://st9ph.fr/tag/la-relation-client-automatisee/</link>
	<description>la boite à outils numériques</description>
	<lastBuildDate>Thu, 02 Apr 2026 21:49:34 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://st9ph.fr/wp-content/uploads/2026/02/cropped-ico-fav-32x32.png</url>
	<title>Archives des la relation client automatisée - st9ph.fr</title>
	<link>https://st9ph.fr/tag/la-relation-client-automatisee/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">199087513</site>	<item>
		<title>🏷️ Animation RC &#124; le Selfcare</title>
		<link>https://st9ph.fr/%f0%9f%8f%b7%ef%b8%8f-animation-rc-le-selfcare/</link>
					<comments>https://st9ph.fr/%f0%9f%8f%b7%ef%b8%8f-animation-rc-le-selfcare/#respond</comments>
		
		<dc:creator><![CDATA[St9ph]]></dc:creator>
		<pubDate>Sat, 03 Jan 2026 09:43:00 +0000</pubDate>
				<category><![CDATA[☝️ Concepts]]></category>
		<category><![CDATA[🏷️ Animation RC]]></category>
		<category><![CDATA[🌐 public]]></category>
		<category><![CDATA[c'est quoi selfcare]]></category>
		<category><![CDATA[comprendre el selfcare]]></category>
		<category><![CDATA[la relation client automatisée]]></category>
		<category><![CDATA[outils digitaux de selfcare]]></category>
		<guid isPermaLink="false">https://st9ph.fr/?p=31977</guid>

					<description><![CDATA[<p>📖 Lecture : 0 % Avant même l&#8217;ère du digital, le besoin d&#8217;aller au delà des possibilités d&#8217;accueil de l&#8217;équipe commerciale, des horaires d&#8217;ouverture et de l&#8217;absence de magasins de proximité s&#8217;était fait sentir. La boite-à-lettres, le premier outil de Selfcare déployé dans la relation clients (au XVIIe siècle à Paris), permit : Voilà un ... <a title="🏷️ Animation RC &#124; le Selfcare" class="read-more" href="https://st9ph.fr/%f0%9f%8f%b7%ef%b8%8f-animation-rc-le-selfcare/" aria-label="En savoir plus sur 🏷️ Animation RC &#124; le Selfcare">Lire la suite</a></p>
<p>L’article <a href="https://st9ph.fr/%f0%9f%8f%b7%ef%b8%8f-animation-rc-le-selfcare/">🏷️ Animation RC | le Selfcare</a> est apparu en premier sur <a href="https://st9ph.fr">st9ph.fr</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-uagb-inline-notice uagb-inline_notice__align-left uagb-block-60e92510"><button class="uagb-notice-close-button" type="button" aria-label="Close"></button><h5 class="uagb-notice-title"><strong>C&#8217;est quoi  le &#8220;Selfcare&#8221; ?</strong></h5><div class="uagb-notice-text">
<p class="has-medium-font-size">Littéralement &#8220;prendre soin de soi soi-même&#8221;(on parle aussi parfois &#8220;d&#8217;auto support&#8221;), le Selfcare est <strong>l&#8217;ensemble des outils automatisés </strong>qui prennent <strong>le relai des agents commerciaux </strong>en prospection et dans la relation client. C&#8217;est à la fois un moyen d&#8217;<strong>économiser les ressources humaines </strong>pour les <strong>processus récurrents</strong> et <strong>une demande forte des consommateurs</strong> qui plébiscitent ce mode dans leurs usages (faire tout seul, n&#8217;importe quand et sans attendre qu&#8217;un commercial soit disponible).</p>
</div></div>



<!-- =====================================================
     BADGE DE LECTURE + BADGE "DÉJÀ LU"
     - % de lecture en temps réel
     - Devient vert à 75 %
     - Mémorisé en session (déjà lu)
     ===================================================== -->

<!-- ✅ STRUCTURE HTML DU BADGE -->
<div id="readBadge">
  📖 Lecture : 0 %
</div>

<style>
/* ===============================
   STYLE DU BADGE
   =============================== */
#readBadge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #111;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 9999;
}

/* Badge visible */
#readBadge.show {
  opacity: 1;
  transform: translateY(0);
}

/* Badge vert = article lu */
#readBadge.read {
  background: #188038;
}
</style>

<script>
/* ===============================
   LOGIQUE JAVASCRIPT
   =============================== */
(function () {

  const badge = document.getElementById("readBadge");

  // ✅ Clé unique par page (URL)
  const storageKey = "articleLu_" + window.location.pathname;

  // ✅ Si déjà lu dans la session
  if (sessionStorage.getItem(storageKey)) {
    badge.classList.add("show", "read");
    badge.innerText = "✅ Article déjà lu";
    return; // on ne recalcule plus le scroll
  }

  let badgeShown = false;
  let articleMarkedAsRead = false;

  window.addEventListener("scroll", function () {

    const scrollTop = window.scrollY;
    const docHeight = document.body.scrollHeight - window.innerHeight;
    const percent = Math.round((scrollTop / docHeight) * 100);

    // Mise à jour du texte
    badge.innerText = "📖 Lecture : " + percent + " %";

    // Affichage du badge dès 10 %
    if (percent >= 10 && !badgeShown) {
      badge.classList.add("show");
      badgeShown = true;
    }

    // ✅ Article considéré comme lu à 75 %
    if (percent >= 75 && !articleMarkedAsRead) {
      badge.classList.add("read");
      badge.innerText = "✅ Article lu à " + percent + " %";
      sessionStorage.setItem(storageKey, "true");
      articleMarkedAsRead = true;
    }

  });

})();
</script>



<figure class="wp-block-audio"><audio controls src="https://st9ph.fr/wp-content/uploads/2026/01/voicertool_audio_Eloise_12-01-2026_at_19_54_14_on_January_12th_2026.mp3"></audio><figcaption class="wp-element-caption">🎧 Ecouter l&#8217;introduction audio</figcaption></figure>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img fetchpriority="high" decoding="async" width="496" height="540" src="https://st9ph.fr/wp-content/uploads/2026/01/image.png" alt="" class="wp-image-31980" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image.png 496w, https://st9ph.fr/wp-content/uploads/2026/01/image-276x300.png 276w" sizes="(max-width: 496px) 100vw, 496px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-base-2-background-color has-background">Avant même l&#8217;ère du digital, <strong>le besoin d&#8217;aller au delà</strong> des <strong>possibilités d&#8217;accueil </strong>de l&#8217;équipe commerciale, des <strong>horaires d&#8217;ouverture </strong>et de l&#8217;absence de <strong>magasins de proximité </strong>s&#8217;était fait sentir.</p>



<p>La boite-à-lettres, le <strong>premier outil de Selfcare </strong>déployé dans la relation clients (au XVIIe siècle à Paris), permit :</p>



<ul class="wp-block-list">
<li>de trouver dans chaque quartier, <strong>près de chez soi,</strong>  un outil de <strong>dépôt automatique</strong> pour l&#8217;acheminement du courrier</li>



<li>de se dispenser de <strong>trouver un postier </strong>pour s&#8217;acquitter du prix de ce service grâce à un <strong>système de prépaiement</strong> : <strong>le timbre poste</strong></li>
</ul>
</div>
</div>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img decoding="async" width="737" height="455" src="https://st9ph.fr/wp-content/uploads/2026/01/image-1.png" alt="" class="wp-image-31983" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-1.png 737w, https://st9ph.fr/wp-content/uploads/2026/01/image-1-300x185.png 300w" sizes="(max-width: 737px) 100vw, 737px" /></figure>
</div>


<p>Voilà un premier exemple de Selfcare utile : <strong>la gestion des files d&#8217;attente (Queue Busting).</strong> La gestion de l&#8217;<strong>expédition du courrier simple par la boite-aux-lettres</strong>, permettant aux commerciaux de <strong>se concentrer sur les colis et les lettres spéciales </strong>comme les recommandés <strong>et la gestion des livrets</strong> de compte bancaires, autre mission de l&#8217;entreprise, réduisant ainsi l&#8217;insatisfaction des usagers de la Poste en leur permettant une prise en charge plus rapide. Mais revenons au Digital.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%"><div class="wp-block-image">
<figure class="alignright size-full is-resized"><img decoding="async" width="233" height="211" src="https://st9ph.fr/wp-content/uploads/2025/12/IA.png" alt="" class="wp-image-31733" style="width:79px;height:auto"/></figure>
</div>


<p class="has-small-font-size">Part d&#8217;IA /5 dans cet article</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<div class="wp-block-columns has-base-2-background-color has-background is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div style="gap: 20px; " class="ub-star-rating ub-star-rating-text-top ub-star-rating-align-left wp-block-ub-star-rating-block" id="ub-star-rating-a2bb00c3-57f3-4aa9-b96b-5e1634e2d4ab">
			<div class="ub-star-outer-container" style="justify-content: flex-start; ">
				<div class="ub-star-inner-container"><div class=""><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-a2bb00c3-57f3-4aa9-b96b-5e1634e2d4ab-0"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star0" mask="url(#ub_star_rating_filter-a2bb00c3-57f3-4aa9-b96b-5e1634e2d4ab-0)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-a2bb00c3-57f3-4aa9-b96b-5e1634e2d4ab-1"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star1" mask="url(#ub_star_rating_filter-a2bb00c3-57f3-4aa9-b96b-5e1634e2d4ab-1)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-a2bb00c3-57f3-4aa9-b96b-5e1634e2d4ab-2"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star2" mask="url(#ub_star_rating_filter-a2bb00c3-57f3-4aa9-b96b-5e1634e2d4ab-2)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-a2bb00c3-57f3-4aa9-b96b-5e1634e2d4ab-3"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star3" mask="url(#ub_star_rating_filter-a2bb00c3-57f3-4aa9-b96b-5e1634e2d4ab-3)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-a2bb00c3-57f3-4aa9-b96b-5e1634e2d4ab-4"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star4" mask="url(#ub_star_rating_filter-a2bb00c3-57f3-4aa9-b96b-5e1634e2d4ab-4)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg></div></div>
			</div><div class="ub-review-text" style="text-align: left; ">♨️ Sources</div>
		</div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div style="gap: 20px; " class="ub-star-rating ub-star-rating-text-top ub-star-rating-align-left wp-block-ub-star-rating-block" id="ub-star-rating-5f195959-68fc-42f0-af46-2641c1758262">
			<div class="ub-star-outer-container" style="justify-content: flex-start; ">
				<div class="ub-star-inner-container"><div class=""><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-5f195959-68fc-42f0-af46-2641c1758262-0"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star0" mask="url(#ub_star_rating_filter-5f195959-68fc-42f0-af46-2641c1758262-0)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-5f195959-68fc-42f0-af46-2641c1758262-1"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star1" mask="url(#ub_star_rating_filter-5f195959-68fc-42f0-af46-2641c1758262-1)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-5f195959-68fc-42f0-af46-2641c1758262-2"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star2" mask="url(#ub_star_rating_filter-5f195959-68fc-42f0-af46-2641c1758262-2)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-5f195959-68fc-42f0-af46-2641c1758262-3"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star3" mask="url(#ub_star_rating_filter-5f195959-68fc-42f0-af46-2641c1758262-3)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-5f195959-68fc-42f0-af46-2641c1758262-4"><rect height="150" width="75" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star4" mask="url(#ub_star_rating_filter-5f195959-68fc-42f0-af46-2641c1758262-4)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg></div></div>
			</div><div class="ub-review-text" style="text-align: left; ">🖼️ Images</div>
		</div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div style="gap: 20px; " class="ub-star-rating ub-star-rating-text-top ub-star-rating-align-left wp-block-ub-star-rating-block" id="ub-star-rating-3add57a9-f130-4e65-ba08-5af768172e79">
			<div class="ub-star-outer-container" style="justify-content: flex-start; ">
				<div class="ub-star-inner-container"><div class=""><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-3add57a9-f130-4e65-ba08-5af768172e79-0"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star0" mask="url(#ub_star_rating_filter-3add57a9-f130-4e65-ba08-5af768172e79-0)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-3add57a9-f130-4e65-ba08-5af768172e79-1"><rect height="150" width="75" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star1" mask="url(#ub_star_rating_filter-3add57a9-f130-4e65-ba08-5af768172e79-1)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-3add57a9-f130-4e65-ba08-5af768172e79-2"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star2" mask="url(#ub_star_rating_filter-3add57a9-f130-4e65-ba08-5af768172e79-2)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-3add57a9-f130-4e65-ba08-5af768172e79-3"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star3" mask="url(#ub_star_rating_filter-3add57a9-f130-4e65-ba08-5af768172e79-3)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-3add57a9-f130-4e65-ba08-5af768172e79-4"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star4" mask="url(#ub_star_rating_filter-3add57a9-f130-4e65-ba08-5af768172e79-4)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg></div></div>
			</div><div class="ub-review-text" style="text-align: left; ">✒️Contenu</div>
		</div></div>
</div>
</div>
</div>



<div class="wp-block-group is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-94bc23d7 wp-block-group-is-layout-flex">
<p>⏱️Temps de lecture :</p>


<div class="wp-elements-2660b74cdd79da9184a09a62f3b8f226 wp-block-post-time-to-read has-text-color has-accent-color">20–30 minutes</div>


<p>|</p>


<div class="wp-block-post-time-to-read">4 654 mots</div>


<p>|</p>



<p class="has-accent-color has-text-color has-link-color wp-elements-f8515b49564e2f8ad2c183e4ed182d7c">🗓️ dernière modification le</p>


<div class="has-link-color wp-block-post-date__modified-date wp-elements-c7e6b51b55b0dff84108436fc6f3823e wp-block-post-date has-text-color has-accent-color"><time datetime="2026-04-02T23:49:34+02:00">2 avril  2026</time></div></div>


				<div class="wp-block-uagb-table-of-contents uagb-toc__align-left uagb-toc__columns-1  uagb-block-56c2ac1a      uagb-toc__collapse--list"
					data-scroll= "1"
					data-offset= "30"
					style=""
				>
				<div class="uagb-toc__wrap">
						<div class="uagb-toc__title">
							Au menu						</div>
												<div class="uagb-toc__loader"></div>										<div class="uagb-toc__list-wrap uagb-toc__list-hidden">
						<ol class="uagb-toc__list"><li class="uagb-toc__list uagb-toc__list--expandable"><span class="list-open" role="button" tabindex="0" aria-expanded="true"></span><a href="#assurer-le-1er-niveau-de-contact-conduire" class="uagb-toc-link__trigger">Assurer le 1er niveau de contact (conduire)</a><ul class="uagb-toc__list"><li class="uagb-toc__list "><a href="#11-outils-interactifs-informer-et-aider" class="uagb-toc-link__trigger">🔹1.1 |Outils interactifs (informer et aider)</a><li class="uagb-toc__list"><li class="uagb-toc__list "><a href="#12-web-to-store-préparer-lachat" class="uagb-toc-link__trigger">🔹1.2 |Web-To-Store (préparer l&#039;achat)</a></li></ul></li><li class="uagb-toc__list uagb-toc__list--expandable"><span class="list-open" role="button" tabindex="0" aria-expanded="true"></span><a href="#permettre-lensemble-du-processus-suppléer" class="uagb-toc-link__trigger">Permettre l&#039;ensemble du processus (suppléer)</a><ul class="uagb-toc__list"><li class="uagb-toc__list "><a href="#21-les-distributeurs-automatiques" class="uagb-toc-link__trigger">🔹2.1 |les distributeurs automatiques</a><li class="uagb-toc__list"><li class="uagb-toc__list "><a href="#22-les-bornes-de-commande-et-dachat-en-svp-kiosks" class="uagb-toc-link__trigger">🔹2.2 |Les Bornes de Commande et d&#039;Achat en SVP (Kiosks)</a><li class="uagb-toc__list"><li class="uagb-toc__list "><a href="#23-le-self-scanning-et-lencaissement-automatique" class="uagb-toc-link__trigger">🔹2.3 |Le Self-Scanning et l&#039;Encaissement Automatique</a><li class="uagb-toc__list"><li class="uagb-toc__list "><a href="#24-les-eshops" class="uagb-toc-link__trigger">🔹2.4 |les Eshops</a><li class="uagb-toc__list"><li class="uagb-toc__list "><a href="#sources" class="uagb-toc-link__trigger">📚 Sources</a><li class="uagb-toc__list"><li class="uagb-toc__list "><a href="#ndrc" class="uagb-toc-link__trigger">🧑‍🎓 NDRC</a><li class="uagb-toc__list"><li class="uagb-toc__list "><a href="#glossaire" class="uagb-toc-link__trigger">📘 Glossaire</a></ul></ul></ol>					</div>
									</div>
				</div>
			


<p class="has-text-align-center has-medium-font-size">Je parlerai dans cet article, pour chacun des exemples que je prendrais,  à la fois des bénéfices <strong>pour le client </strong>mais aussi, <em>pour le commerçant</em>.</p>



<p class="callout rouge">⚠️ Etudiants NDRC, pensez y sur <strong>votre copie E5A</strong> : faire preuve d&#8217;empathie pour vos clients, c&#8217;est super, mais <strong>on vous attend</strong> surtout sur les solutions commerciales, donc, <strong>côté vendeur</strong>. Défendez aussi (et avant tout) <strong>les avantages pour eux </strong>!</p>



<!-- DÉBUT TITRE CHAPITRE -->
<style>
.chapter-title { display: flex; align-items: stretch; margin: 1.7rem 0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.chapter-number { background: #1e73be; color: #fff; font-weight: 700; font-size: 2.8rem; padding: 0 1.1rem; display: flex; align-items: center; justify-content: center; }
.chapter-content { padding: 1.3rem 1.5rem; width: 100%; }
.chapter-heading { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.chapter-logo { width: 42px; height: 42px; flex-shrink: 0; display:block; }
.chapter-logo img { width: 100%; height: 100%; object-fit: contain; }
.chapter-content h2 { margin: 0; font-size: 2.1rem; font-weight: 700; color: #1e73be; }
.chapter-points { margin: 0; padding-left: 0; list-style: none; }
.chapter-points li { margin-bottom: 0.35rem; color: #444; font-size: 0.95rem; line-height: 1.45; }
.chapter-points li::before { content: "🔹 "; }
</style>

<div class="chapter-title">
  <div class="chapter-number">1</div>
  <div class="chapter-content">
    <div class="chapter-heading">
      <a class="chapter-logo" href="https://st9ph.fr" target="_blank" rel="noopener">
        <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/02/st9ph-ico-sansTxt.png" alt="Logo">
      </a>
      <h2>Assurer le 1er niveau de contact (conduire)</h2>
    </div>
    <ul class="chapter-points"><li>Outils interactifs (informer et aider)</li><li>Web-To-Store (préparer l&#8217;achat)</li></ul>
  </div>
</div>
<!-- FIN TITRE CHAPITRE -->



<p class="has-text-align-center callout vert has-medium-font-size">Le 1er contact sera d&#8217;ailleurs parfois le seul car il se suffira à lui-même !</p>



<h3 class="wp-block-heading" id="0-11-outils-interactifs-informer-et-aider-" style="font-size:28px">🔹<strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color">1.1 |</mark></strong><img loading="lazy" decoding="async" width="25" height="30" class="wp-image-34820" style="width: 25px;" src="https://st9ph.fr/wp-content/uploads/2026/02/st9ph-mini.jpg" alt=""><strong>Outils interactifs (informer et aider)</strong></h3>



<h4 class="wp-block-heading" id="1-11a-outils-de-dialogue-informer-">1.1.A | <mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color">Outils de dialogue (informer)</mark></h4>



<p class="has-base-2-background-color has-background">Ils peuvent être <strong>vocaux</strong> (Serveurs Vocaux ou Voicebots) ou <strong>textuels</strong> (Foires Aux Questions ou Tchatbots) et permettront <strong>essentiellement d&#8217;informer</strong>.</p>



<p>🔷<strong>EX1</strong> : Ci dessous le schéma du SVI d&#8217;<strong>informations de la SNCF</strong> et un <strong>essai d&#8217;appel</strong>.</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="791" height="362" src="https://st9ph.fr/wp-content/uploads/2026/01/schema-SNCF.jpg" alt="" class="wp-image-31989" srcset="https://st9ph.fr/wp-content/uploads/2026/01/schema-SNCF.jpg 791w, https://st9ph.fr/wp-content/uploads/2026/01/schema-SNCF-300x137.jpg 300w, https://st9ph.fr/wp-content/uploads/2026/01/schema-SNCF-768x351.jpg 768w" sizes="auto, (max-width: 791px) 100vw, 791px" /></figure>



<figure class="wp-block-audio"><audio controls src="https://st9ph.fr/wp-content/uploads/2026/01/SNCF-complete.mp3"></audio><figcaption class="wp-element-caption">mon test du 3665</figcaption></figure>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-2.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<p class="has-small-font-size">source : SNCF</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>La stratégie de la SNCF repose sur la <strong>déflection</strong> : r<strong>ediriger l&#8217;utilisateur vers des outils de selfcare </strong>(SVI, chatbot, application) pour éviter le coût élevé d&#8217;un traitement par <strong>un agent humain.</strong></p>



<ul class="wp-block-list">
<li><strong>Coût d&#8217;un appel avec agent :</strong> Dans le secteur du transport, un appel traité par un conseiller coûte entre <strong>4 € et 7 €</strong> (selon la durée et la complexité).</li>



<li><strong>Coût d&#8217;un appel SVI automatisé :</strong> Le traitement d&#8217;une requête simple par un SVI ou un bot coûte généralement <strong>moins de 0,50 €</strong>.</li>



<li><strong>Conséquence :</strong> Avec <strong>des millions d&#8217;appels au 3635</strong> chaque année, automatiser ne serait-ce que 20% des demandes (horaires, suivi de commande) génère des économies se comptant en <strong>millions d&#8217;euros</strong>. (voir l&#8217;infographie ci-contre)</li>
</ul>
</div>
</div>



<h4 class="wp-block-heading" id="2-11b-outils-daccompagnement-aider-">1.1.B | <mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color">Outils d&#8217;accompagnement (aider)</mark></h4>



<p class="has-base-2-background-color has-background">Les &#8220;<strong>How-To</strong>&#8221; <strong>contextuels</strong> bien visibles ou qui surgissent pour aider à <strong>naviguer</strong>, à <strong>choisir</strong>, à <strong>faire fonctionner;</strong> constituent une valeur ajoutée rassurante et qui assureront le <strong>succès dans l&#8217;accomplissement </strong>à l&#8217;intérieur des outils que vous mettez à disposition de votre audience.</p>



<p>🔷<strong>EX2</strong> : le <strong>chabot d&#8217;accompagnement</strong> de la <a href="https://shop.st9ph.fr/presta/fr/" target="_blank" rel="noreferrer noopener">boutique pédagogique</a> (que vous pouvez tester vous aussi)</p>



<ul class="wp-block-list">
<li>Un jeu de <strong>questions de contrôle</strong> permet de <strong>filtrer les problématiques récurrentes</strong> avant de générer un ticket (file : &#8220;commandes&#8221; &gt;&gt; &#8220;je n&#8217;ai pas reçu mon produit&#8221;)</li>
</ul>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-3.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-4.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-5.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->
</div>
</div>



<p class="has-base-2-background-color has-background">L&#8217;objectif est de <strong>ne pas encombrer nos opérateurs</strong> avec des tickets qui ne sont pas liés à <strong>un réel incident</strong> : les a<strong>dresses mail erronées </strong>et certaines des boites mail qui ont redirigé notre message vers les <strong>spams à cause du lien de téléchargement</strong> qu&#8217;il contient et qu&#8217;elles ont interprété comme une menace.</p>



<p class="has-medium-font-size">➡️ Une fois ces <strong>vérifications faites</strong>, le chabot propose :</p>



<ul class="wp-block-list">
<li>Des <strong><em>liens</em> </strong>qui permettent au client d&#8217;être <strong>positionné au bon endroit </strong>sans avoir à rechercher ni quitter le tchat.</li>



<li>une <strong>procédure</strong> de remplissage du ticket décrite <strong>pas à pas</strong></li>
</ul>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="861" height="466" src="https://st9ph.fr/wp-content/uploads/2026/01/image-6.png" alt="" class="wp-image-31999" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-6.png 861w, https://st9ph.fr/wp-content/uploads/2026/01/image-6-300x162.png 300w, https://st9ph.fr/wp-content/uploads/2026/01/image-6-768x416.png 768w" sizes="auto, (max-width: 861px) 100vw, 861px" /></figure>



<p class="has-base-2-background-color has-background">l&#8217;avantage d&#8217;un <strong>message préformaté </strong>est qu&#8217;il pourra être lui aussi <strong>traité automatiquement</strong> par des <strong>déclencheurs autonomes </strong>du back office de votre boutique en ligne, <strong>générer une résolution automatisée</strong> (le renvoi du mail), <strong>un mail de réponse automatique </strong>contenant un message prédéfini et <strong>la clôture du ticket </strong>sans aucune intervention humaine.</p>



<p class="has-medium-font-size">🔷<strong>Ex3</strong> : <strong>Le forum </strong>(communauté d&#8217;entraide)</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>Aussi appelé  &#8220;<em>Peer-to-Peer support</em>&#8220;, le forum consiste  en fait à <strong>laisser les clients se débrouiller  entre eux</strong> !</p>



<p class="has-base-2-background-color has-background">Dans l&#8217;aperçu ci-contre, <strong>un expert Darty </strong>anime et alimente <strong>en réponses </strong>mais ce n&#8217;est pas obligé.</p>



<p>Il faudra tout au moins <strong>dédier un modérateur </strong>aux &#8220;<strong>topics</strong>&#8221; (sujets) ouverts pour éviter la foire d&#8217;empoigne entre vos clients.</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/darty-forum.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->
</div>
</div>



<p class="has-medium-font-size">Ca vaut vraiment le coup sur <strong>la balance avantages / risques</strong> :</p>


<ul style="padding-left: 1.1em; text-align: left; --ub-list-item-icon-top: 3px;; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%2300d084&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); --ub-list-item-fa-li-top: 3px; --ub-list-item-spacing: 0px; column-count: 2; --ub-list-mobile-column-count: 1; " class="wp-block-ub-styled-list ub_styled_list" id="ub_styled_list-f4969178-cfdc-4bda-a981-0a3c3b1beac1">
<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%2300d084&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-8fc1ef83-ecc5-4f45-a263-e302f025a2e1">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#00d084" d="M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"></path></svg>
				</span>
				<span class="ub_list_item_text"><strong>évite</strong> énormément de <strong>tickets de SAV</strong> (Du Queue Busting côté backoffice en quelque sorte)</span>
			</div>
			
		</li>

<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%2300d084&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-1211d752-6efa-49ba-8f20-7f86daf5e72d">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#00d084" d="M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"></path></svg>
				</span>
				<span class="ub_list_item_text">permet d&#8217;<strong>observe</strong>r la manière dont les clients parlent entre eux de <strong>vos produits et de votre enseigne</strong></span>
			</div>
			
		</li>

<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%2300d084&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-0a5fd8aa-2929-4000-88fe-38bf231fe48b">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#00d084" d="M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"></path></svg>
				</span>
				<span class="ub_list_item_text">permet d&#8217;observer les <strong>problématiques récurrentes</strong> et d&#8217;<strong>adapter les FAQ</strong> et les <strong>notices </strong>produit</span>
			</div>
			
		</li>

<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%2300d084&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-94d8c002-b042-47a9-8496-45d0bf90095a">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#00d084" d="M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"></path></svg>
				</span>
				<span class="ub_list_item_text">Crée <strong>une base de connaissance organique </strong>très riche et dans un <strong>vocabulaire profane</strong></span>
			</div>
			
		</li>

<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%2300d084&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-d60b1f9a-63fc-4e53-b19d-a6c7627e5570">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#00d084" d="M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"></path></svg>
				</span>
				<span class="ub_list_item_text"><strong>Excellent pour le SEO</strong> (Booste les flux Referal et Affiliate)</span>
			</div>
			
		</li>

<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%23cf2e2e&quot; d=&quot;M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-e04cf26e-7df2-46c5-aae4-4984494dc5b6">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#cf2e2e" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"></path></svg>
				</span>
				<span class="ub_list_item_text">peut <strong>donner le sentiment d&#8217;un manque de qualité</strong> ou de soin de votre enseigne (concentration des mécontentements)</span>
			</div>
			
		</li>

<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%23cf2e2e&quot; d=&quot;M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-de881591-058a-46f0-9e1a-09fe5e31951d">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#cf2e2e" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"></path></svg>
				</span>
				<span class="ub_list_item_text"><strong>vos experts </strong>(si vous faites comme Darty) peuvent y trouver leurs &#8220;maitres&#8221; (c<strong>lients plus qualifiés qu&#8217;eux-mêmes </strong>qui vont les contredire à juste titre).</span>
			</div>
			
		</li>
</ul>


<h3 class="wp-block-heading" id="3-12-web-to-store-pr%C3%A9parer-lachat-" style="font-size:28px">🔹<strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color">1.2 |</mark></strong><img loading="lazy" decoding="async" width="25" height="30" class="wp-image-34820" style="width: 25px;" src="https://st9ph.fr/wp-content/uploads/2026/02/st9ph-mini.jpg" alt=""><strong>Web-To-Store (préparer l&#8217;achat)</strong></h3>



<p class="has-base-2-background-color has-background">Si vous voulez briller en société, vous pouvez aussi l&#8217;appeler <strong>le ROPO</strong> (<em>Research Online, Purchase Offline</em>) ou le <strong>Drive-To-Store</strong> (&#8220;conduire à la boutique&#8221;) et pas seulement en voiture).</p>



<p class="has-medium-font-size">ℹ️ C&#8217;est le fait de <strong>rechercher, s&#8217;informer, configurer, réserver &#8230; en ligne</strong> puis <strong>se rendre en magasin pour l&#8217;achat</strong>.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div style="background: accent; " class="ub_counter-container wp-elements-27a39b04a75534dbd6a5f30f85a9763c wp-block-ub-counter has-text-color has-base-3-color has-background has-accent-background-color" id="ub-counter-">
					<div class="ub_counter ub_text-center" data-start_num="0" data-end_num="91" data-animation_duration="2" style="">
						 
						 <div class="ub_counter-number-wrapper" style="font-size: 48px; ">
							  <span class="ub_counter-prefix"></span>
							  <span class="ub_counter-number">0</span>
							  <span class="ub_counter-suffix">%</span>
						 </div>
						 <div class="ub_counter-label-wrapper" style="font-size: 16px; "><span class="ub_counter-label"><strong>des consommateurs font une recherche en ligne</strong> avant d’acheter en magasin (produit, disponibilité, avis, horaires…) <a href="https://www.appvizer.fr/magazine/marketing/ecommerce/web-to-store?" target="_blank" rel="noreferrer noopener">source</a></span></div>
					</div>
			   </div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div class="wp-block-ub-progress-bar ub_progress-bar is-style-ub-progress-bar-half-circle-wrapper rounded-circle ub-progress-bar-detail-align-center" id="ub-progress-bar-4ed5c980-195f-4df6-b30a-93834a563be8"><div class="ub_progress-bar-text" style=""><p>personnes cherchant un magasin en ligne et s&#8217;y rendant<br> <strong>dans les 24 h</strong></p></div><div class="ub_progress-bar-container" style="height: 183px; width: 183px; float: auto; margin: auto; ">
			<svg class="ub_progress-bar-circle" height="183" width="183" viewbox="0 0 100 100">
				<path class="ub_progress-bar-circle-trail" d="M 50,50 m -45.75,0 a 45.75,45.75 0 1 1 91.5,0" stroke="#d9d9d9" stroke-width="8.5" style="stroke-dasharray: 143.72786390173px,143.72786390173px; "></path>
				<path class="ub_progress-bar-circle-path" d="M 50,50 m -45.75,0 a 45.75,45.75 0 1 1 91.5,0" stroke="#2db7f5" stroke-width="8.5" stroke-linecap="butt" style="--ub-progress-bar-dasharray: 0px, 143.72786390173px; stroke-linecap: round; --ub-progress-bar-filled-dasharray: 107.7958979263px, 143.72786390173px; "></path>
			</svg>
			<div class="ub_progress-bar-label" style="width: 75%; ">
			<span class="ub-progress-number-prefix"></span>
			<span class="ub-progress-number-value">75</span>
			<span class="ub-progress-number-suffix">%</span>
		</div>
			</div></div>


<p class="has-text-align-center has-small-font-size">source HARMO</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<div class="wp-block-uagb-counter uagb-block-ca70f085 wp-block-uagb-counter--number"><span class="wp-block-uagb-counter__icon"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z"></path></svg></span><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="90" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">%</span></div><div class="wp-block-uagb-counter__title">des consommateurs<br><strong> lisent des avis en ligne</strong><br> avant de se rendre en magasin</div></div>
</div>
</div>



<p class="has-medium-font-size">On peut citer <strong>plusieurs techniques de web-to-store</strong> très courantes :</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-medium-font-size" id="5-%E2%9C%85-2-r%C3%A9servation-amp-disponibilit%C3%A9-en-magasin-">✅ 1. <em>Réservation &amp; disponibilité en magasin</em></p>



<p>Sur le site web ou l’app, l’internaute :</p>



<ul class="wp-block-list">
<li>vérifie <strong>si le produit est en stock </strong>dans <strong>sa boutique préférée</strong></li>



<li><strong>réserve</strong> un <strong>créneau </strong>(service) ou un <strong>produit</strong><br>➡︎ Puis il se déplace. <a href="https://go.cegid.com/rs/818-MJH-876/images/Cegid_Retail_Ebook_CDO_CommerceUnifie_FR.pdf?" target="_blank" rel="noreferrer noopener">Cegid Global</a></li>
</ul>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="736" height="512" src="https://st9ph.fr/wp-content/uploads/2025/12/image-90.png" alt="" class="wp-image-31709" srcset="https://st9ph.fr/wp-content/uploads/2025/12/image-90.png 736w, https://st9ph.fr/wp-content/uploads/2025/12/image-90-300x209.png 300w" sizes="auto, (max-width: 736px) 100vw, 736px" /></figure>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="928" height="1074" src="https://st9ph.fr/wp-content/uploads/2025/12/image-142.png" alt="" class="wp-image-31899" srcset="https://st9ph.fr/wp-content/uploads/2025/12/image-142.png 928w, https://st9ph.fr/wp-content/uploads/2025/12/image-142-259x300.png 259w, https://st9ph.fr/wp-content/uploads/2025/12/image-142-885x1024.png 885w, https://st9ph.fr/wp-content/uploads/2025/12/image-142-768x889.png 768w" sizes="auto, (max-width: 928px) 100vw, 928px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-medium-font-size" id="5-%E2%9C%85-3-campagnes-digitales-g%C3%A9olocalis%C3%A9es-">✅ 2. <em>Campagnes digitales géolocalisées</em></p>



<p>Annonces ciblées sur :</p>



<ul class="wp-block-list">
<li><strong>Google Local Ads</strong></li>



<li><strong>Réseaux sociaux</strong></li>



<li><strong>SMS/Email/Notification </strong>avec offre en magasin (<strong>push</strong>)</li>
</ul>



<p>Ces messages <strong>incitent au déplacement en boutique</strong> via des offres ou événements locaux. <a href="https://www.generixgroup.com/fr/glossaire/web-to-store-definition?" target="_blank" rel="noreferrer noopener">Generix</a></p>
</div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<figure class="wp-block-image size-full is-style-zoooom"><img loading="lazy" decoding="async" width="607" height="427" src="https://st9ph.fr/wp-content/uploads/2026/01/image-8.png" alt="" class="wp-image-32061" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-8.png 607w, https://st9ph.fr/wp-content/uploads/2026/01/image-8-300x211.png 300w" sizes="auto, (max-width: 607px) 100vw, 607px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<p class="has-medium-font-size" id="5-%E2%9C%85-4-shopfully-plateformes-drive-to-store">✅ 3. les plateformes drive-to-store</p>



<p>Des plateformes comme <strong><a href="https://www.shopfully.fr/" target="_blank" rel="noreferrer noopener">ShopFully</a></strong> aident les consommateurs à trouver les offres de magasins locaux et génèrent du trafic en magasin grâce à des promotions locales. Elles regroupent plus de <strong>45 millions d’utilisateurs</strong> dans le monde. <a href="https://en.wikipedia.org/wiki/ShopFully?" target="_blank" rel="noreferrer noopener">Wikipédia</a></p>
</div>
</div>



<p class="has-medium-font-size"><strong>Et le click-and-collect ?</strong></p>



<p>Il y&#8217;a débat et je suis de ceux qui considèrent que <strong>le drive-to-store ne doit pas l&#8217;englober</strong> (puisque <strong>l&#8217;achat se fait en ligne </strong>et que la SVP n&#8217;est qu&#8217;<strong>un point relais </strong>de livraison).</p>



<p class="has-base-2-background-color has-background">D&#8217;autres vous diront que c&#8217;est un achat &#8220;<strong>qui conduit au magasin</strong>&#8221; et que c<strong>&#8216;est l&#8217;opportunité</strong> pour le client <strong>d&#8217;y faire un tour</strong> avant de reprendre son colis &#8230; ils ont peut-être raison. Si vous pensez comme eux, je ne serai pas vexé.</p>



<p class="has-medium-font-size">Allez, mettons qu&#8217;ils aient raison :</p>



<p class="has-medium-font-size" id="5-%E2%9C%85-4-shopfully-plateformes-drive-to-store">✅ 4. Casiers de retrait (smart lockers) pour le click-and-collect</p>



<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="316" src="https://st9ph.fr/wp-content/uploads/2026/01/image-9-1024x316.png" alt="" class="wp-image-32068" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-9-1024x316.png 1024w, https://st9ph.fr/wp-content/uploads/2026/01/image-9-300x93.png 300w, https://st9ph.fr/wp-content/uploads/2026/01/image-9-768x237.png 768w, https://st9ph.fr/wp-content/uploads/2026/01/image-9.png 1056w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></figure>



<p>Ils poussent <strong>à tous les coins de rue</strong> (avec la gène pour les riverains qui les accompagnent) et répondent à un besoin de plus en plus pressant :<strong>être livré sans délai</strong> malgré qu&#8217;on est <strong>commandé à distance</strong>, qu&#8217;on n&#8217;ait pas le temps d<strong>&#8216;aller en magasin</strong> et qu&#8217;<strong>on n&#8217;est jamais chez soi</strong> aux heures de livraison !</p>


<div style="gap: 20px; " class="ub-star-rating ub-star-rating-text-top ub-star-rating-align-left wp-block-ub-star-rating-block" id="ub-star-rating-72865cf1-effd-42d1-b8e2-e071ccd9357a">
			<div class="ub-star-outer-container" style="justify-content: flex-start; ">
				<div class="ub-star-inner-container"><div class=""><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-72865cf1-effd-42d1-b8e2-e071ccd9357a-0"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star0" mask="url(#ub_star_rating_filter-72865cf1-effd-42d1-b8e2-e071ccd9357a-0)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-72865cf1-effd-42d1-b8e2-e071ccd9357a-1"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star1" mask="url(#ub_star_rating_filter-72865cf1-effd-42d1-b8e2-e071ccd9357a-1)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-72865cf1-effd-42d1-b8e2-e071ccd9357a-2"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star2" mask="url(#ub_star_rating_filter-72865cf1-effd-42d1-b8e2-e071ccd9357a-2)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-72865cf1-effd-42d1-b8e2-e071ccd9357a-3"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star3" mask="url(#ub_star_rating_filter-72865cf1-effd-42d1-b8e2-e071ccd9357a-3)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-72865cf1-effd-42d1-b8e2-e071ccd9357a-4"><rect height="150" width="75" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star4" mask="url(#ub_star_rating_filter-72865cf1-effd-42d1-b8e2-e071ccd9357a-4)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg></div></div>
			</div><div class="ub-review-text" style="text-align: left; "><strong>impact satisfaction</strong> </div>
		</div>


<ul class="wp-block-list">
<li><strong>Points positifs :</strong> Zéro attente. Le client récupère son colis en moins de 30 secondes, souvent sur des plages horaires étendues (24h/24). Discrétion et sécurité.</li>



<li><strong>Point de vigilance :</strong> La localisation du casier (doit être sur le flux naturel du client).</li>



<li><strong>Indice de Queue Busting :</strong> Maximal. Supprime totalement l&#8217;interaction avec le comptoir de retrait/SAV.</li>
</ul>



<p class="has-base-2-background-color has-background">Vous remarquez que j&#8217;ai choisi le seul exemple où la SVP n&#8217;est pas en bout de chaine (et donc le pire). Ici, l&#8217;argument de <strong>la visite d&#8217;opportunité </strong>en venant chercher son colis tombe à plat à moins que le locker soit à côté de la boutique et que le client fasse son retrait pendant les heures d&#8217;ouverture.</p>



<!-- DÉBUT TITRE CHAPITRE -->
<style>
.chapter-title { display: flex; align-items: stretch; margin: 1.7rem 0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.chapter-number { background: #1e73be; color: #fff; font-weight: 700; font-size: 2.8rem; padding: 0 1.1rem; display: flex; align-items: center; justify-content: center; }
.chapter-content { padding: 1.3rem 1.5rem; width: 100%; }
.chapter-heading { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.chapter-logo { width: 42px; height: 42px; flex-shrink: 0; display:block; }
.chapter-logo img { width: 100%; height: 100%; object-fit: contain; }
.chapter-content h2 { margin: 0; font-size: 2.1rem; font-weight: 700; color: #1e73be; }
.chapter-points { margin: 0; padding-left: 0; list-style: none; }
.chapter-points li { margin-bottom: 0.35rem; color: #444; font-size: 0.95rem; line-height: 1.45; }
.chapter-points li::before { content: "🔹 "; }
</style>

<div class="chapter-title">
  <div class="chapter-number">2</div>
  <div class="chapter-content">
    <div class="chapter-heading">
      <a class="chapter-logo" href="https://st9ph.fr" target="_blank" rel="noopener">
        <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/02/st9ph-ico-sansTxt.png" alt="Logo">
      </a>
      <h2>Permettre l&#8217;ensemble du processus (suppléer)</h2>
    </div>
    <ul class="chapter-points"><li>les distributeurs automatiques</li><li>Les Bornes de Commande et d&#8217;Achat en SVP (Kiosks)</li><li>Le Self-Scanning et l&#8217;Encaissement Automatique</li><li>les Eshops</li></ul>
  </div>
</div>
<!-- FIN TITRE CHAPITRE -->



<p>Le <strong>meilleur outil de Selfcare </strong>qu&#8217;on ait inventé pour suppléer les limites de la boutique physique (horaires, distance, stocks limités &#8230;) est <strong>la boutique en ligne </strong>mais ce n&#8217;est pas le seul. Voyons d&#8217;abord les autres :</p>



<h3 class="wp-block-heading" style="font-size:28px">🔹<strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color">2.1 |</mark></strong><img loading="lazy" decoding="async" width="25" height="30" class="wp-image-34820" style="width: 25px;" src="https://st9ph.fr/wp-content/uploads/2026/02/st9ph-mini.jpg" alt=""><strong>les distributeurs automatiques</strong></h3>


<div class="wp-block-image">
<figure class="aligncenter size-full"><img loading="lazy" decoding="async" width="625" height="166" src="https://st9ph.fr/wp-content/uploads/2026/01/image-10.png" alt="" class="wp-image-32075" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-10.png 625w, https://st9ph.fr/wp-content/uploads/2026/01/image-10-300x80.png 300w" sizes="auto, (max-width: 625px) 100vw, 625px" /></figure>
</div>


<p>Ca a commencé par l<strong>es distributeurs d&#8217;argent (DAB),</strong> grâce à l&#8217;invention de <strong>la carte à puces </strong>(encore en France) et, aujourd&#8217;hui, o<strong>n en trouve de toute sorte</strong> : café, pizzas, vélos de location, carburants et même de croquettes pour chats.</p>



<p class="has-base-2-background-color has-background">L&#8217;évolution  rend peu à peu obsolète le DAB :  les<strong> terminaux de paiement électroniques</strong> (TPE), le <strong>sans contact</strong> (Near Field Communication) puis le paiement sans carte à puces directement depuis un smartphone, <strong>les boutiques en ligne</strong> &#8230; tout cela incite les banques à r<strong>éduire les couts d&#8217;exploitation </strong>en supprimant peu à peu les distributeurs et bientôt les cartes de paiement non virtuelles.</p>



<p>En revanche, ils se développent dans d&#8217;autres domaines réservés jusqu&#8217;ici à la SVP.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full is-style-zoooom"><img loading="lazy" decoding="async" width="277" height="341" src="https://st9ph.fr/wp-content/uploads/2026/01/image-11.png" alt="" class="wp-image-32077" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-11.png 277w, https://st9ph.fr/wp-content/uploads/2026/01/image-11-244x300.png 244w" sizes="auto, (max-width: 277px) 100vw, 277px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full is-style-zoooom"><img loading="lazy" decoding="async" width="369" height="451" src="https://st9ph.fr/wp-content/uploads/2026/01/image-12.png" alt="" class="wp-image-32078" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-12.png 369w, https://st9ph.fr/wp-content/uploads/2026/01/image-12-245x300.png 245w" sizes="auto, (max-width: 369px) 100vw, 369px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full is-style-zoooom"><img loading="lazy" decoding="async" width="318" height="425" src="https://st9ph.fr/wp-content/uploads/2026/01/image-13.png" alt="" class="wp-image-32079" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-13.png 318w, https://st9ph.fr/wp-content/uploads/2026/01/image-13-224x300.png 224w" sizes="auto, (max-width: 318px) 100vw, 318px" /></figure>
</div>
</div>



<p>la paupérisation de l&#8217;<strong>offre de petits commerces </strong>de proximité (en campagne et dans les centres ville) ne pouvant pas <strong>lutter contre les GSA et les commerces en ligne</strong>, conduit des<strong> producteurs et des petits commerçants</strong> à investir dans un système de <strong>distribution par automates</strong>.</p>



<p>Un reportage de <strong>France 🔵3</strong> qui aborde<strong> les atouts et les freins de ce type d&#8217;automates</strong> (6&#8217;34) :</p>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Le boom des distributeurs automatiques pour consommer à toute heure" width="900" height="506" src="https://www.youtube.com/embed/0UPm8VTuhE8?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th><strong>Type de produit</strong></th><th><strong>Part de marché / ventes (2023-2024)</strong></th><th><strong>Tendance récente</strong></th><th><strong>Prévision croissance</strong></th></tr></thead><tbody><tr><td>🥤 <strong>Boissons (soft drinks, café, autres boissons)</strong></td><td>~42 – 45 % des ventes globales en 2024 &#8211; dominante du marché (<a href="https://www.grandviewresearch.com/industry-analysis/global-vending-machine-market?utm_source=chatgpt.com">Grand View Research</a>)</td><td>Toujours forte car consommation “on-the-go” très répandue (<a href="https://www.grandviewresearch.com/industry-analysis/global-vending-machine-market?utm_source=chatgpt.com">Grand View Research</a>)</td><td>Croissance continue avec boissons premium et santé</td></tr><tr><td>🍿 <strong>Snacks (chips, barres, sucreries)</strong></td><td>~38 – 40 % des ventes en 2024 (<a href="https://www.news.market.us/vending-machine-statistics/?utm_source=chatgpt.com">Market.us News</a>)</td><td>Demande stable, snack bars en forte progression (<a href="https://www.grandviewresearch.com/industry-analysis/europe-snacks-vending-machine-market-report?utm_source=chatgpt.com">Grand View Research</a>)</td><td>CAGR ~3,8 % jusqu’en 2030 (estimé) (<a href="https://www.grandviewresearch.com/horizon/statistics/retail-vending-machine-market/product/snacks-vending-machines/global?utm_source=chatgpt.com">Grand View Research</a>)</td></tr><tr><td>🍱 <strong>Aliments frais / repas légers</strong></td><td>~Montée des ventes “fresh &amp; healthy” (20 % des revenus micro market) (<a href="https://img.vendingmarketwatch.com/files/base/cygnus/vmw/document/2024/06/6662315dff097653e8d43947-2024_soi_vending_mm_report_final.pdf?dl=6662315dff097653e8d43947-2024_soi_vending_mm_report_final.pdf&amp;utm_source=chatgpt.com">img.vendingmarketwatch.com</a>)</td><td>Très forte croissance des produits frais et sains (<a href="https://img.vendingmarketwatch.com/files/base/cygnus/vmw/document/2025/03/67cb61fd414ba9f405d98d4c-autm_0722_digital.pdf?utm_source=chatgpt.com">img.vendingmarketwatch.com</a>)</td><td>Forte progression avec demande santé et nouveaux formats</td></tr><tr><td>🍬 <strong>Confiseries &amp; bonbons</strong></td><td>~12 %-16 % des ventes en 2023-2024 (<a href="https://www.news.market.us/vending-machine-statistics/?utm_source=chatgpt.com">Market.us News</a>)</td><td>Croissance plus modérée que boissons/snacks (<a href="https://img.vendingmarketwatch.com/files/base/cygnus/vmw/document/2024/06/6662315dff097653e8d43947-2024_soi_vending_mm_report_final.pdf?dl=6662315dff097653e8d43947-2024_soi_vending_mm_report_final.pdf&amp;utm_source=chatgpt.com">img.vendingmarketwatch.com</a>)</td><td>Stable mais moins dynamique que les snacks</td></tr><tr><td>❄️ <strong>Glaces / produits surgelés</strong></td><td>~10 %-17 % part des ventes 2023-2024 (<a href="https://img.vendingmarketwatch.com/files/base/cygnus/vmw/document/2024/06/6662315dff097653e8d43947-2024_soi_vending_mm_report_final.pdf?dl=6662315dff097653e8d43947-2024_soi_vending_mm_report_final.pdf&amp;utm_source=chatgpt.com">img.vendingmarketwatch.com</a>)</td><td>Offre en hausse avec machines réfrigérées (<a href="https://img.vendingmarketwatch.com/files/base/cygnus/vmw/document/2024/06/6662315dff097653e8d43947-2024_soi_vending_mm_report_final.pdf?dl=6662315dff097653e8d43947-2024_soi_vending_mm_report_final.pdf&amp;utm_source=chatgpt.com">img.vendingmarketwatch.com</a>)</td><td>Progression modérée</td></tr><tr><td>☕ <strong>Boissons chaudes (café, thé, etc.)</strong></td><td>~Hot drinks augmentent ~40 % en 2022-23 (<a href="https://img.vendingmarketwatch.com/files/base/cygnus/vmw/document/2025/03/67cb61fd414ba9f405d98d4c-autm_0722_digital.pdf?utm_source=chatgpt.com">img.vendingmarketwatch.com</a>)</td><td>Demande forte le matin &amp; au bureau (<a href="https://img.vendingmarketwatch.com/files/base/cygnus/vmw/document/2025/03/67cb61fd414ba9f405d98d4c-autm_0722_digital.pdf?utm_source=chatgpt.com">img.vendingmarketwatch.com</a>)</td><td>Segment stable / croissance régulière</td></tr><tr><td>📦 <strong>Autres produits (pharmacie, gadgets, etc.)</strong></td><td>~5 %-16 % selon études (<a href="https://market.us/report/retail-vending-machine-market/?utm_source=chatgpt.com">Market.us</a>)</td><td>Croissance plus lente mais niches émergent (<a href="https://market.us/report/retail-vending-machine-market/?utm_source=chatgpt.com">Market.us</a>)</td><td>Progression limitée mais opportunités spécifiques</td></tr></tbody></table></figure>



<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>😟CAGR ?</summary>
<p><strong>CAGR</strong> signifie <strong><em>Compound Annual Growth Rate</em></strong>, en français <strong>taux de croissance annuel composé</strong></p>
</details>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow">
<p><strong>Note sur l&#8217;IA Générative :</strong> En 2026, la tendance majeure est l&#8217;abandon des arbres de décision rigides au profit d&#8217;agents autonomes capables de puiser dans vos documents PDF et vos pages web pour formuler une réponse unique et personnalisée.</p>
</blockquote>



<h3 class="wp-block-heading" style="font-size:28px">🔹<strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color">2.2 |</mark></strong><img loading="lazy" decoding="async" width="25" height="30" class="wp-image-34820" style="width: 25px;" src="https://st9ph.fr/wp-content/uploads/2026/02/st9ph-mini.jpg" alt=""><strong>Les Bornes de Commande et d&#8217;Achat en SVP (Kiosks)</strong></h3>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="297" height="505" src="https://st9ph.fr/wp-content/uploads/2026/01/image-14.png" alt="" class="wp-image-32081" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-14.png 297w, https://st9ph.fr/wp-content/uploads/2026/01/image-14-176x300.png 176w" sizes="auto, (max-width: 297px) 100vw, 297px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<p class="has-base-2-background-color has-background"><strong>Très répandues dans la restauration rapide</strong> (McDonald&#8217;s) et désormais dans le prêt-à-porter.</p>


<div style="gap: 20px; " class="ub-star-rating ub-star-rating-text-top ub-star-rating-align-left wp-block-ub-star-rating-block" id="ub-star-rating-e46e94ec-f8c8-4c99-9ed7-c2badacebe51">
			<div class="ub-star-outer-container" style="justify-content: flex-start; ">
				<div class="ub-star-inner-container"><div class=""><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-e46e94ec-f8c8-4c99-9ed7-c2badacebe51-0"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star0" mask="url(#ub_star_rating_filter-e46e94ec-f8c8-4c99-9ed7-c2badacebe51-0)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-e46e94ec-f8c8-4c99-9ed7-c2badacebe51-1"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star1" mask="url(#ub_star_rating_filter-e46e94ec-f8c8-4c99-9ed7-c2badacebe51-1)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-e46e94ec-f8c8-4c99-9ed7-c2badacebe51-2"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star2" mask="url(#ub_star_rating_filter-e46e94ec-f8c8-4c99-9ed7-c2badacebe51-2)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-e46e94ec-f8c8-4c99-9ed7-c2badacebe51-3"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star3" mask="url(#ub_star_rating_filter-e46e94ec-f8c8-4c99-9ed7-c2badacebe51-3)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-e46e94ec-f8c8-4c99-9ed7-c2badacebe51-4"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star4" mask="url(#ub_star_rating_filter-e46e94ec-f8c8-4c99-9ed7-c2badacebe51-4)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg></div></div>
			</div><div class="ub-review-text" style="text-align: left; "><strong>indice de satisfaction</strong></div>
		</div>

<ul style="padding-left: 1.1em; text-align: left; --ub-list-item-icon-top: 3px;; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%23000000&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); --ub-list-item-fa-li-top: 3px; --ub-list-item-spacing: 0px; column-count: 1; --ub-list-mobile-column-count: 1; " class="wp-block-ub-styled-list ub_styled_list" id="ub_styled_list-0c184d29-b45a-43bf-af1d-13578021987d">
<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%2300d084&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-d2b30f9f-93c4-45a4-8e70-ab52166ac44a">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#00d084" d="M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"></path></svg>
				</span>
				<span class="ub_list_item_text"><strong>Points positifs :</strong> Sentiment de <strong>contrôle</strong>, personnalisation de la commande <strong>sans pression sociale</strong>, visualisation claire du catalogue.</span>
			</div>
			
		</li>

<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%23cf2e2e&quot; d=&quot;M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-6e8fa552-ade7-4c13-b88d-68674b9b43f8">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#cf2e2e" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"></path></svg>
				</span>
				<span class="ub_list_item_text"><strong>Point de vigilance :</strong> L&#8217;ergonomie de l&#8217;interface. Une borne <strong>lente ou complexe</strong> fait chuter radicalement la <strong>satisfaction</strong>.</span>
			</div>
			
		</li>

<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 384 512&quot;&gt;&lt;path fill=&quot;%23000000&quot; d=&quot;M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 19-5.6 37.4-16 53H112c-10.3-15.6-16-34-16-53zm16 309c3.5-5.3 7.6-10.3 12.1-14.9L192 301.3l67.9 67.9c4.6 4.6 8.6 9.6 12.2 14.9H112z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-1f54baee-8281-4b7d-a7d8-23cbf31451aa">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 384 512"><path fill="#000000" d="M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 19-5.6 37.4-16 53H112c-10.3-15.6-16-34-16-53zm16 309c3.5-5.3 7.6-10.3 12.1-14.9L192 301.3l67.9 67.9c4.6 4.6 8.6 9.6 12.2 14.9H112z"></path></svg>
				</span>
				<span class="ub_list_item_text"><strong>Indice de Queue Busting :</strong> Très élevé. Elles<strong> démultiplient les points de prise de commande</strong> sans augmenter le nombre de comptoirs.</span>
			</div>
			
		</li>
</ul></div>
</div>



<h3 class="wp-block-heading" style="font-size:28px">🔹<strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color">2.3 |</mark></strong><img loading="lazy" decoding="async" width="25" height="30" class="wp-image-34820" style="width: 25px;" src="https://st9ph.fr/wp-content/uploads/2026/02/st9ph-mini.jpg" alt=""><strong>Le Self-Scanning et l&#8217;Encaissement Automatique</strong></h3>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:66.66%">
<p>Le client <strong>scanne ses produits</strong> (via une scanette ou son smartphone) ou utilise les caisses automatiques. Il peut même dans certaines SVP avec le système du Scan And Go (la Fnac par exemple), ne même plus avoir besoin de passer en caisse.</p>


<div style="gap: 20px; " class="ub-star-rating ub-star-rating-text-top ub-star-rating-align-left wp-block-ub-star-rating-block" id="ub-star-rating-91456ac2-7f33-4a9f-9271-55925518fd49">
			<div class="ub-star-outer-container" style="justify-content: flex-start; ">
				<div class="ub-star-inner-container"><div class=""><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-91456ac2-7f33-4a9f-9271-55925518fd49-0"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star0" mask="url(#ub_star_rating_filter-91456ac2-7f33-4a9f-9271-55925518fd49-0)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-91456ac2-7f33-4a9f-9271-55925518fd49-1"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star1" mask="url(#ub_star_rating_filter-91456ac2-7f33-4a9f-9271-55925518fd49-1)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-91456ac2-7f33-4a9f-9271-55925518fd49-2"><rect height="150" width="150" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star2" mask="url(#ub_star_rating_filter-91456ac2-7f33-4a9f-9271-55925518fd49-2)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-91456ac2-7f33-4a9f-9271-55925518fd49-3"><rect height="150" width="75" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star3" mask="url(#ub_star_rating_filter-91456ac2-7f33-4a9f-9271-55925518fd49-3)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg><svg xmlns="http://www.w3.org/2000/svg" height="20" width="20" viewbox="0 0 150 150">
			<defs><mask id="ub_star_rating_filter-91456ac2-7f33-4a9f-9271-55925518fd49-4"><rect height="150" width="0" y="0" x="0" fill="#fff"></rect></mask></defs> <path fill="none" stroke-width="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path><path class="star" id="star4" mask="url(#ub_star_rating_filter-91456ac2-7f33-4a9f-9271-55925518fd49-4)" fill="#ffb901" strokewidth="2.5" d="m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z" stroke="#ffb901"></path>
			</svg></div></div>
			</div><div class="ub-review-text" style="text-align: left; ">Indice de satisfaction</div>
		</div>

<ul style="padding-left: 1.1em; text-align: left; --ub-list-item-icon-top: 3px;; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%23000000&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); --ub-list-item-fa-li-top: 3px; --ub-list-item-spacing: 0px; column-count: 1; --ub-list-mobile-column-count: 1; " class="wp-block-ub-styled-list ub_styled_list" id="ub_styled_list-59fcdb13-92cf-4c0e-9e65-fd320128ae8c">
<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%2300d084&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-116b36b4-0c41-4ba3-b1c4-25c07c08a03b">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#00d084" d="M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"></path></svg>
				</span>
				<span class="ub_list_item_text"><strong>Points positifs :</strong> Gain de temps perçu (même si le temps réel est parfois identique à une caisse humaine), autonomie totale.</span>
			</div>
			
		</li>

<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%23cf2e2e&quot; d=&quot;M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-ac07bd22-dae3-4277-98a4-e215e17c42db">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#cf2e2e" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"></path></svg>
				</span>
				<span class="ub_list_item_text"><strong>Points négatifs :</strong> La frustration liée aux contrôles aléatoires (&#8220;re-scan&#8221;) et les erreurs de pesée qui nécessitent l&#8217;intervention d&#8217;un hôte.</span>
			</div>
			
		</li>

<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 384 512&quot;&gt;&lt;path fill=&quot;%23000000&quot; d=&quot;M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 19-5.6 37.4-16 53H112c-10.3-15.6-16-34-16-53zm16 309c3.5-5.3 7.6-10.3 12.1-14.9L192 301.3l67.9 67.9c4.6 4.6 8.6 9.6 12.2 14.9H112z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-c6eb8ba2-e6c2-4f10-b498-97f09b79f634">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 384 512"><path fill="#000000" d="M32 0C14.3 0 0 14.3 0 32S14.3 64 32 64V75c0 42.4 16.9 83.1 46.9 113.1L146.7 256 78.9 323.9C48.9 353.9 32 394.6 32 437v11c-17.7 0-32 14.3-32 32s14.3 32 32 32H64 320h32c17.7 0 32-14.3 32-32s-14.3-32-32-32V437c0-42.4-16.9-83.1-46.9-113.1L237.3 256l67.9-67.9c30-30 46.9-70.7 46.9-113.1V64c17.7 0 32-14.3 32-32s-14.3-32-32-32H320 64 32zM96 75V64H288V75c0 19-5.6 37.4-16 53H112c-10.3-15.6-16-34-16-53zm16 309c3.5-5.3 7.6-10.3 12.1-14.9L192 301.3l67.9 67.9c4.6 4.6 8.6 9.6 12.2 14.9H112z"></path></svg>
				</span>
				<span class="ub_list_item_text"><strong>Indice de Queue Busting :</strong> Modéré à Élevé. Idéal pour les petits paniers, mais peut créer des &#8220;bouchons de surveillance&#8221; si la technologie est capricieuse.</span>
			</div>
			
		</li>
</ul></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:33.33%">
<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="767" height="1024" src="https://st9ph.fr/wp-content/uploads/2025/12/scanettes-767x1024.png" alt="" class="wp-image-31500" srcset="https://st9ph.fr/wp-content/uploads/2025/12/scanettes-767x1024.png 767w, https://st9ph.fr/wp-content/uploads/2025/12/scanettes-225x300.png 225w, https://st9ph.fr/wp-content/uploads/2025/12/scanettes-768x1026.png 768w, https://st9ph.fr/wp-content/uploads/2025/12/scanettes.png 1115w" sizes="auto, (max-width: 767px) 100vw, 767px" /></figure>
</div>
</div>



<p class="has-medium-font-size">🔎 Focus sur le &#8220;Queue Busting&#8221; : La mesure du succès</p>



<p>Pour mesurer si ces outils améliorent réellement la satisfaction, on utilise généralement deux indicateurs clés :</p>



<ol start="1" class="wp-block-list">
<li><strong>L&#8217;Attente Perçue vs Réelle :</strong> Le selfcare réduit <strong>l&#8217;attente <em>perçue</em> </strong>car <strong>le client est actif </strong>(il scanne, il tape sur l&#8217;écran) au lieu d&#8217;être passif dans une file.</li>



<li><strong>Le Taux de Détournement (Deflection Rate) :</strong> Quel pourcentage de clients a choisi l&#8217;automate plutôt que l&#8217;humain ? Un taux qui augmente sans baisse du NPS (Net Promoter Score) valide l&#8217;outil.</li>
</ol>



<p class="has-base-2-background-color has-background">La limite : Le &#8220;<strong>Paradoxe de l&#8217;Automate</strong>&#8221; :  La satisfaction chute brutalement si l&#8217;outil de selfcare tombe en <strong>panne </strong>ou si a<strong>ucun humain n&#8217;est disponible pour débloquer une situation</strong> (ex: un article qui ne scanne pas). Le selfcare réussi est toujours <strong>hybride</strong> : une <strong>machine performante </strong>avec un<strong> humain à proximité</strong> pour le support.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<div class="wp-block-uagb-counter uagb-block-f8491a32 wp-block-uagb-counter--circle"><div class="wp-block-uagb-counter-circle-container"><div class="wp-block-uagb-counter-circle-container__content"><span class="wp-block-uagb-counter__icon"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M152.1 38.16C161.9 47.03 162.7 62.2 153.8 72.06L81.84 152.1C77.43 156.9 71.21 159.8 64.63 159.1C58.05 160.2 51.69 157.6 47.03 152.1L7.029 112.1C-2.343 103.6-2.343 88.4 7.029 79.03C16.4 69.66 31.6 69.66 40.97 79.03L63.08 101.1L118.2 39.94C127 30.09 142.2 29.29 152.1 38.16V38.16zM152.1 198.2C161.9 207 162.7 222.2 153.8 232.1L81.84 312.1C77.43 316.9 71.21 319.8 64.63 319.1C58.05 320.2 51.69 317.6 47.03 312.1L7.029 272.1C-2.343 263.6-2.343 248.4 7.029 239C16.4 229.7 31.6 229.7 40.97 239L63.08 261.1L118.2 199.9C127 190.1 142.2 189.3 152.1 198.2V198.2zM224 96C224 78.33 238.3 64 256 64H480C497.7 64 512 78.33 512 96C512 113.7 497.7 128 480 128H256C238.3 128 224 113.7 224 96V96zM224 256C224 238.3 238.3 224 256 224H480C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H256C238.3 288 224 273.7 224 256zM160 416C160 398.3 174.3 384 192 384H480C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H192C174.3 448 160 433.7 160 416zM0 416C0 389.5 21.49 368 48 368C74.51 368 96 389.5 96 416C96 442.5 74.51 464 48 464C21.49 464 0 442.5 0 416z"></path></svg></span><div class="wp-block-uagb-counter__number"><span class="uagb-counter-block-number" data-duration="1.5" data-to-value="65" data-from-value="0" data-delimiter=","></span><span class="uagb-counter-block-suffix">%</span></div><div class="wp-block-uagb-counter__title">des clients favorisent <br>les restaurants<br>équipés de<br>bornes</div></div><svg preserveAspectRatio="xMinYMin meet" viewBox="0 0 230 230" version="1.1" xmlns="http://www.w3.org/2000/svg"><circle class="uagb-counter-circle__background"></circle><circle class="uagb-counter-circle__progress"></circle></svg></div></div>



<p class="has-small-font-size"><strong>Source :</strong> <a href="https://www.tillster.com" target="_blank" rel="noreferrer noopener">Tillster 2024 Self-Service Kiosk Survey</a>.</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>la <strong>Source d&#8217;efficacité </strong>du &#8220;Queue Busting&#8221; ne vient <strong>pas seulement</strong> de <strong>la vitesse</strong>, mais de la <strong>réduction de l&#8217;anxiété</strong> liée à la file d&#8217;attente.</p>



<p class="has-text-align-center has-small-font-size">(Étude <em>Harvard Business Review</em> sur la psychologie des files d&#8217;attente).</p>



<p class="has-text-align-center">Les bornes de commande ont transformé la restauration et le retail en agissant sur la <strong>psychologie du choix</strong>.</p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full is-style-zoooom"><img loading="lazy" decoding="async" width="367" height="427" src="https://st9ph.fr/wp-content/uploads/2026/01/image-15.png" alt="" class="wp-image-32083" srcset="https://st9ph.fr/wp-content/uploads/2026/01/image-15.png 367w, https://st9ph.fr/wp-content/uploads/2026/01/image-15-258x300.png 258w" sizes="auto, (max-width: 367px) 100vw, 367px" /></figure>
</div>
</div>



<p class="has-base-2-background-color has-background">les bornes, le &#8220;self scan&#8221; et les caisses automatiques visent donc à supprimer le<strong> point de friction</strong> ultime : <strong>le passage en caisse</strong>.</p>



<ul class="wp-block-list">
<li><strong>Impact Satisfaction :</strong> Le rapport de <em>Zebra Technologies</em> (2023) indique que <strong>77% des acheteurs</strong> apprécient de pouvoir entrer et sortir rapidement du magasin grâce au self-checkout.</li>



<li><strong>Le paradoxe de la friction :</strong> Cependant, <em>Capgemini Research Institute</em> souligne que la satisfaction chute de <strong>40%</strong> en cas d&#8217;erreur technique (problème de scan, alerte poids), car le client se sent &#8220;puni&#8221; alors qu&#8217;il fait le travail de l&#8217;employé.</li>



<li><strong>Sources :</strong> <a href="https://www.zebra.com" target="_blank" rel="noreferrer noopener">Zebra 15th Annual Global Shopper Study</a> ; <a href="https://www.capgemini.com" target="_blank" rel="noreferrer noopener">Capgemini : Smart Stores Report</a>.</li>
</ul>



<figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><td><strong>Outil</strong></td><td><strong>Indice de Satisfaction (Moyenne)</strong></td><td><strong>Impact &#8220;Queue Busting&#8221;</strong></td><td><strong>Source Clé</strong></td></tr></thead><tbody><tr><td><strong>Bornes (Kiosks)</strong></td><td><strong>7.5/10</strong></td><td>Très Fort</td><td><em>Tillster</em></td></tr><tr><td><strong>Self-Scanning</strong></td><td><strong>6.5/10</strong></td><td>Modéré (selon erreurs)</td><td><em>Zebra Tech</em></td></tr><tr><td><strong>Casiers (Lockers)</strong></td><td><strong>9/10</strong></td><td>Maximal</td><td><em>FEVAD</em></td></tr></tbody></table></figure>



<p>L&#8217;adoption massive de ces outils repose sur la théorie de <strong>&#8220;l&#8217;économie de l&#8217;effort&#8221;</strong>.</p>


<ul style="padding-left: 1.1em; text-align: left; --ub-list-item-icon-top: 3px;; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%23000000&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); --ub-list-item-fa-li-top: 3px; --ub-list-item-spacing: 0px; column-count: 1; --ub-list-mobile-column-count: 1; " class="wp-block-ub-styled-list ub_styled_list" id="ub_styled_list-4422d41d-f26c-4749-8a28-ad000c523fb6">
<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%2300d084&quot; d=&quot;M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-87999981-a2b4-497a-a5e5-64236810a4e5">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#00d084" d="M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"></path></svg>
				</span>
				<span class="ub_list_item_text"><strong>Gartner</strong> définit le <strong>Customer Effort Score (CES)</strong> comme le <strong>meilleur prédicteur de la fidélité</strong> : <strong>plus l&#8217;effort </strong>du client pour obtenir un service (comme retirer un colis ou commander un burger) <strong>est faible</strong>, <strong>plus sa satisfaction est pérenne</strong>.</span>
			</div>
			
		</li>

<li class="ub_styled_list_item" style="--ub-list-item-icon-top: 3px; --ub-list-item-icon-size: 0.9em; --ub-list-item-background-image: url('data:image/svg+xml;utf8,&lt;svg xmlns=&quot;http://www.w3.org/2000/svg&quot; viewBox=&quot;0 0 512 512&quot;&gt;&lt;path fill=&quot;%23cf2e2e&quot; d=&quot;M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;'); " id="ub-styled-list-item-73554afb-da33-4d27-bded-b4e6c6076759">
			<div class="ub_list_item_content">
				<span class="ub_list_item_icon">
					<svg width="0.9em" height="0.9em" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 512 512"><path fill="#cf2e2e" d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zm0-384c13.3 0 24 10.7 24 24V264c0 13.3-10.7 24-24 24s-24-10.7-24-24V152c0-13.3 10.7-24 24-24zM224 352a32 32 0 1 1 64 0 32 32 0 1 1 -64 0z"></path></svg>
				</span>
				<span class="ub_list_item_text">Le succès ne dépend pas de la technologie seule, mais du <strong>ratio autonomie/support</strong>. Un self-service qui échoue<strong> sans assistance humaine immédiate</strong> génère un<strong> NPS</strong> (Net Promoter Score) <strong>négatif</strong>, annulant les bénéfices de la réduction de file d&#8217;attente.</span>
			</div>
			
		</li>
</ul>


<h3 class="wp-block-heading" style="font-size:28px">🔹<strong><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-accent-color">2.4 |</mark></strong><img loading="lazy" decoding="async" width="25" height="30" class="wp-image-34820" style="width: 25px;" src="https://st9ph.fr/wp-content/uploads/2026/02/st9ph-mini.jpg" alt=""><strong>les Eshops</strong></h3>



<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/image-16-1024x439.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<!-- DÉBUT BLOC IMAGE ZOOMABLE (V3 - CROIX & PROPORTIONS) -->
<style>
    .zoom-img-container { position: relative; display: inline-block; width: 100%; cursor: pointer; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: box-shadow 0.3s; }
    .zoom-img-container:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    .zoom-img-container img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
    .zoom-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: white; font-family: sans-serif; font-weight: bold; text-shadow: 0 1px 3px rgba(0,0,0,0.8); pointer-events: none; /* La souris traverse l'overlay pour cliquer sur l'image */ }
    .zoom-overlay svg { width: 40px; height: 40px; fill: white; margin-bottom: 5px; }
    .zoom-img-container:hover .zoom-overlay { opacity: 1; }
    .zoom-img-container:hover img { transform: scale(1.05); }
    
    .zoom-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.85); align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
    .zoom-modal.show { display: flex; opacity: 1; }
    
    /* CORRECTION PROPORTIONS : */
    .zoom-modal-content { 
        max-width: 90%; 
        max-height: 90%; 
        width: auto;       /* Force la largeur auto (pas d'étirement) */
        height: auto;      /* Force la hauteur auto */
        object-fit: contain; /* Assure que l'image tient dans le cadre sans déformer */
        border-radius: 4px; 
        box-shadow: 0 0 20px rgba(0,0,0,0.5); 
        animation: zoomIn 0.3s; 
    }
    
    .zoom-close { 
        position: absolute; 
        top: 20px; 
        right: 35px; 
        color: #f1f1f1; 
        font-size: 40px; 
        font-weight: bold; 
        cursor: pointer; 
        transition: 0.3s; 
        line-height: 1; 
        z-index: 10000; /* S'assure que la croix est au-dessus de tout */
        user-select: none;
    }
    .zoom-close:hover { color: #bbb; }

    @keyframes zoomIn { from {transform:scale(0.8); opacity:0} to {transform:scale(1); opacity:1} }
</style>

<!-- CONTENEUR DE L'IMAGE -->
<!-- 👇🏻 UNIQUE ENDROIT À MODIFIER : Change juste le src ci-dessous 👇🏻 -->
<div class="zoom-img-container" onclick="openZoomModal(this)">
    <img decoding="async" src="https://st9ph.fr/wp-content/uploads/2026/01/evolution_ecommerce_france_2019_2024.png" alt="Agrandir l'image">
    
    <div class="zoom-overlay">
        <svg viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>
        <span>Agrandir</span>
    </div>
    
    <!-- LE POPUP (À l'intérieur du bloc) -->
    <div class="zoom-modal" onclick="closeZoomModal(event, this)">
        <span class="zoom-close" onclick="closeZoomModal(event, this.parentElement)">&times;</span>
        <img class="zoom-modal-content">
    </div>
</div>

<script>
    function openZoomModal(containerElement) {
        const modal = containerElement.querySelector('.zoom-modal');
        const modalImg = modal.querySelector('.zoom-modal-content');
        const clickedImg = containerElement.querySelector('img');
        
        modalImg.src = clickedImg.src;
        modal.classList.add("show");
    }

    // Correction Croix : On passe l'événement 'e' pour stopper la propagation
    function closeZoomModal(e, modalElement) {
        // Empêche le clic de se propager au fond noir (qui fermerait aussi le modal)
        if(e) e.stopPropagation();
        modalElement.classList.remove("show");
    }
    
    document.addEventListener('keydown', function(event) {
        if (event.key === "Escape") {
            const openModal = document.querySelector('.zoom-modal.show');
            if(openModal) openModal.classList.remove("show");
        }
    });
</script>
<!-- FIN BLOC IMAGE ZOOMABLE -->



<p class="has-small-font-size">Source des données : <strong>FEVAD / Ecommerce Europe</strong></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>Entre 2019 et 2024, le e-commerce français a connu une croissance structurelle et continue, passant d’environ <strong>120 milliards d’euros</strong> à <strong>175,3 milliards d’euros</strong>, soit une hausse de près de <strong>+46 % en cinq ans</strong>. </p>



<p class="has-base-2-background-color has-background">Après une forte accélération durant <strong>la crise sanitaire</strong>, la dynamique <strong>ne s’est pas essoufflée</strong> : les années 2022 à 2024 affichent encore des <strong>croissances annuelles </strong>proches de <strong>+10 %</strong>.</p>
</div>
</div>



<p>👉🏻 Cette montée en puissance s’accompagne d’un volume croissant de <strong>transactions et d’interactions clients</strong>, rendant indispensables les <strong>outils de selfcare</strong> (FAQ intelligentes, chatbots, suivi de commande automatisé) pour maintenir l<strong>a qualité de l’expérience utilisateur </strong>.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div class="wp-block-ub-progress-bar ub_progress-bar ub-progress-bar-detail-align-center" id="ub-progress-bar-dc75023e-a196-4b59-ac06-2ffd9120f784"><div class="ub_progress-bar-container" id="dc75023e-a196-4b59-ac06-2ffd9120f784">
			<div class="ub_progress-detail-wrapper">
         <div class="ub_progress-bar-text" style="color: var(--accent); "><p><strong>part de selfcare</strong> dans<br>la relation client<br>en Eshop</p></div>
    </div>
			<svg class="ub_progress-bar-line" viewbox="0 0 100 13.9" style="" preserveaspectratio="none">
				<path class="ub_progress-bar-line-trail" d="M6.95,6.95 L93.05,6.95" stroke="#d9d9d9" stroke-width="13.9"></path>
				<path class="ub_progress-bar-line-path" d="M6.95,6.95 L93.05,6.95" stroke="var(--accent)" stroke-width="13.9" style="--ub-progress-bar-filled-dashoffset: 30px;; "></path>
				
				
			</svg>
			<div class="ub_progress-bar-label" style="width: 70%; color: var(--accent); "><p>
			<span class="ub-progress-number-prefix">jusqu&#8217;à </span>
			<span class="ub-progress-number-value">70</span>
			<span class="ub-progress-number-suffix">%</span>
		</p></div>
			</div></div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div style="--ub-icon-rotation:rotate(0deg);--ub-icon-size:40px;--ub-icon-color:var(--accent);--ub-icon-justification:center;--ub-icon-border-top:  undefined;--ub-icon-border-right:  undefined;--ub-icon-border-bottom:  undefined;--ub-icon-border-left:  undefined" class="wp-block-ub-icon" id="ub-icon-"><div class="ub_icon"><div class="ub_icon_wrapper"><svg width="24" height="24" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"><path d="M6.68822 10.625L6.24878 11.0649L5.5 11.8145L5.5 5.5L12.5 5.5V8L14 6.5V5C14 4.44772 13.5523 4 13 4H5C4.44772 4 4 4.44771 4 5V13.5247C4 13.8173 4.16123 14.086 4.41935 14.2237C4.72711 14.3878 5.10601 14.3313 5.35252 14.0845L7.31 12.125H8.375L9.875 10.625H7.31H6.68822ZM14.5605 10.4983L11.6701 13.75H16.9975C17.9963 13.75 18.7796 14.1104 19.3553 14.7048C19.9095 15.2771 20.2299 16.0224 20.4224 16.7443C20.7645 18.0276 20.7543 19.4618 20.7487 20.2544C20.7481 20.345 20.7475 20.4272 20.7475 20.4999L19.2475 20.5001C19.2475 20.4191 19.248 20.3319 19.2484 20.2394V20.2394C19.2526 19.4274 19.259 18.2035 18.973 17.1307C18.8156 16.5401 18.586 16.0666 18.2778 15.7483C17.9909 15.4521 17.5991 15.25 16.9975 15.25H11.8106L14.5303 17.9697L13.4696 19.0303L8.96956 14.5303L13.4394 9.50171L14.5605 10.4983Z"></path></svg></div></div></div>


<div style="background: accent; " class="ub_counter-container wp-elements-3b0ded7db67bb605977b606b27644f31 wp-block-ub-counter has-text-color has-base-3-color has-background has-accent-background-color" id="ub-counter-">
					<div class="ub_counter ub_text-center" data-start_num="0" data-end_num="40" data-animation_duration="2" style="">
						 
						 <div class="ub_counter-number-wrapper" style="font-size: 48px; ">
							  <span class="ub_counter-prefix"></span>
							  <span class="ub_counter-number">0</span>
							  <span class="ub_counter-suffix">%</span>
						 </div>
						 <div class="ub_counter-label-wrapper" style="font-size: 16px; "><span class="ub_counter-label">réduction du cout <br>grâce au <strong>SAV automatisé</strong></span></div>
					</div>
			   </div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-table"><table><thead><tr><th>Zone</th><th>Taux de selfcare</th></tr></thead><tbody><tr><td><strong>France</strong></td><td><strong>35–45 %</strong></td></tr><tr><td>Europe du Nord</td><td>50–60 %</td></tr><tr><td>États-Unis</td><td>55–65 %</td></tr><tr><td>Chine</td><td>70–80 %</td></tr></tbody></table></figure>
</div>
</div>



<!-- Bouton principal -->
<button id="uxMenuBtn" style="
  position: fixed;
  right: 14px;
  bottom: 40%;
  padding: 12px 14px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  font-size: 18px;
">
  ☰
</button>

<!-- Menu -->
<div id="uxMenu" style="
  display:none;
  position: fixed;
  right: 14px;
  bottom: 48%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 10000;
  font-family: Arial, sans-serif;
">
  <button class="uxItem" data-popup="sources">📚 Sources</button>
  <button class="uxItem" data-popup="methodo">🧑‍🎓NDRC</button>
  <button class="uxItem" data-popup="glossary">📘 Glossaire</button>
</div>

<!-- Overlay -->
<div id="uxOverlay" style="
  display:none;
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.55);
  z-index:10001;
"></div>

<!-- POPUPS -->

<div class="uxPopup" id="sources" data-title="📚 Sources UX mobile">
 

  <img decoding="async" 
    src="https://st9ph.fr/wp-content/uploads/2026/02/logo-blogst9ph-small.jpg"
    alt="Sources UX mobile"
    style="
      width:100%;
      max-width:120px;
      display:block;
      margin:12px auto 20px;
      border-radius:8px;
    "
  >
<h3>📚 Sources</h3>
<ul>
 <!--  ✅ contenus 📚 Sources -->
<li><strong>SNCF</strong> – SVI et stats internes</li>
<li><strong>🖥️ Tidio</strong> – Outil de ChatBot de la boutique st9ph</li>
<li><strong>Harmo, CEGID, Generix</strong> – chiffres phase de curiosité</li>
<li><strong>Shopfully et Wikipedia</strong> – Drive-to-store</li>
<li><strong>France Televisions</strong> – Video Automates</li>
<li><strong>Grand View, Market Us, Vending MArket Watch </strong> – parts de marchés &#8220;on the go&#8221;</li>
<li><strong>Tilster</strong> – enquète serf-service Kiosk</li>
<li><strong>FEVAD</strong> – parts de selfcare</li>
<li><strong>Zebra, Cap Gemini</strong> – étude sur le deflection Rate</li>
</ul>
</div>

<div class="uxPopup" id="methodo" data-title="🧑‍🎓 NDRC">


  <img decoding="async" 
    src="https://st9ph.fr/wp-content/uploads/2026/02/logo-blogst9ph-small.jpg"
    alt="Sources UX mobile"
    style="
      width:100%;
      max-width:120px;
      display:block;
      margin:12px auto 20px;
      border-radius:8px;
    "
  >
<h3>🧑‍🎓 NDRC</h3>
<!--  ✅ contenus 🧑‍🎓 NDRC -->
<p>Cet article est à visée de l&#8217;épreuve écrite E5A.</p>
<ul>
<li>savoir proposer des outils de selfcare dans le parcours client</li>
<li>savoir proposer des méthodes et des processus commerciaux autonomes</li>
<p>👉 Ce sujet était dans la réflexion commerciale de 2020 (Groupama)</p>
</div>

<div class="uxPopup" id="glossary" data-title="📘 Glossaire UX mobile">


  <img decoding="async" 
    src="https://st9ph.fr/wp-content/uploads/2026/02/logo-blogst9ph-small.jpg"
    alt="Sources UX mobile"
    style="
      width:100%;
      max-width:120px;
      display:block;
      margin:12px auto 20px;
      border-radius:8px;
    "
  >
<h3>📘 Glossaire</h3>
<!-- ✅ contenus 📘 Glossaire -->
<ul>
<li><strong>Selfcare</strong> : touch point autonome (sans commercial)</li>
<li><strong>SVI</strong> : serveur vocal interactif</li>
<li><strong>how-to</strong> : modes d&#8217;emploi</li>
<li><strong>chatbot</strong> : robot conversationnel (écrit)</li>
<li><strong>peer-to-peer</strong> : sans serveur (pour les ordinateurs) mais ici : sans professionnel &#8220;au dessus&#8221;</li>
<li><strong>topic</strong> : sujet dans un forum</li>
<li><strong>FAQ</strong> : Foire aux questions </li>
<li><strong>Drive (ou Web) -to-store</strong> : impulsion en ligne puis achat en SVP</li>
<li><strong>Smart lockers</strong> : casiers points relais autonomes</li>
<li><strong>DAB</strong> : Distributeur Automatique de Billets</li>
<li><strong>GSA</strong> : Grandes Surfaces Alimentaires</li>
<li><strong>Queue Busting</strong> : Gestion des files d&#8217;attente</li>
<li><strong>Deflexion Rate</strong> : taux de préférence du selfcare (quand le client peut choisir)</li>
<li><strong>CES</strong> : Customer Effort Score </li>
</ul>
</div>

<!-- Style popup -->
<style>
.uxItem {
  display: block;
  padding: 10px 16px;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: #111;        /* ✅ TEXTE VISIBLE */
  font-size: 14px;
}

.uxItem:hover {
  background: #f0f0f0;
}
.uxItem:hover { background:#f0f0f0; }

.uxPopup {
  display:none;
  position:fixed;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  background:#fff;
  width:90%;
  max-width:560px;
  max-height:80%;
  padding:24px;
  border-radius:10px;
  box-shadow:0 10px 40px rgba(0,0,0,0.25);
  z-index:10002;
  overflow-y:auto;
}
</style>
<style>
@media (max-width: 768px) {
  #uxMenuBtn,
  #uxMenu {
    display: none !important;
  }
}
</style>
<style>
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
}
</style>
<style>
@media (max-width: 768px) {
  #uxMenuBtn,
  #uxMenu,
  #uxOverlay,
  .uxPopup {
    position: static !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    display: none !important;
  }
}
</style>

<script>
(function () {

  // === DÉSACTIVATION MOBILE ===
  if (window.innerWidth <= 768) {
    return; // on ne fait RIEN sur mobile
  }

  // === RÉFÉRENCES ===
  const menuBtn = document.getElementById("uxMenuBtn");
  const menu = document.getElementById("uxMenu");
  const overlay = document.getElementById("uxOverlay");
  const popups = document.querySelectorAll(".uxPopup");

  if (!menuBtn || !menu || !overlay) return;

  // === OUVERTURE / FERMETURE MENU ===
  menuBtn.addEventListener("click", () => {
    menu.style.display = menu.style.display === "block" ? "none" : "block";
  });

  // === OUVERTURE POPUPS ===
  document.querySelectorAll(".uxItem").forEach(btn => {
    btn.addEventListener("click", () => {
      popups.forEach(p => p.style.display = "none");
      const target = document.getElementById(btn.dataset.popup);
      if (target) target.style.display = "block";
      overlay.style.display = "block";
      menu.style.display = "none";
    });
  });

  // === FERMETURE OVERLAY ===
  overlay.addEventListener("click", () => {
    popups.forEach(p => p.style.display = "none");
    overlay.style.display = "none";
  });

})();
</script>



</script>
<script>
(function () {
  if (window.innerWidth <= 768) {
    const uxPanel = document.querySelector('.ux-panel');
    if (uxPanel) {
      uxPanel.remove();
    }
  }
})();
</script>



<p class="has-base-2-background-color has-background">C'est donc <strong>une tendance durable et massive</strong> : le client veut le plus possible <strong>faire soi-même</strong>, <strong>sans attendre</strong>, mais avec une <strong>tolérance </strong>de panne proche de <strong>zéro</strong>, le besoin d'un <strong>support commercial</strong> quand cela devient compliqué ... bref, c'est un humain !</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div style="background-color: #f8f8f8; border-width: 2px; border-color: #ECECEC; " class="ub_call_to_action wp-block-ub-call-to-action-block" id="ub_call_to_action_a26b651c-5e4e-423e-add9-5aa5f6598bf0">
			<div class="ub_call_to_action_headline">
				<p class="ub_call_to_action_headline_text" style="font-size: 30px; text-align: center; ">🍀</p>
			</div>
			<div class="ub_call_to_action_content">
				<p class="ub_cta_content_text" style="font-size: 15px; text-align: center; ">Un petit Quiz pour finir ?</p>
			</div>
			<div class="ub_call_to_action_button">
				<a href="https://forms.gle/Vwk2AdAy4xMuigFX8" target="_self" rel="noopener noreferrer" class="ub_cta_button" style="background-color: var(--accent); width: 250px; ">
					<p class="ub_cta_button_text" style="color: var(--base-3); font-size: 14px; ">Allez ! Soyons fous !</p>
				</a>
			</div>
		</div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center has-accent-color has-text-color has-link-color has-medium-font-size wp-elements-6005cf48bff9fae1ed7a3fbdac7d8ac9"><strong>Tu préfères sur ton smartphone ?</strong></p>



<p class="has-text-align-center"><strong>Libre à toi :</strong></p>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img loading="lazy" decoding="async" width="490" height="490" src="https://st9ph.fr/wp-content/uploads/2026/01/qrcode_docs.google.com-5.png" alt="" class="wp-image-32702" style="width:195px;height:auto" srcset="https://st9ph.fr/wp-content/uploads/2026/01/qrcode_docs.google.com-5.png 490w, https://st9ph.fr/wp-content/uploads/2026/01/qrcode_docs.google.com-5-300x300.png 300w, https://st9ph.fr/wp-content/uploads/2026/01/qrcode_docs.google.com-5-150x150.png 150w" sizes="auto, (max-width: 490px) 100vw, 490px" /></figure>
</div></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">

<div class="wp-block-ub-social-share" id="ub-social-share-34cb1b13-3295-452f-ad1e-918dc902bc11">
			<div class="social-share-icons align-icons-center orientation-icons-row"><a aria-label="linkedin-logo" target="_blank" rel="nofollow" href="https://www.linkedin.com/sharing/share-offsite/?url=https%3A%2F%2Fst9ph.fr%2F%25f0%259f%258f%25b7%25ef%25b8%258f-animation-rc-le-selfcare%2F" class="ub-social-share-linkedin-container" style="border-color: #2867b2; ">
				<span class="social-share-icon ub-social-share-linkedin square" style="width: 30px; height: 30px; "><svg xmlns="http://www.w3.org/2000/svg" style="fill:#ffffff" fill="#ffffff" width="20" height="20" viewbox="0 0 448 512"><path d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path></svg></span><span style="">partager</span>
			</a></div>
		</div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center"><strong>donnez votre avis</strong> (star ranking) en bas de cette page</p>



<p class="has-text-align-center has-large-font-size">⬇️</p>



<p></p>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"><div class="wp-block-jetpack-repeat-visitor"></div></div>
</div>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:25%"></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:50%"><div class="yoast-breadcrumbs"><span><span><a href="https://st9ph.fr/">Accueil</a></span> » <span class="breadcrumb_last" aria-current="page">la relation client automatisée</span></span></div></div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:25%"></div>
</div>



<p></p>



			<div class="wp-block-uagb-post-grid uagb-post-grid  uagb-post__image-position-top uagb-post__image-enabled uagb-block-378ac619     uagb-post__items uagb-post__columns-3 is-grid uagb-post__columns-tablet-2 uagb-post__columns-mobile-1 uagb-post__equal-height" data-total="3" style="">

												<article class="uagb-post__inner-wrap">								<div class='uagb-post__image'>
									<a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-donner-des-sens-au-digital/" target="_self" rel="bookmark noopener noreferrer" class='uagb-image-ratio-inherit'><img loading="lazy" decoding="async" width="900" height="280" src="https://st9ph.fr/wp-content/uploads/2026/04/iimgEA-shops.jpg" class="attachment-large size-large" alt="" srcset="https://st9ph.fr/wp-content/uploads/2026/04/iimgEA-shops.jpg 916w, https://st9ph.fr/wp-content/uploads/2026/04/iimgEA-shops-300x93.jpg 300w, https://st9ph.fr/wp-content/uploads/2026/04/iimgEA-shops-768x239.jpg 768w" sizes="auto, (max-width: 900px) 100vw, 900px" />					</a>
							</div>
						<h4 class="uagb-post__title uagb-post__text">
				<a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-donner-des-sens-au-digital/" target="_self" rel="bookmark noopener noreferrer">⏺️Omnicanal | Donner des sens au digital</a>
			</h4>
						<div class='uagb-post__text uagb-post-grid-byline'>
								<time datetime="2026-05-04T14:12:54+02:00" class="uagb-post__date">
				<span class="dashicons-calendar dashicons"></span>					4 mai 2026				</time>
							<span class="uagb-post__comment">
				<span class="dashicons-admin-comments dashicons"></span>					Aucun commentaire				</span>
						</div>
							<div class='uagb-post__text uagb-post__excerpt'>
					<p>🎧 Ecouter l&#8217;introduction audio Ce n&#8217;est pas pour rien que même les pure players finissent...				</div>
						<div class="uagb-post__text uagb-post__cta wp-block-button">
				<a class="wp-block-button__link uagb-text-link" style="" href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-donner-des-sens-au-digital/" target="_self" rel="bookmark noopener noreferrer">Lire la suite</a>
			</div>
			
									</article>
																<article class="uagb-post__inner-wrap">								<div class='uagb-post__image'>
									<a href="https://st9ph.fr/com-en-service-client-et-son-management/" target="_self" rel="bookmark noopener noreferrer" class='uagb-image-ratio-inherit'><img loading="lazy" decoding="async" width="643" height="165" src="https://st9ph.fr/wp-content/uploads/2026/02/celi-avant.jpg" class="attachment-large size-large" alt="" srcset="https://st9ph.fr/wp-content/uploads/2026/02/celi-avant.jpg 643w, https://st9ph.fr/wp-content/uploads/2026/02/celi-avant-300x77.jpg 300w" sizes="auto, (max-width: 643px) 100vw, 643px" />					</a>
							</div>
						<h4 class="uagb-post__title uagb-post__text">
				<a href="https://st9ph.fr/com-en-service-client-et-son-management/" target="_self" rel="bookmark noopener noreferrer">🏷️Animation RC | La communication en service client &amp; son management</a>
			</h4>
						<div class='uagb-post__text uagb-post-grid-byline'>
								<time datetime="2026-02-09T15:14:06+01:00" class="uagb-post__date">
				<span class="dashicons-calendar dashicons"></span>					9 février 2026				</time>
							<span class="uagb-post__comment">
				<span class="dashicons-admin-comments dashicons"></span>					Un commentaire				</span>
						</div>
							<div class='uagb-post__text uagb-post__excerpt'>
					<p>L&#8217;importance de communiquer A toutes les étapes de son parcours client, votre interlocuteur recevra des...				</div>
						<div class="uagb-post__text uagb-post__cta wp-block-button">
				<a class="wp-block-button__link uagb-text-link" style="" href="https://st9ph.fr/com-en-service-client-et-son-management/" target="_self" rel="bookmark noopener noreferrer">Lire la suite</a>
			</div>
			
									</article>
																<article class="uagb-post__inner-wrap">								<div class='uagb-post__image'>
									<a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-ux-mobile/" target="_self" rel="bookmark noopener noreferrer" class='uagb-image-ratio-inherit'><img loading="lazy" decoding="async" width="900" height="381" src="https://st9ph.fr/wp-content/uploads/2026/01/Gemini_Generated_Image_zd5sdwzd5sdwzd5s-1024x434.png" class="attachment-large size-large" alt="" srcset="https://st9ph.fr/wp-content/uploads/2026/01/Gemini_Generated_Image_zd5sdwzd5sdwzd5s-1024x434.png 1024w, https://st9ph.fr/wp-content/uploads/2026/01/Gemini_Generated_Image_zd5sdwzd5sdwzd5s-300x127.png 300w, https://st9ph.fr/wp-content/uploads/2026/01/Gemini_Generated_Image_zd5sdwzd5sdwzd5s-768x326.png 768w, https://st9ph.fr/wp-content/uploads/2026/01/Gemini_Generated_Image_zd5sdwzd5sdwzd5s-1536x652.png 1536w, https://st9ph.fr/wp-content/uploads/2026/01/Gemini_Generated_Image_zd5sdwzd5sdwzd5s.png 1584w" sizes="auto, (max-width: 900px) 100vw, 900px" />					</a>
							</div>
						<h4 class="uagb-post__title uagb-post__text">
				<a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-ux-mobile/" target="_self" rel="bookmark noopener noreferrer">⏺️Omnicanal | UX Mobile</a>
			</h4>
						<div class='uagb-post__text uagb-post-grid-byline'>
								<time datetime="2026-01-30T13:51:57+01:00" class="uagb-post__date">
				<span class="dashicons-calendar dashicons"></span>					30 janvier 2026				</time>
							<span class="uagb-post__comment">
				<span class="dashicons-admin-comments dashicons"></span>					Aucun commentaire				</span>
						</div>
							<div class='uagb-post__text uagb-post__excerpt'>
					<p>C&#8217;est quoi &#8220;l&#8217;UX Mobile&#8221; ? UX pour User eXperience. L’expérience utilisateur en mobilité, c’est la...				</div>
						<div class="uagb-post__text uagb-post__cta wp-block-button">
				<a class="wp-block-button__link uagb-text-link" style="" href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-ux-mobile/" target="_self" rel="bookmark noopener noreferrer">Lire la suite</a>
			</div>
			
									</article>
																<article class="uagb-post__inner-wrap">								<div class='uagb-post__image'>
									<a href="https://st9ph.fr/%e2%98%9d%ef%b8%8flepreuve-e5-a-ecrit-du-bts-ndrc/" target="_self" rel="bookmark noopener noreferrer" class='uagb-image-ratio-inherit'><img loading="lazy" decoding="async" width="720" height="211" src="https://st9ph.fr/wp-content/uploads/2026/01/e5a-img.jpg" class="attachment-large size-large" alt="" srcset="https://st9ph.fr/wp-content/uploads/2026/01/e5a-img.jpg 720w, https://st9ph.fr/wp-content/uploads/2026/01/e5a-img-300x88.jpg 300w" sizes="auto, (max-width: 720px) 100vw, 720px" />					</a>
							</div>
						<h4 class="uagb-post__title uagb-post__text">
				<a href="https://st9ph.fr/%e2%98%9d%ef%b8%8flepreuve-e5-a-ecrit-du-bts-ndrc/" target="_self" rel="bookmark noopener noreferrer">☝️L&#8217;épreuve E5 A (écrit) du BTS NDRC</a>
			</h4>
						<div class='uagb-post__text uagb-post-grid-byline'>
								<time datetime="2026-01-11T21:23:50+01:00" class="uagb-post__date">
				<span class="dashicons-calendar dashicons"></span>					11 janvier 2026				</time>
							<span class="uagb-post__comment">
				<span class="dashicons-admin-comments dashicons"></span>					Aucun commentaire				</span>
						</div>
							<div class='uagb-post__text uagb-post__excerpt'>
					<p>⏱️ 3 heures | ✅coef2 /40 pts 👍 A ce jour, tous mes étudiants ont...				</div>
						<div class="uagb-post__text uagb-post__cta wp-block-button">
				<a class="wp-block-button__link uagb-text-link" style="" href="https://st9ph.fr/%e2%98%9d%ef%b8%8flepreuve-e5-a-ecrit-du-bts-ndrc/" target="_self" rel="bookmark noopener noreferrer">Lire la suite</a>
			</div>
			
									</article>
																<article class="uagb-post__inner-wrap">								<div class='uagb-post__image'>
									<a href="https://st9ph.fr/%f0%9f%8f%b7%ef%b8%8fanimation-rc-la-satisfaction-client/" target="_self" rel="bookmark noopener noreferrer" class='uagb-image-ratio-inherit'><img loading="lazy" decoding="async" width="758" height="158" src="https://st9ph.fr/wp-content/uploads/2026/01/satcli-bande.jpg" class="attachment-large size-large" alt="" srcset="https://st9ph.fr/wp-content/uploads/2026/01/satcli-bande.jpg 758w, https://st9ph.fr/wp-content/uploads/2026/01/satcli-bande-300x63.jpg 300w" sizes="auto, (max-width: 758px) 100vw, 758px" />					</a>
							</div>
						<h4 class="uagb-post__title uagb-post__text">
				<a href="https://st9ph.fr/%f0%9f%8f%b7%ef%b8%8fanimation-rc-la-satisfaction-client/" target="_self" rel="bookmark noopener noreferrer">🏷️Animation RC | la Satisfaction Client</a>
			</h4>
						<div class='uagb-post__text uagb-post-grid-byline'>
								<time datetime="2026-01-10T14:12:41+01:00" class="uagb-post__date">
				<span class="dashicons-calendar dashicons"></span>					10 janvier 2026				</time>
							<span class="uagb-post__comment">
				<span class="dashicons-admin-comments dashicons"></span>					Aucun commentaire				</span>
						</div>
							<div class='uagb-post__text uagb-post__excerpt'>
					<p>C&#8217;est quoi la satisfaction client ? On parle aussi de &#8220;Customer Care&#8221;. C&#8217;est le fait...				</div>
						<div class="uagb-post__text uagb-post__cta wp-block-button">
				<a class="wp-block-button__link uagb-text-link" style="" href="https://st9ph.fr/%f0%9f%8f%b7%ef%b8%8fanimation-rc-la-satisfaction-client/" target="_self" rel="bookmark noopener noreferrer">Lire la suite</a>
			</div>
			
									</article>
																<article class="uagb-post__inner-wrap">								<div class='uagb-post__image'>
									<a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/" target="_self" rel="bookmark noopener noreferrer" class='uagb-image-ratio-inherit'><img loading="lazy" decoding="async" width="798" height="185" src="https://st9ph.fr/wp-content/uploads/2026/01/Capture-decran-2026-01-08-220116.jpg" class="attachment-large size-large" alt="" srcset="https://st9ph.fr/wp-content/uploads/2026/01/Capture-decran-2026-01-08-220116.jpg 798w, https://st9ph.fr/wp-content/uploads/2026/01/Capture-decran-2026-01-08-220116-300x70.jpg 300w, https://st9ph.fr/wp-content/uploads/2026/01/Capture-decran-2026-01-08-220116-768x178.jpg 768w" sizes="auto, (max-width: 798px) 100vw, 798px" />					</a>
							</div>
						<h4 class="uagb-post__title uagb-post__text">
				<a href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/" target="_self" rel="bookmark noopener noreferrer">⏺️Omnicanal | Search Engine Marketing</a>
			</h4>
						<div class='uagb-post__text uagb-post-grid-byline'>
								<time datetime="2026-01-08T21:56:41+01:00" class="uagb-post__date">
				<span class="dashicons-calendar dashicons"></span>					8 janvier 2026				</time>
							<span class="uagb-post__comment">
				<span class="dashicons-admin-comments dashicons"></span>					Aucun commentaire				</span>
						</div>
							<div class='uagb-post__text uagb-post__excerpt'>
					<p>C&#8217;est quoi le &#8220;Search Engine Marketing&#8221; ? Le Search Engine Marketing (SEM) est l&#8217;addition de...				</div>
						<div class="uagb-post__text uagb-post__cta wp-block-button">
				<a class="wp-block-button__link uagb-text-link" style="" href="https://st9ph.fr/%e2%8f%ba%ef%b8%8fomnicanal-search-engine-marketing/" target="_self" rel="bookmark noopener noreferrer">Lire la suite</a>
			</div>
			
									</article>
											</div>
			


<div class="wp-block-uagb-team uagb-team__image-position-left uagb-team__align-left uagb-team__stack-tablet uagb-block-5002ab42"><img decoding="async" class="uagb-team__image-crop-circle" src="https://st9ph.fr/wp-content/uploads/2022/01/steph-150x150.png" alt="" height="100" width="100" loading="lazy"/><div class="uagb-team__content"><h4 class="uagb-team__title">St9ph</h4><span class="uagb-team__prefix">Webmaster</span><p class="uagb-team__desc">Je suis Formateur depuis 1997 et j'ai commencé ma carrière comme technicien en réseaux informatiques.  J'ai travaillé pour de grands organismes de formation : Greta, AFPA, réseau des CCI, des écoles de commerces réputées : EM Normandie, E2SE, groupes FIM et ICEP, et collaboré en Centre d'Appels chez Webhelp pendant 12 ans avec des grands comptes FAI comme Orange, Bouygues Telecom et SFR, des assureurs et des fournisseurs d'Energie comme Direct Energie (devenu Total) et EDF (devenu Engie) !</p><ul class="uagb-team__social-list"><li class="uagb-team__social-icon"><a href="https://www.facebook.com/profile.php?id=100076192144163" aria-label="facebook" target="_blank" title="" rel="noopener noreferrer"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M504 256C504 119 393 8 256 8S8 119 8 256c0 123.8 90.69 226.4 209.3 245V327.7h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.3 482.4 504 379.8 504 256z"></path></svg></a></li><li class="uagb-team__social-icon"><a href="https://www.linkedin.com/company/st9ph/" aria-label="linkedin" target="_blank" title="" rel="noopener noreferrer"><svg xmlns="https://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"></path></svg></a></li></ul></div></div>
<p>L’article <a href="https://st9ph.fr/%f0%9f%8f%b7%ef%b8%8f-animation-rc-le-selfcare/">🏷️ Animation RC | le Selfcare</a> est apparu en premier sur <a href="https://st9ph.fr">st9ph.fr</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://st9ph.fr/%f0%9f%8f%b7%ef%b8%8f-animation-rc-le-selfcare/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		<enclosure url="https://st9ph.fr/wp-content/uploads/2026/01/SNCF-complete.mp3" length="900864" type="audio/mpeg" />
<enclosure url="https://st9ph.fr/wp-content/uploads/2026/01/voicertool_audio_Eloise_12-01-2026_at_19_54_14_on_January_12th_2026.mp3" length="376416" type="audio/mpeg" />

		<post-id xmlns="com-wordpress:feed-additions:1">31977</post-id>	</item>
	</channel>
</rss>
