/* ===== Common Values ===== */

:root {
    --h1-font: clamp(30px, 3.8vw, 56px);
    --h2-font: clamp(28px, 3.2vw, 48px);
    --h3-font: clamp(24px, 2.5vw, 40px);
    --h4-font: clamp(20px, 2.2vw, 32px);
    --h5-font: clamp(18px, 1.8vw, 24px);
    --button-font: clamp(18px, 1.6vw, 22px);
    --p-font1: clamp(16px, 2.1vw, 18px);
    --p-font2: clamp(16px, 1.4vw, 17px);
    --space-150: clamp(50px, 8.5vw, 150px);
    --space-120: clamp(60px, 7.5vw, 120px);
    --space-100: clamp(50px, 7vw, 100px);
    --space-80: clamp(40px, 5vw, 80px);
    --space-60: clamp(30px, 4.2vw, 60px);
    --space-40: clamp(20px, 3.5vw, 40px);
    --white-color: #fff;
    --black-color: #000;
    --banner-bg: #FFE6E6;
    --red-bg: #AC1C17;
    --blue-bg: #11355C;
    --black-bg: #1B1B1A;
}

.common-section {
    padding: var(--space-120) 0;
}

.zw-template-inner {
    text-wrap: pretty;
}

.zw-template-inner h1 {
    font-size: var(--h1-font);
}

.zw-template-inner h2 {
    font-size: var(--h2-font);
}

.zw-template-inner h3 {
    font-size: var(--h3-font);
}

.zw-template-inner p {
    font-size: var(--p-font1);
}

.zw-template-inner h1,
.zw-template-inner h2,
.zw-template-inner h3 {
    font-family: var(--zf-primary-semibold);
}

.zwc-getting-started-section .zwc-steps-body {
    padding-top: 2px;
}

/* ===== Common Values End ===== */

/* ===== Buttons ===== */

.zwc-custom-btn::after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
}

.zwc-btn-wrap {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.act-pricing-cta {
    color: var(--black-color);
    border: 2px solid var(--black-color);
}

.act-btn {
    padding: 13px 30px;
}

/* ===== Buttons End ===== */

/* ===== Banner Section ===== */

.common-section.header-section {
    background: var(--banner-bg);
    padding-bottom: 0;
}

.zwc-banner-wrap {
    display: flex;
    gap: var(--space-60);
    align-items: flex-end;
}

h1+p {
    max-width: 560px;
    margin: 20px 0 var(--space-40);
}

.zwc-banner-right {
    width: 49%;
    max-width: 750px;
    padding-bottom: var(--space-150);
}

.header-sec {
    width: 51%;
    max-width: 585px;
}

.header-sec .zwc-whatsapp-marketing {
    display: block;
    width: 100%;
}

.zwc-narrative-each1 {
    transition: 1s ease;
}

.zwc-span-block {
    display: inline-block;
}

/* ===== Banner Section End ===== */

/* ===== Stats Section ===== */

.zwc-stats-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.zwc-stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin: 0 auto;
}

.zwc-stat-card {
    flex: 0 1 clamp(220px, 21vw, 280px);
    background: var(--blue-bg);
    color: var(--white-color);
    border-radius: 12px;
    padding: var(--space-40);
}

.zwc-stat-number {
    font-size: clamp(40px, 4.5vw, 70px);
    line-height: 1.1;
}

p.zwc-stat-label {
    max-width: 180px;
    font-size: 20px;
    line-height: 1.4;
    margin: 8px 0 0;
}

/* ===== Stats Section End ===== */

/* ===== Features Section ===== */

.zwc-features .content-wrap {
    max-width: 1350px;
}

.zwc-features-wrap {
    background-color: var(--red-bg);
    border-radius: 16px;
    padding: var(--space-100) var(--space-80);
    color: var(--white-color);
}

