{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js", "ssg:https://framerusercontent.com/modules/1rn3LDJPjcng0ncTzBZK/R9nIoZMyHqsHXVQ0LAJb/LsyIq3qaH-2.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL,originalSearchParams]=parsedURL;const searchParams=embedURL.searchParams;if(originalSearchParams){for(const[param,value]of originalSearchParams){searchParams.set(param,value);}}// https://developers.google.com/youtube/player_parameters\nsearchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),showThumbnail&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://i.ytimg.com\"}),/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",src:getThumbnailURL(videoId,thumbnail),style:{...videoStyle,objectFit:\"cover\"}})]}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL,null];}const searchParams=url.searchParams;if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");const page=pathSegments[0];// https://www.youtube.com/watch?v=Fop2oskTug8\nif(page===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}// https://www.youtube.com/embed/Fop2oskTug8\nif(page===\"embed\"){const videoId=pathSegments[1];return[videoId,url,searchParams];}// https://www.youtube.com/shorts/zwMEhBq4kYM / https://www.youtube.com/live/XlWSzaluBKk\nif(page===\"shorts\"||page===\"live\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL,searchParams];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"560\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{ComponentPresetsConsumer as n,Link as r}from\"framer\";import{motion as o}from\"framer-motion\";import*as a from\"react\";import{Youtube as i}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";export const richText=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[\"Consio\u2019s CEO - Philippe Roireau sat down with Jason Greenwood from \",/*#__PURE__*/e(r,{href:\"https://www.greenwoodconsulting.net/podcast\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"Greenwood consulting\"})}),\", a specialist in B2B Commerce, to discuss the role on phone engagement in ecommerce retention.\"]}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(i,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=ch1kb_dG1v0\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"In today\u2019s ecommerce landscape, brands have mastered the art of digital convenience, from seamless checkout flows to omnichannel marketing automation. But there\u2019s one powerful channel that remains surprisingly underused: the phone.\"}),/*#__PURE__*/e(\"p\",{children:\"Yes, the phone call, the most direct form of communication, has largely been ignored in favor of email, SMS, and retargeting ads. Yet brands are sitting on thousands of customer phone numbers, and very few are doing anything meaningful with them.\"}),/*#__PURE__*/t(\"p\",{children:[\"At \",/*#__PURE__*/e(\"strong\",{children:\"Consio\"}),\", we believe it\u2019s time to bring \",/*#__PURE__*/e(\"em\",{children:\"sales\"}),\" back into the conversation, literally. Ecommerce has optimized marketing to the max, but what about real human engagement at key decision moments? What about reaching out, not just reacting?\"]}),/*#__PURE__*/t(\"p\",{children:[\"In this post, we\u2019ll explore five actionable insights that can help your brand tap into the next frontier of ecommerce growth: \",/*#__PURE__*/e(\"strong\",{children:\"scaling personal, one-to-one conversations through outbound phone engagement\"}),\"\u2014and how platforms like Consio are making it possible.\"]}),/*#__PURE__*/e(\"h2\",{children:\"\uD83C\uDFAF 1. Brands must embrace the untapped potential of phone-based sales in ecommerce\"}),/*#__PURE__*/e(\"p\",{children:\"Most ecommerce brands sit on a goldmine of customer phone numbers but never leverage them for proactive outreach. Unlike push emails or SMS, a well-timed, personalized phone call builds a genuine human connection\u2014and drives conversion. Brands should look beyond traditional marketing and recognize outbound phone sales as a core revenue channel, not just customer support.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Actionable takeaway:\"}),\" Audit your CRM for phone data and create a pilot outbound call campaign focused on high-intent segments\u2014like abandoned carts over a certain value.\"]}),/*#__PURE__*/e(\"h2\",{children:\"\uD83D\uDD01 2. Customer experience is a conversation\u2014not a campaign\"}),/*#__PURE__*/t(\"p\",{children:[\"Consio is built on the belief that ecommerce brands need to scale the \",/*#__PURE__*/e(\"em\",{children:\"unscalable\"}),\"\u2014like a store associate asking \u201Ccan I help you?\u201D but online. By blending tech and human touch, brands can proactively re-engage churned subscribers, high-value customers, and even first-time site visitors with relevant, respectful outreach that feels personal.\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Actionable takeaway:\"}),\" Create campaigns not just for transactions, but for relationship-building\u2014like calling lapsed customers to ask why they left.\"]}),/*#__PURE__*/e(\"h2\",{children:\"\uD83D\uDD0C 3. Great segmentation + smart tech = real-time, humanized outreach\"}),/*#__PURE__*/e(\"p\",{children:\"Consio doesn\u2019t reinvent the wheel\u2014it integrates with tools like Shopify and Klaviyo to turn your existing customer segments into high-converting call lists. It handles the hard parts (like messy phone data), enriches your contacts, and automates voicemail drops, SMS follow-ups, and future AI agents\u2014all tied to ROI.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Actionable takeaway:\"}),\" Use Klaviyo or Shopify segments to power your first outbound call workflows and measure conversion lift compared to email alone.\"]}),/*#__PURE__*/e(\"h2\",{children:\"\uD83D\uDCDE 4. Voice is a new power channel for attribution and retention\"}),/*#__PURE__*/e(\"p\",{children:\"Phone conversations, especially when backed by context and segmentation, are among the least disputed channels when it comes to attribution. If a customer wasn\u2019t on your site and then buys after a call\u2014there\u2019s no debate where the conversion came from. And it\u2019s not just about sales: dropped voicemails and follow-up texts also create brand stickiness.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Actionable takeaway:\"}),\" Add voice calls and voicemails to your retention playbook\u2014especially for churned subscribers and high-AOV abandoned checkouts.\"]}),/*#__PURE__*/e(\"h2\",{children:\"\uD83E\uDDE0 5. The future is AI-assisted\u2014but human-guided\u2014for now\"}),/*#__PURE__*/e(\"p\",{children:\"While Consio\u2019s vision includes AI voice agents that can handle basic outbound calls (like expired credit cards), the near-term approach is to empower human reps with smart call scripts, objection handling, and campaign logic\u2014all enriched by past order data and AI cue cards. Think of it as giving your team superpowers.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Actionable takeaway:\"}),\" Equip agents with campaign-specific AI-generated scripts and use recorded calls to refine messaging and improve rep training.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Conclusion: from transactional to relational commerce\"}),/*#__PURE__*/e(\"p\",{children:\"It\u2019s easy to forget that commerce, has always been personal. We used to walk into stores and have actual conversations with associates who helped us choose, compare, and ultimately buy. Somewhere along the way, we lost that in the digital space.\"}),/*#__PURE__*/t(\"p\",{children:[\"But now, with the right technology, ecommerce brands have the tools to \",/*#__PURE__*/e(\"strong\",{children:\"reintroduce that human touch at scale\"}),\". Whether it\u2019s a well-timed call to recover an abandoned cart, a voicemail to re-engage a churned subscriber, or a personalized follow-up from a brand rep\u2014proactive outreach can turn browsers into buyers and customers into loyal advocates.\"]}),/*#__PURE__*/e(\"p\",{children:\"At Consio, we\u2019re building the infrastructure to make that happen\u2014blending smart automation, human connection, and measurable ROI. The brands that thrive in 2025 and beyond won\u2019t just be the ones with the best product or fastest site\u2014they\u2019ll be the ones bold enough to pick up the phone and start a real conversation.\"}),/*#__PURE__*/e(\"p\",{children:\"Check the full episode. It's out on all the pod engines - Spotify, Apple, YouTube etc:\"}),/*#__PURE__*/t(\"p\",{children:[\"Apple: \",/*#__PURE__*/e(r,{href:\"https://lnkd.in/gaYJqycq\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"https://lnkd.in/gaYJqycq\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"Spotify: \",/*#__PURE__*/e(r,{href:\"https://lnkd.in/gprVK2WP\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"https://lnkd.in/gprVK2WP\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"YouTube: \",/*#__PURE__*/e(r,{href:\"https://lnkd.in/gFuUuXjJ\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"https://lnkd.in/gFuUuXjJ\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"Find out more about Jason Greenwood Consulting: \",/*#__PURE__*/e(r,{href:\"https://www.greenwoodconsulting.net/podcast\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"https://www.greenwoodconsulting.net/podcast\"})})]})]});export const richText1=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[\"Outbound phone sales isn\u2019t just about cold calls and follow-ups\u2014it\u2019s about making meaningful connections that drive results. According to \",/*#__PURE__*/e(r,{href:\"https://www.businesswire.com/news/home/20210727005281/en/TCN-Consumer-Survey-Finds-Americans-Overwhelmingly-Prefer-to-Interact-with-a-Live-Person-When-Dealing-with-Customer-Service-Reps?utm_source=chatgpt.com\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"strong\",{children:\"Business Wire\"})})}),\", approximately 69% of customer support interactions still take place over the phone, and are 10-15 times more likely to drive a sale compared to digital channels, according to industry research.\\xa0\"]}),/*#__PURE__*/t(\"p\",{children:[\"At \",/*#__PURE__*/e(r,{href:\"https://aventus.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"strong\",{children:\"Aventus\"})})}),\", our experience working with diverse businesses has allowed us to refine strategies that consistently deliver high conversion rates and exceptional customer experiences. Here are 11 of our best practices we implement to ensure an efficient and profitable outbound phone process.\"]}),/*#__PURE__*/e(\"h2\",{children:\"1. Know your audience inside out\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why it matters: \"}),\"Before picking up the phone, preparation is key. Have your agents research your target audience to understand their needs, pain points, and preferences. This allows them to tailor the approach and demonstrate value from the first moment of contact.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to do it:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Use CRM data to review past interactions or preferences.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Segment your audience based on demographics, buying history, or behavior.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Develop personas to anticipate objections and tailor messaging accordingly.\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"2. Craft a compelling opening\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why it matters: \"}),\"The first 10 seconds of a call can determine its outcome. A strong opening grabs attention and sets a positive tone. Avoid generic introductions and instead personalize your pitch to immediately address the prospect\u2019s interests or challenges.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to do it:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Use the prospect\u2019s name and mention a relevant detail (e.g., \u201CI noticed you recently inquired about [product/service]\u2026\u201D).\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"State your purpose clearly and confidently.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Ask a thought-provoking question to engage the prospect early.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Example: \u201CHi [Name], this is [Your Name] from Aventus. I saw that your company has been exploring ways to optimize [specific pain point]. Have you considered how [your solution] could streamline that process?\u201D\"}),/*#__PURE__*/e(\"h2\",{children:\"3. Focus on active listening\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why it matters: \"}),\"Sales isn\u2019t just about speaking\u2014it\u2019s about listening. By having your agents give their full attention, they can uncover the prospect\u2019s true needs and position your offering as the perfect solution.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to do it:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Use verbal cues like \u201CI see\u201D or \u201CThat makes sense\u201D to show engagement.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Paraphrase their concerns to ensure understanding.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Avoid interrupting and take notes during the conversation.\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"4. Emphasize value, not features\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why it matters: \"}),\"While it\u2019s tempting to dive into the features and small details of your product or service, prospects care most about how it will benefit them. Agents should focus on outcomes and solutions rather than technical details.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to do it:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Highlight specific results your clients have achieved using your product.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Use case studies or testimonials to build credibility.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Tailor your value proposition to address the prospect\u2019s pain points directly.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"Example: Instead of saying, \u201COur software has advanced analytics,\u201D say, \u201COur software helps companies reduce reporting time by 30%, allowing your team to focus on strategy rather than data crunching.\u201D\"}),/*#__PURE__*/e(\"h2\",{children:\"5. Handle objections with confidence\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why it matters: \"}),\"Objections are a natural part of sales conversations. The key is to approach them as opportunities to build trust and address concerns, rather than as barriers. This takes time for some agents to truly feel comfortable and confident, but it\u2019s a response mechanism that will prove helpful in the long run.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to do it:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Anticipate common objections and prepare responses in advance.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Use the \u201Cfeel, felt, found\u201D approach: \u201CI understand how you feel. Other clients felt the same way, but they found that [solution] resolved their concerns.\u201D\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Ask follow-up questions to understand the root of the objection.\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"6. Use data-driven insights\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why it matters: \"}),\"At \",/*#__PURE__*/e(r,{href:\"https://aventus.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"strong\",{children:\"Aventus\"})})}),\", we\u2019ve found that leveraging data can significantly improve call outcomes. Use analytics to refine your approach and prioritize high-potential leads.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to do it:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Analyze past call data to identify trends and effective techniques.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Use predictive analytics to target prospects most likely to convert.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Track key metrics like call duration, conversion rate, and follow-up success.\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"7. Maintain a positive tone\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why it matters: \"}),\"Your agent\u2019s tone can convey enthusiasm, confidence, and professionalism\u2014or lack thereof. A positive tone can make a significant difference in how prospects perceive your call. But this starts from the top of the company. Your agents need to enjoy their work, rather than counting down the minutes till they can clock out. While it will be inevitable for some of your hires, ensure a positive work environment and initiatives to motivate a positive attitude on the phones.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to do it:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Smile while speaking; it naturally improves your tone.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Match the prospect\u2019s pace and energy level.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Use friendly, professional language and avoid sounding scripted.\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"8. Time your calls strategically\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why it matters: \"}),\"Timing is crucial in outbound sales. Calling at the right time can significantly increase the chances of reaching your prospect and having a meaningful conversation.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to do it:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Experiment with different times of day to find what works best for your audience.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Avoid calling during known busy hours (e.g., early Monday mornings or late Friday afternoons).\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Use tools to identify time zones and schedule calls accordingly.\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"9. Always have a clear call-to-action\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why it matters: \"}),\"A great call should end with a clear next step. Whether it\u2019s scheduling a follow-up, sending additional information, or closing the sale, ensure both the agent and the prospect are aligned on what comes next. This is where agent training is crucial to success.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to do it:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Summarize the conversation and confirm mutual understanding.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Propose a specific action: \u201CCan we schedule a demo for next Tuesday?\u201D\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Send a follow-up email immediately after the call to reinforce your commitment.\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"10. Prioritize follow-up\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why it matters: \"}),\"The fortune is in the follow-up. Many sales are closed after multiple touchpoints, so persistence\u2014without being pushy\u2014is essential.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to do it:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Use a CRM to track follow-up schedules and notes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Personalize follow-up communications based on the initial conversation.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Don\u2019t give up after one or two attempts; research shows it often takes 5-7 touchpoints to close a sale.\"})})]}),/*#__PURE__*/e(\"h2\",{children:\"11. Continuously train and refine\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Why it matters: \"}),\"Sales techniques and customer preferences evolve over time. Regular training and feedback can keep your team sharp and adaptive.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to do it:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Role-play different scenarios to practice responses and improve confidence.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Analyze call recordings to identify areas for improvement.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Encourage team members to share successes and lessons learned during team meetings.\"})})]}),/*#__PURE__*/t(\"p\",{children:[\"Outbound phone sales remain a powerful tool for driving revenue and building relationships\u2014when done right. By focusing on preparation, personalization, and continuous improvement, your team can excel in every interaction. At \",/*#__PURE__*/e(r,{href:\"https://aventus.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"strong\",{children:\"Aventus\"})})}),\", we\u2019ve seen these best practices transform outcomes for our clients, and we\u2019re confident they can do the same for you.\"]}),/*#__PURE__*/e(\"p\",{children:\"If you\u2019re ready to turn your outbound phone strategy into a profitable machine, book a consultation today.\\xa0\"}),/*#__PURE__*/e(\"h2\",{children:\"About the author\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(r,{href:\"https://www.linkedin.com/in/lacy-eyre-37a948157\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"strong\",{children:\"Lacy Eyre\"})})}),\" is the Director of Client Success at \",/*#__PURE__*/e(r,{href:\"https://aventus.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"strong\",{children:\"Aventus\"})})}),\", bringing over a decade of experience to the role. She has advanced through various positions within the company, including Customer Service Manager and Operations Manager. In her current role, she focuses on building lasting customer relationships and enhancing client success strategies.\"]})]});export const richText2=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"It\u2019s a normal day at work. The phone rings, and on the other end is a customer hoping for a quick solution, a thoughtful answer, or simply a human touch.\"}),/*#__PURE__*/e(\"p\",{children:\"Inbound calls aren\u2019t just about answering queries\u2014they\u2019re a golden opportunity for an inbound call center to build trust, strengthen relationships, and show your brand\u2019s true colors. But let\u2019s be real. Nailing inbound calls takes more than just picking up the phone. It\u2019s about creating an experience that leaves customers feeling heard, valued, and confident in your brand.\"}),/*#__PURE__*/e(\"p\",{children:\"In this guide, we\u2019ll explore why inbound calls matter more than ever and how you can master every interaction. Let\u2019s dive in.\"}),/*#__PURE__*/e(\"img\",{alt:\"Photo of a sales representative with a headset\",className:\"framer-image\",height:\"384\",src:\"https://framerusercontent.com/images/Up8gzJ0h7R2Pzifpvbhjy5SDvU.png\",srcSet:\"https://framerusercontent.com/images/Up8gzJ0h7R2Pzifpvbhjy5SDvU.png?scale-down-to=512 512w,https://framerusercontent.com/images/Up8gzJ0h7R2Pzifpvbhjy5SDvU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Up8gzJ0h7R2Pzifpvbhjy5SDvU.png 1366w\",style:{aspectRatio:\"1366 / 768\"},width:\"683\"}),/*#__PURE__*/e(\"h2\",{children:\"Why inbound calls matter more than ever\"}),/*#__PURE__*/e(\"p\",{children:\"Amidst chatbots, emails, and instant messaging, inbound call centers remain a classic channel for effective customer communication. While other channels focus on speed and convenience, calls offer something irreplaceable: a personal connection. Customers don\u2019t just want solutions. They want to feel heard, understood, and valued. The truth is, nothing delivers that quite like a great phone conversation.\"}),/*#__PURE__*/e(\"h3\",{children:\"Why a great call experience builds loyalty and customer satisfaction\"}),/*#__PURE__*/e(\"p\",{children:\"When customers pick up the phone to call, they\u2019re often dealing with something important and urgent. It can be a pressing issue, a detailed question, or even a complaint.\"}),/*#__PURE__*/t(\"p\",{children:[\"Now, a great experience during one call can turn a potentially negative situation into a loyalty-building moment. In fact,\",/*#__PURE__*/e(r,{href:\"https://info.microsoft.com/rs/157-GQE-382/images/EN-CNTNT-Report-DynService-2017-global-state-customer-service-en-au.pdf\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"96% of respondents\"})]})}),\" say\",/*#__PURE__*/e(r,{href:\"https://www.ltvplus.com/customer-service/types-of-customer-service/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"customer service\"})]})}),\" is important when it comes to choosing which brands to be loyal to.\"]}),/*#__PURE__*/e(\"p\",{children:\"Here\u2019s why:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Unlike emails or chats, phone calls allow for tone, emotion, and empathy. These elements help create a human connection that strengthens trust. Imagine a customer calling about a delayed delivery. A well-trained representative who offers a heartfelt apology and an immediate solution\u2014like expedited shipping or a discount\u2014can turn frustration into gratitude.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Customers appreciate getting answers or solutions right on the spot unlike email support where they'll have to wait for an indefinite amount of time. A quick and satisfying resolution leaves a lasting positive impression.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Studies show that customers remember personal interactions more than digital exchanges.\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"How inbound calls affect your brand\u2019s reputation\"}),/*#__PURE__*/e(\"p\",{children:\"A seamless call experience sets the tone for future customer interactions. Likewise, a poor inbound phone call experience can destroy your reputation just as quickly.\"}),/*#__PURE__*/t(\"p\",{children:[\"Customers are quick to share experiences\u2014good or bad.\",/*#__PURE__*/e(r,{href:\"https://www.marketingcharts.com/demographics-and-audiences-232491\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"A survey in 2023\"})]})}),\" showed 73% of US respondents share very good experiences, and 70% share very bad experiences. What does this mean? \",/*#__PURE__*/e(\"strong\",{children:\"A single positive call can generate referrals, while a negative one could lead to damaging reviews.\"})]}),/*#__PURE__*/e(\"p\",{children:\"It\u2019s definitely time to reconsider how you\u2019re conducting your phone calls\u2014is it helping your business, or damaging it?\"}),/*#__PURE__*/e(\"img\",{alt:\"Photo of a female sales representative on the phone\",className:\"framer-image\",height:\"384\",src:\"https://framerusercontent.com/images/J45vzmSO2QTRNZQ60ZSpUCxk.png\",srcSet:\"https://framerusercontent.com/images/J45vzmSO2QTRNZQ60ZSpUCxk.png?scale-down-to=512 512w,https://framerusercontent.com/images/J45vzmSO2QTRNZQ60ZSpUCxk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/J45vzmSO2QTRNZQ60ZSpUCxk.png 1366w\",style:{aspectRatio:\"1366 / 768\"},width:\"683\"}),/*#__PURE__*/e(\"h2\",{children:\"10 best practices for effective inbound call handling every time\"}),/*#__PURE__*/e(\"p\",{children:\"Inbound calls are more than just answering the phone. They\u2019re a chance for a call center to create a meaningful connection and deliver solutions that keep customers coming back. Here are ten actionable best practices to help you get started.\"}),/*#__PURE__*/e(\"h3\",{children:\"1. Always answer quickly\u2014speed is key\"}),/*#__PURE__*/t(\"p\",{children:[\"Nobody likes waiting on hold. Answering inbound calls promptly is one of the simplest ways to show your customers you value their\",/*#__PURE__*/e(r,{href:\"https://www.ltvplus.com/customer-service/average-handle-time/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"time when handling\"})]})}),\" inbound calls.\"]}),/*#__PURE__*/t(\"p\",{children:[\"Customers often call because they need immediate assistance. A fast answer reassures them that help is on the way. According to research by HubSpot,\",/*#__PURE__*/e(r,{href:\"https://www.hubspot.com/hubfs/assets/flywheel%20campaigns/HubSpot%20Annual%20State%20of%20Service%20Report%20-%202022.pdf\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"90% of customers\"})]})}),\" say an \u201Cimmediate\u201D response is important when they have a service question.\"]}),/*#__PURE__*/e(\"h3\",{children:\"2. Start with a friendly and professional greeting\"}),/*#__PURE__*/e(\"p\",{children:\"First impressions matter! Your center agents' greeting sets the tone for the call. A warm, professional, and polite opening establishes trust and puts the customer at ease. Essentially, it builds an emotional connection right from the start.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Tips for a greeting customers:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Introduce yourself and your company: \u201CGood morning, this is Sarah from XYZ Co. How can I assist you today?\u201D\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Smile while speaking\u2014it naturally improves your tone.\"})})]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Example: \"}),\"A caller asks about a service upgrade. Starting with \u201CThank you for calling XYZ Co., this is John. How may I assist you today?\u201D sets a professional yet approachable tone for the entire interaction.\"]}),/*#__PURE__*/e(\"h3\",{children:\"3. Actively listen to understand the customer\u2019s needs\"}),/*#__PURE__*/e(\"p\",{children:\"Active listening means giving customers your full attention, paraphrasing their concerns, and asking clarifying questions to ensure you understand their customer data.\"}),/*#__PURE__*/e(\"p\",{children:\"Why does this matter? Simple\u2014customers feel valued when they know they\u2019re being heard. Plus, active listening helps avoid miscommunication and ensures accurate solutions.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Example: \"}),\"A customer calls with a billing issue. You paraphrase their concern: \u201CSo, you\u2019re saying you were charged twice for the same month. Is that correct?\u201D This confirms you understand the issue before proceeding.\"]}),/*#__PURE__*/e(\"h3\",{children:\"4. Personalize every call by using names and tailored responses\"}),/*#__PURE__*/t(\"p\",{children:[\"Customers don\u2019t want to feel like just another number. Personalizing the interaction shows that you see them as individuals, which is crucial in a contact center. As technology continues to move forward at lighting speed,\",/*#__PURE__*/e(r,{href:\"https://www.salesforce.com/resources/articles/customer-expectations/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"73% of customers\"})]})}),\" expect better personalization. With personalization efforts reaping\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Example: \"}),\"A regular customer calls about a product they\u2019ve purchased before. Address them by name and reference their purchase history: \u201CHi, Maria! I see you\u2019ve bought our deluxe coffee grinder. How can I help you with it today?\u201D\"]}),/*#__PURE__*/e(\"h3\",{children:\"5. Stay calm and collected, even when under pressure\"}),/*#__PURE__*/e(\"p\",{children:\"Not every call will be easy, and that\u2019s a fact. However, inbound call center agents remaining calm during challenging conversations helps maintain control and provide effective solutions.\"}),/*#__PURE__*/e(\"p\",{children:\"Try taking a deep breath if a caller becomes irate. Try to think of the situation from their point of view. Then, use phrases like \u201CI understand why you\u2019re upset\u201D to acknowledge their feelings.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Example: \"}),\"A customer calls angrily about a delayed shipment. By staying calm, you apologize sincerely, check their order status, and provide a realistic update on delivery.\"]}),/*#__PURE__*/e(\"h3\",{children:\"6. Use clear and concise language to avoid misunderstandings\"}),/*#__PURE__*/e(\"p\",{children:\"Clarity is key to ensuring customers fully understand your solutions or instructions, which is crucial for achieving first call resolution. It helps avoid confusion and follow-up calls. Plus, it helps customers have confidence in your brand.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Example:\"}),\" Instead of saying, \u201CWe might process your refund soon,\u201D clarify with, \u201CYour refund will be processed within 3-5 business days.\u201D Then, actually follow through.\"]}),/*#__PURE__*/e(\"h3\",{children:\"7. Document important details in real-time\"}),/*#__PURE__*/e(\"p\",{children:\"Taking notes during a call ensures no details are missed, making follow-ups smoother and more effective. Accurate records and call center metrics improve customer satisfaction, streamline internal processes, and reduce the risk of misunderstandings. There are many customer service platforms that provide this feature. That way, notes can be accessed by the entire team in case of follow-ups or additional conversations.\"}),/*#__PURE__*/e(\"h3\",{children:\"8. End on a positive note\"}),/*#__PURE__*/e(\"p\",{children:\"The way you end a call leaves a lasting impression. A positive closing reinforces satisfaction and shows gratitude, helping to deliver exceptional customer experiences.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Tips for ending well:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Recap the next steps: \u201CI\u2019ll email you the tracking information shortly.\u201D\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Thank them for calling: \u201CThank you for reaching out. Have a great day!\u201D\"})})]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Example: \"}),\"After resolving an issue, you say, \u201CI\u2019m glad we could sort this out today, and I hope you have a wonderful weekend!\u201D\"]}),/*#__PURE__*/e(\"h3\",{children:\"9. Leverage tech tools and platforms to take your inbound calls to the next level\"}),/*#__PURE__*/e(\"p\",{children:\"Modern technology transforms how contact centers handle inbound calls, making processes more efficient for agents and more satisfying for customers. By integrating tools, you can elevate your inbound call strategy.\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"If you\u2019re eager to work with customer service experts who seamlessly integrate tools with the power of human connection,\"}),/*#__PURE__*/e(r,{href:\"https://www.ltvplus.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"strong\",{children:\" LTVplus is highly recommended\"})})}),/*#__PURE__*/e(\"strong\",{children:\".\"})]}),/*#__PURE__*/e(\"h3\",{children:\"10. Use AI-powered analytics for data-driven strategies and first call resolution\"}),/*#__PURE__*/e(\"p\",{children:\"AI-powered analytics can provide deep insights into call trends, agent performance, and customer interactions. These insights help businesses refine strategies and improve the overall customer experience.\"}),/*#__PURE__*/t(\"p\",{children:[\"According to\",/*#__PURE__*/e(r,{href:\"https://cxtrends.zendesk.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"a recent report from Zendesk\"})]})}),\" on\",/*#__PURE__*/e(r,{href:\"https://www.ltvplus.com/customer-service/top-cx-trends/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"customer experience trends\"})]})}),\", more than two-thirds of businesses agree that AI helps them provide human service interactions. Here\u2019s a key takeaway for you: When talking about AI and human customer agents, it\u2019s not an \u201Ceither-or\u201D situation. Rather, when you effectively\",/*#__PURE__*/e(r,{href:\"https://www.ltvplus.com/guides/ai-cx-future-of-customer-service/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"combine AI and CX\"})]})}),\", there is a huge potential for providing\",/*#__PURE__*/e(r,{href:\"https://www.ltvplus.com/partners/reamaze-experts/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"amazing experiences\"})]})}),\" for your customers.\"]}),/*#__PURE__*/e(\"img\",{alt:\"Photo of a sales representative on the phone, struggling with problems\",className:\"framer-image\",height:\"384\",src:\"https://framerusercontent.com/images/tlZIcrOXC2ggrlFBIvn5UXsY.png\",srcSet:\"https://framerusercontent.com/images/tlZIcrOXC2ggrlFBIvn5UXsY.png?scale-down-to=512 512w,https://framerusercontent.com/images/tlZIcrOXC2ggrlFBIvn5UXsY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tlZIcrOXC2ggrlFBIvn5UXsY.png 1366w\",style:{aspectRatio:\"1366 / 768\"},width:\"683\"}),/*#__PURE__*/e(\"h2\",{children:\"Common mistakes to avoid during inbound calls\"}),/*#__PURE__*/e(\"p\",{children:\"Even with the best practices in place, certain missteps can affect the quality of your incoming calls. Recognizing and avoiding these common mistakes is critical to ensuring positive customer experiences.\"}),/*#__PURE__*/e(\"h3\",{children:\"Ignoring caller tone or emotion\"}),/*#__PURE__*/e(\"p\",{children:\"When a center agent fails to acknowledge a caller\u2019s tone or emotional state, they risk alienating the customer and escalating the situation. Customers want to feel heard and understood. If an agent overlooks frustration or excitement, it creates a disconnect.\"}),/*#__PURE__*/e(\"h3\",{children:\"Overloading the caller with too much information\"}),/*#__PURE__*/e(\"p\",{children:\"Providing excessive details during a call can confuse or overwhelm the customer, making it harder for them to retain key points. Inbound call centers should stick to relevant information to avoid overexplaining, which can waste time and risk leaving the customer more frustrated than when they called.\"}),/*#__PURE__*/e(\"p\",{children:\"Instead, use phrases like, \u201CLet me break this down step by step,\u201D and pause to check the caller\u2019s understanding.\"}),/*#__PURE__*/e(\"h3\",{children:\"Forgetting to follow up after a call\"}),/*#__PURE__*/e(\"p\",{children:\"Follow-ups show customers that their concerns matter, even after the call ends. Call center metrics can help track follow-up actions and ensure customer trust and satisfaction. So a lack of follow-up can leave unresolved issues hanging, damaging customer trust and satisfaction. For example, a customer calls about a billing discrepancy, and the agent promises to investigate. However, the agent never provides an update, forcing the customer to call back.\"}),/*#__PURE__*/e(\"h2\",{children:\"What about outbound calls?\"}),/*#__PURE__*/e(\"p\",{children:\"Of course, we can\u2019t end this article without bringing up outbound calls either.\"}),/*#__PURE__*/e(\"p\",{children:\"While inbound calls are about responding to customer needs, outbound calls take the initiative by reaching out to customers or prospects within a contact center. They play a vital role in business growth, helping companies create new connections, strengthen existing relationships, and achieve specific goals proactively.\"}),/*#__PURE__*/e(\"p\",{children:\"While both inbound and outbound calls are essential for customer communication, they differ in purpose and approach:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Inbound: customers initiate the call; Outbound: businesses initiate the call\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Inbound: focuses on addressing customers\u2019 concerns; Outbound: focuses on proactive engagement\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Inbound: reactive; Outbound; proactive\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Inbound: usually centered around support or inquiries; Outbound: usually centered around sales and outreach\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Where outbound calls work best\"}),/*#__PURE__*/e(\"p\",{children:\"Outbound calls shine most in these activities, where customer data is crucial for targeting the right prospects:\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Lead generation and cold calling\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Follow-ups to ensure customer satisfaction after a purchase or resolve a previous issue\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Customer retention or even reconnecting with inactive customers to rekindle their interest\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Appointment scheduling, setting up demos, or conducting consultations with prospects\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"rgb(0, 0, 0)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"Survey and feedback collection to gain insights into customer preferences and experiences\"})})]}),/*#__PURE__*/e(\"h3\",{children:\"Maximize the success of your outbound calls with Consio\"}),/*#__PURE__*/e(\"p\",{children:\"Consio doesn\u2019t just enhance inbound call handling\u2014it\u2019s designed to make outbound calls more efficient and impactful for your call center agents.\"}),/*#__PURE__*/t(\"p\",{children:[\"The \",/*#__PURE__*/e(\"strong\",{children:\"eCommerce power dialer\"}),\", for example, syncs\",/*#__PURE__*/e(r,{href:\"https://www.consio.ai/blog/the-top-8-customer-segments-to-close-more-sales-through-phone-calls\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"customer segments\"})]})}),\" into respective campaigns. This allows you to call more customers in a shorter amount of time\u2014without sacrificing context. Consio\u2019s \",/*#__PURE__*/e(\"strong\",{children:\"custom call scripts\"}),\" are anything but generic and repetitive. They represent the best of AI-generated scripts which adapt to specific customer segments. Additionally, \",/*#__PURE__*/e(\"strong\",{children:\"the AI coaching system\"}),\" provides real-time feedback for sales teams. As a result, sales teams can better refine their strategies and increase the likelihood of closing sales.\"]}),/*#__PURE__*/e(\"h2\",{children:\"Wrapping it up: the impact of mastering both outbound and inbound calls\"}),/*#__PURE__*/t(\"p\",{children:[\"Mastering inbound call center best practices can transform your\",/*#__PURE__*/e(r,{href:\"https://www.ltvplus.com/customer-service/what-is-good-customer-service/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"customer service from good\"})]})}),\" to outstanding. You can build stronger\",/*#__PURE__*/e(r,{href:\"https://www.ltvplus.com/customer-service/customer-relationships/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"relationships with your customers\"})]})}),\", protect your brand reputation, and drive\",/*#__PURE__*/e(r,{href:\"https://www.ltvplus.com/customer-service/customer-stickiness/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/t(o.a,{children:[\" \",/*#__PURE__*/e(\"strong\",{children:\"long-term loyalty\"})]})}),\".\"]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(r,{href:\"https://www.consio.ai/demo\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"strong\",{children:\"Consio\"})})}),\" \",/*#__PURE__*/e(r,{href:\"https://www.ltvplus.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"strong\",{children:\"expert customer service agents from LTVplus\"})})})]})]});export const richText3=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"In the world of e-commerce, especially for brands with high average order values (AOV), engaging with potential customers through phone sales can uncover valuable insights and drive conversions. One of the most effective scenarios where phone sales shine is in addressing abandoned checkouts.\"}),/*#__PURE__*/e(\"div\",{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"560 / 315\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(i,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://www.youtube.com/watch?v=5gPY9yjY0IY\"})})}),/*#__PURE__*/e(\"h2\",{children:\"1. Understand friction from abandoned checkouts\"}),/*#__PURE__*/e(\"p\",{children:\"When a customer abandons their cart, it often leaves brands wondering what went wrong. By proactively reaching out through phone calls, brands can capture new layers of insights that are otherwise missed. Engaging with customers who have abandoned their checkout process reveals crucial information, such as why they didn\u2019t complete their purchase.\"}),/*#__PURE__*/e(\"p\",{children:\"Interestingly, many brands have discovered that when they contact customers too long after the abandonment, they often learn that these customers have purchased the item from a competitor. This feedback provides direct insight into who their competitors are and how to adjust their offers to remain competitive. Without this follow-up, brands would never hear feedback like, \u201CI bought a similar product from another retailer,\u201D which is essential for refining their strategies.\"}),/*#__PURE__*/e(\"h2\",{children:\"2. Timing is crucial: recency equals relevancy\"}),/*#__PURE__*/e(\"p\",{children:\"Another key takeaway is that the timing of the call significantly affects its impact. The more recent the interaction with the e-commerce funnel, the more relevant the phone call will be to the customer. If a call is made a week or even a month after the event, the customer\u2019s memory of their purchasing experience fades, and their receptiveness to the call diminishes. However, contacting customers shortly after they abandon their cart makes the interaction more relevant and appreciated.\"}),/*#__PURE__*/e(\"p\",{children:\"Brands have found that customers are surprisingly receptive to these timely calls and often appreciate the follow-up. This immediate engagement not only helps in recovering lost sales but also enhances customer satisfaction by showing that the brand cares about their shopping experience.\"}),/*#__PURE__*/e(\"h2\",{children:\"3. Unique insights beyond other channels\"}),/*#__PURE__*/e(\"p\",{children:\"Phone calls provide unique insights that other channels, such as emails or chatbots, cannot capture. These direct interactions offer a deeper understanding of customer behavior, preferences, and objections. Through these conversations, brands can gather qualitative data that can inform broader marketing strategies and improve overall customer experience.\"}),/*#__PURE__*/e(\"p\",{children:\"In conclusion, for e-commerce brands with high AOV, phone sales offer invaluable opportunities to understand and serve their customers better. By focusing on timely, relevant interactions and leveraging the insights gained from abandoned checkouts, brands can stay ahead of the competition and drive greater customer loyalty and sales.\"})]});export const richText4=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(r,{href:\"https://polysleep.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"strong\",{children:\"Polysleep\"})})}),\", an Award-Winning\",/*#__PURE__*/e(\"strong\",{children:\" \"}),\"Canadian mattress company, was founded in 2016. They are known for their innovative foam mattresses designed with antimicrobial and liquid-repellent materials, emphasizing comfort, durability, and support. Polysleep is based in Montreal and promotes sustainability and local manufacturing by crafting its products within Canada.\"]}),/*#__PURE__*/e(\"img\",{alt:\"Photo of a double bed by Polysleep\",className:\"framer-image\",height:\"667\",src:\"https://framerusercontent.com/images/rrAxyiWj7aKwxmTyOcCFLtpAI.png\",srcSet:\"https://framerusercontent.com/images/rrAxyiWj7aKwxmTyOcCFLtpAI.png?scale-down-to=512 512w,https://framerusercontent.com/images/rrAxyiWj7aKwxmTyOcCFLtpAI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rrAxyiWj7aKwxmTyOcCFLtpAI.png 2000w\",style:{aspectRatio:\"2000 / 1334\"},width:\"1000\"}),/*#__PURE__*/e(\"h2\",{children:\"Embracing a new engagement channel\"}),/*#__PURE__*/t(\"p\",{children:[\"They opted to use \",/*#__PURE__*/e(\"strong\",{children:\"Consio\"}),\" to engage with their customers after noticing that other leaders in the furniture space we\u2019re actively calling and texting their customers to close online sales.\"]}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/t(\"em\",{children:['\"We have been using ',/*#__PURE__*/e(\"strong\",{children:\"Consio\"}),' for a couple of weeks. It\u2019s great, our sales agent was able to close a sale from an abandoned checkout Shopify segment on the very first day, it was really easy to install and get started. We generated $14.4K in phone sales within a week of launching.\"']})})}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"em\",{children:/*#__PURE__*/e(\"strong\",{children:\"\u2014 \"})}),/*#__PURE__*/e(\"strong\",{children:\"Jonathan M\\xe9nard, \"}),\"Marketing & e-Commerce Director\"]}),/*#__PURE__*/e(\"h2\",{children:\"Quick results and a lasting impact\"}),/*#__PURE__*/e(\"p\",{children:\"Polysleep had no previous outbound calling experience. The team was a little bit reticent to start calling at first, but quickly realized the short-term positive revenue impact that their phone program was having on the company results.\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:'\"It was surprising, but the customer perceived the calls better than expected, they were actually happy that we called them and helped them with more information about our company to complete a purchase.\"'})})}),/*#__PURE__*/t(\"p\",{children:[\"\u2014 \",/*#__PURE__*/e(\"strong\",{children:\"Alice Lacroix\"}),\", Operations Coordinator\"]}),/*#__PURE__*/e(\"h2\",{children:\"By the numbers\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"2 days\"}),\" to complete onboarding\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"$14.4K\"}),\" in sales within 5 days of launching\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"166 outbound calls\"})})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"7% Conversion rate \"}),\"on all calls\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Top segment:\"}),\" Abandoned Checkout\"]})})]}),/*#__PURE__*/e(\"h2\",{children:\"Beyond revenue: building customer trust\"}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Consio\"}),\" was able to provide an incremental revenue lift to Polysleep within a few days of signing up but also, those proactive phone calls are likely to create a long term positive halo effect with its customers.\"]})]});export const richText5=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Hiring skilled outbound phone sales agents is crucial for driving revenue, building customer relationships, and growing your eCommerce business through outbound phone calls. Whether you're a small eCommerce merchant or a large enterprise, having the right team of sales agents can make all the difference.\"}),/*#__PURE__*/e(\"p\",{children:\"This guide will walk you through the process of staffing outbound phone sales agents, exploring the pros and cons of hiring offshore, nearshore, and onshore talent. We'll also introduce you to top Business Process Outsourcing (BPO) providers and job boards to help you build a robust team.\"}),/*#__PURE__*/e(\"h2\",{children:\"Understanding the three hiring models: Offshore, Nearshore, and Onshore\"}),/*#__PURE__*/e(\"p\",{children:\"When hiring outbound phone sales agents, you have three primary options based on location: offshore, nearshore, and onshore. Each option has its unique advantages and considerations.\"}),/*#__PURE__*/e(\"h3\",{children:\"1. Offshore hiring\"}),/*#__PURE__*/e(\"p\",{children:\"Offshore hiring refers to recruiting agents in countries geographically distant from your business. Popular offshore locations include the Philippines, India, and Eastern Europe.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Pros:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Cost efficiency:\"}),\" Offshore agents typically have lower labor costs, making this option highly economical.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Global talent pool:\"}),\" Access to a vast pool of skilled professionals with experience in outbound sales.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"24/7 availability:\"}),\" Time zone differences can allow for around-the-clock coverage.\"]})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Cons:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Language and accent barriers:\"}),\" Communication issues may arise depending on the region and client expectations.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Cultural differences:\"}),\" Agents may need additional training to align with your target market's cultural nuances.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Time zones:\"}),\" If you are looking to staff mostly for American hours, that would mean that\"]})})]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Expected cost :\"}),\" $6 to $15 per hour\"]}),/*#__PURE__*/e(\"h3\",{children:\"2. Nearshore hiring\"}),/*#__PURE__*/e(\"p\",{children:\"Nearshore hiring involves recruiting agents in neighboring or nearby countries. For U.S.-based companies, this could mean hiring in regions like Mexico, Colombia, or north and south africa.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Pros:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Proximity and time zones:\"}),\" Being closer geographically can result in easier communication and collaboration.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Cultural similarities:\"}),\" Fewer cultural and language differences compared to offshore hiring.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Cost-effective:\"}),\" Often cheaper than onshore hiring while still being highly skilled.\"]})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Cons:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Limited cost savings:\"}),\" While still cost-effective, it may not offer the same financial benefits as offshore options.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Smaller talent pool:\"}),\" The range of candidates may be narrower compared to offshore markets.\"]})})]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Expected cost :\"}),\" $12 to $25 per hour\"]}),/*#__PURE__*/e(\"h3\",{children:\"3. Onshore hiring\"}),/*#__PURE__*/e(\"p\",{children:\"Onshore hiring means recruiting agents within your home country.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Pros:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Cultural alignment:\"}),\" Agents are familiar with local customs, idioms, and market preferences.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"High quality of service:\"}),\" Onshore agents often provide better customer interactions due to cultural fluency and fewer communication barriers.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Easier oversight:\"}),\" Proximity makes training and monitoring simpler.\"]})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Cons:\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Higher costs:\"}),\" Onshore agents tend to have higher labor and overhead costs.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Limited availability:\"}),\" The talent pool may be smaller and more competitive, especially for specialized skills.\"]})})]}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Expected cost :\"}),\" $18 to $35 per hour\"]}),/*#__PURE__*/e(\"h2\",{children:\"Partnering with business process outsourcing (BPO) providers\"}),/*#__PURE__*/e(\"p\",{children:\"For eCommerce merchants and businesses looking for flexibility, efficiency, and expertise, partnering with a BPO can be an excellent option. BPOs specialize in recruiting, training, and managing teams of sales agents tailored to your business needs.\"}),/*#__PURE__*/e(\"p\",{children:\"Here are some leading BPOs to consider:\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(r,{href:\"https://www.talentpop.co/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"TalentPop\"})})}),/*#__PURE__*/e(\"p\",{children:\"TalentPop caters specifically to eCommerce brands, offering top-notch sales and support teams to handle inbound and outbound tasks.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(r,{href:\"https://aventus.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"Aventus\"})})}),/*#__PURE__*/e(\"p\",{children:\"Aventus provides customized outsourcing solutions, including outbound sales teams. Known for its streamlined processes and global reach, Aventus helps businesses scale efficiently.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(r,{href:\"https://influx.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"Influx\"})})}),/*#__PURE__*/e(\"p\",{children:\"Influx provides on-demand, scalable outsourcing services for companies of all sizes. Their global talent pool ensures high-quality results for outbound sales campaigns.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(r,{href:\"https://www.inevitableagency.co/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"Inevitable Agency\"})})}),/*#__PURE__*/e(\"p\",{children:\"Specializing in customer-centric outsourcing solutions, Inevitable Agency is a great partner for businesses looking to build dedicated and motivated sales teams.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(r,{href:\"https://www.createcx.co/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"CreateCX\"})})}),/*#__PURE__*/e(\"p\",{children:\"CreateCX focuses on delivering outstanding customer experiences through tailored outsourcing solutions, including sales team staffing.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(r,{href:\"https://www.helpflow.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"HelpFlow\"})})}),/*#__PURE__*/e(\"p\",{children:\"HelpFlow specializes in providing trained agents for eCommerce businesses, focusing on driving conversions through proactive sales outreach and customer support.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(r,{href:\"https://www.ltvplus.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"LTVplus\"})})}),/*#__PURE__*/e(\"p\",{children:\"LTVplus is an outsourcing provider dedicated to eCommerce and SaaS businesses. They offer multilingual agents and customized strategies to maximize lifetime customer value.\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(r,{href:\"https://www.springboard.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:\"Springboard\"})})}),/*#__PURE__*/e(\"p\",{children:\"Springboard offers comprehensive outsourcing services, including sales agent staffing, to help businesses achieve measurable growth.\"}),/*#__PURE__*/e(\"h2\",{children:\"Using job boards to hire freelance sales agents\"}),/*#__PURE__*/e(\"p\",{children:\"If you prefer to manage the hiring process yourself, job boards and freelancing platforms can connect you with skilled outbound phone sales agents. Here are some popular options:\"}),/*#__PURE__*/e(\"h3\",{children:\"Upwork\"}),/*#__PURE__*/e(\"p\",{children:\"Upwork is one of the largest freelancing platforms, offering access to a global network of professionals. You can post jobs, review profiles, and hire agents for short-term projects or ongoing roles.\"}),/*#__PURE__*/e(\"h3\",{children:\"LinkedIn\"}),/*#__PURE__*/e(\"p\",{children:\"LinkedIn is a powerful tool for finding experienced sales professionals. You can post job openings or search for candidates using specific filters like location, industry, and experience level.\"}),/*#__PURE__*/e(\"h3\",{children:\"Indeed\"}),/*#__PURE__*/e(\"p\",{children:\"Indeed is another reliable platform for hiring outbound sales agents. It offers both free and paid job postings to attract talent locally or globally.\"}),/*#__PURE__*/e(\"h2\",{children:\"Final thoughts\"}),/*#__PURE__*/e(\"p\",{children:\"Staffing outbound phone sales agents is a critical step for growing your business. By understanding the pros and cons of offshore, nearshore, and onshore hiring models and how to leverage a BPO or use job boards, you can build a high-performing sales team that drives results in no time.\"}),/*#__PURE__*/e(\"p\",{children:\"Remember, the key to success is not just hiring the right people but also providing them with the tools, training, and support to excel. Whether you\u2019re a startup or an established enterprise, investing in your commerce sales team will pay dividends in the long run.\"})]});export const richText6=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"In e-commerce, phone sales can be a powerful tool for engaging customers and driving conversions. Most merchants are exclusively focused on digital marketing to grow their sales, but phone calls provide a unique opportunity to connect with customers in a more personal and impactful way.\"}),/*#__PURE__*/e(\"p\",{children:\"However, successful phone outreach starts with targeting the right segments. Here, we\u2019ll explore the 8 top customer segments that are most receptive to phone sales, helping you maximize your efforts and close more sales.\"}),/*#__PURE__*/e(\"h2\",{children:\"1. High-value customers with loyalty points/credits\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Why they matter\"})}),/*#__PURE__*/e(\"p\",{children:\"Your loyal customers are potentially sitting on a lot of credits/loyalty points and might not be aware of how to redeem them. These customers are likely to be your most profitable segment. They already know and trust your brand, and if they\u2019ve made multiple purchases, they\u2019re more inclined to buy again.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to engage them\"})}),/*#__PURE__*/e(\"p\",{children:\"Use phone calls to offer these customers exclusive deals, loyalty rewards, or early access to new products. Tell them how to use their credits! Personalized communication goes a long way here \u2013 mention their past purchases, acknowledge their loyalty, and position your call as a way to add more value to their experience. They are among your most likely to also recommend your brand in their network.\"}),/*#__PURE__*/e(\"p\",{children:\"You can segment those calls to engage anyone with outstanding credits: recent website visitors, recent abandoned carts, people with outstanding credits that didn\u2019t purchase in a long time.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Key tactic\"})}),/*#__PURE__*/e(\"p\",{children:\"Make it clear that you\u2019re reaching out with special treatment, acknowledging their loyalty and the number of points/credits that they have available.\"}),/*#__PURE__*/e(\"h2\",{children:\"2. Abandoned cart/checkout shoppers\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Why they matter\"})}),/*#__PURE__*/e(\"p\",{children:\"Take a look at your last abandoned checkouts. This list holds a lot of sales opportunities for your store. Calling your abandoned cart shoppers will help addressing directly any purchasing objection, but also help you discover what you can implements to increase your conversion rate. It will expose a variety of reasons for why a potential sales didn\u2019t materialize.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to engage them\"})}),/*#__PURE__*/e(\"p\",{children:\"Contact these customers promptly after they abandon their cart. Offer to assist with any questions they may have, address potential hesitations, and perhaps even provide a small incentive, like a discount that was not previously available on the site.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Key tactic\"})}),/*#__PURE__*/e(\"p\",{children:\"Position the call as a \u2018Customer Service courtesy\u2019. Use a helpful, consultative approach rather than a hard sell. Ask them why they were unable to complete their purchase to uncover key insights on how to improve your business.\"}),/*#__PURE__*/e(\"h2\",{children:\"3. Seasonal shoppers and holiday buyers\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Why they matter\"})}),/*#__PURE__*/t(\"p\",{children:[\"If you have a highly seasonal business, you might want to re-engage past shoppers to get back at the top of their list for this season. For example an online flower shop such as \",/*#__PURE__*/e(r,{href:\"https://bloomex.ca/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!0,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"strong\",{children:\"Bloomex\"})})}),/*#__PURE__*/e(\"strong\",{children:\" \"}),\"could want to re-engage past purchasers from Mother\u2019s day, a few weeks in advance with a unique offer around that holidays, making them highly motivated buyers.\"]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to engage them\"})}),/*#__PURE__*/e(\"p\",{children:\"Use phone outreach to offer tailored recommendations, limited-time promotions, or information on popular holiday items. A personal touch can also help these customers feel valued and supported during a busy season, creating a memorable shopping experience.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Key tactic\"})}),/*#__PURE__*/e(\"p\",{children:\"Highlight the seasonal nature of your offers, and instill a sense of urgency to encourage immediate action.\"}),/*#__PURE__*/e(\"h2\",{children:\"4. Browse abandonment with high purchase intent\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Why they matter\"})}),/*#__PURE__*/e(\"p\",{children:\"Your email and SMS collection popup gather a lot of phone numbers and not all of them will add an item to cart or complete a purchase. A buyer with high intent, could be visiting several pages may be hesitant or have questions before making their purchase, so a well-timed call can help ease any concerns and close the sale.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to engage them\"})}),/*#__PURE__*/e(\"p\",{children:\"Build a segment to list visitors that visited several pages on your website. Position the call as an opportunity to help the customer make an informed decision. Address any questions, offer product comparisons, and explain the benefits of your brand, mention your satisfaction guarantee.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Key tactic\"})}),/*#__PURE__*/e(\"p\",{children:\"Aim to create a positive first impression, building a relationship that encourages future purchases as well.\"}),/*#__PURE__*/e(\"h2\",{children:\"6. Churned subscribers\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Why they matter\"})}),/*#__PURE__*/e(\"p\",{children:\"Calling churned subscribers can reignite customer interest, uncover reasons for their departure, and drive direct revenue with a unique offer for their reactivation. It will foster a personal connection with your most valuable past purchasers. It also provides valuable feedback for improving products, service, and customer experience, driving future retention and loyalty.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to engage them\"})}),/*#__PURE__*/e(\"p\",{children:\"Create a segment that will surface your churned customer after a full normal usage cycle of your product. For example, if you sell a package with 30 days worth supplements, make sure that you do not call your customers, within 30 days of their churn date.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Key tactic\"})}),/*#__PURE__*/e(\"p\",{children:\"Position the outreach as a customer service call, asking your clients if they have time to provide you feedback on your business. Use consultative approach to address that feedback and finish your call by offering a unique promotion.\"}),/*#__PURE__*/e(\"h2\",{children:\"7. Recent purchasers inquiry and upsells\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Why they matter\"})}),/*#__PURE__*/e(\"p\",{children:\"Your recent purchasers offer a unique opportunity to inquire about th Showing genuine concern for their satisfaction can improve brand perception and future purchase potential.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to engage them\"})}),/*#__PURE__*/e(\"p\",{children:\"Call your recent purchasers as a way to proactively resolve potential issues that they might encounter with the product and avoid returns. You can also tie in a uniqe. Once their concern is addressed, mention new products or deals to gently re-engage them.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Key tactic\"})}),/*#__PURE__*/e(\"p\",{children:\"Focus on repairing the relationship first, then transition to offering value that encourages them to give your brand another chance.\"}),/*#__PURE__*/e(\"h2\",{children:\"8. Inactive customers with strong purchase history\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Why they matter\"})}),/*#__PURE__*/e(\"p\",{children:\"Customers who have previously made several purchases but haven\u2019t bought in a while are prime candidates for re-engagement.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to engage them\"})}),/*#__PURE__*/e(\"p\",{children:\"Segment your VIP customers that have spend above a certain amount in the past or completed more than a certain amount of orders. Reach out, and offer an exclusive timely VIP sales offer or early access to a new product launch. Make sure to acknowledge their previous purchases and highlight new related products they might find appealing.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Key tactic\"})}),/*#__PURE__*/e(\"p\",{children:\"Position the call as a \u201Cwelcome back\u201D opportunity and create a sense of familiarity to rekindle their interest. Offer a strong personalized offer, maybe create a unique discount code that contain their name.\"}),/*#__PURE__*/e(\"p\",{children:\"\u2013\u2013\u2013\"}),/*#__PURE__*/e(\"h2\",{children:\"Final thoughts\"}),/*#__PURE__*/e(\"p\",{children:\"Phone sales can be incredibly effective when used to engage the right customer segments. By identifying and tailoring your approach to these high-potential segments, you can close more sales, enhance customer loyalty, and build lasting relationships. Remember, personalization is key: the more tailored your approach, the more likely you are to make a genuine connection that leads to a sale.\"})]});export const richText7=/*#__PURE__*/t(a.Fragment,{children:[/*#__PURE__*/e(\"h2\",{children:\"Our vision for a new commerce channel\"}),/*#__PURE__*/t(\"p\",{children:[\"When is the last time a new \",/*#__PURE__*/e(\"strong\",{children:\"owned\"}),\" channel was made available to ecommerce merchants?\"]}),/*#__PURE__*/e(\"p\",{children:\"SMS in 2018?\"}),/*#__PURE__*/e(\"p\",{children:\"Push notifications in 2019?\"}),/*#__PURE__*/e(\"p\",{children:\"Messenger in 2017?\"}),/*#__PURE__*/e(\"p\",{children:\"Commerce merchants are sitting on a goldmine of phone numbers, yet we are still sending the same tired 160 characters SMS on every holiday, 20% off for valentine day, for mother\u2019s day, back to school\u2026\"}),/*#__PURE__*/e(\"p\",{children:\"But, a handful of forward looking merchants are proactively calling their customers and prospects, and are doing it profitably.\"}),/*#__PURE__*/e(\"p\",{children:\"It\u2019s time for all of Ecom to pickup the phone and close more sales.\"}),/*#__PURE__*/e(\"p\",{children:\"We are launching Consio, the first phone sales platform for online merchants. Consio allows you to scale personalized customer interactions via outbound phone calls without sacrificing efficiency. Too many businesses lose potential customers simply because they are not engaging them effectively and in a truly personalized way at key moments.\"}),/*#__PURE__*/e(\"blockquote\",{children:/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"em\",{children:\"This is a no brainer, it is the competitive edge that most business need.\"})})}),/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"em\",{children:\"\u2014 \"}),/*#__PURE__*/e(\"strong\",{children:\"William Alexander\"}),\",\",/*#__PURE__*/e(\"strong\",{children:\" \"}),\"CEO\",/*#__PURE__*/e(\"strong\",{children:\" \"}),\"@ \",/*#__PURE__*/e(r,{href:\"http://tryevolv.com/\",motionChild:!0,nodeId:\"LsyIq3qaH\",openInNewTab:!1,scopeId:\"contentManagement\",smoothScroll:!1,children:/*#__PURE__*/e(o.a,{children:/*#__PURE__*/e(\"strong\",{children:\"tryevolv.com\"})})})]}),/*#__PURE__*/e(\"p\",{children:\"We integrate automation and personalization on the phone channel to bridge the gap between online convenience and the human touch. It is the edge that most businesses need to thrive in a ever more competitive landscape.\"}),/*#__PURE__*/e(\"h2\",{children:\"What is Consio?\"}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Ecommerce power dialer:\"}),\" Our platform syncs your customer segments into campaigns with a hyper-functional power dialer, allowing you to call efficiently more customers, always with the right context.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"Custom Call Scripts\"}),\": Consio provides dynamic, AI-generated scripts that adapt to individual customer segments, increasing the likelihood of closing a sale.\"]})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(\"strong\",{children:\"AI Agent Coaching\"}),\": Our AI coaching system offers real-time feedback and insights for your sales team, helping them refine their approach and improve faster.\"]})})]}),/*#__PURE__*/e(\"p\",{children:\"By creating a personalized sales experience over the phone, merchants can foster stronger relationships with customers, reducing churn, increase loyalty and close more sales.\"}),/*#__PURE__*/e(\"p\",{children:\"Consio is the future of e-commerce phone sales\u2014bringing the power of AI to your team so that no customer is left behind. Join us in this new adventure!\"})]});\nexport const __FramerMetadata__ = {\"exports\":{\"richText2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"richText5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "originalSearchParams", "searchParams", "param", "value", "iframeProps", "u", "wrapperStyle", "l", "getThumbnailURL", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "page", "res", "pre", "ext", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "richText", "u", "x", "p", "Link", "motion", "ComponentPresetsConsumer", "t", "Youtube", "richText1", "richText2", "richText3", "richText4", "richText5", "richText6", "richText7", "__FramerMetadata__"]
}
