Misc. Full Sections / Modules
Name: Section / Tabs / Images and Links
Custom Coded Needed
<!-- Tabs CSS -->
<style>
@media (min-width: 991px) {
.home__tools-icon {
opacity: 0;
}
.home__tools-link:hover .home__tools-icon {
opacity: 1;
}
}
</style>
<!-- Tabs Custom Code-->
<script>
//when triggers hover
$('.home__tools-link').hover(function(){
//get this trigger index
var index = $('.home__tools-link').index(this);
//remove all active classes on triggers
$('.tools-tab').removeClass('is-active');
//add active class to this item
$(this).addClass('is-active');
//remove all active classes on targets
$('.home__tools-tabs__img').removeClass('is-active');
//adds active class to equivalent index target element
$('.home__tools-tabs__img').eq(index).addClass('is-active');
});
</script>
Options: 5 tabs — some can be hidden to reduce the number.
The heading, copy, image, and link to the destination can be updated.
Please note that the above code must be added, as it enables the tab functionality and allows the image to change on hover.
Tools and support for innovative marketing
Name: Section / Tabs / Heading and CTA
The section heading and button are editable and can be shown or hidden as required.
The section includes 3 tabs (Can't change number of tabs), and each tab has the following properties:
- Tab logo
- Big image
- Small image
- Tag (Industry) – editable
- Link to the case study
- Number
- Number description
- Quote testimonial and author
Brands delivering real results
Name : Section / Image Only / Reversable
Options: Image, Copy, and Button (Copy + Text).
It includes a Variant option that allows you to reverse the layout from right to left and vice versa.
To reuse the same section, you can unlink it and replace the image with a Lottie file.
Create personalized, engaging experiences
Use engagement data to segment audiences and create tailored messages for each subscriber with dynamic content. Stand out in their inbox by sending interactive RCS content including rich media cards, full-resolution images and video, and interactive conversational prompts that make a big impression.
Name: Section / Resources / Custom Slider
Options: We have 8 cards, which can be updated individually.
Each card includes Image, Link, Pill, and Title properties.
Please note that this is a global component. However, if you change any properties directly on an instance, the changes will only apply to that single location.
To apply changes everywhere, you must update the component by opening and editing the main component.
Name : Section / Information Block / Global
Options: This section consists of a Heading and Copy text.
Partner with the proven leader in
SMS and RCS marketing
Consumers don’t just want to hear from your brand—they want
to text you back. Attentive gives you the tools and expertise to
deliver the personalized experience your subscribers want.
Name: Section / Case Study ( Using CMS Filter) / Single with Heading
Options
Case Study Filter: Uses special filtering that lets you directly select a case study by brand name.
Heading: Update or customize the section heading.
Section Background: Change the background of the entire section.
Metrics Visibility: Option to show or hide metrics within each case study card.
Michaels drives engagement and
conversions with multi-touch, multi-channel messages with magic composer
Name: Section / Grouped Section / Image and 2 Cards
Options
Image Asset: Update images for both desktop and mobile.
Heading: Edit the main heading of the section.
Background Color - Background color can be edited using simple css class.
Icons Visibility: Control icon visibility for all 4 cards.
Sub-Heading Visibility:Show or hide the sub-heading for all 4 cards.
4 Cards (Per Card Options): Each card includes the following controls:
- Visibility Toggle: Choose which cards are shown or hidden.
- Icon: Replace the icon for each card.
- Sub-Heading: Edit the sub-heading text.
- Title: Edit the title text.
- Stat: Number: Update the stat value.
- Description: Edit the stat description.
The mobile, AI-driven email solution
for global brands
Heading: Update the section heading.
Background Color:Change the background color of the section.
5 Pointers (Global Controls): For all 5 pointers, you can:
- Update the icon
- Edit the copy
- Toggle pointer visibility
Choose from 30+ sign-up
units to collect opt-ins
across all your marketing
channels
landing pages
email
social media
e-commerce checkout
in-store
Name: Section / Grid / Boxes with icons
Options
- Section Heading: Update the heading of the section.
- Background Color: Change the background color of the section.
- Number of Cards: Reduce the number of visible cards from 4 to 3 by hiding a card.
- Per Card Options: Each card includes:
- Icon: Replace or update the icon.
- Heading: Edit the card heading.
- Subheading: Edit the card subheading.
- Visibility : Card Visibility
Your customers want to converse with your
brand throughout their journey
88%
want to ask specific product questions
87%
want help
resolving issues with cart/checkout
70%
need product recommendations
87%
want to know what’s coming next
Name: Section / Case Study Slider
-
Options
-
Slider Section:
- Update - 3 slides.
-
Background: Change the background of the slider section.
-
Per Slide Options:
Each slide includes:
-
Featured Image: Upload the main image for the slide.
-
Company Logo: Add or replace the logo.
-
Testimonial Quote: Add the testimonial text.
-
Person’s Name: Add the name of the person giving the testimonial.
-
Designation: Add the person’s job title or designation in the company.
Options
-
Background Color:
Change the background color of the section.
-
Section Heading:
Update the heading of the section.
-
Logos / Images:
Update or replace all 3 logos/images.
Award-winning Support
Name: Section - Product 4 Boxes
Options
-
Section Heading:
Update the heading of the section.
-
Background Color:
Change the background color of the section.
-
Cards (4 Total):
The section contains 4 cards, and each card includes:
-
Visibility: Show or hide the card.
-
Icon: Update or replace the icon.
-
Heading: Edit the card heading.
-
Paragraph: Edit the card description text.
Reduce compliance burdens
every step of the way
Tools to help you meet legal requirements
Built-in compliance checks designed to help you grow your list with peace of mind.
Standard flows use double opt-in to re-affirm consent and validate phone number.
Patented two-tap sign up process for mobile; Reply Y for desktop.
Uphold best practices
Our team of full-time lawyers is dedicated to updating the Attentive platform in response to the changing regulatory and legal landscape.
Our Carrier Relations Team works with mobile carriers to inform our guidelines and thoroughly understand best practices around sending text messages.
Handle potential claims
Enhanced Audit Assistant helps you respond to TCPA complaints quickly and effectively with records of opt-in, opt-out message activity, and more.
Protect your SMS program and avoid litigation
Litigator Defender for TCPA automatically suppresses phone numbers known to be associated with SMS demands and/or lawsuits from subscriber lists.
Negative Sentiment Reminders guide subscribers indicating opt-out intent.
<!-- CSS -->
<style>
/* Animate Accordion Bottom Grid */
.accordion-css__item-bottom {
transition: grid-template-rows 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}
[data-accordion-status="active"] .accordion-css__item-bottom {
grid-template-rows: 1fr;
}
/* Animate Icon */
.accordion-css__item-icon {
transition: transform 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}
[data-accordion-status="active"] .accordion-css__item-icon {
transform: rotate(0.001deg);
}
</style>
<!-- Accordion JS -->
<script>
function initAccordionCSS() {
document.querySelectorAll('[data-accordion-css-init]').forEach((accordion) => {
const closeSiblings = accordion.getAttribute('data-accordion-close-siblings') === 'true';
accordion.addEventListener('click', (event) => {
const toggle = event.target.closest('[data-accordion-toggle]');
if (!toggle) return; // Exit if the clicked element is not a toggle
const singleAccordion = toggle.closest('[data-accordion-status]');
if (!singleAccordion) return; // Exit if no accordion container is found
const isActive = singleAccordion.getAttribute('data-accordion-status') === 'active';
singleAccordion.setAttribute('data-accordion-status', isActive ? 'not-active' : 'active');
// When [data-accordion-close-siblings="true"]
if (closeSiblings && !isActive) {
accordion.querySelectorAll('[data-accordion-status="active"]').forEach((sibling) => {
if (sibling !== singleAccordion) sibling.setAttribute('data-accordion-status', 'not-active');
});
}
});
});
}
// Initialize Accordion CSS
document.addEventListener('DOMContentLoaded', () => {
initAccordionCSS();
});
</script>
Options
-
FAQs:
Add as many FAQs as needed by duplicating the FAQ item.
-
Section Heading:
Update the heading of the section.
-
Background:
Change the background of the section.
-
Per FAQ Options:
Each FAQ includes:
-
Question: Edit the FAQ question.
-
Answer: Edit the FAQ answer.
Note:
Please add the custom code in the page settings for the animation to work.
This code controls whether the accordion opens or closes.
Frequently Asked Questions
Does Attentive offer any discounts or special pricing?
Yes, we offer discounts when you bundle multiple channels or premium AI products together to maximize value.
Does Attentive offer any discounts or special pricing?
Yes, we offer discounts when you bundle multiple channels or premium AI products together to maximize value.
Does Attentive offer any discounts or special pricing?
Yes, we offer discounts when you bundle multiple channels or premium AI products together to maximize value.
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Amit Jhawar
Amit Jhawar
Amit Jhawar
Amit Jhawar
Amit Jhawar
Amit Jhawar
Amit Jhawar
<!DOCTYPE html><!-- Last Published: Tue Feb 17 2026 19:20:47 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="www.attentive.com" data-wf-page="6915ebf1c15703c3fb4364af" data-wf-site="684306b795a2c402456e92ba" data-wf-intellimize-customer-id="117310846" lang="en"><head><meta charset="utf-8"/><title>Full Sections</title><meta content="Full Sections" property="og:title"/><meta content="Full Sections" property="twitter:title"/><meta content="width=device-width, initial-scale=1" name="viewport"/><link href="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/css/attentive-dev-revamp-2025.shared.06feaeb90.min.css" rel="stylesheet" type="text/css" integrity="sha384-Bv6uuQJEI2xsndKtPvJSaiD9IwEA1GPwv18O6EH95cP5CJvJqKFi5rBaAPs3go1h" crossorigin="anonymous"/><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68ca2e64ae46fe3b4e3e3b6c_Favicon%20Attentive.ico" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68ca2e6c606533d7226b1000_Webclip%20Attentive.png" rel="apple-touch-icon"/><link href="https://www.attentive.com/component-library/full-sections" rel="canonical"/><style>.anti-flicker, .anti-flicker * {visibility: hidden !important; opacity: 0 !important;}</style><style>[data-wf-hidden-variation], [data-wf-hidden-variation] * {
display: none !important;
}</style><script type="text/javascript">if (localStorage.getItem('intellimize_data_tracking_type') !== 'optOut') { localStorage.removeItem('intellimize_opt_out_117310846'); } if (localStorage.getItem('intellimize_data_tracking_type') !== 'optOut') { localStorage.setItem('intellimize_data_tracking_type', 'optOut'); }</script><script type="text/javascript">(function(e){var s={r:[]};e.wf={r:s.r,ready:t=>{s.r.push(t)}}})(window)</script><script type="text/javascript">(function(e,t,p){var n=document.documentElement,s={p:[],r:[]},u={p:s.p,r:s.r,push:function(e){s.p.push(e)},ready:function(e){s.r.push(e)}};e.intellimize=u,n.className+=" "+p,setTimeout(function(){n.className=n.className.replace(RegExp(" ?"+p),"")},t)})(window, 4000, 'anti-flicker')</script><link href="https://cdn.intellimize.co/snippet/117310846.js" rel="preload" as="script"/><script type="text/javascript">var wfClientScript=document.createElement("script");wfClientScript.src="https://cdn.intellimize.co/snippet/117310846.js",wfClientScript.async=!0,wfClientScript.onerror=function(){document.documentElement.className=document.documentElement.className.replace(RegExp(" ?anti-flicker"),"")},document.head.appendChild(wfClientScript);</script><link href="https://api.intellimize.co" rel="preconnect" crossorigin="true"/><link href="https://log.intellimize.co" rel="preconnect" crossorigin="true"/><link href="https://117310846.intellimizeio.com" rel="preconnect"/><!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-TK3VW6S');</script>
<!-- End Google Tag Manager -->
<!-- Mutiny -->
<script defer>
(function(){var a=window.mutiny=window.mutiny||{};if(!window.mutiny.client){a.client={_queue:{}};var b=["identify","trackConversion"];var c=[].concat(b,["defaultOptOut","optOut","optIn"]);var d=function factory(c){return function(){for(var d=arguments.length,e=new Array(d),f=0;f<d;f++){e[f]=arguments[f]}a.client._queue[c]=a.client._queue[c]||[];if(b.includes(c)){return new Promise(function(b,d){a.client._queue[c].push({args:e,resolve:b,reject:d})})}else{a.client._queue[c].push({args:e})}}};c.forEach(function(b){a.client[b]=d(b)})}})();
</script>
<!-- End Mutiny -->
<script>
(function() {
function syncConsent() {
if (!window.Cookiebot || !Cookiebot.consent) return;
const hasDecision = Cookiebot.consent.method !== null;
const consentGiven = Cookiebot.consent.statistics === true;
wf.ready(function() {
const trackingState = wf.getUserTrackingChoice(); // 'allow' | 'deny' | 'none'
if (!hasDecision) return;
if (consentGiven && trackingState === 'deny') {
wf.allowUserTracking({ activate: true });
} else if (!consentGiven && trackingState !== 'deny') {
wf.denyUserTracking();
}
});
}
['CookiebotOnConsentReady', 'CookiebotOnAccept', 'CookiebotOnDecline']
.forEach(ev => window.addEventListener(ev, syncConsent));
if (window.Cookiebot && typeof Cookiebot.consent !== 'undefined') {
syncConsent();
}
})();
</script>
<script defer data-cfasync="false" src="https://client-registry.mutinycdn.com/personalize/client/6308a4e66449798f.js"></script>
<!-- Meta Tags -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="pinterest" content="nopin" />
<meta name="facebook-domain-verification" content="0lqpeuk188jgviib0js1zdochyveul" />
<meta name="theme-color" content="#fff382" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#1a1e22" media="(prefers-color-scheme: dark)">
<style>
.u-custom-classes{
display:none;
}
</style><meta name="robots" content="noindex,nofollow" />
<style>
/* Animate Accordion Bottom Grid */
.accordion-css__item-bottom {
transition: grid-template-rows 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}
[data-accordion-status="active"] .accordion-css__item-bottom {
grid-template-rows: 1fr;
}
/* Animate Icon */
.accordion-css__item-icon {
transition: transform 0.6s cubic-bezier(0.625, 0.05, 0, 1);
}
[data-accordion-status="active"] .accordion-css__item-icon {
transform: rotate(0.001deg);
}
</style>
<style>
.slidenav .w-slider-dot {
background: #F9F7F0;
border:1px solid #1a1e22;
}
.slidenav .w-slider-dot.w-active {
background-color: #1a1e22;
}
</style>
<style>
.slidenav.black .w-slider-dot {
background: #1a1e22;
border:1px solid #ffffff;
}
.slidenav.black .w-slider-dot.w-active {
background-color: #ffffff;
}
</style>
</head><body><div class="page_wrap"><div class="u-embed-css w-embed"><style>
:root {
--pink-bg: #edc6ed;
}
.pink-bg {
background-color: var(--pink-bg);
}
</style>
<style>
:root {
--blue-bg: #cde5fd;
}
.blue-bg {
background-color: var(--blue-bg);
}
.bg__half{
background-image: linear-gradient(to bottom, white 50%, var(--blue-bg) 50%);
}
.u-background-blue {background-color: #ebf3ff}
.u-background-ube{
background: #fcf2fc;
}
.ai-pro__hero{
background-image:linear-gradient(#fbf1fb 10%,#cde5fd 55%,#fff);
}
.light-canteloupe{
background-color:#ffdfc2
}
</style></div><div class="u-embed-css w-embed"><style>
@media (min-width: 991px) {
.home__tools-icon {
opacity: 0;
}
.home__tools-link:hover .home__tools-icon {
opacity: 1;
}
}=
</style></div><div class="u-embed-css w-embed"><style>
/* ===============================
Root Variables
=============================== */
:root {
--pink-bg: #edc6ed;
--blue-bg: #cde5fd;
--light-canteloupe: #ffdfc2;
--surf-turf: #82c8d2;
--green-bg: #e2fa9f;
--light-blue-bg: #e0f1f4;
--orange-bg: #ffd482;
--light-pink-bg: #fbf1fb;
}
/* ===============================
Background Utility Classes
=============================== */
.pink-bg {
background-color: var(--pink-bg);
}
.blue-bg,
.lightblue {
background-color: var(--blue-bg);
}
.bg__half {
background-image: linear-gradient(to bottom, white 50%, var(--blue-bg) 50%);
}
.u-background-blue {
background-color: #ebf3ff;
}
.u-background-ube {
background-color: #fcf2fc;
}
.light-canteloupe {
background-color: var(--light-canteloupe);
}
.surf-turf {
background-color: var(--surf-turf);
}
.bluedark {
background-color: #0075e1;
color: white;
}
.green-bg {
background-color: var(--green-bg);
}
.light-blue-bg {
background-color: var(--light-blue-bg);
}
.orange-bg {
background-color: var(--orange-bg);
}
.light-pink-bg {
background-color: var(--light-pink-bg);
}
</style></div><div class="page_code_wrap"><div class="page_code_base w-embed"><style>
/*
:root {
--grid-breakout: [full-start] minmax(0, 1fr) [content-start] repeat(var(--site--column-count), minmax(0, var(--site--column-width))) [content-end] minmax(0, 1fr) [full-end];
--grid-breakout-single: [full-start] minmax(0, 1fr) [content-start] minmax(0, var(--container--main)) [content-end] minmax(0, 1fr) [full-end];
}*/
/*
* {
vertical-align: bottom;
}
*/
::before, ::after {
box-sizing: border-box;
}
html {
background-color: var(--_theme---background);
}
button {
background-color: unset;
padding: unset;
text-align: inherit;
}
button:not(:disabled) {
cursor: pointer;
}
video {
width: 100%;
object-fit: cover;
}
/* remove padding of empty element */
.wf-empty {
padding: 0;
}
svg {
max-width: 100%;
}
section, header, footer {
position: relative;
}
@media (prefers-color-scheme: light) {
option { color: black; }
}
img::selection {
background: transparent;
}
/* Typography */
body {
/*text-transform: var(--_text-style---text-transform);*/
/*
font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
text-rendering:optimizeLegibility;*/
}
/* Clear Defaults */
a:not([class]) {
text-decoration: underline;
}
h1,h2,h3,h4,h5,h6,p,blockquote,label {
font-family: inherit;
font-size: inherit;
font-weight: inherit;
line-height: inherit;
letter-spacing: inherit;
text-transform: inherit;
text-wrap: inherit;
margin-top: 0;
margin-bottom: 0;
}
/* Selection Color */
::selection {
background-color: #FFE600;
color: var(--_theme---selection--text);
}
/* Margin Trim */
:is(.u-margin-trim, .u-rich-text) > :not(:not(.w-condition-invisible) ~ :not(.w-condition-invisible)) {
margin-top: 0;
}
:is(.u-margin-trim, .u-rich-text) > :not(:has(~ :not(.w-condition-invisible))) {
margin-bottom: 0;
}
/* Line Height Trim */
:is([class*="u-text-style-"],h1,h2,h3,h4,h5,h6,p):not(.w-richtext,.u-text-trim-off)::before {
content: "";
display: table;
margin-bottom: calc(-0.5lh + var(--_text-style---trim-top));
}
:is([class*="u-text-style-"],h1,h2,h3,h4,h5,h6,p):not(.w-richtext,.u-text-trim-off)::after {
content: "";
display: table;
margin-bottom: calc(-0.5lh + var(--_text-style---trim-bottom));
}
/* Rich Text Links */
.w-richtext a {
position: relative;
z-index: 4;
}
/* Line Clamp */
.u-line-clamp-1, .u-line-clamp-2, .u-line-clamp-3, .u-line-clamp-4 {
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}
.u-line-clamp-2 { -webkit-line-clamp: 2; }
.u-line-clamp-3 { -webkit-line-clamp: 3; }
.u-line-clamp-4 { -webkit-line-clamp: 4; }
/* Child Contain */
.u-child-contain > * {
width: 100%;
max-width: inherit !important;
margin-inline: 0 !important;
margin-top: 0 !important;
}
/* Hide */
.u-hide-if-empty:empty,
.u-hide-if-empty:not(:has(> :not(.w-condition-invisible))),
.u-hide-if-empty-cms:not(:has(.w-dyn-item)),
.u-embed-js,
.u-embed-css {
display: none !important;
}
/* Focus State */
a, button, :where([tabindex]) {
outline-offset: var(--focus--offset-outer);
}
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
outline-color: var(--_theme---text);
outline-width: var(--focus--width);
outline-style: solid;
}
/* Global / Clickable Component */
.wf-design-mode .g_clickable_wrap {
z-index: 0;
}
.g_clickable_wrap a[href="#"] {
display: none;
}
.g_clickable_wrap a[href="#"] ~ button {
display: block;
}
</style></div><div class="page_code_custom w-embed"><style>
@media (max-width: 991px) {
[data-hidebr="tablet"] br {
display: none;
}
}
@media (max-width: 768px) {
[data-hidebr="landscape"] br {
display: none!important;
}
}
@media (max-width: 551px) {
[data-hidebr="mobile"] br {
display: none!important;
}
}
</style></div></div><main class="u-main"><section><div data-wf--global-background-color--background-color="background-white" class="g_background w-variant-cd5f9287-5b9f-b1bf-cfe9-3449eb06f297 u-cover-absolute u-background-butter"></div><div data-wf--global-section-space--section-space="80" class="g_section_space w-variant-60a7ad7d-02b0-6682-95a5-2218e6fd1490"></div><div class="u-padding-global"><div class="u-container"><div><h1 class="u-ts-ginto-nord_3rem">Misc. Full Sections / Modules</h1></div></div></div><div data-wf--global-section-space--section-space="80" class="g_section_space w-variant-60a7ad7d-02b0-6682-95a5-2218e6fd1490"></div></section><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name: Section / Tabs / Images and Links</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="blog__rich-text w-richtext"><p><strong>Custom Coded Needed</strong></p><pre contenteditable="false" class="w-code-block" style="display:block;overflow-x:auto;background:#2b2b2b;color:#f8f8f2;padding:0.5em"><code class="language-javascript" style="white-space:pre"><span><!-- Tabs CSS -->
</span><span></span><span class="xml" style="color:#ffa07a"><</span><span class="xml" style="color:#ffa07a">style</span><span class="xml" style="color:#ffa07a">></span><span class="xml css">
</span><span class="xml css"></span><span class="xml css" style="color:#dcc6e0">@media</span><span class="xml css"> (</span><span class="xml css" style="color:#ffd700">min-width</span><span class="xml css">: </span><span class="xml css" style="color:#f5ab35">991px</span><span class="xml css">) {
</span><span class="xml css"> </span><span class="xml css" style="color:#ffa07a">.home__tools-icon</span><span class="xml css"> {
</span><span class="xml css"> </span><span class="xml css" style="color:#ffd700">opacity</span><span class="xml css">: </span><span class="xml css" style="color:#f5ab35">0</span><span class="xml css">;
</span><span class="xml javascript"> }
</span><span class="xml javascript">
</span><span class="xml css"> </span><span class="xml css" style="color:#ffa07a">.home__tools-link</span><span class="xml css hljs-selector-pseudo">:hover</span><span class="xml css"> </span><span class="xml css" style="color:#ffa07a">.home__tools-icon</span><span class="xml css"> {
</span><span class="xml css"> </span><span class="xml css" style="color:#ffd700">opacity</span><span class="xml css">: </span><span class="xml css" style="color:#f5ab35">1</span><span class="xml css">;
</span><span class="xml javascript"> }
</span><span class="xml javascript">}
</span><span class="xml css"></span><span class="xml" style="color:#ffa07a"></</span><span class="xml" style="color:#ffa07a">style</span><span class="xml" style="color:#ffa07a">></span><span>
</span>
<!-- -->
<!-- --><!-- Tabs Custom Code-->
<span></span><span class="xml" style="color:#ffa07a"><</span><span class="xml" style="color:#ffa07a">script</span><span class="xml" style="color:#ffa07a">></span><span class="xml javascript">
</span><span class="xml javascript">
</span><span class="xml javascript"></span><span class="xml javascript" style="color:#d4d0ab">//when triggers hover</span><span class="xml javascript">
</span><span class="xml javascript">$(</span><span class="xml javascript" style="color:#abe338">'.home__tools-link'</span><span class="xml javascript">).hover(</span><span class="xml javascript hljs-function" style="color:#dcc6e0">function</span><span class="xml javascript hljs-function">(</span><span class="xml javascript hljs-function">)</span><span class="xml javascript">{
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#d4d0ab">//get this trigger index </span><span class="xml javascript">
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#dcc6e0">var</span><span class="xml javascript"> index = $(</span><span class="xml javascript" style="color:#abe338">'.home__tools-link'</span><span class="xml javascript">).index(</span><span class="xml javascript" style="color:#f5ab35">this</span><span class="xml javascript">);
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#d4d0ab">//remove all active classes on triggers</span><span class="xml javascript">
</span><span class="xml javascript"> $(</span><span class="xml javascript" style="color:#abe338">'.tools-tab'</span><span class="xml javascript">).removeClass(</span><span class="xml javascript" style="color:#abe338">'is-active'</span><span class="xml javascript">);
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#d4d0ab">//add active class to this item</span><span class="xml javascript">
</span><span class="xml javascript"> $(</span><span class="xml javascript" style="color:#f5ab35">this</span><span class="xml javascript">).addClass(</span><span class="xml javascript" style="color:#abe338">'is-active'</span><span class="xml javascript">);
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#d4d0ab">//remove all active classes on targets</span><span class="xml javascript">
</span><span class="xml javascript"> $(</span><span class="xml javascript" style="color:#abe338">'.home__tools-tabs__img'</span><span class="xml javascript">).removeClass(</span><span class="xml javascript" style="color:#abe338">'is-active'</span><span class="xml javascript">);
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#d4d0ab">//adds active class to equivalent index target element</span><span class="xml javascript">
</span><span class="xml javascript"> $(</span><span class="xml javascript" style="color:#abe338">'.home__tools-tabs__img'</span><span class="xml javascript">).eq(index).addClass(</span><span class="xml javascript" style="color:#abe338">'is-active'</span><span class="xml javascript">);
</span><span class="xml javascript">});
</span><span class="xml javascript"></span><span class="xml" style="color:#ffa07a"></</span><span class="xml" style="color:#ffa07a">script</span><span class="xml" style="color:#ffa07a">></span></code></pre><p></p><p><strong>Options:</strong> 5 tabs — some can be hidden to reduce the number. <br/><br/>The heading, copy, image, and link to the destination can be updated.<br/><br/>Please note that the above code must be added, as it enables the tab functionality and allows the image to change on hover.</p></div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><div><div class="u-display-contents"><div class="u-container"><section class="u-background-white g_section-large_86"><div data-wf--global-section-space--section-space="40" class="g_section_space w-variant-36663714-07c9-66e0-2fce-177459f91cfc u-hide-desktop u-hide-tablet"></div><div class="u-padding-global"><div class="u-container"><div><h2 class="u-style-30 is--24-mobile u-alignment-center u-weight-semibold">Tools and support for innovative marketing<br/></h2><div data-wf--global-section-space--section-space="48" class="g_section_space w-variant-6387b944-8a83-1d49-4a6e-80d8f4231d71"></div><div class="w-layout-hflex home__tools-tabs u-align-items-stretch"><div class="home__tools-tabs__left"><a data-wf-native-id-path="70d6c3c9-5d91-ddd7-9118-44fa0e183a76:70d6c3c9-5d91-ddd7-9118-44fa0e183a80:e2fdafda-ff1a-46bf-55a8-7ccb74ccf8cd:cfb6c8a1-469d-63e3-2188-f9bfcc0e4120" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="cfb6c8a1-469d-63e3-2188-f9bfcc0e4120" data-wf-component-context="%5B%7B%22componentId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a77%22%2C%22instanceId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a76%22%7D%2C%7B%22componentId%22%3A%22e2fdafda-ff1a-46bf-55a8-7ccb74ccf8cb%22%2C%22instanceId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a80%22%7D%2C%7B%22componentId%22%3A%22cfb6c8a1-469d-63e3-2188-f9bfcc0e4120%22%2C%22instanceId%22%3A%22e2fdafda-ff1a-46bf-55a8-7ccb74ccf8cd%22%7D%5D" href="/compliance" class="home__tools-link w-inline-block u-width-full u-align-items-center u-justify-content-between u-radius-20 u-easing-200"><div class="home__tools-copy"><div class="u-style-22 u-weight-semibold">Confident compliance</div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div><div class="u-font_mason-neue u-line-height-130">Run your program with tools designed to protect you from potential risk<br/></div></div><div class="home__tools-icon u-easing-200"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9abc56febc1427ef4a263_67d893733e6564ebd526f0b2_arrow.svg" alt="" class="icon__32"/></div></a><link rel="prefetch" href="/compliance"/><a data-wf-native-id-path="70d6c3c9-5d91-ddd7-9118-44fa0e183a76:70d6c3c9-5d91-ddd7-9118-44fa0e183a80:e2fdafda-ff1a-46bf-55a8-7ccb74ccf8ce:cfb6c8a1-469d-63e3-2188-f9bfcc0e4120" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="cfb6c8a1-469d-63e3-2188-f9bfcc0e4120" data-wf-component-context="%5B%7B%22componentId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a77%22%2C%22instanceId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a76%22%7D%2C%7B%22componentId%22%3A%22e2fdafda-ff1a-46bf-55a8-7ccb74ccf8cb%22%2C%22instanceId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a80%22%7D%2C%7B%22componentId%22%3A%22cfb6c8a1-469d-63e3-2188-f9bfcc0e4120%22%2C%22instanceId%22%3A%22e2fdafda-ff1a-46bf-55a8-7ccb74ccf8ce%22%7D%5D" href="/sms-email-deliverability" class="home__tools-link w-inline-block u-width-full u-align-items-center u-justify-content-between u-radius-20 u-easing-200"><div class="home__tools-copy"><div class="u-style-22 u-weight-semibold">Unmatched deliverability</div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div><div class="u-font_mason-neue u-line-height-130">Send messages knowing they’ll be delivered, even during peak periods<br/></div></div><div class="home__tools-icon u-easing-200"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9abc56febc1427ef4a263_67d893733e6564ebd526f0b2_arrow.svg" alt="" class="icon__32"/></div></a><link rel="prefetch" href="/sms-email-deliverability"/><a data-wf-native-id-path="70d6c3c9-5d91-ddd7-9118-44fa0e183a76:70d6c3c9-5d91-ddd7-9118-44fa0e183a80:e2fdafda-ff1a-46bf-55a8-7ccb74ccf8d2:cfb6c8a1-469d-63e3-2188-f9bfcc0e4120" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="cfb6c8a1-469d-63e3-2188-f9bfcc0e4120" data-wf-component-context="%5B%7B%22componentId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a77%22%2C%22instanceId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a76%22%7D%2C%7B%22componentId%22%3A%22e2fdafda-ff1a-46bf-55a8-7ccb74ccf8cb%22%2C%22instanceId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a80%22%7D%2C%7B%22componentId%22%3A%22cfb6c8a1-469d-63e3-2188-f9bfcc0e4120%22%2C%22instanceId%22%3A%22e2fdafda-ff1a-46bf-55a8-7ccb74ccf8d2%22%7D%5D" href="/customer-success" class="home__tools-link w-inline-block u-width-full u-align-items-center u-justify-content-between u-radius-20 u-easing-200"><div class="home__tools-copy"><div class="u-style-22 u-weight-semibold">Best-in-class support</div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div><div class="u-font_mason-neue u-line-height-130">Build and scale your program with specialized guidance and hands-on expertise<br/></div></div><div class="home__tools-icon u-easing-200"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9abc56febc1427ef4a263_67d893733e6564ebd526f0b2_arrow.svg" alt="" class="icon__32"/></div></a><link rel="prefetch" href="/customer-success"/><a data-wf-native-id-path="70d6c3c9-5d91-ddd7-9118-44fa0e183a76:70d6c3c9-5d91-ddd7-9118-44fa0e183a80:e2fdafda-ff1a-46bf-55a8-7ccb74ccf8d6:cfb6c8a1-469d-63e3-2188-f9bfcc0e4120" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="cfb6c8a1-469d-63e3-2188-f9bfcc0e4120" data-wf-component-context="%5B%7B%22componentId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a77%22%2C%22instanceId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a76%22%7D%2C%7B%22componentId%22%3A%22e2fdafda-ff1a-46bf-55a8-7ccb74ccf8cb%22%2C%22instanceId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a80%22%7D%2C%7B%22componentId%22%3A%22cfb6c8a1-469d-63e3-2188-f9bfcc0e4120%22%2C%22instanceId%22%3A%22e2fdafda-ff1a-46bf-55a8-7ccb74ccf8d6%22%7D%5D" href="/sms-analytics-and-reporting" class="home__tools-link w-inline-block u-width-full u-align-items-center u-justify-content-between u-radius-20 u-easing-200"><div class="home__tools-copy"><div class="u-style-22 u-weight-semibold">Data-driven decisions</div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div><div class="u-font_mason-neue u-line-height-130">Track trends over time with snapshot visualizations and advanced reports<br/></div></div><div class="home__tools-icon u-easing-200"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9abc56febc1427ef4a263_67d893733e6564ebd526f0b2_arrow.svg" alt="" class="icon__32"/></div></a><link rel="prefetch" href="/sms-analytics-and-reporting"/><a data-wf-native-id-path="70d6c3c9-5d91-ddd7-9118-44fa0e183a76:70d6c3c9-5d91-ddd7-9118-44fa0e183a80:e2fdafda-ff1a-46bf-55a8-7ccb74ccf8da:cfb6c8a1-469d-63e3-2188-f9bfcc0e4120" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="cfb6c8a1-469d-63e3-2188-f9bfcc0e4120" data-wf-component-context="%5B%7B%22componentId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a77%22%2C%22instanceId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a76%22%7D%2C%7B%22componentId%22%3A%22e2fdafda-ff1a-46bf-55a8-7ccb74ccf8cb%22%2C%22instanceId%22%3A%2270d6c3c9-5d91-ddd7-9118-44fa0e183a80%22%7D%2C%7B%22componentId%22%3A%22cfb6c8a1-469d-63e3-2188-f9bfcc0e4120%22%2C%22instanceId%22%3A%22e2fdafda-ff1a-46bf-55a8-7ccb74ccf8da%22%7D%5D" href="/global-sms-and-email-services" class="home__tools-link w-inline-block u-width-full u-align-items-center u-justify-content-between u-radius-20 u-easing-200"><div class="home__tools-copy"><div class="u-style-22 u-weight-semibold">Global reach</div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div><div class="u-font_mason-neue u-line-height-130">Engage customers any time, anywhere in 20+ countries<br/></div></div><div class="home__tools-icon u-easing-200"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9abc56febc1427ef4a263_67d893733e6564ebd526f0b2_arrow.svg" alt="" class="icon__32"/></div></a><link rel="prefetch" href="/global-sms-and-email-services"/></div><div class="home__tools-tabs__right u-zindex-2 u-radius-16 u-overflow-clip u-hide-tablet"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c19788_Compliance-285X733.avif" alt="" sizes="(max-width: 767px) 100vw, 569.990234375px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c19788_38eb409c83e639330bdd3ef66364e8b1_Compliance-285X733-p-500.avif 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c19788_Compliance-285X733.avif 570w" class="home__tools-tabs__img is-active u-cover-absolute"/><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c1977c_Deliverability.avif" alt="deliverability visual" sizes="(max-width: 767px) 100vw, 569.990234375px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c1977c_f6bd2a40595bc374731ef8b44308d8f2_Deliverability-p-500.avif 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c1977c_Deliverability.avif 570w" class="home__tools-tabs__img u-cover-absolute"/><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c19778_Customer%20Success.avif" alt="" sizes="(max-width: 767px) 100vw, 569.990234375px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c19778_8cebedd63f4a62253a234d00c157f6ed_Customer%2520Success-p-500.avif 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c19778_Customer%20Success.avif 570w" class="home__tools-tabs__img u-cover-absolute"/><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c19784_Analytics.avif" alt="analytics dashboard visual" sizes="(max-width: 767px) 100vw, 569.990234375px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c19784_9be6a4b5ad9180e521323c6444e58781_Analytics-p-500.avif 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c19784_Analytics.avif 570w" class="home__tools-tabs__img u-cover-absolute"/><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c19780_International.avif" alt="international sms examples" sizes="(max-width: 767px) 100vw, 569.990234375px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c19780_c51a0c0b125711b502d5d3b2751b75f5_International-p-500.avif 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9a92282f798a626c19780_International.avif 570w" class="home__tools-tabs__img u-cover-absolute"/></div></div></div></div></div><div data-wf--global-section-space--section-space="40" class="g_section_space w-variant-36663714-07c9-66e0-2fce-177459f91cfc u-hide-desktop u-hide-tablet"></div></section></div></div></div></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name: Section / Tabs / Heading and CTA</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="blog__rich-text w-richtext"><p>Options: <br/><br/></p><p>The section heading and button are editable and can be shown or hidden as required. </p><p>The section includes 3 tabs (Can't change number of tabs), and each tab has the following properties:</p><ol role="list"><li>Tab logo</li><li>Big image</li><li>Small image</li><li>Tag (Industry) – editable</li><li>Link to the case study</li><li>Number</li><li>Number description</li><li>Quote testimonial and author</li></ol></div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><div><div class="u-display-contents"><div class="u-background-offwhite"><section class="home-white u-background-white g_section-large_86"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div class="u-padding-global"><div class="u-container"><div class="home-white__wrapper"><h2 class="u-style-40 is--30-landscape-26-mobile u-alignment-center u-weight-semibold">Brands delivering real results<br/></h2><div><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div></div><div class="u-alignment-center"><div data-wf--btn-main--style="secondary" class="btn__main w-variant-e85564cd-af30-a478-692b-71732aefb3ab"><div class="g_clickable_wrap"><a rel="prefetch" target="" data-wf-native-id-path="c2fc2274-fa19-8c0b-ed1b-cc90014ce2e6:cb2f401a-6f48-550e-991f-b5b37753ba50:e3c8b535-008d-18b4-19d8-a889182de0e1:0254e612-9509-0757-3332-f6be61ca688a" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="0254e612-9509-0757-3332-f6be61ca688a" data-wf-component-context="%5B%7B%22componentId%22%3A%22cb2f401a-6f48-550e-991f-b5b37753ba46%22%2C%22instanceId%22%3A%22c2fc2274-fa19-8c0b-ed1b-cc90014ce2e6%22%7D%2C%7B%22componentId%22%3A%22824b76d0-0ddb-5ed5-8ae6-09771aaa568a%22%2C%22instanceId%22%3A%22cb2f401a-6f48-550e-991f-b5b37753ba50%22%7D%2C%7B%22componentId%22%3A%220254e612-9509-0757-3332-f6be61ca6889%22%2C%22instanceId%22%3A%22e3c8b535-008d-18b4-19d8-a889182de0e1%22%7D%5D" href="/case-studies" class="g_clickable_link w-inline-block"><span class="g_clickable_text u-sr-only">Explore customer stories</span></a><link rel="prefetch" href="/case-studies"/><button type="button" class="g_clickable_btn"><span class="g_clickable_text u-sr-only">Explore customer stories</span></button></div><div aria-hidden="true" class="btn_main_text">Explore customer stories</div></div></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div><div data-current="Tab 1" data-easing="ease" data-duration-in="300" data-duration-out="100" class="home__tools-tabs w-tabs"><div class="home__tabs-menu w-tab-menu"><a data-w-tab="Tab 1" class="home__tabs-link w-inline-block w-tab-link w--current"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a2590a71f0579ac6d4402d_Coz.svg" alt="" class="home__tabs-link__img"/></a><a data-w-tab="Tab 2" class="home__tabs-link w-inline-block w-tab-link"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a259171a953b87bd9925b3_Rse.svg" alt="" class="home__tabs-link__img"/></a><a data-w-tab="Tab 3" class="home__tabs-link w-inline-block w-tab-link"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25922f378fc431a2f682b_689a3f85289a0b614c0b7d93_Studio%20Movie%20Grill%20Logo.svg" alt="" class="home__tabs-link__img"/></a></div><div class="home__tabs-content w-tab-content"><div data-w-tab="Tab 1" class="home__tabs-pane w-tab-pane w--tab-active"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div><div class="home__tabs-box-wrapper"><div id="w-node-cb2f401a-6f48-550e-991f-b5b37753ba5f-7753ba46" class="home__tabs-img-wrapper"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25b0f0ecb63711a0cc5cb_cozyearth_header_test.png" alt="" sizes="239.287109375px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25b0f0ecb63711a0cc5cb_cozyearth_header_test-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25b0f0ecb63711a0cc5cb_cozyearth_header_test.png 761w" class="home__tabs-img"/><p class="home__tabs-pill is--overlay u-style-12 u-weight-semibold u-line-height-130 u-radius-16 u-background-brand">RETAIL</p><div class="home__tabs-link-abs u-width-full"><a class="g__link is--no-underlined is--hovered-bold" data-wf-component-context="%5B%7B%22componentId%22%3A%22cb2f401a-6f48-550e-991f-b5b37753ba46%22%2C%22instanceId%22%3A%22c2fc2274-fa19-8c0b-ed1b-cc90014ce2e6%22%7D%2C%7B%22componentId%22%3A%2263cb3afd-f4c5-f017-a7ce-07133517983b%22%2C%22instanceId%22%3A%22cb2f401a-6f48-550e-991f-b5b37753ba64%22%7D%5D" data-wf-element-id="63cb3afd-f4c5-f017-a7ce-07133517983b" href="/case-studies/how-cozy-earth-boosted-growth-with-attentives-sms-email-and-ai-solutions" target="" data-hidebr="" rel="prefetch" data-wf-native-id-path="c2fc2274-fa19-8c0b-ed1b-cc90014ce2e6:cb2f401a-6f48-550e-991f-b5b37753ba64:63cb3afd-f4c5-f017-a7ce-07133517983b" data-wf-ao-click-engagement-tracking="true">Read case study →</a><link rel="prefetch" href="/case-studies/how-cozy-earth-boosted-growth-with-attentives-sms-email-and-ai-solutions"/></div></div><div id="w-node-cb2f401a-6f48-550e-991f-b5b37753ba66-7753ba46" class="w-layout-vflex home__tabs-stats-w u-justify-content-center u-align-items-center u-line-height-130"><div class="u-weight-semibold">515X</div><div class="u-style-18">all-time ROI for journey messages</div></div><div id="w-node-cb2f401a-6f48-550e-991f-b5b37753ba6b-7753ba46" class="home__tabs-mock-wrapper"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25b0f0ecb63711a0cc5d1_cozy%20earth%20example.png" alt="cozy earth email example" sizes="238.96484375px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25b0f0ecb63711a0cc5d1_cozy%2520earth%2520example-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25b0f0ecb63711a0cc5d1_cozy%2520earth%2520example-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25b0f0ecb63711a0cc5d1_cozy%20earth%20example.png 809w" class="home__tabs-mock-img"/></div><div id="w-node-cb2f401a-6f48-550e-991f-b5b37753ba6d-7753ba46" class="cs-quote-wrapper u-line-height-130"><p class="u-style-20 is--16-tablet u-font_mason-neue">“We conducted thorough A/B tests as we slowly migrated a couple of our abandoned flows over to Attentive—we compared the performance of our previous provider and Attentive for around two consecutive months. And the results were striking.
It was insane how many more abandoned emails and how many more customers Attentive was identifying.”</p><div class="u-font_mason-neue">Weston Clark, Director of Customer Retention, Cozy Earth</div></div></div></div><div data-w-tab="Tab 2" class="home__tabs-pane w-tab-pane"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div><div class="home__tabs-box-wrapper"><div id="w-node-cb2f401a-6f48-550e-991f-b5b37753ba75-7753ba46" class="home__tabs-img-wrapper"><p class="home__tabs-pill is--overlay u-style-12 u-weight-semibold u-line-height-130 u-radius-16 u-background-brand">food & beverage</p><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25d2f0db8844970ae5bc7_cs-image_reserve-bar.png" alt="" sizes="239.970703125px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25d2f0db8844970ae5bc7_cs-image_reserve-bar-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25d2f0db8844970ae5bc7_cs-image_reserve-bar-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25d2f0db8844970ae5bc7_cs-image_reserve-bar.png 957w" class="home__tabs-img"/><div class="home__tabs-link-abs u-width-full"><a class="g__link is--no-underlined is--hovered-bold" data-wf-component-context="%5B%7B%22componentId%22%3A%22cb2f401a-6f48-550e-991f-b5b37753ba46%22%2C%22instanceId%22%3A%22c2fc2274-fa19-8c0b-ed1b-cc90014ce2e6%22%7D%2C%7B%22componentId%22%3A%2263cb3afd-f4c5-f017-a7ce-07133517983b%22%2C%22instanceId%22%3A%22cb2f401a-6f48-550e-991f-b5b37753ba7a%22%7D%5D" data-wf-element-id="63cb3afd-f4c5-f017-a7ce-07133517983b" href="/case-studies/how-reservebar-uses-attentive-to-increase-both-engagement-and-aov" target="" data-hidebr="" rel="prefetch" data-wf-native-id-path="c2fc2274-fa19-8c0b-ed1b-cc90014ce2e6:cb2f401a-6f48-550e-991f-b5b37753ba7a:63cb3afd-f4c5-f017-a7ce-07133517983b" data-wf-ao-click-engagement-tracking="true">Read case study →</a><link rel="prefetch" href="/case-studies/how-reservebar-uses-attentive-to-increase-both-engagement-and-aov"/></div></div><div id="w-node-cb2f401a-6f48-550e-991f-b5b37753ba7c-7753ba46" class="w-layout-vflex home__tabs-stats-w u-justify-content-center u-align-items-center u-line-height-130"><div class="u-weight-semibold">$4.5M</div><div class="u-style-18">SMS-attributable revenue</div></div><div id="w-node-cb2f401a-6f48-550e-991f-b5b37753ba81-7753ba46" class="home__tabs-mock-wrapper"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25d4382c018e44afee470_reserve%20bar%20example.png" alt="reservebar sign up unit" sizes="239.82421875px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25d4382c018e44afee470_reserve%2520bar%2520example-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25d4382c018e44afee470_reserve%2520bar%2520example-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25d4382c018e44afee470_reserve%20bar%20example.png 810w" class="home__tabs-mock-img"/></div><div id="w-node-cb2f401a-6f48-550e-991f-b5b37753ba83-7753ba46" class="cs-quote-wrapper u-line-height-130"><p class="u-style-20 is--16-tablet u-font_mason-neue">“Segmentation allowed us to see our audience sizes, figure out who we should be sending to, and use data most marketers wouldn’t normally have access to. It’s allowed us to really see what our audience looks like and what they want to see from us.”</p><div class="u-font_mason-neue">Kimberly O’Dell, Director, CRM & Loyalty, Reserve Bar</div></div></div></div><div data-w-tab="Tab 3" class="home__tabs-pane w-tab-pane"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div><div class="home__tabs-box-wrapper"><div id="w-node-cb2f401a-6f48-550e-991f-b5b37753ba8b-7753ba46" class="home__tabs-img-wrapper"><p class="home__tabs-pill is--overlay u-style-12 u-weight-semibold u-line-height-130 u-radius-16 u-background-brand">ENTERTAINMENT</p><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25ddf3be3235f4fa3e10e_cs-image_studio-movie-grill.png" alt="" sizes="240px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25ddf3be3235f4fa3e10e_cs-image_studio-movie-grill-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25ddf3be3235f4fa3e10e_cs-image_studio-movie-grill-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25ddf3be3235f4fa3e10e_cs-image_studio-movie-grill-p-1080.png 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25ddf3be3235f4fa3e10e_cs-image_studio-movie-grill.png 1204w" class="home__tabs-img"/><div class="home__tabs-link-abs u-width-full"><a class="g__link is--no-underlined is--hovered-bold" data-wf-component-context="%5B%7B%22componentId%22%3A%22cb2f401a-6f48-550e-991f-b5b37753ba46%22%2C%22instanceId%22%3A%22c2fc2274-fa19-8c0b-ed1b-cc90014ce2e6%22%7D%2C%7B%22componentId%22%3A%2263cb3afd-f4c5-f017-a7ce-07133517983b%22%2C%22instanceId%22%3A%22cb2f401a-6f48-550e-991f-b5b37753ba90%22%7D%5D" data-wf-element-id="63cb3afd-f4c5-f017-a7ce-07133517983b" href="/case-studies/how-studio-movie-grill-produced-a-blockbuster-49x-roi-after-launching-sms-with-attentive" target="" data-hidebr="" rel="prefetch" data-wf-native-id-path="c2fc2274-fa19-8c0b-ed1b-cc90014ce2e6:cb2f401a-6f48-550e-991f-b5b37753ba90:63cb3afd-f4c5-f017-a7ce-07133517983b" data-wf-ao-click-engagement-tracking="true">Read case study →</a><link rel="prefetch" href="/case-studies/how-studio-movie-grill-produced-a-blockbuster-49x-roi-after-launching-sms-with-attentive"/></div></div><div id="w-node-cb2f401a-6f48-550e-991f-b5b37753ba92-7753ba46" class="w-layout-vflex home__tabs-stats-w u-justify-content-center u-align-items-center u-line-height-130"><div class="u-weight-semibold">88X</div><div class="u-style-18">Welcome Journey ROI</div></div><div id="w-node-cb2f401a-6f48-550e-991f-b5b37753ba97-7753ba46" class="w-layout-hflex home__tabs-mock-wrapper u-justify-content-center u-align-items-center"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68a25d7a02058ae6888d009e_studio%20movie%20grill%20example.png" alt="studio movie grill SMS example" class="home__tabs-mock-img"/></div><div id="w-node-cb2f401a-6f48-550e-991f-b5b37753ba99-7753ba46" class="cs-quote-wrapper u-line-height-130"><p class="u-style-20 is--16-tablet u-font_mason-neue">"By using Attentive's sign-up units to collect email and SMS opt-ins, we're able to gather crucial information that transforms anonymous visitors into identifiable prospects. Then, our welcome flow facilitates a smooth transition into joining our loyalty program, effectively bridging the gap from being an unknown visitor to becoming an engaged member."</p><div class="u-font_mason-neue">Ted Low, Vice President Brand & Marketing, Studio Movie Grill</div></div></div></div></div></div></div></div></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div></section></div></div></div></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name : Section / Image Only / Reversable</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="blog__rich-text w-richtext"><p><strong>Options:</strong> Image, Copy, and Button (Copy + Text).<br/>It includes a Variant option that allows you to reverse the layout from right to left and vice versa.</p><p>To reuse the same section, you can unlink it and replace the image with a Lottie file.</p></div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><div><section><div data-wf--global-section-space--section-space="80" class="g_section_space w-variant-60a7ad7d-02b0-6682-95a5-2218e6fd1490 u-hide-landscape"></div><div data-wf--global-section-space--section-space="48" class="g_section_space w-variant-6387b944-8a83-1d49-4a6e-80d8f4231d71 u-hide-desktop u-hide-tablet"></div><div class="u-padding-global"><div class="u-container"><div><div data-wf--section-image-only-reversible---inside--variant="base" class="w-layout-hflex careers__third-wrapper u-gap-12 u-align-items-center"><div class="concierge__lottie-box u-width-flex-50 pink-bg u-overflow-hidden"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68b6f3974792a4bafb12d7c4_Image%202.avif" alt="" sizes="(max-width: 1279px) 100vw, 1168.994140625px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68b6f3974792a4bafb12d7c4_Image%25202-p-500.avif 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68b6f3974792a4bafb12d7c4_Image%25202-p-800.avif 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68b6f3974792a4bafb12d7c4_Image%25202-p-1080.avif 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68b6f3974792a4bafb12d7c4_Image%202.avif 1170w"/></div><div class="u-width-flex-50"><div id="epd-button"><p class="u-style-24 u-line-height-130"><strong>Create personalized, engaging experiences</strong><br/></p><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><p class="u-style-18 u-line-height-130">Use engagement data to segment audiences and create tailored messages for each subscriber with dynamic content. Stand out in their inbox by sending interactive RCS content including rich media cards, full-resolution images and video, and interactive conversational prompts that make a big impression.<br/></p><div data-wf--global-section-space--section-space="28" class="g_section_space w-variant-fe87ee97-cbe9-045b-e03d-fdf659b40fe1"></div><div data-wf--btn-main--style="primary" class="btn__main is--14 is--transparent"><div class="g_clickable_wrap"><a rel="prefetch" target="" data-wf-native-id-path="eb8ac534-35f6-4f1d-b291-d62b7360cb19:4b823428-b5f4-bde4-40cc-d691007602e8:f1ae3e2a-fc63-d4ae-7e83-64648673230a:e3c8b535-008d-18b4-19d8-a889182de0e1:0254e612-9509-0757-3332-f6be61ca688a" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="0254e612-9509-0757-3332-f6be61ca688a" data-wf-component-context="%5B%7B%22componentId%22%3A%224b823428-b5f4-bde4-40cc-d691007602e3%22%2C%22instanceId%22%3A%22eb8ac534-35f6-4f1d-b291-d62b7360cb19%22%7D%2C%7B%22componentId%22%3A%22f1ae3e2a-fc63-d4ae-7e83-6464867322fe%22%2C%22instanceId%22%3A%224b823428-b5f4-bde4-40cc-d691007602e8%22%7D%2C%7B%22componentId%22%3A%22824b76d0-0ddb-5ed5-8ae6-09771aaa568a%22%2C%22instanceId%22%3A%22f1ae3e2a-fc63-d4ae-7e83-64648673230a%22%7D%2C%7B%22componentId%22%3A%220254e612-9509-0757-3332-f6be61ca6889%22%2C%22instanceId%22%3A%22e3c8b535-008d-18b4-19d8-a889182de0e1%22%7D%5D" href="/blog/rcs-explained-faq" class="g_clickable_link w-inline-block"><span class="g_clickable_text u-sr-only">Learn more about RCS</span></a><link rel="prefetch" href="/blog/rcs-explained-faq"/><button type="button" class="g_clickable_btn"><span class="g_clickable_text u-sr-only">Learn more about RCS</span></button></div><div aria-hidden="true" class="btn_main_text is--14 is--transparent">Learn more about RCS</div></div><div data-wf--global-section-space--section-space="16" class="g_section_space w-variant-2a1fe94f-353c-d071-5e9e-c25aff63d9e1 u-hide-desktop u-hide-tablet"></div></div></div></div></div></div></div><div data-wf--global-section-space--section-space="48" class="g_section_space w-variant-6387b944-8a83-1d49-4a6e-80d8f4231d71 u-hide-desktop u-hide-tablet"></div><div data-wf--global-section-space--section-space="80" class="g_section_space w-variant-60a7ad7d-02b0-6682-95a5-2218e6fd1490 hide-tablet"></div></section></div></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name: Section / Resources / Custom Slider</div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-18 u-weight-medium"><strong>Options:</strong> We have 8 cards, which can be updated individually.<br/><br/>Each card includes Image, Link, Pill, and Title properties.<br/><br/>Please note that this is a global component. However, if you change any properties directly on an instance, the changes will only apply to that single location.<br/><br/>To apply changes everywhere, you must update the component by opening and editing the main component.</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><div><div class="u-display-contents"><div><div data-wf--global-section-space--section-space="80" class="g_section_space w-variant-60a7ad7d-02b0-6682-95a5-2218e6fd1490"></div><div class="u-background-white"><section class="home__resources u-overflow-hidden u-background-white"><div class="u-padding-global"><div class="u-container"><div><div class="home__resources__top"><h2 class="u-style-30 is--24-mobile u-weight-semibold u-line-height-120">Explore our resources</h2><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><a class="g__link u-flex-noshrink is--hovered-bold is--no-underlined" data-wf-component-context="%5B%7B%22componentId%22%3A%22d65500bd-1fac-62da-6285-65965ef6df9b%22%2C%22instanceId%22%3A%22588114bb-5e78-04fd-5716-51570155928c%22%7D%2C%7B%22componentId%22%3A%2263cb3afd-f4c5-f017-a7ce-07133517983b%22%2C%22instanceId%22%3A%22d65500bd-1fac-62da-6285-65965ef6dfa4%22%7D%5D" data-wf-element-id="63cb3afd-f4c5-f017-a7ce-07133517983b" href="/resources" target="" data-hidebr="" rel="prefetch" data-wf-native-id-path="588114bb-5e78-04fd-5716-51570155928c:d65500bd-1fac-62da-6285-65965ef6dfa4:63cb3afd-f4c5-f017-a7ce-07133517983b" data-wf-ao-click-engagement-tracking="true">Go to the hub →</a><link rel="prefetch" href="/resources"/></div><div><div data-delay="4000" data-animation="slide" class="home__resources-slider w-slider" data-autoplay="false" data-easing="ease" data-hide-arrows="true" data-disable-swipe="false" data-autoplay-limit="0" data-nav-spacing="3" data-duration="500" data-infinite="true"><div class="home__resources-slider__mask w-slider-mask"><div class="home__resources-slider__slide w-slide"><a data-wf-native-id-path="588114bb-5e78-04fd-5716-51570155928c:d65500bd-1fac-62da-6285-65965ef6dfaa:92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-component-context="%5B%7B%22componentId%22%3A%22d65500bd-1fac-62da-6285-65965ef6df9b%22%2C%22instanceId%22%3A%22588114bb-5e78-04fd-5716-51570155928c%22%7D%2C%7B%22componentId%22%3A%2292ba2921-5771-1df9-3afe-0f063abf60bd%22%2C%22instanceId%22%3A%22d65500bd-1fac-62da-6285-65965ef6dfaa%22%7D%5D" href="/blog/cyber-week-2025-recap" class="home__resources-slider__link w-inline-block"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/69319e8d3d6659cfd80a95ef_2025%20BFCM%20Recap-blog_feat-image_1080x680.png" loading="lazy" alt="" sizes="(max-width: 2160px) 100vw, 2160px, 100vw" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/69319e8d3d6659cfd80a95ef_2025%20BFCM%20Recap-blog_feat-image_1080x680-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/69319e8d3d6659cfd80a95ef_2025%20BFCM%20Recap-blog_feat-image_1080x680-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/69319e8d3d6659cfd80a95ef_2025%20BFCM%20Recap-blog_feat-image_1080x680-p-1080.png 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/69319e8d3d6659cfd80a95ef_2025%20BFCM%20Recap-blog_feat-image_1080x680.png 2160w" class="home__resources-slider__img u-radius-16"/><div class="w-layout-vflex home__resources-slider__content"><div class="home-pill__yellow u-style-12 u-weight-semibold u-background-brand u-line-height-130 u-radius-round">BFCM</div><div data-wf--global-section-space--section-space="16" class="g_section_space w-variant-2a1fe94f-353c-d071-5e9e-c25aff63d9e1"></div><h3 class="u-style-22 is--18-mobile u-weight-semibold u-line-height-120">Attentive Brands Drive Nearly $2 Billion in Cyber Week Revenue</h3></div></a><link rel="prefetch" href="/blog/cyber-week-2025-recap"/></div><div class="home__resources-slider__slide w-slide"><a data-wf-native-id-path="588114bb-5e78-04fd-5716-51570155928c:d65500bd-1fac-62da-6285-65965ef6dfac:92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-component-context="%5B%7B%22componentId%22%3A%22d65500bd-1fac-62da-6285-65965ef6df9b%22%2C%22instanceId%22%3A%22588114bb-5e78-04fd-5716-51570155928c%22%7D%2C%7B%22componentId%22%3A%2292ba2921-5771-1df9-3afe-0f063abf60bd%22%2C%22instanceId%22%3A%22d65500bd-1fac-62da-6285-65965ef6dfac%22%7D%5D" href="/marketing-personality-quiz" class="home__resources-slider__link w-inline-block"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b5637663886f33fc8fdc_homepage_feat-image_1080x680.avif" loading="lazy" alt="" sizes="(max-width: 2160px) 100vw, 2160px, 100vw" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b5637663886f33fc8fdc_homepage_feat-image_1080x680-p-500.avif 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b5637663886f33fc8fdc_homepage_feat-image_1080x680-p-800.avif 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b5637663886f33fc8fdc_homepage_feat-image_1080x680-p-1080.avif 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b5637663886f33fc8fdc_homepage_feat-image_1080x680-p-1600.avif 1600w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b5637663886f33fc8fdc_homepage_feat-image_1080x680-p-2000.avif 2000w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b5637663886f33fc8fdc_homepage_feat-image_1080x680.avif 2160w" class="home__resources-slider__img u-radius-16"/><div class="w-layout-vflex home__resources-slider__content"><div class="home-pill__yellow u-style-12 u-weight-semibold u-background-brand u-line-height-130 u-radius-round">QUIZ</div><div data-wf--global-section-space--section-space="16" class="g_section_space w-variant-2a1fe94f-353c-d071-5e9e-c25aff63d9e1"></div><h3 class="u-style-22 is--18-mobile u-weight-semibold u-line-height-120">Find your Marketing Superpower in 2 minutes</h3></div></a><link rel="prefetch" href="/marketing-personality-quiz"/></div><div class="home__resources-slider__slide w-slide"><a data-wf-native-id-path="588114bb-5e78-04fd-5716-51570155928c:d65500bd-1fac-62da-6285-65965ef6dfb0:92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-component-context="%5B%7B%22componentId%22%3A%22d65500bd-1fac-62da-6285-65965ef6df9b%22%2C%22instanceId%22%3A%22588114bb-5e78-04fd-5716-51570155928c%22%7D%2C%7B%22componentId%22%3A%2292ba2921-5771-1df9-3afe-0f063abf60bd%22%2C%22instanceId%22%3A%22d65500bd-1fac-62da-6285-65965ef6dfb0%22%7D%5D" href="/blog/ios-26-explained-for-marketers" class="home__resources-slider__link w-inline-block"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690136fbeb7b8c1830585842_68caeab2d987ac1d3744bc31_68a4c88da41001c58ec255b9_ios%252026_blog_feat-image_1080x680.png" loading="lazy" alt="" sizes="(max-width: 2160px) 100vw, 2160px, 100vw" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690136fbeb7b8c1830585842_68caeab2d987ac1d3744bc31_68a4c88da41001c58ec255b9_ios%252026_blog_feat-image_1080x680-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690136fbeb7b8c1830585842_68caeab2d987ac1d3744bc31_68a4c88da41001c58ec255b9_ios%252026_blog_feat-image_1080x680-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690136fbeb7b8c1830585842_68caeab2d987ac1d3744bc31_68a4c88da41001c58ec255b9_ios%252026_blog_feat-image_1080x680-p-1080.png 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690136fbeb7b8c1830585842_68caeab2d987ac1d3744bc31_68a4c88da41001c58ec255b9_ios%252026_blog_feat-image_1080x680-p-1600.png 1600w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690136fbeb7b8c1830585842_68caeab2d987ac1d3744bc31_68a4c88da41001c58ec255b9_ios%252026_blog_feat-image_1080x680-p-2000.png 2000w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690136fbeb7b8c1830585842_68caeab2d987ac1d3744bc31_68a4c88da41001c58ec255b9_ios%252026_blog_feat-image_1080x680.png 2160w" class="home__resources-slider__img u-radius-16"/><div class="w-layout-vflex home__resources-slider__content"><div class="home-pill__yellow u-style-12 u-weight-semibold u-background-brand u-line-height-130 u-radius-round">BLOG POST</div><div data-wf--global-section-space--section-space="16" class="g_section_space w-variant-2a1fe94f-353c-d071-5e9e-c25aff63d9e1"></div><h3 class="u-style-22 is--18-mobile u-weight-semibold u-line-height-120">Everything Marketers Need to Know about iOS 26: Unknown Senders Lose Inbox Visibility<br/></h3></div></a><link rel="prefetch" href="/blog/ios-26-explained-for-marketers"/></div><div class="home__resources-slider__slide w-slide"><a data-wf-native-id-path="588114bb-5e78-04fd-5716-51570155928c:d65500bd-1fac-62da-6285-65965ef6dfb4:92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-component-context="%5B%7B%22componentId%22%3A%22d65500bd-1fac-62da-6285-65965ef6df9b%22%2C%22instanceId%22%3A%22588114bb-5e78-04fd-5716-51570155928c%22%7D%2C%7B%22componentId%22%3A%2292ba2921-5771-1df9-3afe-0f063abf60bd%22%2C%22instanceId%22%3A%22d65500bd-1fac-62da-6285-65965ef6dfb4%22%7D%5D" href="/blog/email-and-sms-orchestration-guide" class="home__resources-slider__link w-inline-block"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6901375c52b2340287eed52e_68f7b35e902b4928baa713c0_Multi-Channel%20Orchestration%20Guide__blog_feat-image_1080x680.png" loading="lazy" alt="" sizes="(max-width: 2160px) 100vw, 2160px, 100vw" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6901375c52b2340287eed52e_68f7b35e902b4928baa713c0_Multi-Channel%20Orchestration%20Guide__blog_feat-image_1080x680-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6901375c52b2340287eed52e_68f7b35e902b4928baa713c0_Multi-Channel%20Orchestration%20Guide__blog_feat-image_1080x680-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6901375c52b2340287eed52e_68f7b35e902b4928baa713c0_Multi-Channel%20Orchestration%20Guide__blog_feat-image_1080x680-p-1080.png 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6901375c52b2340287eed52e_68f7b35e902b4928baa713c0_Multi-Channel%20Orchestration%20Guide__blog_feat-image_1080x680-p-1600.png 1600w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6901375c52b2340287eed52e_68f7b35e902b4928baa713c0_Multi-Channel%20Orchestration%20Guide__blog_feat-image_1080x680.png 2160w" class="home__resources-slider__img u-radius-16"/><div class="w-layout-vflex home__resources-slider__content"><div class="home-pill__yellow u-style-12 u-weight-semibold u-background-brand u-line-height-130 u-radius-round">BLOG POST</div><div data-wf--global-section-space--section-space="16" class="g_section_space w-variant-2a1fe94f-353c-d071-5e9e-c25aff63d9e1"></div><h3 class="u-style-22 is--18-mobile u-weight-semibold u-line-height-120">The Complete Guide to Email & SMS Orchestration</h3></div></a><link rel="prefetch" href="/blog/email-and-sms-orchestration-guide"/></div><div class="home__resources-slider__slide w-slide"><a data-wf-native-id-path="588114bb-5e78-04fd-5716-51570155928c:d65500bd-1fac-62da-6285-65965ef6dfb8:92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-component-context="%5B%7B%22componentId%22%3A%22d65500bd-1fac-62da-6285-65965ef6df9b%22%2C%22instanceId%22%3A%22588114bb-5e78-04fd-5716-51570155928c%22%7D%2C%7B%22componentId%22%3A%2292ba2921-5771-1df9-3afe-0f063abf60bd%22%2C%22instanceId%22%3A%22d65500bd-1fac-62da-6285-65965ef6dfb8%22%7D%5D" href="/blog/2025-lookback" class="home__resources-slider__link w-inline-block"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6945945e2983ecc14ad1780e_looking%20back%202025.png" loading="lazy" alt="" sizes="(max-width: 2160px) 100vw, 2160px, 100vw" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6945945e2983ecc14ad1780e_looking%20back%202025-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6945945e2983ecc14ad1780e_looking%20back%202025-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6945945e2983ecc14ad1780e_looking%20back%202025-p-1080.png 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6945945e2983ecc14ad1780e_looking%20back%202025-p-1600.png 1600w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6945945e2983ecc14ad1780e_looking%20back%202025-p-2000.png 2000w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6945945e2983ecc14ad1780e_looking%20back%202025.png 2160w" class="home__resources-slider__img u-radius-16"/><div class="w-layout-vflex home__resources-slider__content"><div class="home-pill__yellow u-style-12 u-weight-semibold u-background-brand u-line-height-130 u-radius-round">BLOG POST</div><div data-wf--global-section-space--section-space="16" class="g_section_space w-variant-2a1fe94f-353c-d071-5e9e-c25aff63d9e1"></div><h3 class="u-style-22 is--18-mobile u-weight-semibold u-line-height-120">Looking Back and Looking Forward: 2025 Highlights and What's Next for 2026</h3></div></a><link rel="prefetch" href="/blog/2025-lookback"/></div><div class="home__resources-slider__slide w-slide"><a data-wf-native-id-path="588114bb-5e78-04fd-5716-51570155928c:d65500bd-1fac-62da-6285-65965ef6dfbc:92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-component-context="%5B%7B%22componentId%22%3A%22d65500bd-1fac-62da-6285-65965ef6df9b%22%2C%22instanceId%22%3A%22588114bb-5e78-04fd-5716-51570155928c%22%7D%2C%7B%22componentId%22%3A%2292ba2921-5771-1df9-3afe-0f063abf60bd%22%2C%22instanceId%22%3A%22d65500bd-1fac-62da-6285-65965ef6dfbc%22%7D%5D" href="/blog/marketing-leader-priorities-2026" class="home__resources-slider__link w-inline-block"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/69459686a3cf12c7aac62cc0_marketing%20leaders.png" loading="lazy" alt="" sizes="(max-width: 2160px) 100vw, 2160px, 100vw" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/69459686a3cf12c7aac62cc0_marketing%20leaders-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/69459686a3cf12c7aac62cc0_marketing%20leaders-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/69459686a3cf12c7aac62cc0_marketing%20leaders-p-1080.png 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/69459686a3cf12c7aac62cc0_marketing%20leaders-p-1600.png 1600w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/69459686a3cf12c7aac62cc0_marketing%20leaders.png 2160w" class="home__resources-slider__img u-radius-16"/><div class="w-layout-vflex home__resources-slider__content"><div class="home-pill__yellow u-style-12 u-weight-semibold u-background-brand u-line-height-130 u-radius-round">BLOG POST</div><div data-wf--global-section-space--section-space="16" class="g_section_space w-variant-2a1fe94f-353c-d071-5e9e-c25aff63d9e1"></div><h3 class="u-style-22 is--18-mobile u-weight-semibold u-line-height-120">What Marketing Leaders Are Actually Prioritizing in 2026</h3></div></a><link rel="prefetch" href="/blog/marketing-leader-priorities-2026"/></div><div class="home__resources-slider__slide w-slide"><a data-wf-native-id-path="588114bb-5e78-04fd-5716-51570155928c:d65500bd-1fac-62da-6285-65965ef6dfc0:92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-component-context="%5B%7B%22componentId%22%3A%22d65500bd-1fac-62da-6285-65965ef6df9b%22%2C%22instanceId%22%3A%22588114bb-5e78-04fd-5716-51570155928c%22%7D%2C%7B%22componentId%22%3A%2292ba2921-5771-1df9-3afe-0f063abf60bd%22%2C%22instanceId%22%3A%22d65500bd-1fac-62da-6285-65965ef6dfc0%22%7D%5D" href="/blog/email-reporting-guide" class="home__resources-slider__link w-inline-block"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690137e9cd78647c16c69a8b_68cac692f121327a3391ef94_68c8686388700b7318cde194_Reporting-Guide-Blog-Main-Image-1080x680-2x.png" loading="lazy" alt="" sizes="(max-width: 2160px) 100vw, 2160px, 100vw" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690137e9cd78647c16c69a8b_68cac692f121327a3391ef94_68c8686388700b7318cde194_Reporting-Guide-Blog-Main-Image-1080x680-2x-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690137e9cd78647c16c69a8b_68cac692f121327a3391ef94_68c8686388700b7318cde194_Reporting-Guide-Blog-Main-Image-1080x680-2x-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690137e9cd78647c16c69a8b_68cac692f121327a3391ef94_68c8686388700b7318cde194_Reporting-Guide-Blog-Main-Image-1080x680-2x-p-1080.png 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690137e9cd78647c16c69a8b_68cac692f121327a3391ef94_68c8686388700b7318cde194_Reporting-Guide-Blog-Main-Image-1080x680-2x-p-1600.png 1600w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690137e9cd78647c16c69a8b_68cac692f121327a3391ef94_68c8686388700b7318cde194_Reporting-Guide-Blog-Main-Image-1080x680-2x-p-2000.png 2000w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/690137e9cd78647c16c69a8b_68cac692f121327a3391ef94_68c8686388700b7318cde194_Reporting-Guide-Blog-Main-Image-1080x680-2x.png 2160w" class="home__resources-slider__img u-radius-16"/><div class="w-layout-vflex home__resources-slider__content"><div class="home-pill__yellow u-style-12 u-weight-semibold u-background-brand u-line-height-130 u-radius-round">GUIDE</div><div data-wf--global-section-space--section-space="16" class="g_section_space w-variant-2a1fe94f-353c-d071-5e9e-c25aff63d9e1"></div><h3 class="u-style-22 is--18-mobile u-weight-semibold u-line-height-120">How Attentive's Email Reporting Delivers More Than Vanity Metrics</h3></div></a><link rel="prefetch" href="/blog/email-reporting-guide"/></div><div class="home__resources-slider__slide w-slide"><a data-wf-native-id-path="588114bb-5e78-04fd-5716-51570155928c:d65500bd-1fac-62da-6285-65965ef6dfc4:92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="92ba2921-5771-1df9-3afe-0f063abf60bd" data-wf-component-context="%5B%7B%22componentId%22%3A%22d65500bd-1fac-62da-6285-65965ef6df9b%22%2C%22instanceId%22%3A%22588114bb-5e78-04fd-5716-51570155928c%22%7D%2C%7B%22componentId%22%3A%2292ba2921-5771-1df9-3afe-0f063abf60bd%22%2C%22instanceId%22%3A%22d65500bd-1fac-62da-6285-65965ef6dfc4%22%7D%5D" href="/blog/sms-email-and-push-orchestration" class="home__resources-slider__link w-inline-block"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b7a83eeea321a1b0a89d_67d495bfbc0d0b4dd17ada43_AI%20Data%20Privacy%20and%20Security%20with%20AI%20blog_feat-image_1080x680.avif" loading="lazy" alt="" sizes="(max-width: 2160px) 100vw, 2160px, 100vw" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b7a83eeea321a1b0a89d_67d495bfbc0d0b4dd17ada43_AI%2520Data%2520Privacy%2520and%2520Security%2520with%2520AI%2520blog_feat-image_1080x680-p-500.avif 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b7a83eeea321a1b0a89d_67d495bfbc0d0b4dd17ada43_AI%2520Data%2520Privacy%2520and%2520Security%2520with%2520AI%2520blog_feat-image_1080x680-p-800.avif 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b7a83eeea321a1b0a89d_67d495bfbc0d0b4dd17ada43_AI%2520Data%2520Privacy%2520and%2520Security%2520with%2520AI%2520blog_feat-image_1080x680-p-1080.avif 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b7a83eeea321a1b0a89d_67d495bfbc0d0b4dd17ada43_AI%2520Data%2520Privacy%2520and%2520Security%2520with%2520AI%2520blog_feat-image_1080x680-p-1600.avif 1600w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b7a83eeea321a1b0a89d_67d495bfbc0d0b4dd17ada43_AI%2520Data%2520Privacy%2520and%2520Security%2520with%2520AI%2520blog_feat-image_1080x680-p-2000.avif 2000w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9b7a83eeea321a1b0a89d_67d495bfbc0d0b4dd17ada43_AI%20Data%20Privacy%20and%20Security%20with%20AI%20blog_feat-image_1080x680.avif 2160w" class="home__resources-slider__img u-radius-16"/><div class="w-layout-vflex home__resources-slider__content"><div class="home-pill__yellow u-style-12 u-weight-semibold u-background-brand u-line-height-130 u-radius-round">BLOG POST</div><div data-wf--global-section-space--section-space="16" class="g_section_space w-variant-2a1fe94f-353c-d071-5e9e-c25aff63d9e1"></div><h3 class="u-style-22 is--18-mobile u-weight-semibold u-line-height-120">How SMS, Email, and Mobile Apps Work Together to Drive Repeat Purchases</h3></div></a><link rel="prefetch" href="/blog/sms-email-and-push-orchestration"/></div></div><div class="home__resources-slider__arrow is--left w-slider-arrow-left"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9abc56febc1427ef4a263_67d893733e6564ebd526f0b2_arrow.svg" loading="lazy" alt="" class="u-rotate__180"/></div><div class="home__resources-slider__arrow w-slider-arrow-right"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68c9abc56febc1427ef4a263_67d893733e6564ebd526f0b2_arrow.svg" loading="lazy" alt="" class="icon__32"/></div><div class="u-hide-desktop w-slider-nav w-slider-nav-invert w-round home-hero-slider-nav slidenav"></div></div></div></div></div></div><div data-wf--global-section-space--section-space="80" class="g_section_space w-variant-60a7ad7d-02b0-6682-95a5-2218e6fd1490"></div><div class="carousel-gradient-left"></div><div class="carousel-gradient-right"></div></section></div></div></div></div></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name : Section / Information Block / Global</div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-18 u-weight-medium">Options: This section consists of a Heading and Copy text.</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><div><div class="u-display-contents"><div class=" "><section class="g_section-large_86"><div data-wf--global-background-color--background-color="background-white" class="g_background w-variant-cd5f9287-5b9f-b1bf-cfe9-3449eb06f297 u-cover-absolute"></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div class="u-padding-global"><div class="u-container"><div><h2 data-hidebr="tablet" class="u-style-38 is--36-tablet-24-mobile u-alignment-center u-font_ginto-nord">Partner with the proven leader in <br/>SMS and RCS marketing<br/></h2><div data-wf--global-section-space--section-space="16" class="g_section_space w-variant-2a1fe94f-353c-d071-5e9e-c25aff63d9e1"></div><p data-hidebr="tablet" class="u-style-24 is--18-mobile u-alignment-center">Consumers don’t just want to hear from your brand—they want <br/>to text you back. Attentive gives you the tools and expertise to <br/>deliver the personalized experience your subscribers want.<br/></p></div></div></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div></section></div></div></div></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name: Section / Case Study ( Using CMS Filter) / Single with Heading</div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-18 u-weight-medium">Options<br/><br/>Case Study Filter: Uses special filtering that lets you directly select a case study by brand name.<br/>Heading: Update or customize the section heading.<br/>Section Background: Change the background of the entire section.<br/>Metrics Visibility: Option to show or hide metrics within each case study card.</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><div><div class="u-display-contents"><div class="u-background-offwhite"><section class="customer__s-quote g_section-large_86"><div class="u-hide-desktop u-hide-tablet"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-mobile"></div></div><div class="u-padding-global"><div class="u-container"><div><div data-hidebr="tablet" class="g_heading w-richtext u-style-38 u-font_ginto-nord u-alignment-center is--36-tablet-24-mobile"><h2>Michaels drives engagement and <br/>conversions with multi-touch, multi-channel messages with magic composer</h2></div><div class="u-hide-mobile"><div data-wf--global-section-space--section-space="16" class="g_section_space w-variant-2a1fe94f-353c-d071-5e9e-c25aff63d9e1 u-hide-desktop u-hide-tablet"></div></div><div data-wf--global-section-space--section-space="64" class="g_section_space w-variant-d422cbd0-f212-c815-68df-63414354c21d"></div><div class="w-dyn-list"><div role="list" class="w-dyn-items"><div role="listitem" class="w-dyn-item"><div class="w-layout-hflex customer__s-quote-box u-overflow-hidden u-radius-20 u-box__shadow-20 u-background-white u-align-items-stretch u-zindex-1"><div class="customer__s-quote-left u-width-flex-50 u-zindex-0"><img loading="lazy" src="https://cdn.prod.website-files.com/68485e1e40741050193e3d29/68cc085bd5ab0709482e38ce_623351a20570894f4d647278_Michaels_Case_Study_1080x680.png" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/68485e1e40741050193e3d29/68cc085bd5ab0709482e38ce_623351a20570894f4d647278_Michaels_Case_Study_1080x680-p-500.png 500w, https://cdn.prod.website-files.com/68485e1e40741050193e3d29/68cc085bd5ab0709482e38ce_623351a20570894f4d647278_Michaels_Case_Study_1080x680-p-800.png 800w, https://cdn.prod.website-files.com/68485e1e40741050193e3d29/68cc085bd5ab0709482e38ce_623351a20570894f4d647278_Michaels_Case_Study_1080x680-p-1080.png 1080w, https://cdn.prod.website-files.com/68485e1e40741050193e3d29/68cc085bd5ab0709482e38ce_623351a20570894f4d647278_Michaels_Case_Study_1080x680-p-1600.png 1600w, https://cdn.prod.website-files.com/68485e1e40741050193e3d29/68cc085bd5ab0709482e38ce_623351a20570894f4d647278_Michaels_Case_Study_1080x680-p-2000.png 2000w, https://cdn.prod.website-files.com/68485e1e40741050193e3d29/68cc085bd5ab0709482e38ce_623351a20570894f4d647278_Michaels_Case_Study_1080x680.png 2160w" class="u-height-full"/><div class="w-layout-hflex customer__s-quote-case u-background-brand u-radius-round u-align-items-center"><img loading="lazy" src="https://cdn.prod.website-files.com/68485e1e40741050193e3d29/68cc085bd5ab0709482e38db_63f1453b49b46c591ca816a6_Group.svg" alt=""/></div></div><div class="w-layout-vflex customer__s-quote-right u-width-flex-50 u-justify-content-center"><div class="w-layout-hflex customer__s-results"><div class="customer__s-metrics-rich-text w-richtext"><h4>$63M+</h4><h5>total SMS revenue driven*</h5></div><div class="customer__s-results-divider"></div><div class="customer__s-metrics-rich-text w-richtext"><h4>20.8%</h4><h5>average CVR on abandoned cart reminder text</h5></div></div><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div><p class="u-style-20 is--16-mobile">"We've seen tremendous growth within our SMS program. Our audience loves to interact with our brand via text messaging."</p><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div><p class="u-style-18 u-weight-semibold">Stephanie Turner</p><p class="u-style-18">Director of Targeted Marketing</p></div><a data-wf-native-id-path="65231ddd-8311-6afe-f5bc-4f44af1c0117:0024d4cc-5347-cd9c-c882-25b2f0659ec6_instance-0" data-wf-ao-click-engagement-tracking="true" data-wf-element-id="0024d4cc-5347-cd9c-c882-25b2f0659ec6" data-wf-cms-context="%5B%7B%22collectionId%22%3A%22684d6c1bd11156b5cbc402e7%22%2C%22itemId%22%3A%2268cc08b7cf2ac5c70e4e966d%22%7D%5D" data-wf-component-context="%5B%7B%22componentId%22%3A%220024d4cc-5347-cd9c-c882-25b2f0659ea7%22%2C%22instanceId%22%3A%2265231ddd-8311-6afe-f5bc-4f44af1c0117%22%7D%5D" href="/case-studies/how-michaels-drove-63-2m-by-amplifying-online-and-in-store-experiences-with-sms" class="u-cover-absolute w-inline-block u-zindex-3"></a></div></div></div></div></div></div></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div data-wf--global-background-color--background-color="background-offwhite" class="g_background w-variant-92067874-f704-7fbf-e076-788858af4065 u-cover-absolute"></div></section></div></div></div></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name: Section / Grouped Section / Image and 2 Cards </div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-18 u-weight-medium">Options<br/><br/>Image Asset: Update images for both desktop and mobile.<br/><br/>Heading: Edit the main heading of the section. <br/><br/>Background Color - Background color can be edited using simple css class.<br/><br/>Icons Visibility: Control icon visibility for all 4 cards.<br/><br/>Sub-Heading Visibility:Show or hide the sub-heading for all 4 cards.<br/><br/>4 Cards (Per Card Options): Each card includes the following controls:<br/>- Visibility Toggle: Choose which cards are shown or hidden.<br/>- Icon: Replace the icon for each card.<br/>- Sub-Heading: Edit the sub-heading text.<br/>- Title: Edit the title text.<br/>- Stat: Number: Update the stat value.<br/>- Description: Edit the stat description.</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><div><div class="u-display-contents"><div class="u-background-offwhite"><div><section class="bg__half"><div data-wf--global-section-space--section-space="86" class="g_section_space w-variant-cc2076c2-c17c-5f11-df87-c532d7c70d35"></div><div class="u-padding-global"><div class="u-container"><div><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cf2428bcbb184468978f91_67f582cc8a6869e9b924ee58_Email%20Campaign.avif" loading="lazy" alt="" sizes="100vw" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cf2428bcbb184468978f91_67f582cc8a6869e9b924ee58_Email%20Campaign-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cf2428bcbb184468978f91_67f582cc8a6869e9b924ee58_Email%20Campaign-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cf2428bcbb184468978f91_67f582cc8a6869e9b924ee58_Email%20Campaign-p-1080.png 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cf2428bcbb184468978f91_67f582cc8a6869e9b924ee58_Email%20Campaign-p-1600.png 1600w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cf2428bcbb184468978f91_67f582cc8a6869e9b924ee58_Email%20Campaign.avif 2438w" class="u-hide-landscape"/><img loading="lazy" src="https://cdn.prod.website-files.com/5f8dd331b45e61acc8ac985c/642742b8786ca274754fa0e0_Email-collage-m.png" alt="" class="u-hide-desktop u-hide-tablet"/></div></div></div></section><section class="partners__second g_section-large_86 blue-bg"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div class="u-padding-global"><div class="u-container"><div><div data-hidebr="tablet" class="g_heading w-richtext u-style-38 u-alignment-center u-font_ginto-nord u-weight-medium is--36-tablet-32-landscape-24-mobile"><h2>The mobile, AI-driven email solution <br/>for global brands</h2></div><div data-wf--global-section-space--section-space="16" class="g_section_space w-variant-2a1fe94f-353c-d071-5e9e-c25aff63d9e1"></div><div data-wf--global-section-space--section-space="40" class="g_section_space w-variant-36663714-07c9-66e0-2fce-177459f91cfc"></div><div class="partners__second-wrapper"><div class="u-box__shadow-20 u-radius-20 u-background-white u-overflow-hidden"><div class="partners__second-card is--min-email"><img loading="lazy" src="https://cdn.prod.website-files.com/5f8dd331b45e61acc8ac985c/6425a32027c74d2ba93a3446_icon-magic.svg" alt="" class="icon__64"/><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div><p class="u-style-20 u-line-height-130 u-weight-semibold u-text-transform-capitalize u-letter-spacing-five">Informed & Involved<br/></p><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div><p class="u-style-30 is--24-mobile u-line-height-130 u-weight-semibold">Advanced automation for campaigns and journeys<br/></p><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><p class="u-style-18 u-line-height-140">Attentive Email’s AI and automation capabilities are designed to help you orchestrate and maximize your text and email marketing programs and boost your customer touchpoints on one easy-to-use platform.</p></div><div class="w-layout-hflex partner__second--stat-wrapper u-background-offwhite u-gap-4 u-align-items-center"><div class="u-style-38 u-weight-bold u-font_ginto-nord">10%</div><div class="u-style-18 u-line-height-130">increase in SMS performance</div></div></div><div class="u-box__shadow-20 u-radius-20 u-background-white u-overflow-hidden"><div class="partners__second-card is--min-email"><img loading="lazy" src="https://cdn.prod.website-files.com/5f8dd331b45e61acc8ac985c/6425a320e752582a8abed169_icon-support.svg" alt="" class="icon__64"/><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div><p class="u-style-20 u-line-height-130 u-weight-semibold u-text-transform-capitalize u-letter-spacing-five">SUPPORT<br/></p><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div><p class="u-style-30 is--24-mobile u-line-height-130 u-weight-semibold">Strategic guidance from launch to optimization<br/></p><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><p class="u-style-18 u-line-height-140">From complete migration in days rather than months to ongoing strategic guidance, our industry-leading team of experts work with you to build an email marketing program that inspires action and increases revenue.</p></div><div class="w-layout-hflex partner__second--stat-wrapper u-background-offwhite u-gap-4 u-align-items-center"><div class="u-style-38 u-weight-bold u-font_ginto-nord">96%</div><div class="u-style-18 u-line-height-130">satisfaction rate for support</div></div></div><div class="u-box__shadow-20 u-radius-20 u-background-white u-overflow-hidden"><div class="partners__second-card is--min-email"><img loading="lazy" src="https://cdn.prod.website-files.com/5f8dd331b45e61acc8ac985c/6425a320e752582a8abed169_icon-support.svg" alt="" class="icon__64"/><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div><p class="u-style-20 u-line-height-130 u-weight-semibold u-text-transform-capitalize u-letter-spacing-five">SUPPORT<br/></p><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div><p class="u-style-30 is--24-mobile u-line-height-130 u-weight-semibold">Strategic guidance from launch to optimization<br/></p><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><p class="u-style-18 u-line-height-140">From complete migration in days rather than months to ongoing strategic guidance, our industry-leading team of experts work with you to build an email marketing program that inspires action and increases revenue.</p></div><div class="w-layout-hflex partner__second--stat-wrapper u-background-offwhite u-gap-4 u-align-items-center"><div class="u-style-38 u-weight-bold u-font_ginto-nord">96%</div><div class="u-style-18 u-line-height-130">satisfaction rate for support</div></div></div><div class="u-box__shadow-20 u-radius-20 u-background-white u-overflow-hidden"><div class="partners__second-card is--min-email"><img loading="lazy" src="https://cdn.prod.website-files.com/5f8dd331b45e61acc8ac985c/6425a320e752582a8abed169_icon-support.svg" alt="" class="icon__64"/><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div><p class="u-style-20 u-line-height-130 u-weight-semibold u-text-transform-capitalize u-letter-spacing-five">SUPPORT<br/></p><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div><p class="u-style-30 is--24-mobile u-line-height-130 u-weight-semibold">Strategic guidance from launch to optimization<br/></p><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><p class="u-style-18 u-line-height-140">From complete migration in days rather than months to ongoing strategic guidance, our industry-leading team of experts work with you to build an email marketing program that inspires action and increases revenue.</p></div><div class="w-layout-hflex partner__second--stat-wrapper u-background-offwhite u-gap-4 u-align-items-center"><div class="u-style-38 u-weight-bold u-font_ginto-nord">96%</div><div class="u-style-18 u-line-height-130">satisfaction rate for support</div></div></div></div></div></div></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div></section></div></div></div></div></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name: Section / Pointers</div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-18 u-weight-medium">Heading: Update the section heading.<br/><br/>Background Color:Change the background color of the section.<br/><br/>5 Pointers (Global Controls): For all 5 pointers, you can:<br/><br/>- Update the icon<br/>- Edit the copy<br/>- Toggle pointer visibility</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><div><div class="u-display-contents"><div><section class="food-bev__cta-btm g_section-large_86"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div class="u-padding-global"><div class="u-container"><div class="w-layout-hflex food-bev__cta-btm-wrapper u-radius-20 u-background-f4f4f4"><div><div data-hidebr="tablet" class="u-style-32 is--24 u-font_ginto-nord">Choose from 30+ sign-up <br/>units to collect opt-ins <br/>across all your marketing <br/>channels</div></div><div class="w-layout-vflex food-bev__cta-right-pointers"><div class="w-layout-hflex food-bev__cta-right-point u-align-items-center u-style-24"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68b6fca46f9db1a7f4326eb5_645ad67eeb626e2cfc9ed0b7_Growth%20custom%20bullet.svg" loading="lazy" alt="" class="icon__32 is--small-mobile"/><div>landing pages</div></div><div class="w-layout-hflex food-bev__cta-right-point u-align-items-center u-style-24"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68b6fca46f9db1a7f4326eb5_645ad67eeb626e2cfc9ed0b7_Growth%20custom%20bullet.svg" loading="lazy" alt="" class="icon__32 is--small-mobile"/><div>email</div></div><div class="w-layout-hflex food-bev__cta-right-point u-align-items-center u-style-24"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68b6fca46f9db1a7f4326eb5_645ad67eeb626e2cfc9ed0b7_Growth%20custom%20bullet.svg" loading="lazy" alt="" class="icon__32 is--small-mobile"/><div>social media</div></div><div class="w-layout-hflex food-bev__cta-right-point u-align-items-center u-style-24"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68b6fca46f9db1a7f4326eb5_645ad67eeb626e2cfc9ed0b7_Growth%20custom%20bullet.svg" loading="lazy" alt="" class="icon__32 is--small-mobile"/><div>e-commerce checkout</div></div><div class="w-layout-hflex food-bev__cta-right-point u-align-items-center u-style-24"><img src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68b6fca46f9db1a7f4326eb5_645ad67eeb626e2cfc9ed0b7_Growth%20custom%20bullet.svg" loading="lazy" alt="" class="icon__32 is--small-mobile"/><div>in-store</div></div></div></div></div></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div></section></div></div></div></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name: Section / Grid / Boxes with icons</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="blog__rich-text w-richtext"><p><strong>Options</strong></p><ul role="list"><li>Section Heading: Update the heading of the section.</li><li>Background Color: Change the background color of the section.</li><li>Number of Cards: Reduce the number of visible cards from 4 to 3 by hiding a card.</li><li>Per Card Options: Each card includes:<ul role="list"><li>Icon: Replace or update the icon.</li><li>Heading: Edit the card heading.</li><li>Subheading: Edit the card subheading.</li><li>Visibility : Card Visibility</li></ul></li></ul></div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><div><div class="u-display-contents"><div class="u-background-offwhite"><section class="concierge__journey g_section-large_86"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div class="u-padding-global"><div class="u-container"><div><div data-hidebr="landscape" class="g_heading w-richtext u-style-38 u-font_ginto-nord u-alignment-center is--36-tablet-24-mobile"><h2>Your customers want to converse with your <br/>brand throughout their journey</h2></div><div data-wf--global-section-space--section-space="48" class="g_section_space w-variant-6387b944-8a83-1d49-4a6e-80d8f4231d71"></div><div class="concierge__journey-wrapper"><div class="concierge__journey-item u-background-white u-radius-20 u-box__shadow-20"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6881f506cbfdc0ae1b700946_icon-cs.svg" alt="" class="icon__50"/><div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de u-hide-landscape"></div><h3 class="u-ts-ginto-nord_3rem">88%</h3><p class="u-style-18 is--16-tablet u-line-height-140">want to ask specific product questions</p></div></div><div class="concierge__journey-item u-background-white u-radius-20 u-box__shadow-20"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6881ff8a3c8646bfd1483142_icon-cart.svg" alt="" class="icon__50"/><div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de u-hide-landscape"></div><h3 class="u-ts-ginto-nord_3rem">87%</h3><p class="u-style-18 is--16-tablet u-line-height-140">want help <br/>resolving issues with cart/checkout</p></div></div><div class="concierge__journey-item u-background-white u-radius-20 u-box__shadow-20"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6881ff91212825bcf1bbc369_icon-recommendations.svg" alt="" class="icon__50"/><div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de u-hide-landscape"></div><h3 class="u-ts-ginto-nord_3rem">70%</h3><p class="u-style-18 is--16-tablet u-line-height-140">need product recommendations</p></div></div><div class="concierge__journey-item u-background-white u-radius-20 u-box__shadow-20"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/6881ff9721da82372609270f_icon-comingsoon.svg" alt="" class="icon__50"/><div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de u-hide-landscape"></div><h3 class="u-ts-ginto-nord_3rem">87%</h3><p class="u-style-18 is--16-tablet u-line-height-140">want to know what’s coming next</p></div></div></div></div></div></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div data-wf--global-background-color--background-color="background-yellow" class="g_background w-variant-eb0f2029-84f7-ce58-38ea-0afc3f5a3171 u-cover-absolute"></div></section></div></div></div></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name: Section / Case Study Slider</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="blog__rich-text w-richtext"><ul role="list"><li><strong>Options</strong><ul role="list"><li><strong>Slider Section:</strong><ul role="list"><li>Update - <strong>3 slides</strong>.</li><li><strong>Background:</strong> Change the background of the slider section.</li></ul></li><li><strong>Per Slide Options:</strong><br/>Each slide includes:<ul role="list"><li><strong>Featured Image:</strong> Upload the main image for the slide.</li><li><strong>Company Logo:</strong> Add or replace the logo.</li><li><strong>Testimonial Quote:</strong> Add the testimonial text.</li><li><strong>Person’s Name:</strong> Add the name of the person giving the testimonial.</li><li><strong>Designation:</strong> Add the person’s job title or designation in the company.</li></ul></li></ul><strong></strong></li></ul></div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><div><div class="u-display-contents"><div class="u-background-offwhite"><section class="u-overflow-hidden g_section-large_86"><div class="u-padding-global"><div class="u-container"><div><div data-delay="4000" data-animation="slide" class="signal__slider w-slider u-background-transparent u-box__shadow-20 u-radius-20" data-autoplay="false" data-easing="ease" data-hide-arrows="false" data-disable-swipe="false" data-autoplay-limit="0" data-nav-spacing="3" data-duration="500" data-infinite="true"><div class="signal__slider-mask w-slider-mask"><div class="signal__slider-slide w-slide u-radius-20 u-overflow-hidden"><div class="w-layout-hflex signal__slider-slide-wrapper u-align-items-stretch"><div class="u-width-flex-50 z-index-2"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef25e1ce82cd6aee1c794_Signal_CozyEarth.png" alt="" sizes="(max-width: 1919px) 100vw, 1599.990234375px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef25e1ce82cd6aee1c794_Signal_CozyEarth-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef25e1ce82cd6aee1c794_Signal_CozyEarth-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef25e1ce82cd6aee1c794_Signal_CozyEarth-p-1080.png 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef25e1ce82cd6aee1c794_Signal_CozyEarth.png 1800w" class="signal__slider__img"/><div class="w-layout-hflex customer__s-quote-case u-background-brand u-radius-round u-align-items-center"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef271d24863ab13990bc3_Cozy%20Earth%20Logo.svg" alt=""/></div></div><div class="w-layout-vflex u-width-flex-50 u-justify-content-center u-background-white"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div><div class="signal__slider-c_wrapper"><p class="u-style-20 is--16-tablet--14-mobile u-line-height-140">“…We compared the performance of our previous provider and Attentive for around two consecutive months. And the results were striking. It was insane how many more abandoned emails and how many more customers Attentive was identifying.”</p><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div><p class="u-style-18 u-line-height-140 u-weight-bold">Weston Clark</p><p class="u-style-18 u-line-height-140">Director of Customer Retention</p></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div></div></div></div><div class="signal__slider-slide w-slide u-radius-20 u-overflow-hidden"><div class="w-layout-hflex signal__slider-slide-wrapper u-align-items-stretch"><div class="u-width-flex-50 z-index-2"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef6dde1f04481affb650d_675cc0cd92d7baafc8cd33fa_Signal_Tecovas-p-1600.png" alt="" sizes="(max-width: 1919px) 100vw, 1599.990234375px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef6dde1f04481affb650d_675cc0cd92d7baafc8cd33fa_Signal_Tecovas-p-1600-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef6dde1f04481affb650d_675cc0cd92d7baafc8cd33fa_Signal_Tecovas-p-1600-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef6dde1f04481affb650d_675cc0cd92d7baafc8cd33fa_Signal_Tecovas-p-1600-p-1080.png 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef6dde1f04481affb650d_675cc0cd92d7baafc8cd33fa_Signal_Tecovas-p-1600.png 1600w" class="signal__slider__img"/><div class="w-layout-hflex customer__s-quote-case u-background-brand u-radius-round u-align-items-center"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef7086944ad9b7ec3f11b_675cc055dd26cacc86f4890c_Tecovas%20Logo.svg" alt=""/></div></div><div class="w-layout-vflex u-width-flex-50 u-justify-content-center u-background-white"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div><div class="signal__slider-c_wrapper"><p class="u-style-20 is--16-tablet--14-mobile u-line-height-140">“We’re so excited… This ability to better identify and communicate with our audience will be our key to driving success in the upcoming holiday season.”</p><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div><p class="u-style-18 u-line-height-140 u-weight-bold"><strong>Megan Edwards</strong></p><p class="u-style-18 u-line-height-140">Senior Manager-CRM<br/></p></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div></div></div></div><div class="signal__slider-slide w-slide u-radius-20 u-overflow-hidden"><div class="w-layout-hflex signal__slider-slide-wrapper u-align-items-stretch"><div class="u-width-flex-50 z-index-2"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef733c9e814fa40e72439_675cc0cd623ac618c9fc0232_Signal_ThreadWallets-p-1600.png" alt="" sizes="(max-width: 1919px) 100vw, 1599.990234375px" srcset="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef733c9e814fa40e72439_675cc0cd623ac618c9fc0232_Signal_ThreadWallets-p-1600-p-500.png 500w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef733c9e814fa40e72439_675cc0cd623ac618c9fc0232_Signal_ThreadWallets-p-1600-p-800.png 800w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef733c9e814fa40e72439_675cc0cd623ac618c9fc0232_Signal_ThreadWallets-p-1600-p-1080.png 1080w, https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef733c9e814fa40e72439_675cc0cd623ac618c9fc0232_Signal_ThreadWallets-p-1600.png 1600w" class="signal__slider__img"/><div class="w-layout-hflex customer__s-quote-case u-background-brand u-radius-round u-align-items-center"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef74a01c4e0ebcff1381f_675cc055e5ddd05d84ebec8a_Thread%20Wallets%20Logo.svg" alt=""/></div></div><div class="w-layout-vflex u-width-flex-50 u-justify-content-center u-background-white"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div><div class="signal__slider-c_wrapper"><p class="u-style-20 is--16-tablet--14-mobile u-line-height-140">“Identity AI is allowing us to capture more relevant first-party device and behavioral information from subscribers at multiple touchpoints. More subscriber data means we're sending more triggered emails that positively impacts our email revenue."</p><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div><p class="u-style-18 u-line-height-140 u-weight-bold"><strong>Logan England</strong></p><p class="u-style-18 u-line-height-140">Head of Ecommerce</p></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div></div></div></div></div><div class="signal__slider__left w-slider-arrow-left u-hide-landscape"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef7b0fe9ff61a7b820c92_left_carrot.svg" alt="" class="icon__32"/></div><div class="signal__slider__right w-slider-arrow-right u-hide-landscape"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/68cef7bc6e84810006fcc894_right_carrot.svg" alt="" class="icon__32"/></div><div class="u-hide w-slider-nav w-round w-num"></div></div></div></div></div><div data-wf--global-background-color--background-color="background-white" class="g_background w-variant-cd5f9287-5b9f-b1bf-cfe9-3449eb06f297 u-cover-absolute"></div></section></div></div></div></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name: Section - Awards</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="blog__rich-text w-richtext"><h3>Options</h3><ul role="list"><li><strong>Background Color:</strong><br/>Change the <strong>background color</strong> of the section.</li><li><strong>Section Heading:</strong><br/>Update the <strong>heading</strong> of the section.</li><li><strong>Logos / Images:</strong><br/>Update or replace <strong>all 3 logos/images</strong>.</li></ul></div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><div><div class="u-display-contents"><div><section class="customer-awards__section g_section-large_86"><div class="u-padding-global"><div class="u-container"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div><div data-hidebr="" class="g_heading w-richtext u-style-38 u-alignment-center u-font_ginto-nord u-weight-medium is--36-tablet-24-mobile"><h2>Award-winning Support</h2></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342"></div><div class="w-layout-hflex customer-awards__wrapper u-justify-content-center u-gap-64"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/687d0654856b4bfbec7dd861_MobileMarketing_BestSupport_Enterprise_QualityOfSupport%201.svg" alt="" class="customer-awards__logo"/><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/687d06585821d9b6358fd73c_MobileMarketing_EasiestSetup_Mid-Market_EaseOfSetup%201.svg" alt="" class="customer-awards__logo"/><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/687d065de6bd886ed224d773_MobileMarketing_EasiestToDoBusinessWith_Enterprise_EaseOfDoingBusinessWith%201.svg" alt="" class="customer-awards__logo"/></div></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div></div></div><div data-wf--global-background-color--background-color="background-yellow" class="g_background w-variant-eb0f2029-84f7-ce58-38ea-0afc3f5a3171 u-cover-absolute"></div></section></div></div></div></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name: Section - Product 4 Boxes</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="blog__rich-text w-richtext"><h3>Options</h3><ul role="list"><li><strong>Section Heading:</strong><br/>Update the <strong>heading of the section</strong>.</li><li><strong>Background Color:</strong><br/>Change the <strong>background color</strong> of the section.</li><li><strong>Cards (4 Total):</strong><br/>The section contains <strong>4 cards</strong>, and each card includes:<ul role="list"><li><strong>Visibility:</strong> Show or hide the card.</li><li><strong>Icon:</strong> Update or replace the icon.</li><li><strong>Heading:</strong> Edit the card heading.</li><li><strong>Paragraph:</strong> Edit the card description text.</li></ul></li></ul></div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><div><div class="u-display-contents"><div><section class="partners__second g_section-large_86"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div class="u-padding-global"><div class="u-container"><div><div data-hidebr="" class="g_heading w-richtext u-style-38 u-alignment-center u-font_ginto-nord u-weight-medium is--36-tablet-24-mobile"><h2>Reduce compliance burdens </h2><h2>every step of the way</h2></div><div data-wf--global-section-space--section-space="16" class="g_section_space w-variant-2a1fe94f-353c-d071-5e9e-c25aff63d9e1"></div><div data-wf--global-section-space--section-space="40" class="g_section_space w-variant-36663714-07c9-66e0-2fce-177459f91cfc"></div><div class="partners__second-wrapper"><div class="partners__second-card u-box__shadow-20 u-radius-20 u-background-white"><img loading="lazy" src="https://cdn.prod.website-files.com/5f8dd331b45e61acc8ac985c/63d15fedf9aa16d06c0203eb_icon-compliance-tools.svg" alt="" class="icon__64"/><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div><p class="u-style-24 is--18-mobile u-line-height-130 u-weight-semibold">Tools to help you meet legal requirements<br/></p><div data-wf--global-section-space--section-space="12" class="g_section_space w-variant-fbcea848-b3b0-8da3-bbf6-15060641906a"></div><div class="u-style-18 is--16-margin w-richtext"><p>Built-in compliance checks designed to help you grow your list with peace of mind.</p><p>Standard flows use double opt-in to re-affirm consent and validate phone number.</p><p>Patented two-tap sign up process for mobile; Reply Y for desktop.</p></div></div><div class="partners__second-card u-box__shadow-20 u-radius-20 u-background-white"><img loading="lazy" src="https://cdn.prod.website-files.com/5f8dd331b45e61acc8ac985c/63d15fed57f61e5a0c692eb8_icon-compliance-support.svg" alt="" class="icon__64"/><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div><p class="u-style-24 is--18-mobile u-line-height-130 u-weight-semibold">Uphold best practices<br/></p><div data-wf--global-section-space--section-space="12" class="g_section_space w-variant-fbcea848-b3b0-8da3-bbf6-15060641906a"></div><div class="u-style-18 is--16-margin w-richtext"><p>Our team of full-time lawyers is dedicated to updating the Attentive platform in response to the changing regulatory and legal landscape.</p><p>Our Carrier Relations Team works with mobile carriers to inform our guidelines and thoroughly understand best practices around sending text messages.</p></div></div><div class="partners__second-card u-box__shadow-20 u-radius-20 u-background-white"><img loading="lazy" src="https://cdn.prod.website-files.com/5f8dd331b45e61acc8ac985c/63d15fed84ef25407b4f968c_icon-compliance-claims.svg" alt="" class="icon__64"/><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div><p class="u-style-24 is--18-mobile u-line-height-130 u-weight-semibold">Handle potential claims<br/></p><div data-wf--global-section-space--section-space="12" class="g_section_space w-variant-fbcea848-b3b0-8da3-bbf6-15060641906a"></div><div class="u-style-18 is--16-margin w-richtext"><p>Enhanced Audit Assistant helps you respond to TCPA complaints quickly and effectively with records of opt-in, opt-out message activity, and more.</p></div></div><div class="partners__second-card u-box__shadow-20 u-radius-20 u-background-white"><img loading="lazy" src="https://cdn.prod.website-files.com/5f8dd331b45e61acc8ac985c/63d15fed691e8c2570450057_icon-compliance-protect.svg" alt="" class="icon__64"/><div data-wf--global-section-space--section-space="24" class="g_section_space w-variant-5d7b3007-8df6-7fef-4fae-fdc824ffcf07"></div><p class="u-style-24 is--18-mobile u-line-height-130 u-weight-semibold">Protect your SMS program and avoid litigation<br/></p><div data-wf--global-section-space--section-space="12" class="g_section_space w-variant-fbcea848-b3b0-8da3-bbf6-15060641906a"></div><div class="u-style-18 is--16-margin w-richtext"><p>Litigator Defender for TCPA automatically suppresses phone numbers known to be associated with SMS demands and/or lawsuits from subscriber lists.</p><p>Negative Sentiment Reminders guide subscribers indicating opt-out intent.</p></div></div></div></div></div></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div data-wf--global-background-color--background-color="background-white" class="g_background w-variant-cd5f9287-5b9f-b1bf-cfe9-3449eb06f297 u-cover-absolute"></div></section></div></div></div></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name: Accordion</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="blog__rich-text w-richtext"><pre contenteditable="false" class="w-code-block" style="display:block;overflow-x:auto;background:#2b2b2b;color:#f8f8f2;padding:0.5em"><code class="language-javascript" style="white-space:pre"><span><!-- CSS -->
</span><span></span><span class="xml" style="color:#ffa07a"><</span><span class="xml" style="color:#ffa07a">style</span><span class="xml" style="color:#ffa07a">></span><span class="xml css">
</span><span class="xml css"></span><span class="xml css" style="color:#d4d0ab">/* Animate Accordion Bottom Grid */</span><span class="xml css">
</span><span class="xml css"></span><span class="xml css" style="color:#ffa07a">.accordion-css__item-bottom</span><span class="xml css"> {
</span><span class="xml css"> </span><span class="xml css" style="color:#ffd700">transition</span><span class="xml css">: grid-template-rows </span><span class="xml css" style="color:#f5ab35">0.6s</span><span class="xml css"> </span><span class="xml css" style="color:#f5ab35">cubic-bezier</span><span class="xml css">(</span><span class="xml css" style="color:#f5ab35">0.625</span><span class="xml css">, </span><span class="xml css" style="color:#f5ab35">0.05</span><span class="xml css">, </span><span class="xml css" style="color:#f5ab35">0</span><span class="xml css">, </span><span class="xml css" style="color:#f5ab35">1</span><span class="xml css">);
</span><span class="xml javascript">}
</span><span class="xml javascript">
</span><span class="xml css"></span><span class="xml css hljs-selector-attr">[data-accordion-status=</span><span class="xml css hljs-selector-attr" style="color:#abe338">"active"</span><span class="xml css hljs-selector-attr">]</span><span class="xml css"> </span><span class="xml css" style="color:#ffa07a">.accordion-css__item-bottom</span><span class="xml css"> {
</span><span class="xml css"> grid-template-rows: </span><span class="xml css" style="color:#f5ab35">1</span><span class="xml css">fr;
</span><span class="xml javascript">}
</span><span class="xml javascript">
</span><span class="xml css"></span><span class="xml css" style="color:#d4d0ab">/* Animate Icon */</span><span class="xml css">
</span><span class="xml css"></span><span class="xml css" style="color:#ffa07a">.accordion-css__item-icon</span><span class="xml css"> {
</span><span class="xml css"> </span><span class="xml css" style="color:#ffd700">transition</span><span class="xml css">: transform </span><span class="xml css" style="color:#f5ab35">0.6s</span><span class="xml css"> </span><span class="xml css" style="color:#f5ab35">cubic-bezier</span><span class="xml css">(</span><span class="xml css" style="color:#f5ab35">0.625</span><span class="xml css">, </span><span class="xml css" style="color:#f5ab35">0.05</span><span class="xml css">, </span><span class="xml css" style="color:#f5ab35">0</span><span class="xml css">, </span><span class="xml css" style="color:#f5ab35">1</span><span class="xml css">);
</span><span class="xml javascript">}
</span><span class="xml javascript">
</span><span class="xml css"></span><span class="xml css hljs-selector-attr">[data-accordion-status=</span><span class="xml css hljs-selector-attr" style="color:#abe338">"active"</span><span class="xml css hljs-selector-attr">]</span><span class="xml css"> </span><span class="xml css" style="color:#ffa07a">.accordion-css__item-icon</span><span class="xml css"> {
</span><span class="xml css"> </span><span class="xml css" style="color:#ffd700">transform</span><span class="xml css">: </span><span class="xml css" style="color:#f5ab35">rotate</span><span class="xml css">(</span><span class="xml css" style="color:#f5ab35">0.001deg</span><span class="xml css">);
</span><span class="xml javascript">}
</span><span class="xml css"></span><span class="xml" style="color:#ffa07a"></</span><span class="xml" style="color:#ffa07a">style</span><span class="xml" style="color:#ffa07a">></span><span>
</span>
<!-- -->
<!-- -->
<!-- -->
<!-- -->
<!-- --><!-- Accordion JS -->
<span></span><span class="xml" style="color:#ffa07a"><</span><span class="xml" style="color:#ffa07a">script</span><span class="xml" style="color:#ffa07a">></span><span class="xml javascript">
</span><span class="xml javascript"></span><span class="xml javascript hljs-function" style="color:#dcc6e0">function</span><span class="xml javascript hljs-function"> </span><span class="xml javascript hljs-function" style="color:#00e0e0">initAccordionCSS</span><span class="xml javascript hljs-function">(</span><span class="xml javascript hljs-function">) </span><span class="xml javascript">{
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#f5ab35">document</span><span class="xml javascript">.querySelectorAll(</span><span class="xml javascript" style="color:#abe338">'[data-accordion-css-init]'</span><span class="xml javascript">).forEach(</span><span class="xml javascript hljs-function">(</span><span class="xml javascript hljs-function" style="color:#f5ab35">accordion</span><span class="xml javascript hljs-function">) =></span><span class="xml javascript"> {
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#dcc6e0">const</span><span class="xml javascript"> closeSiblings = accordion.getAttribute(</span><span class="xml javascript" style="color:#abe338">'data-accordion-close-siblings'</span><span class="xml javascript">) === </span><span class="xml javascript" style="color:#abe338">'true'</span><span class="xml javascript">;
</span><span class="xml javascript">
</span><span class="xml javascript"> accordion.addEventListener(</span><span class="xml javascript" style="color:#abe338">'click'</span><span class="xml javascript">, </span><span class="xml javascript hljs-function">(</span><span class="xml javascript hljs-function" style="color:#f5ab35">event</span><span class="xml javascript hljs-function">) =></span><span class="xml javascript"> {
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#dcc6e0">const</span><span class="xml javascript"> toggle = event.target.closest(</span><span class="xml javascript" style="color:#abe338">'[data-accordion-toggle]'</span><span class="xml javascript">);
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#dcc6e0">if</span><span class="xml javascript"> (!toggle) </span><span class="xml javascript" style="color:#dcc6e0">return</span><span class="xml javascript">; </span><span class="xml javascript" style="color:#d4d0ab">// Exit if the clicked element is not a toggle</span><span class="xml javascript">
</span><span class="xml javascript">
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#dcc6e0">const</span><span class="xml javascript"> singleAccordion = toggle.closest(</span><span class="xml javascript" style="color:#abe338">'[data-accordion-status]'</span><span class="xml javascript">);
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#dcc6e0">if</span><span class="xml javascript"> (!singleAccordion) </span><span class="xml javascript" style="color:#dcc6e0">return</span><span class="xml javascript">; </span><span class="xml javascript" style="color:#d4d0ab">// Exit if no accordion container is found</span><span class="xml javascript">
</span><span class="xml javascript">
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#dcc6e0">const</span><span class="xml javascript"> isActive = singleAccordion.getAttribute(</span><span class="xml javascript" style="color:#abe338">'data-accordion-status'</span><span class="xml javascript">) === </span><span class="xml javascript" style="color:#abe338">'active'</span><span class="xml javascript">;
</span><span class="xml javascript"> singleAccordion.setAttribute(</span><span class="xml javascript" style="color:#abe338">'data-accordion-status'</span><span class="xml javascript">, isActive ? </span><span class="xml javascript" style="color:#abe338">'not-active'</span><span class="xml javascript"> : </span><span class="xml javascript" style="color:#abe338">'active'</span><span class="xml javascript">);
</span><span class="xml javascript">
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#d4d0ab">// When [data-accordion-close-siblings="true"]</span><span class="xml javascript">
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#dcc6e0">if</span><span class="xml javascript"> (closeSiblings && !isActive) {
</span><span class="xml javascript"> accordion.querySelectorAll(</span><span class="xml javascript" style="color:#abe338">'[data-accordion-status="active"]'</span><span class="xml javascript">).forEach(</span><span class="xml javascript hljs-function">(</span><span class="xml javascript hljs-function" style="color:#f5ab35">sibling</span><span class="xml javascript hljs-function">) =></span><span class="xml javascript"> {
</span><span class="xml javascript"> </span><span class="xml javascript" style="color:#dcc6e0">if</span><span class="xml javascript"> (sibling !== singleAccordion) sibling.setAttribute(</span><span class="xml javascript" style="color:#abe338">'data-accordion-status'</span><span class="xml javascript">, </span><span class="xml javascript" style="color:#abe338">'not-active'</span><span class="xml javascript">);
</span><span class="xml javascript"> });
</span><span class="xml javascript"> }
</span><span class="xml javascript"> });
</span><span class="xml javascript"> });
</span><span class="xml javascript">}
</span><span class="xml javascript">
</span><span class="xml javascript"></span><span class="xml javascript" style="color:#d4d0ab">// Initialize Accordion CSS</span><span class="xml javascript">
</span><span class="xml javascript"></span><span class="xml javascript" style="color:#f5ab35">document</span><span class="xml javascript">.addEventListener(</span><span class="xml javascript" style="color:#abe338">'DOMContentLoaded'</span><span class="xml javascript">, </span><span class="xml javascript hljs-function">() =></span><span class="xml javascript"> {
</span><span class="xml javascript"> initAccordionCSS();
</span><span class="xml javascript">});
</span><span class="xml javascript"></span><span class="xml" style="color:#ffa07a"></</span><span class="xml" style="color:#ffa07a">script</span><span class="xml" style="color:#ffa07a">></span><span>
</span></code></pre><p></p><h3>Options</h3><ul role="list"><li><strong>FAQs:</strong><br/>Add as many FAQs as needed by <strong>duplicating</strong> the FAQ item.</li><li><strong>Section Heading:</strong><br/>Update the <strong>heading</strong> of the section.</li><li><strong>Background:</strong><br/>Change the <strong>background</strong> of the section.</li><li><strong>Per FAQ Options:</strong><br/>Each FAQ includes:<ul role="list"><li><strong>Question:</strong> Edit the FAQ question.</li><li><strong>Answer:</strong> Edit the FAQ answer.</li></ul></li></ul><p><strong>Note:</strong><br/>Please add the <strong>custom code</strong> in the <strong>page settings</strong> for the animation to work.<br/>This code controls whether the <strong>accordion opens or closes</strong>.</p></div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><section class="g_section-large_86"><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div class="u-padding-global"><div class="u-container is--size-90"><div><h2 class="u-style-42 is--mobile-30 u-font_ginto-nord u-line-height-120">Frequently Asked Questions</h2><div data-wf--global-section-space--section-space="80" class="g_section_space w-variant-60a7ad7d-02b0-6682-95a5-2218e6fd1490 u-hide-landscape"></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div><div data-accordion-close-siblings="true" data-accordion-css-init="" class="accordion-css"><div class="accordion-css__list"><li data-accordion-status="not-active" class="accordion-css__item"><div data-hover="" data-accordion-toggle="" class="accordion-css__item-top"><h3 class="u-style-24 is--18-mobile u-line-height-130 u-weight-semibold">Does Attentive offer any discounts or special pricing?</h3><div class="accordion-css__item-icon"><svg xmlns="http://www.w3.org/2000/svg" width="100%" viewBox="0 0 36 36" fill="none" class="accordion-css__item-icon-svg"><path d="M28.5 22.5L18 12L7.5 22.5" stroke="currentColor" stroke-width="3" stroke-miterlimit="10"></path></svg></div></div><div class="accordion-css__item-bottom"><div class="accordion-css__item-bottom-wrap"><div class="accordion-css__item-bottom-content"><p class="accordion-css__item-p u-font_ginto-normal u-weight-light u-style-20 is--16-tablet -14-mobile">Yes, we offer discounts when you bundle multiple channels or premium AI products together to maximize value.</p></div></div></div></li><li data-accordion-status="not-active" class="accordion-css__item"><div data-hover="" data-accordion-toggle="" class="accordion-css__item-top"><h3 class="u-style-24 is--18-mobile u-line-height-130 u-weight-semibold">Does Attentive offer any discounts or special pricing?</h3><div class="accordion-css__item-icon"><svg xmlns="http://www.w3.org/2000/svg" width="100%" viewBox="0 0 36 36" fill="none" class="accordion-css__item-icon-svg"><path d="M28.5 22.5L18 12L7.5 22.5" stroke="currentColor" stroke-width="3" stroke-miterlimit="10"></path></svg></div></div><div class="accordion-css__item-bottom"><div class="accordion-css__item-bottom-wrap"><div class="accordion-css__item-bottom-content"><p class="accordion-css__item-p u-font_ginto-normal u-weight-light u-style-20 is--16-tablet -14-mobile">Yes, we offer discounts when you bundle multiple channels or premium AI products together to maximize value.</p></div></div></div></li><li data-accordion-status="not-active" class="accordion-css__item"><div data-hover="" data-accordion-toggle="" class="accordion-css__item-top"><h3 class="u-style-24 is--18-mobile u-line-height-130 u-weight-semibold">Does Attentive offer any discounts or special pricing?</h3><div class="accordion-css__item-icon"><svg xmlns="http://www.w3.org/2000/svg" width="100%" viewBox="0 0 36 36" fill="none" class="accordion-css__item-icon-svg"><path d="M28.5 22.5L18 12L7.5 22.5" stroke="currentColor" stroke-width="3" stroke-miterlimit="10"></path></svg></div></div><div class="accordion-css__item-bottom"><div class="accordion-css__item-bottom-wrap"><div class="accordion-css__item-bottom-content"><p class="accordion-css__item-p u-font_ginto-normal u-weight-light u-style-20 is--16-tablet -14-mobile">Yes, we offer discounts when you bundle multiple channels or premium AI products together to maximize value.</p></div></div></div></li></div></div></div></div></div></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div data-wf--global-section-space--section-space="32" class="g_section_space w-variant-41fc0c0a-cac3-53c9-9802-6a916e3fb342 u-hide-desktop u-hide-tablet"></div><div data-wf--global-background-color--background-color="background-yellow" class="g_background w-variant-eb0f2029-84f7-ce58-38ea-0afc3f5a3171 u-cover-absolute"></div></section></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><div class="component__box"><div><div class="u-padding-global u-background-black"><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="u-style-24 u-weight-semibold">Name of the component</div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div><div class="u-container"><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div><div class="blog__rich-text w-richtext"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p></div><div data-wf--global-section-space--section-space="20" class="g_section_space w-variant-28842a38-f4a1-8505-ffdf-a4f814d86557"></div></div></div><div></div></div><div class="u-background-black"><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div></div></div><section class="g_section-large_86"><div data-wf--global-section-space--section-space="40" class="g_section_space w-variant-36663714-07c9-66e0-2fce-177459f91cfc u-hide-desktop u-hide-tablet"></div><div class="u-padding-global"><div class="u-container"><div id="" STYLE=" display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));"><div data-wf--card-headshot--variant="grid---small" class="about-leaders__item"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/687b7822cb080c802241be0d_amit.avif" alt="Amit" class="u-ratio-1-1"/><div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div><h4 class="u-style-14 u-weight-semibold">Amit Jhawar</h4></div></div><div data-wf--card-headshot--variant="grid---small" class="about-leaders__item"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/687b7822cb080c802241be0d_amit.avif" alt="Amit" class="u-ratio-1-1"/><div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div><h4 class="u-style-14 u-weight-semibold">Amit Jhawar</h4></div></div><div data-wf--card-headshot--variant="grid---small" class="about-leaders__item"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/687b7822cb080c802241be0d_amit.avif" alt="Amit" class="u-ratio-1-1"/><div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div><h4 class="u-style-14 u-weight-semibold">Amit Jhawar</h4></div></div><div data-wf--card-headshot--variant="grid---small" class="about-leaders__item"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/687b7822cb080c802241be0d_amit.avif" alt="Amit" class="u-ratio-1-1"/><div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div><h4 class="u-style-14 u-weight-semibold">Amit Jhawar</h4></div></div><div data-wf--card-headshot--variant="grid---small" class="about-leaders__item"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/687b7822cb080c802241be0d_amit.avif" alt="Amit" class="u-ratio-1-1"/><div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div><h4 class="u-style-14 u-weight-semibold">Amit Jhawar</h4></div></div><div data-wf--card-headshot--variant="grid---small" class="about-leaders__item"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/687b7822cb080c802241be0d_amit.avif" alt="Amit" class="u-ratio-1-1"/><div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div><h4 class="u-style-14 u-weight-semibold">Amit Jhawar</h4></div></div><div data-wf--card-headshot--variant="grid---small" class="about-leaders__item"><img loading="lazy" src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/687b7822cb080c802241be0d_amit.avif" alt="Amit" class="u-ratio-1-1"/><div><div data-wf--global-section-space--section-space="10" class="g_section_space w-variant-e485566a-25b8-ff31-c97b-02131da1d8de"></div><h4 class="u-style-14 u-weight-semibold">Amit Jhawar</h4></div></div></div></div></div><div data-wf--global-section-space--section-space="40" class="g_section_space w-variant-36663714-07c9-66e0-2fce-177459f91cfc u-hide-desktop u-hide-tablet"></div></section></main></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=684306b795a2c402456e92ba" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/684306b795a2c402456e92ba/js/attentive-dev-revamp-2025.072bfb1a.47f9dafb88dcc3ba.js" type="text/javascript" integrity="sha384-BK0ie1XgQ6kKE2EELBaIM7BG55N6KaUinNctmqsUKLOEP4NIDShVKqX4Mdj+Wrjt" crossorigin="anonymous"></script><!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TK3VW6S"
height="0" width="0" style="display:none;visibility:hidden">
</iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Global Menu Navigation-->
<script>
$(document).ready(function () {
if (window.innerWidth < 992) {
console.log("Screen width < 992px, navigation script not run");
return;
}
console.log("Document ready event fired for desktop navigation");
const overlay = document.querySelector(".navbar__overlay");
const body = document.body;
const menuIds = ["menu-1", "menu-2", "menu-3", "menu-4", "menu-5"];
const menus = menuIds.map(id => document.getElementById(id));
if (!overlay) {
console.log("nav-overlay not found, script exiting");
return;
}
function anyMenuOpen() {
return menus.some(menu => menu && !menu.classList.contains("hide-menu"));
}
function showOverlay() {
overlay.classList.remove("hide-overlay");
body.style.overflow = "hidden"; // disable scroll
console.log("Overlay shown, body scroll disabled");
}
function hideOverlay() {
overlay.classList.add("hide-overlay");
body.style.overflow = ""; // enable scroll
console.log("Overlay hidden, body scroll enabled");
}
function updateOverlayAndScroll() {
if (anyMenuOpen()) {
showOverlay();
} else {
hideOverlay();
}
console.log("updateOverlayAndScroll called, anyMenuOpen:", anyMenuOpen());
}
function resetMenus() {
$('[id^="menu-"]').addClass('hide-menu');
$('[id^="span-"]').addClass('is-down');
$('[id^="link-"]').removeClass('background');
$('[id^="top-"]').css('opacity', 0);
$('[id^="bottom-"]').css('opacity', 1);
}
function openMenu(number) {
const targetMenu = $('#menu-' + number);
const targetSpan = $('#span-' + number);
const targetLink = $('#link-' + number);
targetMenu.removeClass('hide-menu');
targetSpan.removeClass('is-down');
targetLink.addClass('background');
$('#top-' + number).css('opacity', 1);
$('#bottom-' + number).css('opacity', 0);
console.log("Menu opened:", 'menu-' + number);
}
function onNavLinkClick(e) {
e.preventDefault();
const linkId = $(this).attr('id');
const parts = linkId.split('-');
const number = parts[1];
const targetMenu = $('#menu-' + number);
const isAlreadyOpen = !targetMenu.hasClass('hide-menu');
console.log("Nav link clicked:", linkId, "Is already open?", isAlreadyOpen);
resetMenus();
if (!isAlreadyOpen) {
openMenu(number);
} else {
console.log("Menu was already open, menus closed");
}
updateOverlayAndScroll();
}
function onNavLinkHoverIn() {
const linkId = $(this).attr('id');
const parts = linkId.split('-');
const number = parts[1];
const targetMenu = $('#menu-' + number);
console.log("Nav link hover in:", linkId);
if (targetMenu.hasClass('hide-menu')) {
$(this).addClass('background');
}
$('#top-' + number).css('opacity', 1);
$('#bottom-' + number).css('opacity', 0);
}
function onNavLinkHoverOut() {
const linkId = $(this).attr('id');
const parts = linkId.split('-');
const number = parts[1];
const targetMenu = $('#menu-' + number);
console.log("Nav link hover out:", linkId);
if (targetMenu.hasClass('hide-menu')) {
$('#top-' + number).css('opacity', 0);
$('#bottom-' + number).css('opacity', 1);
$(this).removeClass('background');
}
}
function closeAllMenus() {
console.log("Overlay clicked, closing all menus");
menus.forEach(menu => {
if (menu) menu.classList.add("hide-menu");
});
for (let i = 1; i <= 5; i++) {
$('#link-' + i).removeClass("background");
$('#span-' + i).addClass("is-down");
$('#top-' + i).css('opacity', 0);
$('#bottom-' + i).css('opacity', 1);
}
updateOverlayAndScroll();
}
// Event bindings
$('[id^="link-"]').on('click', onNavLinkClick);
$('[id^="link-"]').hover(onNavLinkHoverIn, onNavLinkHoverOut);
overlay.addEventListener("click", closeAllMenus);
// Initialize overlay & scroll state
updateOverlayAndScroll();
console.log("Script initialized on desktop navigation");
});
</script>
<!-- Newsletter Signup (HubSpot)
<script charset="utf-8" type="text/javascript" src="//js.hsforms.net/forms/embed/v2.js"></script>
<script>
hbspt.forms.create({
region: "na1",
portalId: "6110895",
target: ".footer-hb-form",
formId: "e79fe2a2-94ad-415b-af0e-ca2fae3065ee",
formInstanceId: "footer_form",
onFormReady: function($form) {
$form.find('input[name="email"]').attr('placeholder', 'Work email*');
}
});
</script>
-->
<script>
function initHubspotWhenVisible() {
const target = document.querySelector('.footer-hb-form');
if (!target) return;
const observer = new IntersectionObserver(entries => {
if (entries[0].isIntersecting) {
loadHubspotForm();
observer.disconnect();
}
});
observer.observe(target);
}
function loadHubspotForm() {
const script = document.createElement('script');
script.src = "//js.hsforms.net/forms/embed/v2.js";
script.onload = function () {
hbspt.forms.create({
region: "na1",
portalId: "6110895",
target: ".footer-hb-form",
formId: "e79fe2a2-94ad-415b-af0e-ca2fae3065ee"
});
};
document.body.appendChild(script);
}
initHubspotWhenVisible();
</script>
<!-- Qualified -->
<script async src="https://js.qualified.com/qualified.js?token=9HbK7T9cMMrPm51Q"></script>
<script>
(function(w,q){w['QualifiedObject']=q;w[q]=w[q]||function(){
(w[q].q=w[q].q||[]).push(arguments)};})(window,'qualified')
</script>
<!-- End Qualified -->
<script>
wf.ready(function(){
wf.onVariationRecorded(function(result){
if (typeof gtag === 'function') {
gtag('set', 'user_properties', {
'optimize_experience_name': result.experienceName,
'optimize_experience_type': result.experienceType,
'optimize_variation_name': result.variationName
});
}
});
});
</script><!-- Tabs Custom Code-->
<script>
//when triggers hover
$('.home__tools-link').hover(function(){
//get this trigger index
var index = $('.home__tools-link').index(this);
//remove all active classes on triggers
$('.tools-tab').removeClass('is-active');
//add active class to this item
$(this).addClass('is-active');
//remove all active classes on targets
$('.home__tools-tabs__img').removeClass('is-active');
//adds active class to equivalent index target element
$('.home__tools-tabs__img').eq(index).addClass('is-active');
});
</script>
<script>
function initAccordionCSS() {
document.querySelectorAll('[data-accordion-css-init]').forEach((accordion) => {
const closeSiblings = accordion.getAttribute('data-accordion-close-siblings') === 'true';
accordion.addEventListener('click', (event) => {
const toggle = event.target.closest('[data-accordion-toggle]');
if (!toggle) return; // Exit if the clicked element is not a toggle
const singleAccordion = toggle.closest('[data-accordion-status]');
if (!singleAccordion) return; // Exit if no accordion container is found
const isActive = singleAccordion.getAttribute('data-accordion-status') === 'active';
singleAccordion.setAttribute('data-accordion-status', isActive ? 'not-active' : 'active');
// When [data-accordion-close-siblings="true"]
if (closeSiblings && !isActive) {
accordion.querySelectorAll('[data-accordion-status="active"]').forEach((sibling) => {
if (sibling !== singleAccordion) sibling.setAttribute('data-accordion-status', 'not-active');
});
}
});
});
}
// Initialize Accordion CSS
document.addEventListener('DOMContentLoaded', () => {
initAccordionCSS();
});
</script>
</body></html>