/* =========================================================
   SALESPLAY CUSTOMER DISPLAY PAGE
   ========================================================= */

.webpos-display-page {
    --cd-primary: #005da8;
    --cd-primary-dark: #004d8c;
    --cd-text: #20242a;
    --cd-heading: #222222;
    --cd-muted: #60708a;
    --cd-light-bg: #f5f8fa;
    --cd-hero-bg: #f7f7f7;
    --cd-border: #e5e8eb;
    --cd-white: #ffffff;
    --cd-container: 1180px;

    width: 100%;
    color: var(--cd-text);
    background: var(--cd-white);
    overflow: hidden;
}

.webpos-display-page *,
.webpos-display-page *::before,
.webpos-display-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.webpos-display-page .cd-container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}



/* ============================================
   SALESPLAY WEBPOS HERO SECTION
============================================ */

.webpos-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 0 20px;
    background: linear-gradient(
        120deg,
        #eef5ff 0%,
        #f8fbff 55%,
        #ffffff 100%
    );
}

.webpos-hero .container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
    /* padding: 0 35px; */
}

/* ============================================
   HERO CONTENT
============================================ */

.webpos-hero_content {
    width: 48%;
    max-width: 570px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

/* Subtitle */

.webpos-hero .hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #182452;
    font-size: 17px;
    font-weight: 600;

    margin-bottom: 22px;
}

/* Subtitle Icon */

/* .webpos-hero .hero-subtitle::before {
    content: "";

    display: inline-block;

    width: 28px;
    height: 28px;

    border: 2px solid #2563eb;
    border-radius: 5px;

    flex-shrink: 0;
} */

/* Main Heading */

.webpos-hero h1 {
    margin: 0 0 25px;

    font-size: 45px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -1px;

    color: #101b4c;
}

/* Description */

.webpos-hero p {
    max-width: 540px;

    margin: 0 0 18px;

    color: #52617c;
    font-size: 17px;
    font-weight: 400;

    line-height: 1.75;
}

/* ============================================
   HERO BUTTONS
============================================ */

.webpos-hero .hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 50%;
    gap: 18px;
    margin-top: 35px;
    border: 2px solid #004d8c;
    border-radius: 45px;
}
.webpos-hero .hero-buttons:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(11, 77, 146, 0.3);
}


.webpos-hero .hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 32px;

    min-height: 52px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: all 0.3s ease;
    cursor: pointer;
}


/* ============================================
   HERO IMAGE
============================================ */

.webpos-hero__image {
    width: 52%;
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 1;
}

.webpos-hero__image img.hero_image {
    display: block;

    width: 950px;
    max-width: 1080px;
    height: auto;

    object-fit: contain;

    filter: drop-shadow(
        0 18px 30px rgba(32, 59, 112, 0.08)
    );

    transition: transform 0.4s ease;
}

.webpos-hero__image img.hero_image:hover {
    transform: translateY(-4px);
}

/* ============================================
   TABLET RESPONSIVE
============================================ */

@media (max-width: 991px) {

    .webpos-hero {
        padding: 60px 0;
    }

    .webpos-hero .container {
        gap: 35px;
        padding: 0 25px;
    }

    .webpos-hero_content {
        width: 50%;
    }

    .webpos-hero__image {
        width: 50%;
    }

    .webpos-hero h1 {
        font-size: 36px;
        letter-spacing: -0.5px;
    }

    .webpos-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .webpos-hero .hero-btn {
        padding: 13px 23px;
        font-size: 14px;
    }
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */

@media (max-width: 767px) {

    .webpos-hero {
        padding: 48px 0;
    }

    .webpos-hero .container {
        flex-direction: column-reverse;

        align-items: center;
        text-align: center;

        gap: 32px;
        padding: 0 20px;
        margin-top: 35px;
    }

    .webpos-hero_content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .webpos-hero .hero-subtitle {
        justify-content: center;
        font-size: 15px;
        margin-bottom: 18px;
    }

    .webpos-hero h1 {
        font-size: 30px;
        line-height: 1.2;
        letter-spacing: -0.5px;

        margin-bottom: 20px;
    }

    .webpos-hero p {
        max-width: 100%;

        font-size: 16px;
        line-height: 1.7;

        margin-bottom: 20px;
    }

    .webpos-hero .hero-buttons {
        justify-content: center;
        margin-top: 28px;
    }

    .webpos-hero .hero-btn {
        width: 100%;
        max-width: 280px;

        padding: 13px 24px;
        font-size: 15px;
    }

    .webpos-hero__image {
        width: 100%;
        margin-top: 10px;
    }

    .webpos-hero__image img.hero_image {
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }
}

/* ============================================
   SMALL MOBILE
============================================ */

@media (max-width: 479px) {

    .webpos-hero h1 {
        font-size: 26px;
    }

    .webpos-hero p {
        font-size: 15px;
    }

    .webpos-hero .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}




/* ============================================
   WEBPOS FEATURES SECTION
============================================ */

.webpos-features {
    position: relative;
    padding: 65px 0 75px;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f7faff 100%
    );
}