.zwc-features-wrap .zwc-span-block::after {
    content: "";
    background-image: url("/sites/zweb/images/campaigns/whatsapp-marketing-ai-icon.svg");
    display: inline-block;
    width: clamp(25px, 3.5vw, 40px);
    height: clamp(25px, 3.5vw, 40px);
    background-size: clamp(25px, 3.5vw, 40px);
    margin-left: clamp(5px, 1.2vw, 15px);
    background-position: center;
    background-repeat: no-repeat;
}

.zwc-head-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.zwc-head-container p {
    max-width: 600px;
    margin: 20px auto 0;
}

.zwc-features-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-60);
    margin-top: var(--space-60);
}

.zwc-items {
    width: 43%;
    padding: 40px 0;
}

.zwc-item {
    position: relative;
    padding-bottom: 30px;
    cursor: pointer;
    outline: none;
}

.zwc-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 1px;
    background-color: var(--white-color);
}

.zwc-item:not(:first-child) {
    margin-top: 28px;
}

.zwc-desc.zwc-item:not(:first-child) {
    display: none;
}

.zwc-desc p {
    margin: 16px 0 0;
}

.zwc-features .zwc-content h3 {
    position: relative;
    padding-right: 40px;
    font-size: clamp(20px, 1.6vw, 24px);
    margin-bottom: 0;
}

.zwc-features .zwc-content h3::after {
    content: "";
    position: absolute;
    top: 9px;
    right: 6px;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--white-color);
    border-bottom: 2px solid var(--white-color);
    transform: rotate(45deg);
    transition: transform .3s ease;
}

.zwc-item.zwc-active .zwc-content h3::after {
    transform: rotate(-135deg);
}

.zwc-visual-wrap {
    position: relative;
    width: 52%;
}

.zwc-visual-wrap::before {
    content: "";
    display: block;
    padding-top: 84.5%;
}

.zwc-visual {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;
}

.zwc-visual.zwc-current {
    opacity: 1;
    visibility: visible;
}

.zwc-features-note {
    margin-top: var(--space-60);
    text-align: center;
}

.zwc-features-note .zwc-feature-header {
    font-family: var(--primaryfont-semibold);
    font-size: clamp(18px, 1.8vw, 20px);
}

.zwc-features-note ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.zwc-features-note li {
    font-family: var(--primaryfont-regular);
    font-size: var(--p-font1);
}

.zwc-features-note li:not(:first-child)::before {
    content: "|";
    padding: 0 20px;
}

.zwc-feature-content {
    margin: 20px 0 0;
}

.zwc-feature-content a {
    color: var(--zwc-link-clr);
}

/* ===== Features Section End ===== */

/* ===== Boost Section ===== */

.zwc-boost-header {
    text-align: center;
}

.zmw-sticky-wrap {
    display: flex;
    margin-top: 100px;
    justify-content: center;
}

.zmw-sticky-wrap .zmw-col-left {
    width: 35%;
}

.zmw-sticky-wrap .zmw-col-right {
    width: 60%;
    padding-left: 8%;
}

.zmw-c-content h3 {
    margin-bottom: 6px;
}

.zmw-c-content p {
    line-height: 30px;
}

/* the block whose image is showing keeps the page colour, the rest dim back */
.zmw-c-content h3,
.zmw-c-content p {
    transition: color .3s ease;
}

.zmw-c-content:not(.zwc-inview) h3,
.zmw-c-content:not(.zwc-inview) p {
    color: #8f8f8f;
}

.zmw-c-content:not(:last-child) {
    margin-bottom: 200px;
}

.common-active-r-wrap {
    border-radius: 24px;
    background: var(--banner-bg);
    padding: 50px;
    position: relative;
}

/* the six screenshots are different heights - reserve the tallest so the
   sticky box keeps one height instead of resizing on every scroll step */
.common-active-r-wrap::before {
    content: "";
    display: block;
    padding-top: 95.5%;
}

.common-active-r-wrap.stickyfixed {
    position: sticky;
    top: 100px;
}

#acc5 img {
    display: block;
    margin: 0 auto;
}

