
.compare-outer-section,
.compare-outer-section * {
    font-family: 'Urbanist', sans-serif;
}
.comparison-overline{
font-weight: 700;
font-size: 12px;
line-height: 100%;
letter-spacing: 4%;
text-align: center;
color: #2087EC;
}
.compare-top-section{
    background-color: #090909;
    border-radius: 0px 0px 60px 60px;
    padding: 60px 0px 84px 0px;
    margin-bottom: 40px;
}
.compare-top-section > h1 {
    font-size: 48px;
    line-height: 140%;
    text-align: center;
    width: 800px;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}
.compare-top-section > p {
    width: 535px;
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 1%;
    text-align: center;
}
.mobile-announcement-banner-v2{
    width: 189.77px;
    margin-top: 13px;
}
.comparison-benefits{
    margin-bottom: 80px;
}
.comparison-benefits > div > h2 {
font-weight: 700;
font-size: 32px;
line-height: 160%;
letter-spacing: 1%;
color: #1E1E1E;
}
.comparison-benefits > div > p:last-child {
font-weight: 500;
font-size: 18px;
line-height: 144%;
letter-spacing: 1%;
color: #646464;
width: 653px;
}

.comparison-benefits > div:last-child > div > img {
    height: 44px;
    width: 44px;
}
.benefit-card p:first-of-type {
font-weight: 600;
font-size: 18px;
line-height: 160%;
letter-spacing: 1%;
color: #1E1E1E;
margin-top: 12px;
margin-bottom: 4px;
}
.benefit-card p:last-of-type {
font-weight: 500;
font-size: 14px;
line-height: 160%;
letter-spacing: 1%;
color: #808080;
width: 272px;
}

.comparison-benefits > div:last-child {
    margin-top: 40px;
}

.compare-section > p:first-of-type {
    width: 84px;
    height: 30px;
    border-radius: 20px;
    border: 1px solid #2087EC;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 1%;
    color: #2087EC;
}
.compare-section > h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 160%;
    letter-spacing: 1%;
    color: #1E1E1E;
    margin-top: 16px;
}

/* ============================================================
   Comparison table
   Layout: 3 columns -> feature | eRS | competitor
   ============================================================ */
.compare-table {
    width: 920px;
    max-width: 100%;
    margin-top: 46px;
    padding: 8px 24px 16px;
}

/* shared 3-column grid for every row */
.compare-row {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
}

.compare-cell {
    padding: 20px 16px;
}

/* header row with product logos */
.compare-product {
    display: flex;
    align-items: center;
    justify-content: center;
}
.compare-product img {
    height: 36px;
    width: auto;
}
.compare-product-name {
    font-weight: 700;
    font-size: 20px;
    color: #1E1E1E;
}

/* sticky product-logo row while scrolling the comparison table */
.compare-head {
    position: sticky;
    top: 75px !important;
    z-index: 20;
    background: #ffffff;
}

/* collapsible category */
.compare-group-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    background: #EAF4FE;
    border: none;
    border-radius: 6px;
    padding: 13px 16px;
    margin-top: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 4%;
    color: #2087EC;
    text-transform: uppercase;
}
.compare-chevron {
    font-size: 12px;
    transition: transform 0.25s ease;
}
.compare-group.is-open .compare-chevron {
    transform: rotate(180deg);
}

/* expandable body */
.compare-group-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}
.compare-group-inner {
    overflow: hidden;
    min-height: 0;
}
.compare-group.is-open .compare-group-body {
    grid-template-rows: 1fr;
}

/* feature column */
.compare-feature-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 160%;
    color: #333333;
}
.compare-feature-desc {
    font-weight: 500;
    font-size: 12px;
    line-height: 160%;
    color: #808080;
    margin-top: 2px;
}