/* Container */

.webpos-features .container {
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;
    padding: 0 35px;
}

/* ============================================
   SECTION HEADER
============================================ */

.webpos-features__header {
    max-width: 900px;

    margin: 0 auto 38px;

    text-align: center;
}

.webpos-features__header h2 {
    margin: 0 0 12px;

    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;

    letter-spacing: -0.8px;

    color: #101b4c;
}

.webpos-features__header p {
    margin: 0;

    color: #52617c;

    font-size: 16px;
    line-height: 1.7;
}

/* ============================================
   FEATURE GRID
============================================ */

.webpos-features__grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

/* ============================================
   FEATURE CARD
============================================ */

.webpos-feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-height: 250px;

    padding: 25px 22px;

    background: #ffffff;

    border: 1px solid #e7edf6;

    border-radius: 10px;

    box-shadow:
        0 5px 20px rgba(32, 59, 112, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.webpos-feature-card:hover {
    transform: translateY(-5px);

    border-color: #d4e3f8;

    box-shadow:
        0 12px 30px rgba(32, 59, 112, 0.12);
}

/* ============================================
   FEATURE ICON
============================================ */

.webpos-feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 18px;

    border-radius: 9px;

    background: #1769ed;
    overflow: hidden;
}

.webpos-feature-card__icon img {
    display: block;

    width: 42px;
    height: 42px;

    object-fit: contain;
}

/* ============================================
   ICON COLOR VARIATIONS
============================================ */

/*
Add one of these classes manually if required:

Blue    #1769ed
Green   #16b86a
Purple  #7546ed
Orange  #ff9800
*/

/* ============================================
   FEATURE TITLE
============================================ */

.webpos-feature-card h3 {
    margin: 0 0 12px;

    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;

    color: #182452;
}

/* ============================================
   FEATURE DESCRIPTION
============================================ */

.webpos-feature-card p {
    margin: 0;

    font-size: 14px;
    line-height: 1.65;

    color: #52617c;
}

/* ============================================
   TABLET RESPONSIVE
============================================ */

@media (max-width: 991px) {

    .webpos-features {
        padding: 55px 0 65px;
    }

    .webpos-features .container {
        padding: 0 25px;
    }

    .webpos-features__header h2 {
        font-size: 32px;
    }

    .webpos-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .webpos-feature-card {
        min-height: 220px;
    }
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */

@media (max-width: 767px) {

    .webpos-features {
        padding: 48px 0 55px;
    }

    .webpos-features .container {
        padding: 0 20px;
    }

    .webpos-features__header {
        margin-bottom: 30px;
    }

    .webpos-features__header h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .webpos-features__header p {
        font-size: 15px;
    }

    .webpos-features__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .webpos-feature-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .webpos-feature-card h3 {
        font-size: 17px;
    }

    .webpos-feature-card p {
        font-size: 14px;
    }
}

/* ============================================
   SMALL MOBILE
============================================ */

@media (max-width: 479px) {

    .webpos-features__header h2 {
        font-size: 25px;
    }

    .webpos-feature-card {
        padding: 22px 20px;
    }
}



/* =========================================================
   FEATURE SECTIONS
   ========================================================= */

.webpos-display-page .cd-feature {
    width: 100%;

    padding: 75px 0;

    background: #ffffff;
}

.webpos-display-page .cd-feature--gray {
    background: #f4f8fa;
}

.webpos-display-page .cd-feature--no-margin {
    padding-bottom: 0;
}


/* ---------------------------------------------------------
   Feature Grid
   --------------------------------------------------------- */

.webpos-display-page .cd-feature__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 80px;
}


/* ---------------------------------------------------------
   Reverse Layout
   --------------------------------------------------------- */