.zmw-sticky-wrap .common-active-s {
    display: none;
    position: absolute;
    top: 50px;
    right: 50px;
    bottom: 50px;
    left: 50px;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-animation: fadeIn 1s;
    -moz-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.zmw-sticky-wrap .common-active-s.current {
    display: flex;
}

.zmw-sticky-wrap .zms-wrapper {
    max-width: 100%;
    max-height: 100%;
}

.zms-wrapper img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* ===== Boost Section - WhatsApp marketing made simple End ===== */

/* ===== Narrative Section ===== */

.common-section.zwc-narrative-section {
    background: var(--banner-bg);
}

.zwc-narrative-section h2 {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
}

.zwc-narrative-section .zwc-narrative-each {
    background: var(--white-color);
    padding: 40px;
    flex: 1 1 calc(50% - 10px);
    border: 1px solid #FFD891;
    border-radius: 12px;
    margin-inline: auto;
}

.zwc-narrative-each-wrap {
    display: flex;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1070px;
    margin-inline: auto;
}

.zwc-na-content p {
    font-size: 16px;
}

.zwc-narrative-section .zwc-narrative-each-wrap .zwc-narrative-each .zwc-na-content h3 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    line-height: 1.2;
}

.zwc-narrative-section .zwc-narrative-each-wrap .zwc-narrative-each .zwc-na-content h3::before {
    content: "";
    display: inline-block;
    background: url(/sites/zweb/images/campaigns/whatsapp-marketing-sprite.svg);
    background-repeat: no-repeat;
    background-size: 290px;
    width: 50px;
    height: 47px;
}

.zwc-narrative-section .zwc-narrative-each-wrap .zwc-narrative-each1 .zwc-na-content h3::before {
    background-position: 0 0;
    background-size: 300px;
}

.zwc-narrative-section .zwc-narrative-each-wrap .zwc-narrative-each2 .zwc-na-content h3::before {
    background-position: -55px 0;
    background-size: 280px;
    width: 40px;
}

.zwc-narrative-section .zwc-narrative-each-wrap .zwc-narrative-each3 .zwc-na-content h3::before {
    background-position: -105px 0;
}

.zwc-narrative-section .zwc-narrative-each-wrap .zwc-narrative-each4 .zwc-na-content h3::before {
    background-position: -160px 0;
    background-size: 297px;
}

.zwc-narrative-section .zwc-narrative-each-wrap .zwc-narrative-each .zwc-na-content ul li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}

.zwc-narrative-section .zwc-narrative-each-wrap .zwc-narrative-each .zwc-na-content ul li::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 5px;
    left: 0;
    background: url("/sites/zweb/images/campaigns/campaign-home-tick.svg");
    background-repeat: no-repeat;
    background-size: 100%;
}

/* ===== Narrative Section End ===== */

/* ===== Getting Started Section ===== */

.zwc-getting-started-section {
    background: var(--red-bg);
    color: var(--white-color);
}

.zwc-getting-started-section .zwc-steps-grid-con {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 80px;
    align-items: flex-start;
}

.zwc-getting-started-section .zwc-steps-intro {
    position: sticky;
    top: 80px;
    max-width: 500px;
}

.zwc-getting-started-section .zwc-gs-subtitle {
    font-size: 17px;
    margin-bottom: 30px;
}

.zwc-getting-started-section .zwc-steps-list {
    position: relative;
}

.zwc-getting-started-section .zwc-steps-base-line,
.zwc-getting-started-section .zwc-steps-progress-line {
    position: absolute;
    left: 130px;
    width: 2px;
    z-index: 1;
}

.zwc-getting-started-section .zwc-steps-base-line {
    background-color: var(--white-color);
}

.zwc-getting-started-section .zwc-steps-progress-line {
    height: 0;
    background-color: var(--black-bg);
    z-index: 2;
    transition: height .15s linear;
}

.zwc-getting-started-section .zwc-steps-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 36px;
    position: relative;
    align-items: start;
}

.zwc-getting-started-section .zwc-steps-item:not(:last-child) {
    padding-bottom: 42px;
}