/* value column */
.compare-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
}
.compare-icon {
    font-size: 18px;
}
.compare-yes {
    color: #2BB673;
}
.compare-no {
    color: #F04438;
}
.compare-partial {
    color: #F5A623;
}
.compare-partial-label {
    font-weight: 700;
    font-size: 12px;
    line-height: 140%;
    color: #F5A623;
}
.compare-soon {
    font-weight: 600;
    font-size: 12px;
    color: #2087EC;
}
.compare-note {
    font-weight: 500;
    font-size: 11px;
    line-height: 140%;
    color: #9A9A9A;
}

/* zebra striping on the feature rows for readability */
.compare-group-body .compare-row:nth-child(even) {
    background: #FAFAFA;
}

/* ============================================================
   ers-advantages animated section
   ============================================================ */
.ers-advantage-section {
    width: 1152px;
    max-width: 100%;
    height: 440px;
    margin: 80px auto 0;
    background: #000000;
    border-radius: 32px;
    display: flex;
    align-items: center;
    overflow: hidden;
    --adv-active-font-size: 40px;
    --adv-active-shadow: 0 0 18px rgba(32, 135, 236, 0.75);
}

.ers-adv-left {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 16px;
}
.ers-adv-left img {
    display: block;
    width: 303px;
    max-width: 100%;
    height: auto;
}

.ers-adv-right {
    position: relative;
    flex: 0 0 50%;
    align-self: stretch;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 26%, #000 74%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 26%, #000 74%, transparent 100%);
}

.ers-adv-track {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--adv-track-top, -81.5px);
    padding-left: 24px;
    display: flex;
    flex-direction: column;
}
.ers-adv-word {
    height: 67px;
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 160%;
    white-space: nowrap;
    color: #646464;
}
.ready-to-switch-cta img{
    height: auto;
    width: 64px;
}

/* each cycling word turns blue only while it sits at the centre;
   keyframes and track offset are generated in compare.js from item counts. */

@media (prefers-reduced-motion: reduce) {
    .ers-adv-track,
    .ers-adv-word.is-cycler {
        animation: none;
    }
}



.core-features-section{
    margin-top: 120px;
    margin-bottom: 120px;
}

.core-features-section > p:first-child {
    width: 160px;
    height: 30px;
    border-radius: 20px;
    border: 1px solid #2087EC;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 1%;
    color: #2087EC;
    text-align: center;
}

.core-features-section > h2 {
font-weight: 700;
font-size: 36px;
line-height: 140%;
letter-spacing: 1%;
color: #1E1E1E;
margin-top: 16px;
}
.card-section{
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 44px;
}
.card-item{
    gap: 24px;
}
/* alternate layout: even cards show the image on the left */
.card-section .card-item:nth-child(even){
    flex-direction: row-reverse;
}
.card-item > div > a{
font-weight: 700;
font-size: 14px;
line-height: 160%;
letter-spacing: 1%;
color: #2087EC;
margin-top: 12px;
}
.card-item p:nth-of-type(1) {
font-weight: 700;
font-size: 24px;
line-height: 160%;
letter-spacing: 1%;
color: #333333;
margin-top: 12px;
margin-bottom: 8px;
}


.card-item p:nth-of-type(2) {
font-weight: 500;
font-size: 16px;
line-height: 160%;
letter-spacing: 1%;
color: #646464;
}
.core-features-section .card-item picture img,
.core-features-section .card-item picture .videoPlayer {
    width: 480px;
    height: auto;
    border-radius: 12px 0px 20px 0px;
}
.core-features-section .card-item picture .videoPlayer {
    display: block;
    object-fit: cover;
}
.card-item > div:first-child {
    width: 504px;
    height: auto;
}
.card-item > picture {
    width: 504px;
    height: 294px;
    padding: 24px 0px 0px 24px;
    border-radius: 20px;
    background:
        conic-gradient(from -90deg at 50% 50%,
            rgba(0, 145, 255, 0.30) 0deg,
            rgba(255, 2, 240, 0.30) 89.72deg,
            rgba(255, 134, 53, 0.30) 164.63deg,
            rgba(102, 71, 240, 0.30) 254.24deg,
            rgba(0, 145, 255, 0.30) 318.33deg,
            rgba(0, 145, 255, 0.30) 360deg),
        #ffffff;
}