.webpos-display-page .cd-feature--reverse
.cd-feature__grid {
    direction: rtl;
}

.webpos-display-page .cd-feature--reverse
.cd-feature__grid > * {
    direction: ltr;
}


/* =========================================================
   FEATURE IMAGE
   ========================================================= */

.webpos-display-page .cd-feature__media {
    width: 650px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.webpos-display-page .cd-feature__media img {
    display: block;

    width: 100%;
    max-width: 1080px;
    height: auto;

    margin: 0 auto;

    object-fit: contain;
}


/* =========================================================
   FEATURE CONTENT
   ========================================================= */

.webpos-display-page .cd-feature__content {
    width: 100%;
    max-width: 540px;
}

.webpos-display-page .cd-feature__title {
    margin: 0 0 22px;

    color: var(--cd-heading);

    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;

    letter-spacing: -0.2px;
}

.webpos-display-page .cd-feature__description {
    color: #555d66;

    font-size: 15px;
    line-height: 1.8;
}


 .webpos-display-page .cd-feature__description1 {
        color: #555d66;
        font-size: 18px;
        margin-bottom: 25px !important;
}

.webpos-display-page .cd-feature__description p {
    margin: 0 0 15px;
}

.webpos-display-page .cd-feature__description p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   Feature Lists
   --------------------------------------------------------- */

.webpos-display-page .cd-feature__description ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.webpos-display-page .cd-feature__description ol {
    padding-left: 22px;
}

.webpos-display-page .cd-feature__description li {
    position: relative;

    margin: 0 0 12px;

    padding-left: 30px;
}

.webpos-display-page .cd-feature__description li:last-child {
    margin-bottom: 0;
}

.webpos-display-page .cd-feature__description ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cd-primary);
}


/* =========================================================
   FEATURE BUTTON
   ========================================================= */

.webpos-display-page .cd-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 25px;

    padding: 12px 22px;

    color: #ffffff;
    background: var(--cd-primary);

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.webpos-display-page .cd-button:hover {
    color: #ffffff;

    background: var(--cd-primary-dark);

    transform: translateY(-1px);

    box-shadow: 0 5px 15px rgba(0, 93, 168, 0.18);
}


/* =========================================================
   FAQ SECTION
   ========================================================= */

.webpos-display-page .cd-faq {
    width: 100%;

    padding: 10px 0 70px;

    background: #ffffff;
}


/* ---------------------------------------------------------
   FAQ Heading
   --------------------------------------------------------- */

.webpos-display-page .cd-section-heading {
    margin-bottom: 25px;
}

.webpos-display-page .cd-section-heading h2 {
    margin: 0;

    color: var(--cd-heading);

    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
}


/* ---------------------------------------------------------
   FAQ List
   --------------------------------------------------------- */

.webpos-display-page .cd-faq__list {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;
}

.webpos-display-page .cd-faq__item {
    width: 100%;

    margin-bottom: 8px;

    background: #ffffff;

    border: 1px solid var(--cd-border);
    border-radius: 6px;

    overflow: hidden;
}

.webpos-display-page .cd-faq__item:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   FAQ Question
   --------------------------------------------------------- */

.webpos-display-page .cd-faq__question {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    min-height: 55px;

    padding: 15px 18px;

    border: 0;
    outline: 0;

    background: #ffffff;

    color: #333333;

    cursor: pointer;

    text-align: left;

    font-family: inherit;
    font-size: 14px;
    font-weight: 400;

    transition:
        background-color 0.2s ease;
}

.webpos-display-page .cd-faq__question:hover {
    background: #f8fafc;
}

.webpos-display-page .cd-faq__question > span:first-child {
    padding-right: 20px;
}


/* ---------------------------------------------------------
   FAQ Icon
   --------------------------------------------------------- */

.webpos-display-page .cd-faq__icon {
    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #555555;

    font-size: 22px;
    font-weight: 300;
    line-height: 1;

    transition:
        transform 0.2s ease;
}

.webpos-display-page
.cd-faq__question[aria-expanded="true"]
.cd-faq__icon {
    transform: rotate(45deg);
}


/* ---------------------------------------------------------
   FAQ Answer
   --------------------------------------------------------- */

.webpos-display-page .cd-faq__answer {
    padding: 0 18px 18px;

    color: #666666;

    font-size: 14px;
    line-height: 1.8;
}

.webpos-display-page .cd-faq__answer p {
    margin: 0 0 10px;
}