.zwc-getting-started-section .zwc-steps-marker {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    padding-top: 10px;
}

.zwc-getting-started-section .zwc-steps-label {
    font-family: var(--primaryfont-semibold);
    font-size: 13px;
    color: var(--white-color);
    text-transform: uppercase;
    transition: color .3s ease;
}

.zwc-getting-started-section .zwc-steps-dot {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: var(--white-color);
    position: relative;
    flex-shrink: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .3s ease;
}

.zwc-getting-started-section .zwc-steps-item.zwc-active .zwc-steps-dot {
    background-color: var(--black-bg);
}

.zwc-getting-started-section .zwc-steps-item.zwc-active .zwc-steps-dot::after {
    filter: brightness(0) invert(1);
}

.zwc-getting-started-section .zwc-steps-dot::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(/sites/zweb/images/campaigns/whatsapp-marketing-sprite.svg) no-repeat;
    background-size: 410px;
}

.zwc-getting-started-section .zwc-steps-dot--1::after {
    background-position: -299px 0;
}

.zwc-getting-started-section .zwc-steps-dot--2::after {
    background-position: -329px 0;
}

.zwc-getting-started-section .zwc-steps-dot--3::after {
    background-position: -359px 0;
}

.zwc-getting-started-section .zwc-steps-dot--4::after {
    background-position: -390px 0;
}

.zwc-getting-started-section .zwc-steps-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.zwc-getting-started-section .zwc-steps-card {
    background-color: transparent;
    border: 1.5px solid transparent;
    border-radius: 14px;
    padding: 0;
    transition: background-color .4s ease, border-color .4s ease, padding .4s ease;
}

.zwc-getting-started-section .zwc-steps-item.zwc-active .zwc-steps-card {
    background-color: var(--white-color);
    padding: 22px;
}

.zwc-getting-started-section .zwc-steps-card p {
    font-size: var(--p-font2);
    margin: 0;
    transition: color .4s ease;
}

.zwc-getting-started-section .zwc-steps-item.zwc-active .zwc-steps-card p {
    color: #333;
}

/* ===== Getting Started Section End ===== */

/* ===== Faq Section ===== */

.zwc-faq-content-wrap {
    max-width: 870px;
    margin-inline: auto;
}

.zw-template-inner .zwc-faq-wrap h2 {
    margin-bottom: var(--space-80);
    text-align: center;
}

.zwc-faq-item {
    border-bottom: 1px solid var(--black-color);
}

.zwc-faq-question {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(12px, 1.5vw, 20px);
    width: 100%;
    padding: clamp(16px, 2vw, 25px) clamp(20px, 2.5vw, 32px);
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: var(--primaryfont-semibold);
    font-size: clamp(19px, 1.8vw, 21px);
    line-height: 1.4;
}

.zwc-faq-answer {
    display: none;
    padding: 0 clamp(20px, 2.5vw, 32px);
}

.zwc-faq-expanded .zwc-faq-answer {
    padding-bottom: clamp(16px, 2vw, 25px);
}

.zwc-faq-answer p {
    color: #333;
    padding-right: 30px;
    margin-bottom: 0;
}