.ready-to-switch-cta{
    margin-bottom: 80px;
}
.ready-to-switch-cta > div {
    width: 1000px;
    height: 138px;
    border-radius: 28px;
    background: #000000;
    position: relative;
    overflow: hidden;
}
.ready-to-switch-cta > div {
    padding: 24px;
}
.ready-to-switch-cta > div::before,
.ready-to-switch-cta > div::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}
.ready-to-switch-cta > div::before {
    top: -251px;
    left: -96px;
    background: linear-gradient(251.89deg, #5320EC 12.5%, #2787C9 56.12%);
}
.ready-to-switch-cta > div::after {
    bottom: -291px;
    right: -121px;
    background: linear-gradient(259.26deg, #2087EC 40.04%, #732699 76.68%);
}
.ready-to-switch-cta > div > * {
    position: relative;
    z-index: 1;
}

.ready-to-switch-cta .d-flex.flex-column > p:first-child {
font-weight: 700;
font-size: 24px;
line-height: 160%;
letter-spacing: 1%;
color: #FFFFFF;
}
.ready-to-switch-cta .d-flex.flex-column > p:last-child {
font-weight: 500;
font-size: 16px;
line-height: 160%;
letter-spacing: 1%;
color: #FFFFFFBF;
}

.ready-to-switch-cta .items-center > img:nth-of-type(2) {
    margin: 0px 16px 0px 16px;
}
.ready-to-switch-cta .items-center > div:last-child{
    margin-left: 24px;
}


/* ============================================================
   Integrations animated marquee section
   ============================================================ */

.integrations-pill {
    height: 34px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid #2087EC;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 1%;
    color: #2087EC;
}
.integrations-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 1%;
    color: #1E1E1E;
    margin: 16px 0px 12px 0px;
    text-align: center;
}
.integrations-desc {
    width: 823px;
    max-width: 100%;
    font-weight: 600;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 1%;
    color: #808080;
}

.integrations-marquee {
    position: relative;
    width: 1152px;
    max-width: 100%;
    height: 240px;
    margin-top: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* the scrolling row of logos */
.integrations-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    padding: 0 28px;
    position: relative;
    z-index: 1;
    animation: integrationsScroll 28s linear infinite;
    will-change: transform;
}
.integrations-logo {
    width: 100px;
    height: 100px;
    flex: 0 0 auto;
    object-fit: contain;
}

/* moving exactly one full (duplicated) set keeps the loop seamless */
@keyframes integrationsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* white blur fades on both edges */
.integrations-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}
.integrations-fade-left {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.85) 35%, rgba(255, 255, 255, 0) 100%);
}
.integrations-fade-right {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0.85) 35%, rgba(255, 255, 255, 0) 100%);
}

/* centre eRS logo sits above everything, others pass behind it */
.integrations-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.integrations-center img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.switching-timeline-section {
    margin-top: 70px;
    margin-bottom: 40px;
}

.switching-timeline-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 160%;
    letter-spacing: 1%;
    margin-bottom: 0px;
    color: #333333;
}

.switching-timeline-desc {
    margin-top: 12px;
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: #646464;
}

.switching-timeline-track-wrap {
    margin-top: 64px;
    width: 900px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding-top: 14px;
    margin-bottom: 47px;
}

.switching-timeline-line {
    position: absolute;
    top: 61px;
    left: 88px;
    right: 88px;
    height: 2px;
    background: #808080;
    overflow: hidden;
}

.switching-timeline-line-progress {
    position: absolute;
    inset: 0;
    background: #2087EC;
    transform: scaleX(0);
    transform-origin: left center;
    will-change: transform;
}