.webpos-display-page .cd-faq__answer p:last-child {
    margin-bottom: 0;
}

.webpos-display-page .cd-faq__answer ul,
.webpos-display-page .cd-faq__answer ol {
    margin-top: 10px;
    margin-bottom: 10px;
}


/* =========================================================
   TABLET - 1024px
   ========================================================= */

@media (max-width: 1024px) {

    .webpos-display-page .cd-container {
        width: min(920px, calc(100% - 40px));
    }

    /* Hero */

    .webpos-display-page .cd-hero > .cd-container {
        margin-top: 150px;
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .webpos-display-page .cd-hero__title {
        font-size: 42px;
    }

    .webpos-display-page .cd-hero__subtitle {
        margin-top: 28px;
        font-size: 19px;
    }

    .webpos-display-page .cd-hero__description {
        margin-top: 30px;
    }

    .webpos-display-page .cd-hero__image {
        max-width: 900px;
        margin-top: 50px;
    }

    /* Features */

    .webpos-display-page .cd-feature {
        padding: 60px 0;
    }

    .webpos-display-page .cd-feature__grid {
        gap: 50px;
    }

    .webpos-display-page .cd-feature__title {
        font-size: 27px;
    }

    .webpos-display-page .cd-feature__description {
        font-size: 14px;
    }

    /* CTA */

    .webpos-display-page .cd-app-cta {
        padding: 45px 0;
    }
}


/* =========================================================
   TABLET / MOBILE - 768px
   ========================================================= */

@media (max-width: 767px) {

    .webpos-display-page .cd-container {
        width: calc(100% - 30px);
    }


    /* =====================================================
       HERO
       ===================================================== */

    .webpos-display-page .cd-hero > .cd-container {
        margin-top: 50px;
        padding-top: 35px;
        padding-bottom: 40px;
    }

    .webpos-display-page .cd-hero__title {
        font-size: 32px;
        line-height: 1.2;

        letter-spacing: -0.3px;
    }

    .webpos-display-page .cd-hero__subtitle {
        margin-top: 18px;

        font-size: 17px;
        line-height: 1.5;
    }

    .webpos-display-page .cd-hero__description {
        margin-top: 22px;

        font-size: 13px;
        line-height: 1.7;
    }

    .webpos-display-page .cd-hero__image {
        max-width: 600px;

        margin-top: 35px;
    }


    /* =====================================================
       FEATURE
       ===================================================== */

    .webpos-display-page .cd-feature {
        padding: 45px 0;
    }

    .webpos-display-page .cd-feature__grid {
        display: flex;

        flex-direction: column;

        gap: 30px;
    }


    /* Reset desktop reverse layout */

    .webpos-display-page .cd-feature--reverse
    .cd-feature__grid {
        direction: ltr;
    }


    /* Image always first */

    .webpos-display-page .cd-feature__media {
        width: 100%;

        order: 1;
    }

    .webpos-display-page .cd-feature__media img {
        width: 100%;
        max-width: 500px;
    }


    /* Content always second */

    .webpos-display-page .cd-feature__content {
        width: 100%;
        max-width: none;
        order: 2;
        margin-top: -35px;
        margin-bottom: 35px;
    }

    .webpos-display-page .cd-feature__title {
        margin-bottom: 16px;

        font-size: 26px;
        font-weight: 600;
        line-height: 1.3;
    }

    .webpos-display-page .cd-feature__description {
        font-size: 16px;
        line-height: 1.7;
    }
       .webpos-display-page .cd-feature__description1 {
        font-size: 18px;
        line-height: 1.7;
    }


    /* .webpos-display-page .cd-feature__description li {
        margin-bottom: 9px;

        padding-left: 17px;
    } */


    /* =====================================================
       BUTTON
       ===================================================== */

    .webpos-display-page .cd-button {
        margin-top: 20px;

        padding: 11px 20px;

        font-size: 13px;
    }


    /* =====================================================
       APP CTA
       ===================================================== */

    .webpos-display-page .cd-app-cta {
        padding: 35px 0;
    }

    .webpos-display-page .cd-app-cta__box {
        padding: 28px 18px;

        border-radius: 8px;
    }

    .webpos-display-page .cd-app-cta__title {
        font-size: 30px;
    }

    .webpos-display-page .cd-app-cta__description {
        margin-bottom: 22px;

        font-size: 13px;
    }

    .webpos-display-page .cd-app-cta__apps {
        width: 100%;

        flex-direction: column;

        gap: 10px;
    }

    .webpos-display-page .cd-app-card {
        width: 100%;
        min-width: 0;
    }

    .webpos-display-page .cd-app-card__link {
        width: 100%;
    }


    /* =====================================================
       FAQ
       ===================================================== */

    .webpos-display-page .cd-faq {
        padding: 10px 0 45px;
    }

    .webpos-display-page .cd-section-heading {
        margin-bottom: 18px;
    }

    .webpos-display-page .cd-section-heading h2 {
        font-size: 25px;
    }

    .webpos-display-page .cd-faq__question {
        min-height: 52px;

        padding: 14px 15px;

        font-size: 13px;
    }

    .webpos-display-page .cd-faq__answer {
        padding: 0 15px 16px;

        font-size: 13px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE - 480px
   ========================================================= */

@media (max-width: 480px) {

    .webpos-display-page .cd-container {
        width: calc(100% - 24px);
    }


    /* Hero */

    .webpos-display-page .cd-hero > .cd-container {
        margin-top: 50px;
        padding-top: 50px;
        padding-bottom: 32px;
    }

    .webpos-display-page .cd-hero__title {
        font-size: 27px;
    }

    .webpos-display-page .cd-hero__subtitle {
        margin-top: 15px;

        font-size: 15px;
    }

    .webpos-display-page .cd-hero__description {
        margin-top: 18px;

        font-size: 12px;
    }

    .webpos-display-page .cd-hero__image {
        margin-top: 28px;
    }


    /* Feature */

    .webpos-display-page .cd-feature {
        padding:  0;
    }

    .webpos-display-page .cd-feature__grid {
        gap: 24px;
    }

    .webpos-display-page .cd-feature__title {
        font-size: 26px;
        font-weight: 600;
    }

    .webpos-display-page .cd-feature__description {
        font-size: 16px;
    }
    .webpos-display-page .cd-feature__description1 {
        font-size: 16px;
    }

    .webpos-display-page .cd-feature__description li {
        padding-left: 15px;
        font-size: 16px;
    }

    .webpos-display-page
    .cd-feature__description ul li::before {
        top: 9px;

        width: 4px;
        height: 4px;
    }


    /* CTA */

    .webpos-display-page .cd-app-cta {
        padding: 28px 0;
    }

    .webpos-display-page .cd-app-cta__box {
        padding: 24px 14px;
    }

    .webpos-display-page .cd-app-cta__title {
        font-size: 30px;
    }

    .webpos-display-page .cd-app-cta__description {
        font-size: 14px;
    }

    .webpos-display-page .cd-app-card__link {
        min-height: 65px;

        padding: 9px 10px;

        gap: 10px;
    }

    .webpos-display-page .cd-app-card__icon {
        width: 42px;
        height: 42px;
    }

    .webpos-display-page .cd-app-card__content strong {
        font-size: 12px;
    }

    .webpos-display-page .cd-app-card__content span {
        font-size: 10px;
    }


    /* FAQ */

    .webpos-display-page .cd-section-heading h2 {
        font-size: 23px;
    }

    .webpos-display-page .cd-faq__question {
        padding: 13px;

        font-size: 12px;
    }

    .webpos-display-page .cd-faq__answer {
        padding: 0 13px 14px;

        font-size: 12px;
    }

    .webpos-display-page .cd-faq__icon {
        width: 22px;
        height: 22px;

        flex-basis: 22px;

        font-size: 20px;
    }
}


/* =========================================================
   VERY SMALL MOBILE - 360px
   ========================================================= */

@media (max-width: 360px) {

    .webpos-display-page .cd-container {
        width: calc(100% - 20px);
    }

    .webpos-display-page .cd-hero__title {
        font-size: 25px;
    }

    .webpos-display-page .cd-hero__subtitle {
        font-size: 14px;
    }

    .webpos-display-page .cd-feature__title {
        font-size: 21px;
    }

    .webpos-display-page .cd-app-cta__title {
        font-size: 30px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.webpos-display-page
.cd-button:focus-visible,

.webpos-display-page
.cd-app-card__link:focus-visible,

.webpos-display-page
.cd-faq__question:focus-visible {
    outline: 3px solid rgba(0, 93, 168, 0.25);
    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .webpos-display-page *,
    .webpos-display-page *::before,
    .webpos-display-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}