.zwc-faq-toggle {
    background: #111;
    min-width: clamp(22px, 2.5vw, 26px);
    width: clamp(22px, 2.5vw, 26px);
    height: clamp(22px, 2.5vw, 26px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.zwc-faq-toggle::before,
.zwc-faq-toggle::after {
    content: "";
    position: absolute;
    background: #fff;
    top: 50%;
    left: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.zwc-faq-toggle::before {
    width: 2px;
    height: clamp(9px, 1.8vw, 12px);
    transform: translate(-50%, -50%);
}

.zwc-faq-toggle::after {
    width: clamp(9px, 1.8vw, 12px);
    height: 2px;
    transform: translate(-50%, -50%);
}

.zwc-faq-expanded .zwc-faq-toggle::before {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* ===== Faq Section End ===== */

/* ===== Pricing Section - Proven eCommerce ===== */

.zwc-proven-eCommerce {
    background-color: var(--banner-bg);
}

.zwc-proven-eCommerce .content-wrap {
    max-width: 1170px;
}

.zwc-pricing-layout {
    display: flex;
    gap: var(--space-80);
    align-items: flex-start;
}

.zwc-pricing-left {
    flex: 1;
}

.zwc-pricing-left p {
    margin-bottom: 30px;
    max-width: 520px;
}

.zwc-pricing-btn {
    background-color: #e42527;
    color: #fff;
    border-radius: 6px;
    padding: 14px 28px;
}

.zwc-pricing-right {
    flex: 0 0 510px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zwc-pricing-card {
    background: var(--white-color);
    border-radius: 10px;
    padding: 28px 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.zwc-pricing-check {
    flex-shrink: 0;
    margin-top: 2px;
    display: block;
}

.zwc-pricing-card-text {
    flex: 1;
    min-width: 0;
}

.zwc-pricing-card h3 {
    font-size: clamp(19px, 1.8vw, 21px);
    color: #111;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.zwc-pricing-card p {
    font-size: 17px;
    color: #555;
    margin: 0;
}

/* ===== Pricing Section - Proven eCommerce End ===== */

/* ===== Footer / Bottom CTA Section ===== */

.zwc-footer-wrap {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.zwc-footer-wrap h2 {
    font-size: var(--h1-font);
    margin-bottom: 20px;
}

.zwc-footer-wrap p {
    margin-bottom: 40px;
}

.zwc-footer-cta {
    justify-content: center;
}

/* ===== Footer / Bottom CTA Section End ===== */

/* ===== Animations ===== */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== Animations End ===== */

/* ===== Media Queries ===== */

@media screen and (min-width: 1280px) {

    .zw-template-inner h1,
    .zw-template-inner h2 {
        letter-spacing: -1.1px;
    }

    /* .zw-template-inner .zwc-faq-wrap h2 {
        letter-spacing: -2.24px;
    } */

    /* .zw-template-inner .zwc-faq-question p {
        line-height: 28px;
        letter-spacing: -0.2px;
    } */

    .zw-template-inner .zwc-faq-answer p {
        line-height: 28px;
    }

}

@media screen and (max-width: 1440px) {
    .header-sec {
        width: 100%;
        max-width: clamp(280px, 70vw, 520px);
    }
}

@media screen and (max-width: 1279px) {

    /* ----- Boost Section - WhatsApp marketing made simple ----- */

    .zmw-c-content h3 {
        font-size: 20px;
    }

    /* ----- Narrative Section ----- */

    .zwc-narrative-section .zwc-narrative-each {
        padding: 50px 30px;
    }

    .zwc-narrative-section h2 {
        max-width: 540px;
    }

    /* ----- More Section - Blue Wrap / Two Column ----- */

    .end-box {
        padding-bottom: 100px;
    }

    .zwc-more-section {
        padding-top: 100px;
    }
}

@media screen and (max-width: 1199px) {
    /* ----- Features Section - Made with care for small businesses everywhere ----- */

    .zwc-features-inner {
        display: block;
    }

    /* 
    .zwc-head-container{
        max-width: 900px;
    } */

    .zwc-items {
        width: 100%;
        padding: 0;
    }

    .zwc-visual-wrap {
        display: none;
    }

    .zwc-item {
        cursor: default;
        max-width: 640px;
        margin-inline: auto;
        text-align: center;
    }

    .zwc-item:not(:last-child) {
        padding-bottom: 30px;
    }

    .zwc-item .zwc-content h3 {
        margin-bottom: 15px;
    }

    .zwc-item::before {
        display: none;
    }

    /* no accordion below this width - every panel stays open */
    .zwc-desc {
        display: block;
    }

    .zwc-features .zwc-content h3 {
        padding-right: 0;
    }

    .zwc-features .zwc-content h3::after {
        display: none;
    }

    .zwc-item .zwc-visual {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        max-width: 633px;
        margin-top: 24px;
    }

    .zwc-item:not(:first-child) {
        margin-top: 32px;
    }

    /* ----- Boost Section - WhatsApp marketing made simple ----- */

    .zwc-boost-section {
        text-align: center;
    }

    .zmw-sticky-wrap {
        display: block;
        max-width: 540px;
        margin: 0 auto;
    }

    .zmw-sticky-wrap .zmw-col-left {
        width: 100%;
        margin-top: 50px;
    }

    .zmw-sticky-wrap .zmw-col-right {
        display: none;
    }

    .zmw-c-content .zmc-icon {
        margin: 0 auto 20px;
    }

    /* no sticky switching here - every block is its own, so none should dim */
    .zmw-c-content:not(.zwc-inview) h3,
    .zmw-c-content:not(.zwc-inview) p {
        color: inherit;
    }

    .zmw-c-content:not(:last-child) {
        margin-bottom: clamp(40px, 9.5vw, 100px);
    }

    .zmw-c-content .common-active-s {
        display: block;
        position: static;
        margin-top: 30px;
        border-radius: 10px;
        background: var(--banner-bg);
        padding: 50px;
    }

    .zmw-c-content .zms-wrapper img {
        margin: 0 auto;
    }
}

@media screen and (max-width: 1024px) {
    /* Buttons */

    .zwc-btn-wrap {
        justify-content: center;
    }

    /* ----- Banner Section ----- */

    .zwc-banner-wrap {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .zwc-banner-right {
        padding-bottom: 0;
        width: 100%;
        max-width: 640px;
        margin-inline: auto;
    }

    .header-sec {
        width: 100%;
        max-width: clamp(280px, 70vw, 400px);
    }

    /* ----- Stats Section ----- */

    .zwc-stats-grid {
        max-width: 850px;
    }

    .zwc-stat-card {
        flex: 1 1 calc(50% - 8px);
        max-width: 350px;
    }

    /* ----- Getting Started Section ----- */

    .zwc-getting-started-section .zwc-steps-grid-con {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
        margin-inline: auto;
    }

    .zwc-getting-started-section .zwc-steps-intro {
        position: static;
        text-align: center;
        margin: 0 auto;
    }

    .zwc-getting-started-section .zwc-steps-intro h2 {
        max-width: 100%;
        text-align: center;
    }

    .zwc-getting-started-section .zwc-gs-subtitle,
    .zwc-getting-started-section .zwc-gs-desc {
        text-align: center;
        max-width: 520px;
        margin-inline: auto;
    }

    /* ----- Pricing Section - Proven eCommerce ----- */

    .zwc-pricing-layout {
        flex-direction: column;
        align-items: center;
    }

    .zwc-pricing-left {
        text-align: center;
    }

    .zwc-pricing-left h2 {
        text-align: center;
    }

    .zwc-pricing-left p {
        text-align: center;
        margin-inline: auto;
    }

    .zwc-pricing-btn {
        margin-inline: auto;
    }

    .zwc-pricing-right {
        flex: none;
        width: 100%;
        max-width: 520px;
    }
}

@media screen and (max-width: 991px) {
    /* ----- Common Values ----- */

    html,
    body {
        overflow-x: hidden;
    }

    .zwc-plans-wrap {
        flex-direction: column;
    }

    .zwc-features-note li:not(:first-child)::before {
        display: none;
    }

    /* ----- Narrative Section ----- */

    .zwc-narrative-section .zwc-narrative-each {
        /* width:100%;
        */
        /* text-align:center;
        */
        max-width: 500px;
        margin-inline: auto;
    }

    .zwc-narrative-section .zwc-narrative-each .zwc-na-content h3::before {
        margin-inline: auto;
    }

    .zwc-narrative-section .zwc-narrative-each .zwc-na-content p {
        max-width: 480px;
        /* margin-inline:auto;
        */
        ;
    }

    .zwc-narrative-section .zwc-narrative-each .zwc-na-content ul {
        text-align: left;
        display: inline-block;
    }

    .zwc-narrative-each-wrap {
        flex-direction: column;
        max-width: 540px;
        margin: 0 auto;
    }

    .zwc-narrative-each-wrap {
        max-width: 100%;
    }

    /* ----- More Section - Blue Wrap / Two Column ----- */

    .zmw-blue-wrap .table-wrap {
        flex-direction: column;
    }

    .zmw-blue-wrap .table-wrap .colum.left,
    .zmw-blue-wrap .table-wrap .colum.right {
        padding: 0;
        width: 100%;
    }

    .zmw-blue-wrap {
        text-align: center;
    }

    .zwc-twocol-section .table-wrap .column.left,
    .zwc-twocol-section .table-wrap .column.right {
        width: 100%;
        margin: 0;
    }

    .zwc-twocol-section .table-wrap {
        flex-direction: column;
    }

    .zmw-blue-wrap-img {
        max-width: 450px;
        margin: 0 auto;
        margin-top: 40px;
    }

    .zwc-twocol-section .table-wrap .column.right {
        margin-top: 20px;
    }

    .zmw-blue-wrap .img-wrap {
        max-width: 440px;
        margin: 0 auto;
        margin-top: 30px;
    }

    .zmw-blue-wrap {
        padding: 50px 40px;
    }

    .insights-screen {
        margin: 0 auto;
        display: block;
    }

    /* ----- Benefits Section ----- */

    .zwc-benifits-section .table-wrap {
        flex-direction: column;
    }

    .zwc-benifits-section .table-wrap .column.left,
    .zwc-benifits-section .table-wrap .column.right {
        padding: 0;
    }

    .zwc-benifits-section {
        text-align: center;
    }

    .zwc-benifits-section .table-wrap .column.right ul {
        float: none;
        margin: 0;
    }

    .zwc-benifits-section .table-wrap .column.left {
        margin-bottom: 23px;
    }

    .zwc-benifits-section .table-wrap .column.right ul {
        margin: 0 auto;
        text-align: left;
    }

    .zwc-benifits-section .table-wrap .column.right,
    .zwc-benifits-section .table-wrap .column.left {
        width: 100%;
    }

    /* ----- Pricing Faq Section ----- */

    .common-section.faq-section {
        padding: 90px 0 70px 0;
    }

    /* ----- Language / RTL Overrides ----- */

    .other-lang:not(.i18n-ar):not(.i18n-vi) .header-section.zwe-om h1 {
        font-size: 30px;
    }

    .i18n-ar .zwc-na-img *,
    .i18n-ar .zwc-na-content *,
    .i18n-ar .zwc-narrative-section .zwc-narrative-each *,
    .i18n-ar .zmw-c-content *,
    .i18n-ar .table-wrap * {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {

    /* ----- Stats Section ----- */

    .zwc-stats-grid {
        flex-wrap: wrap;
    }

    .zwc-stat-card {
        padding: 30px 20px;
    }

    .zwc-stats-section {
        padding: 50px 0;
    }

    /* .zwc-features .zwc-head-container h2,
    .zwc-head-container p,
    .zwc-features .zwc-content h3,
    .zwc-content p,
    .zwc-features-note p,
    .zwc-features-note .zwc-feature-header,
    .zwc-features-note li {
        line-height: normal;
        letter-spacing: normal;
    } */

    .zwc-features-note ul {
        display: block;
    }

    .zwc-features-note li:not(:first-child) {
        margin-top: 6px;
    }

    .zwc-features-note li:not(:first-child)::before {
        display: none;
    }

    .zwc-item:not(:first-child) {
        margin-top: 24px;
    }

    /* ----- Boost Section - WhatsApp marketing made simple ----- */

    .zwc-boost-section h2+p {
        max-width: 440px;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .zmw-sticky-wrap {
        max-width: 480px;
    }

    .zmw-c-content .common-active-s {
        padding: 50px 25px;
    }

    /* ----- Narrative Section ----- */

    .zwc-narrative-each .zwc-na-img {
        min-width: inherit;
    }

    .zwc-narrative-each-wrap {
        max-width: 500px;
        margin-top: 30px;
    }

    .zwc-narrative-section .zwc-narrative-each {
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .zwc-narrative-section h2 {
        max-width: 480px;
    }

    .common-section.zwc-narrative-section {
        padding: 60px 0;
    }

    /* ----- Getting Started Section ----- */

    .zwc-getting-started-section .zwc-steps-item {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 50px;
    }

    .zwc-getting-started-section .zwc-steps-base-line,
    .zwc-getting-started-section .zwc-steps-progress-line {
        display: none;
    }

    .zwc-getting-started-section .zwc-steps-label {
        display: none;
    }

    .zwc-getting-started-section .zwc-steps-marker {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 8px;
        padding-top: 0;
        margin-bottom: 10px;
    }

    .zwc-getting-started-section .zwc-steps-list {
        max-width: 500px;
        margin-inline: auto;
    }

    .zwc-getting-started-section {
        padding: 60px 0;
    }

    /* ----- Faq Section ----- */

    .zw-template-inner .zwc-faq-answer p {
        padding-right: 0;
    }

    /* ----- Pricing Section - Proven eCommerce ----- */

    .zwc-pricing-layout {
        flex-direction: column;
    }

    .zwc-pricing-right {
        flex: none;
        width: 100%;
    }

    .zwc-proven-eCommerce {
        padding: 60px 0;
    }

    /* ----- More Section - Blue Wrap / Two Column ----- */

    .zmw-blue-wrap .img-wrap {
        max-width: 280px;
    }

    .schedule-screen {
        max-width: 100%;
    }

    .schedule-screen-launch {
        max-width: 60%;
        right: -20px;
    }

    .zwc-twocol-section .table-wrap .column.left,
    .zwc-twocol-section .table-wrap .column.right {
        padding: 50px 40px;
    }

    .flexible-screen-add-channel {
        max-width: 60%;
        bottom: 20px;
    }

    .personalization-screen {
        max-width: 100%;
    }

    .personalization-configure-screen {
        max-width: 70%;
        right: -20px;
    }

    .notification-continue-screen {
        max-width: 80%;
        right: -15px;
    }

    .insights-screen {
        max-width: 100%;
    }

    .end-box {
        padding-bottom: 70px;
    }

    .zwc-more-section {
        padding-top: 70px;
    }

    /* ----- Pricing Faq Section ----- */

    .pricing-faq ul li {
        padding: 25px 0 25px 0;
    }

    .pricing-faq ul li h3,
    .pricing-faq ul li button {
        font-size: 22px;
    }

    .faq-section h2 {
        font-size: 32px;
    }

    .pricing-faq {
        padding-top: 15px;
    }

    .pricing-faq ul li h3,
    .pricing-faq ul li button {
        padding-right: 20px;
    }

    .pricing-faq .arrow {
        top: 17px;
    }

}

@media screen and (max-width: 500px) {}

@media screen and (max-width: 480px) {
    /* ----- Buttons ----- */

    .act-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    /* ----- Stats Section ----- */

    .zwc-stats-grid {
        flex-direction: column;
        align-items: center;
    }

    .zwc-stat-card {
        width: 100%;
        max-width: 280px;
    }

    .zwc-features-wrap {
        padding: 30px 20px;
    }

    /* ----- Narrative Section ----- */

    .zwc-narrative-section .zwc-narrative-each {
        padding: 30px 20px;
    }

    .zwc-narrative-each-wrap {
        gap: 15px;
    }

    /* ----- Getting Started Section ----- */

    .zwc-getting-started-section .zwc-steps-card {
        padding: 18px 20px;
    }

    /* ----- Pricing Section - Proven eCommerce ----- */

    .zwc-pricing-card {
        padding: 24px 20px;
    }

}

/* ===== Media Queries End ===== */