.switching-timeline-dot {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid #808080;
    background: #FFFFFF;
    color: #808080;
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        color 0.4s ease,
        background-color 0.4s ease,
        border-color 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.switching-timeline-day,
.switching-timeline-copy {
    transition: color 0.4s ease;
}

.switching-timeline-step-active .switching-timeline-dot {
    background: #2087EC;
    border-color: #2087EC;
    color: #FFFFFF;
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(32, 135, 236, 0.22);
}

.switching-timeline-step {
    width: 228px;
    position: relative;
    z-index: 1;
}

.switching-timeline-day {
    margin-top: 18px;
    font-weight: 500;
    font-size: 12px;
    line-height: 160%;
    text-transform: uppercase;
    color: #808080;
}

.switching-timeline-copy {
    margin-top: 28px;
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    color: #6A6A6A;
}

.switching-timeline-step-active .switching-timeline-day {
    color: #2087EC;
}

.switching-timeline-step-active .switching-timeline-copy {
    color: #2087EC;
}

.disclaimer-section > p:first-of-type {
font-weight: 400;
font-size: 12px;
line-height: 160%;
letter-spacing: 1%;
color: #2087EC;
text-align: center;
width: 100%;
background: #F5FAFF;
padding: 4.5px 0px;
border-radius: 12px 12px 0px 0px;
}
.disclaimer-section > p:nth-of-type(2) {
font-weight: 500;
font-size: 14px;
line-height: 160%;
letter-spacing: 1%;
color: #808080;
width: 100%;
text-align: justify;
padding: 14px 24px;
}
.disclaimer-section{
    margin-top: 32px;
    gap: 10px;
    margin-bottom: 60px;
    width: 728px;
    height: 153px;
    border: 1px solid #EFF6FF;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
}

.vs-blog-section > p:nth-child(1) {
    padding: 3px 11px;
    border: 1px solid #2087EC;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 1%;
    color: #2087EC;
}
.vs-blog-section > h2{
font-weight: 700;
font-size: 32px;
line-height: 160%;
letter-spacing: 1%;
color: #333333;
margin-top: 15px;
margin-bottom:15px;
}

.vs-blog-section > p:nth-child(3){
font-weight: 500;
font-size: 18px;
line-height: 144%;
letter-spacing: 1%;
color: #646464;
}

/* ===== blog cards (white theme) ===== */
.vs-blog-outer-container {
    width: 100%;
    max-width: 1312px;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 24px;
}

.vs-blog-outer-container::-webkit-scrollbar {
    display: none;
}

.vs-blog-cards {
    padding: 16px 16px 35px 16px;
    display: flex;
    gap: 40px;
    width: max-content;
    min-width: 100%;
    justify-content: center;
}

.vs-blog-card {
    display: flex;
    flex-direction: column;
    width: 357px;
    height: 516px;
    gap: 20px;
    justify-content: space-between;
    padding: 16px 16px 24px 16px;
    border-radius: 24px;
    border: 1px solid #F1F1F1;
    background: #FFFFFF;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.vs-blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.vs-blog-card:hover {
    border-color: #B9D0FF;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    transform: translateY(-2px);
}

.vs-blog-card-img img {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.vs-blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vs-blog-card-body > .vs-blog-card-content {
    flex: 1;
}

.vs-blog-card-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
}

.vs-blog-card-author > div {
    display: flex;
    gap: 8px;
    align-items: center;
}

.vs-blog-card-category {
    font-size: 10px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 4%;
    color: #2087EC;
    text-transform: uppercase;
}

.vs-blog-card-title a {
    font-weight: 600;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 1%;
    color: #1E1E1E;
}

.vs-blog-card-desc a {
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 1%;
    color: #808080;
}

.vs-blog-card-author-img img {
    height: 32px;
    width: 32px;
    border-radius: 100%;
}

.vs-blog-card-author .d-flex a p:first-child {
    color: #1E1E1E;
    font-weight: 500;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 1%;
    font-family: "Urbanist";
}

.vs-blog-card-author .d-flex a p:last-child {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #808080;
    font-family: "Urbanist";
}
.one-to-one-demo-link{
    margin-bottom: 40px;
    margin-top: 60px;
}
.one-to-one-demo-link img{
    height: 360px;
    width: auto;
    border-radius: 24px;
}
.compare-section > p:nth-of-type(2) {
font-weight: 500;
font-size: 18px;
line-height: 144%;
letter-spacing: 1%;
margin-top: 16px;
}

.q2-review-section{
    margin-top: 80px; 
}

@media (max-width: 1200px) {
    .vs-blog-cards {
        justify-content: flex-start;
    }
}

@media (max-width: 1250px) {
    .vs-blog-card {
        height: 446px;
        width: 260px;
        border-radius: 24px;
    }

    .vs-blog-cards {
        width: max-content;
        min-width: 100%;
    }

    .vs-blog-cards > * {
        flex: 0 0 auto;
    }

    .vs-blog-outer-container {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 787px) and (max-width: 1250px) {
    .vs-blog-card-title a,
    .vs-blog-card-desc a {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 787px) {
    .vs-blog-card {
        height: 448px;
        width: 290px;
    }

    .vs-blog-card-title a {
        font-size: 14px;
        font-weight: 500;
    }

    .vs-blog-card-desc a {
        font-size: 12px;
        font-weight: 400;
    }

    .vs-blog-card-author .d-flex a p:first-child,
    .vs-blog-card-author .d-flex a p:last-child {
        font-size: 10px;
        line-height: 16.24px;
    }

    .vs-blog-outer-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .integrations-track {
        animation: none;
    }
}

/* below 1440px */
@media (max-width: 1440px) {

}
/* below 1024px */
@media (max-width: 1024px) {
    .one-to-one-demo-link img{
        max-width: 920px;
        width: 100%;
    }

    .ers-advantage-section{
        width: 920px;
    }

    .ers-adv-left img{
        width: 303px;
        height: 79px;
    }
    .card-item > div:first-child{
        width: 375px;
    }
    .card-section{
        gap: 64px;
    }
    
    .card-item > picture{
        width: 504px;
        height: 294px;
    }
    .core-features-section .card-item picture img, .core-features-section .card-item picture .videoPlayer{
        width: 480px;
        height: 270px;
    }
    .ready-to-switch-cta > div{
        width: 820px;
    }
    

}

@media (min-width: 787px) and (max-width: 1024px) {
    .core-features-section .card-item > div > p:nth-of-type(1),
    .core-features-section .card-item > div > p:nth-of-type(2) {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 6;
        line-clamp: 6;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* below 786px */
@media (max-width: 786px) {
    .one-to-one-demo-link img{
        width: 100%;
        max-width: 786px;
        height: 700px;
    }
    .compare-section > h2,.compare-section > p:nth-of-type(2){
        width: 500px;
    }
    .ready-to-switch-cta > div {
        padding: 36px;
    }
    .core-features-section .card-item picture img, .core-features-section .card-item picture .videoPlayer{
        width: 566px;
        height: 321px;
    }
    .card-item > picture {
        width: 590px;
        height: 345px;
    }
    .card-item > div:first-child{
        width: 590px;
    }
    .ers-adv-left{
        justify-content: center;
        flex: 0 0 46%;
    }
    .ers-adv-track{
        padding-left: 0px;
    }
    .card-item , .card-section .card-item:nth-child(even){
        flex-direction: column;
    }
    .vs-blog-section > p:nth-child(3){
        font-size: 16px;
    }
    .integrations-desc{
        font-weight: 500;
        font-size: 16px;
        width: 577px;
    }
     .ready-to-switch-cta > div{
        width: 630px;
        height: 262px;
        flex-direction: column; 
        justify-content: flex-start;
    }
    .compare-top-section > h1{
        font-size: 36px;
        width: 526px;
    }
    .compare-table {
        padding: 8px 78px 12px;
    }
    .compare-cell {
        padding: 14px 8px;
    }
    .compare-feature-title {
        font-size: 14px;
    }
    .compare-product img {
        height: 28px;
    }
    .compare-head {
        top: 76px;
    }
    .ers-advantage-section {
        width: 700px;
        height: 334px;
        border-radius: 24px;
        --adv-active-font-size: 32px;
    }
    .ers-adv-left {
        padding-left: 32px;
    }
    .ers-adv-left img {
        width: 230px;
        height: 60px;
    }
    .ers-adv-word {
        font-size: 24px;
        height: 48px;
    }
    .integrations-title {
        font-size: 28px;
    }
    .integrations-marquee {
        height: 170px;
    }
    .integrations-track {
        gap: 40px;
        padding: 0 20px;
    }
    .integrations-logo {
        width: 52px;
        height: 52px;
    }
    .integrations-center img {
        width: 160px;
        height: 160px;
    }
    .integrations-fade {
        width: 130px;
    }
    .switching-timeline-title {
        font-size: 32px;
    }
    .switching-timeline-desc {
        width: 620px;
        max-width: 100%;
        font-size: 16px;
    }
    .switching-timeline-track-wrap {
        width: 700px;
    }
    .switching-timeline-step {
        width: 180px;
    }
    .switching-timeline-line {
        left: 64px;
        right: 64px;
    }
    .switching-timeline-copy {
        font-size: 15px;
    }
    .comparison-benefits > div > p:last-child{
        font-size: 16px;
    }
    .comparison-benefits > .d-flex:nth-child(2){
        flex-direction: column;
    }
    .benefit-card p:last-of-type{
        width: 399px;
    }
    .ready-to-switch-cta > div > div:first-child{
        flex-direction: column;
        margin-bottom: 12px;
    }
    .ready-to-switch-cta > div > div:first-child > div:last-child > p{
        text-align: center;
    }
    .ready-to-switch-cta img{
        width: 44px;
    }
    .ready-to-switch-cta .d-flex.flex-column > p:first-child{
        margin-top: 12px;
    }
    .ready-to-switch-cta .d-flex.flex-column > p:last-child{
        font-size: 14px;
    }
    .disclaimer-section {
        width: calc(100% - 48px);
        max-width: 728px;
        height: auto;
        min-height: 144px;
    }
    .disclaimer-section > p:nth-of-type(2){
        width: 100%;
    }
    
}
/* below 500px */
@media (max-width: 500px) {
    .core-features-section , .ready-to-switch-cta{
        margin-bottom: 40px;
    }
    .comparison-benefits{
        margin-bottom: 40px;
    }
    .compare-top-section{
        border-radius: 0px 0px 40px 40px;
        padding: 40px 0px 54.5px 0px;
    }
    .compare-product-name{
        font-size: 14px;
    }
    .benefit-card p:last-of-type{
        font-size: 12px;
        font-weight: 700;
        width: 251px;
    }
    .benefit-card p:first-of-type{
        font-size: 16px;
    }
    .vs-blog-section > p:nth-child(3){
        font-size: 14px;
        width: 282px;
    }
    .vs-blog-section > h2{
        font-size: 20px;
    }
    .q2-review-section{
        margin-top: 0px;
    }
    .disclaimer-section {
        width: calc(100% - 32px);
        margin-top: 0px;
        margin-bottom: 40px;
    }
    .disclaimer-section > p:nth-of-type(2){
        width: 100%;
    }
    .switching-timeline-section {
        margin-top: 8px;
        margin-bottom: 24px;
    }
    .switching-timeline-title {
        width: 320px;
        font-size: 20px;
    }
    .switching-timeline-desc {
        width: 320px;
        margin-top: 10px;
        font-size: 14px;
    }
    .switching-timeline-track-wrap {
        margin-top: 28px;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        width: 320px;
        padding-top: 0;
        padding-bottom: 8px;
    }
    .switching-timeline-line {
        display: none;
    }
    .switching-timeline-step {
        width: 100%;
    }
    .switching-timeline-dot {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }
    .switching-timeline-copy {
        font-size: 14px;
        margin-top: 8px;
    }
    .ready-to-switch-cta > div{
        width: 343px;
        height: 240px;
    }
    .ready-to-switch-cta .d-flex.flex-column > p:first-child{
        font-size: 20px;
    }
    .ready-to-switch-cta .d-flex.flex-column > p:last-child{
        font-size: 12px;
    }
    .core-features-section .card-item picture img, .core-features-section .card-item picture .videoPlayer{
        width: 304px;
        height: 162px;
    }
    .card-item > picture{
        width: 320px;
        height: 186px;
    }
    .card-item > div:first-child{
        width: 320px;
    }
    .card-item p:nth-of-type(1){
        font-size: 18px;
    }
    .compare-table {
        padding: 8px 16px 12px;
    }
    .compare-feature-title{
        font-size: 12px;
    }
    .compare-feature-desc{
        font-size: 10px;
    }
    .compare-section > h2{
        font-size: 20px;
        width: 300px;
    }
     .compare-section > p:nth-of-type(2){
        font-size: 14px;
        width: 309px;
     }
    .comparison-benefits > div > h2{
        font-size: 20px;
        width: 282px;
    }
    .comparison-benefits > div > p:last-child{
        font-size: 14px;
        width: 331px;
    }
    .compare-top-section > h1{
        font-size: 24px;
        width: 309px;
    }
    .compare-top-section > p{
        font-size: 14px;
        width: 326px;
    }
    .compare-row {
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    }
    .compare-note {
        font-size: 11px;
    }
    .compare-product img {
        height: 22px;
    }
    .ers-advantage-section {
        height: 164px;
        width: 343px;
        border-radius: 20px;
        margin-top: 44px;
        --adv-active-font-size: 16px;
    }
    .card-section{
        margin-top: 24px;
        gap: 40px;
    }
    .core-features-section{
        margin-top: 44px;
    }
    .ers-adv-left {
        padding-left: 16px;
    }
    .ers-adv-left img {
        width: 113px;
        height: 29px;
    }
    .ers-adv-word {
        font-size: 12px;
        height: 29px;
    }
    .ers-adv-track {
        padding-left: 0px;
    }
    .core-features-section > h2{
        font-size: 20px;
    }

    .integrations-section {
        margin-bottom: 40px;
    }
    .switching-timeline-section{
        margin-bottom: 0px;
    }
    .integrations-title {
        font-size: 20px;
        width: 319px;
    }
    .integrations-desc {
        font-size: 14px;
        width: 343px;
    }
    .integrations-marquee {
        height: 140px;
        margin-top: 18px;
    }
    .integrations-track {
        gap: 28px;
        padding: 0 14px;
    }
    .integrations-logo {
        width: 46px;
        height: 46px;
    }
    .integrations-center img {
        width: 157px;
        height: 157px;
    }
    .integrations-fade {
        width: 80px;
    }
    .card-item p:nth-of-type(2),.card-item > div > a,.disclaimer-section > p:nth-of-type(2){
        font-size: 12px;
    }
    .vs-blog-card-body {
        min-width: 0;
    }

    .vs-blog-card-content {
        min-width: 0;
        overflow: hidden;
    }

    .vs-blog-card-title a {
        font-size: 18px;
        font-weight: 600;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .vs-blog-card-desc a {
        font-size: 14px;
        font-weight: 500;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-word;
    }
    .vs-blog-card-author .d-flex a p:first-child{
        font-size: 14px;
    }
     .vs-blog-card-author .d-flex a p:last-child{
        font-size: 12px;
    }
    .one-to-one-demo-link img{
        width: 100%;
        max-width: 343px;
        height: 450px;
    }
    .one-to-one-demo-link{
        margin-top: 10px;
    }
}