/* =========================================================
   SALESPLAY CUSTOMER DISPLAY PAGE
   ========================================================= */

.customer-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;
}

.customer-display-page *,
.customer-display-page *::before,
.customer-display-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.customer-display-page .cd-container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.customer-display-page .cd-hero {
    width: 100%;
    background: var(--cd-hero-bg);
    text-align: center;
    overflow: hidden;
}

.customer-display-page .cd-hero > .cd-container {
    margin-top: 40px;
    padding-top: 48px;
    padding-bottom: 65px;
}


/* ---------------------------------------------------------
   Hero Title
   --------------------------------------------------------- */

.customer-display-page .cd-hero__title {
    max-width: 1000px;

    margin: 0 auto;

    color: var(--cd-heading);

    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;

    letter-spacing: -0.8px;
}


/* ---------------------------------------------------------
   Hero Subtitle
   --------------------------------------------------------- */

.customer-display-page .cd-hero__subtitle {
    max-width: 900px;

    margin: 15px auto 0;

    color: #1e1555;

    font-size: 21px;
    font-weight: 400;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   Hero Description
   --------------------------------------------------------- */

.customer-display-page .cd-hero__description {
    width: 100%;
    max-width: 1000px;
    margin: 15px auto 0;
    color: var(--cd-muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

.customer-display-page .cd-hero__description p {
    margin: 0;
    font-size: 18px;
}


/* ---------------------------------------------------------
   Hero Image
   --------------------------------------------------------- */

.customer-display-page .cd-hero__image {
    width: 100%;
    max-width: 1080px;

    margin: 25px auto 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.customer-display-page .cd-hero__image img {
    display: block;

    width: 100%;
    max-width: 1080px;
    height: auto;

    margin: 0 auto;

    object-fit: contain;
}


/* =========================================================
   FEATURE SECTIONS
   ========================================================= */

.customer-display-page .cd-feature {
    width: 100%;

    padding: 75px 0;

    background: #ffffff;
}

.customer-display-page .cd-feature--gray {
    background: #f4f8fa;
}

.customer-display-page .cd-feature--no-margin {
    padding-bottom: 0;
}


/* ---------------------------------------------------------
   Feature Grid
   --------------------------------------------------------- */

.customer-display-page .cd-feature__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 80px;
}


/* ---------------------------------------------------------
   Reverse Layout
   --------------------------------------------------------- */

.customer-display-page .cd-feature--reverse
.cd-feature__grid {
    direction: rtl;
}

.customer-display-page .cd-feature--reverse
.cd-feature__grid > * {
    direction: ltr;
}


/* =========================================================
   FEATURE IMAGE
   ========================================================= */

.customer-display-page .cd-feature__media {
    width: 100%;

    display: flex;

    justify-content: center;
    align-items: center;
}

.customer-display-page .cd-feature__media img {
    display: block;

    width: 100%;
    max-width: 1080px;
    height: auto;

    margin: 0 auto;

    object-fit: contain;
}


/* =========================================================
   FEATURE CONTENT
   ========================================================= */

.customer-display-page .cd-feature__content {
    width: 100%;
    max-width: 540px;
}

.customer-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;
}

.customer-display-page .cd-feature__description {
    color: #555d66;

    font-size: 15px;
    line-height: 1.8;
}

.customer-display-page .cd-feature__description p {
    margin: 0 0 15px;
}

.customer-display-page .cd-feature__description p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   Feature Lists
   --------------------------------------------------------- */

.customer-display-page .cd-feature__description ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.customer-display-page .cd-feature__description ol {
    padding-left: 22px;
}

.customer-display-page .cd-feature__description li {
    position: relative;

    margin: 0 0 12px;

    padding-left: 30px;
}

.customer-display-page .cd-feature__description li:last-child {
    margin-bottom: 0;
}

.customer-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
   ========================================================= */

.customer-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;
}

.customer-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);
}





/* =========================================================
   APP CTA SECTION
   ========================================================= */

.customer-display-page .cd-app-cta {
    width: 100%;

    padding: 70px 0;

    background: #ffffff;
}


/* =========================================================
   CTA OUTER BOX
   ========================================================= */

.customer-display-page .cd-app-cta__box {
    width: 100%;

    padding: 48px 55px 55px;

    background: #b9e0f9;

    border-radius: 28px;

    text-align: center;

    overflow: hidden;
}


/* =========================================================
   CTA TITLE
   ========================================================= */

.customer-display-page .cd-app-cta__title {
    margin: 0;

    color: #07143f;

    font-size: 45px;
    font-weight: 600;
    line-height: 1.15;

    letter-spacing: -1.2px;
}


/* =========================================================
   CTA DESCRIPTION
   ========================================================= */

.customer-display-page .cd-app-cta__description {
    width: 100%;
    max-width: 950px;

    margin: 22px auto 42px;

    color: #1d365c;

    font-size: 25px;
    font-weight: 400;
    line-height: 1.55;

    text-align: center;
}

.customer-display-page .cd-app-cta__description p {
    margin: 0;
    font-size: 20px;
}


/* =========================================================
   APP GRID
   ========================================================= */

.customer-display-page .cd-app-cta__apps {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;

    width: 100%;
}


/* =========================================================
   APP CARD
   ========================================================= */

.customer-display-page .cd-app-card {
    width: 100%;

    min-width: 0;

    padding: 42px 42px 35px;

    background: #ffffff;

    border-radius: 25px;

    text-align: left;

    box-shadow:
        0 8px 25px rgba(28, 73, 110, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.customer-display-page .cd-app-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(28, 73, 110, 0.10);
}


/* =========================================================
   APP HEADER
   ========================================================= */

.customer-display-page .cd-app-card__header {
    display: flex;
    align-items: flex-start;
    min-height: 100px;
}


/* =========================================================
   APP ICON
   ========================================================= */

.customer-display-page .cd-app-card__icon {
    width: 180px;
    height: 180px;

    flex: 0 0 180px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 28px;

    overflow: hidden;

    background: #ffffff;
}

.customer-display-page .cd-app-card__icon img {
    display: block;

    width: 70%;
    height: 100%;

    object-fit: contain;
}


/* =========================================================
   APP CONTENT
   ========================================================= */

.customer-display-page .cd-app-card__content {
    min-width: 0;

    flex: 1;

    padding-top: 5px;
}


/* =========================================================
   APP NAME
   ========================================================= */

.customer-display-page .cd-app-card__name {
    margin: 0;
    color: #07143f;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
}


/* =========================================================
   BLUE LINE
   ========================================================= */

.customer-display-page .cd-app-card__line {
    display: block;
    width: 60px;
    height: 6px;
    margin: 10px 0 10px;
    border-radius: 20px;
    background: #2495ed;
}


/* =========================================================
   APP DESCRIPTION
   ========================================================= */

.customer-display-page .cd-app-card__description {
    margin: 0;
    color: #405575;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
}


/* =========================================================
   STORE BADGE
   ========================================================= */

.customer-display-page .cd-app-card__store {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: -42px;
    text-decoration: none;
}

.customer-display-page .cd-app-card__store img {
    display: block;
    width: 35%;
    /* max-width: 340px; */
    height: auto;
    object-fit: contain;
    margin-left: 55px;
}

.customer-display-page .cd-app-card__store:hover {
    opacity: 0.92;
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .customer-display-page .cd-app-cta__box {
        padding: 42px 35px 45px;
    }

    .customer-display-page .cd-app-cta__title {
        font-size: 46px;
    }

    .customer-display-page .cd-app-cta__description {
        font-size: 18px;
    }

    .customer-display-page .cd-app-card {
        padding: 32px;
    }

    .customer-display-page .cd-app-card__header {
        gap: 25px;
    }

    .customer-display-page .cd-app-card__icon {
        width: 145px;
        height: 145px;

        flex-basis: 145px;
    }

    .customer-display-page .cd-app-card__name {
        font-size: 25px;
    }

    .customer-display-page .cd-app-card__description {
        font-size: 16px;
    }

    .customer-display-page .cd-app-card__store img {
        height: 60px;
    }
}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------------------
       APP CTA
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__store img {
    display: block;
    width: 35%;
    /* max-width: 340px; */
    height: auto;
    object-fit: contain;
    margin-left: -85px;
}

    .customer-display-page .cd-app-cta {
        padding: 32px 0;
    }

    .customer-display-page .cd-app-cta__box {
        width: 100%;

        padding: 28px 16px 24px;

        border-radius: 18px;
    }


    /* -----------------------------------------------------
       CTA TITLE
       ----------------------------------------------------- */

    .customer-display-page .cd-app-cta__title {
        margin: 0;

        font-size: 32px;
        line-height: 1.2;

        letter-spacing: -0.4px;
    }


    /* -----------------------------------------------------
       CTA DESCRIPTION
       ----------------------------------------------------- */

    .customer-display-page .cd-app-cta__description {
        max-width: 100%;

        margin: 16px auto 25px;

        font-size: 14px;
        line-height: 1.6;
    }


    /* -----------------------------------------------------
       APP GRID
       ----------------------------------------------------- */

    .customer-display-page .cd-app-cta__apps {
        display: flex;

        flex-direction: column;

        width: 100%;

        gap: 14px;

        margin: 0;
    }


    /* -----------------------------------------------------
       APP CARD
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card {
        width: 100%;

        padding: 18px 16px 17px;

        border-radius: 15px;

        box-shadow:
            0 4px 15px rgba(28, 73, 110, 0.05);
    }


    /* -----------------------------------------------------
       APP CARD HEADER
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__header {
        display: flex;

        align-items: flex-start;

        gap: 14px;

        min-height: 0;

        width: 100%;
    }


    /* -----------------------------------------------------
       APP ICON
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__icon {
        width: 64px;
        height: 64px;

        flex: 0 0 64px;

        border-radius: 14px;

        background: transparent;
    }

    .customer-display-page .cd-app-card__icon img {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: contain;
    }


    /* -----------------------------------------------------
       APP CONTENT
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__content {
        min-width: 0;

        flex: 1;

        padding-top: 1px;
    }


    /* -----------------------------------------------------
       APP NAME
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__name {
        margin: 0;

        color: #07143f;

        font-size: 19px;
        font-weight: 700;

        line-height: 1.25;

        letter-spacing: -0.2px;

        word-break: normal;
        overflow-wrap: anywhere;
    }


    /* -----------------------------------------------------
       BLUE LINE
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__line {
        display: block;

        width: 38px;
        height: 4px;

        margin: 9px 0 9px;

        border-radius: 20px;

        background: #2495ed;
    }


    /* -----------------------------------------------------
       APP DESCRIPTION
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__description {
        width: 100%;

        margin: 0;

        color: #405575;

        font-size: 12.5px;
        font-weight: 400;

        line-height: 1.5;

        overflow-wrap: break-word;
        word-break: normal;
    }


    /* -----------------------------------------------------
       STORE BADGE
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__store {
        display: flex;

        justify-content: center;
        align-items: center;

        width: 100%;

        margin-top: 15px;
    }

    .customer-display-page .cd-app-card__store img {
        display: block;

        width: auto;

        max-width: 190px;

        height: 42px;

        object-fit: contain;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    /* -----------------------------------------------------
       APP CTA
       ----------------------------------------------------- */

    .customer-display-page .cd-app-cta {
        padding: 24px 0;
    }

    .customer-display-page .cd-app-cta__box {
        padding: 24px 12px 18px;

        border-radius: 15px;
    }


    /* -----------------------------------------------------
       TITLE
       ----------------------------------------------------- */

    .customer-display-page .cd-app-cta__title {
        font-size: 30px;

        line-height: 1.2;
    }


    /* -----------------------------------------------------
       DESCRIPTION
       ----------------------------------------------------- */

    .customer-display-page .cd-app-cta__description {
        margin: 14px auto 21px;

        font-size: 12.5px;

        line-height: 1.55;
    }


    /* -----------------------------------------------------
       APP GRID
       ----------------------------------------------------- */

    .customer-display-page .cd-app-cta__apps {
        gap: 12px;
    }


    /* -----------------------------------------------------
       APP CARD
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card {
        padding: 16px 14px 15px;

        border-radius: 14px;
    }


    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__header {
        gap: 12px;
    }


    /* -----------------------------------------------------
       ICON
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__icon {
        width: 55px;
        height: 55px;

        flex: 0 0 55px;

        border-radius: 12px;
    }


    /* -----------------------------------------------------
       APP NAME
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__name {
        font-size: 17px;

        line-height: 1.25;
    }


    /* -----------------------------------------------------
       BLUE LINE
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__line {
        width: 34px;
        height: 3px;

        margin: 8px 0;
    }


    /* -----------------------------------------------------
       DESCRIPTION
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__description {
        font-size: 14px;

        line-height: 1.5;
    }


    /* -----------------------------------------------------
       GOOGLE PLAY
       ----------------------------------------------------- */

    .customer-display-page .cd-app-card__store {
        margin-top: 13px;
    }

    .customer-display-page .cd-app-card__store img {
        max-width: 175px;

        height: 39px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .customer-display-page .cd-app-cta {
        padding: 20px 0;
    }

    .customer-display-page .cd-app-cta__box {
        padding: 21px 10px 16px;

        border-radius: 13px;
    }


    /* CTA */

    .customer-display-page .cd-app-cta__title {
        font-size: 30px;
    }

    .customer-display-page .cd-app-cta__description {
        font-size: 11.5px;

        margin-bottom: 17px;
    }


    /* Card */

    .customer-display-page .cd-app-card {
        padding: 14px 12px;
    }


    /* Icon */

    .customer-display-page .cd-app-card__icon {
        width: 48px;
        height: 48px;
    }


    /* Header gap */

    .customer-display-page .cd-app-card__header {
        gap: 10px;
    }


    /* Name */

    .customer-display-page .cd-app-card__name {
        font-size: 15px;
    }


    /* Description */

    .customer-display-page .cd-app-card__description {
        font-size: 14px;
    }


    /* Store */

    .customer-display-page .cd-app-card__store {
        margin-top: 11px;
    }

    .customer-display-page .cd-app-card__store img {
        max-width: 160px;

        height: 36px;
    }
}




/* =========================================================
   FAQ SECTION
   ========================================================= */

.customer-display-page .cd-faq {
    width: 100%;

    padding: 10px 0 70px;

    background: #ffffff;
}


/* ---------------------------------------------------------
   FAQ Heading
   --------------------------------------------------------- */

.customer-display-page .cd-section-heading {
    margin-bottom: 25px;
}

.customer-display-page .cd-section-heading h2 {
    margin: 0;

    color: var(--cd-heading);

    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
}


/* ---------------------------------------------------------
   FAQ List
   --------------------------------------------------------- */

.customer-display-page .cd-faq__list {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;
}

.customer-display-page .cd-faq__item {
    width: 100%;

    margin-bottom: 8px;

    background: #ffffff;

    border: 1px solid var(--cd-border);
    border-radius: 6px;

    overflow: hidden;
}

.customer-display-page .cd-faq__item:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   FAQ Question
   --------------------------------------------------------- */

.customer-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;
}

.customer-display-page .cd-faq__question:hover {
    background: #f8fafc;
}

.customer-display-page .cd-faq__question > span:first-child {
    padding-right: 20px;
}


/* ---------------------------------------------------------
   FAQ Icon
   --------------------------------------------------------- */

.customer-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;
}

.customer-display-page
.cd-faq__question[aria-expanded="true"]
.cd-faq__icon {
    transform: rotate(45deg);
}


/* ---------------------------------------------------------
   FAQ Answer
   --------------------------------------------------------- */

.customer-display-page .cd-faq__answer {
    padding: 0 18px 18px;

    color: #666666;

    font-size: 14px;
    line-height: 1.8;
}

.customer-display-page .cd-faq__answer p {
    margin: 0 0 10px;
}

.customer-display-page .cd-faq__answer p:last-child {
    margin-bottom: 0;
}

.customer-display-page .cd-faq__answer ul,
.customer-display-page .cd-faq__answer ol {
    margin-top: 10px;
    margin-bottom: 10px;
}


/* =========================================================
   TABLET - 1024px
   ========================================================= */

@media (max-width: 1024px) {

    .customer-display-page .cd-container {
        width: min(920px, calc(100% - 40px));
    }

    /* Hero */

    .customer-display-page .cd-hero > .cd-container {
        margin-top: 150px;
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .customer-display-page .cd-hero__title {
        font-size: 42px;
    }

    .customer-display-page .cd-hero__subtitle {
        margin-top: 28px;
        font-size: 19px;
    }

    .customer-display-page .cd-hero__description {
        margin-top: 30px;
    }

    .customer-display-page .cd-hero__image {
        max-width: 900px;
        margin-top: 50px;
    }

    /* Features */

    .customer-display-page .cd-feature {
        padding: 60px 0;
    }

    .customer-display-page .cd-feature__grid {
        gap: 50px;
    }

    .customer-display-page .cd-feature__title {
        font-size: 27px;
    }

    .customer-display-page .cd-feature__description {
        font-size: 14px;
    }

    /* CTA */

    .customer-display-page .cd-app-cta {
        padding: 45px 0;
    }
}


/* =========================================================
   TABLET / MOBILE - 768px
   ========================================================= */

@media (max-width: 767px) {

    .customer-display-page .cd-container {
        width: calc(100% - 30px);
    }


    /* =====================================================
       HERO
       ===================================================== */

    .customer-display-page .cd-hero > .cd-container {
        margin-top: 50px;
        padding-top: 35px;
        padding-bottom: 40px;
    }

    .customer-display-page .cd-hero__title {
        font-size: 32px;
        line-height: 1.2;

        letter-spacing: -0.3px;
    }

    .customer-display-page .cd-hero__subtitle {
        margin-top: 18px;

        font-size: 17px;
        line-height: 1.5;
    }

    .customer-display-page .cd-hero__description {
        margin-top: 22px;

        font-size: 13px;
        line-height: 1.7;
    }

    .customer-display-page .cd-hero__image {
        max-width: 600px;

        margin-top: 35px;
    }


    /* =====================================================
       FEATURE
       ===================================================== */

    .customer-display-page .cd-feature {
        padding: 45px 0;
    }

    .customer-display-page .cd-feature__grid {
        display: flex;

        flex-direction: column;

        gap: 30px;
    }


    /* Reset desktop reverse layout */

    .customer-display-page .cd-feature--reverse
    .cd-feature__grid {
        direction: ltr;
    }


    /* Image always first */

    .customer-display-page .cd-feature__media {
        width: 100%;

        order: 1;
    }

    .customer-display-page .cd-feature__media img {
        width: 100%;
        max-width: 500px;
    }


    /* Content always second */

    .customer-display-page .cd-feature__content {
        width: 100%;
        max-width: none;

        order: 2;
    }

    .customer-display-page .cd-feature__title {
        margin-bottom: 16px;

        font-size: 24px;
        line-height: 1.3;
    }

    .customer-display-page .cd-feature__description {
        font-size: 14px;
        line-height: 1.7;
    }

    .customer-display-page .cd-feature__description li {
        margin-bottom: 9px;

        padding-left: 17px;
    }


    /* =====================================================
       BUTTON
       ===================================================== */

    .customer-display-page .cd-button {
        margin-top: 20px;

        padding: 11px 20px;

        font-size: 13px;
    }


    /* =====================================================
       APP CTA
       ===================================================== */

    .customer-display-page .cd-app-cta {
        padding: 35px 0;
    }

    .customer-display-page .cd-app-cta__box {
        padding: 28px 18px;

        border-radius: 8px;
    }

    .customer-display-page .cd-app-cta__title {
        font-size: 30px;
    }

    .customer-display-page .cd-app-cta__description {
        margin-bottom: 22px;

        font-size: 13px;
    }

    .customer-display-page .cd-app-cta__apps {
        width: 100%;

        flex-direction: column;

        gap: 10px;
    }

    .customer-display-page .cd-app-card {
        width: 100%;
        min-width: 0;
    }

    .customer-display-page .cd-app-card__link {
        width: 100%;
    }


    /* =====================================================
       FAQ
       ===================================================== */

    .customer-display-page .cd-faq {
        padding: 10px 0 45px;
    }

    .customer-display-page .cd-section-heading {
        margin-bottom: 18px;
    }

    .customer-display-page .cd-section-heading h2 {
        font-size: 25px;
    }

    .customer-display-page .cd-faq__question {
        min-height: 52px;

        padding: 14px 15px;

        font-size: 13px;
    }

    .customer-display-page .cd-faq__answer {
        padding: 0 15px 16px;

        font-size: 13px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE - 480px
   ========================================================= */

@media (max-width: 480px) {

    .customer-display-page .cd-container {
        width: calc(100% - 24px);
    }


    /* Hero */

    .customer-display-page .cd-hero > .cd-container {
        margin-top: 50px;
        padding-top: 50px;
        padding-bottom: 32px;
    }

    .customer-display-page .cd-hero__title {
        font-size: 27px;
    }

    .customer-display-page .cd-hero__subtitle {
        margin-top: 15px;

        font-size: 15px;
    }

    .customer-display-page .cd-hero__description {
        margin-top: 18px;

        font-size: 12px;
    }

    .customer-display-page .cd-hero__image {
        margin-top: 28px;
    }


    /* Feature */

    .customer-display-page .cd-feature {
        padding: 38px 0;
    }

    .customer-display-page .cd-feature__grid {
        gap: 24px;
    }

    .customer-display-page .cd-feature__title {
        font-size: 22px;
    }

    .customer-display-page .cd-feature__description {
        font-size: 13px;
    }

    .customer-display-page .cd-feature__description li {
        padding-left: 15px;
    }

    .customer-display-page
    .cd-feature__description ul li::before {
        top: 9px;

        width: 4px;
        height: 4px;
    }


    /* CTA */

    .customer-display-page .cd-app-cta {
        padding: 28px 0;
    }

    .customer-display-page .cd-app-cta__box {
        padding: 24px 14px;
    }

    .customer-display-page .cd-app-cta__title {
        font-size: 30px;
    }

    .customer-display-page .cd-app-cta__description {
        font-size: 14px;
    }

    .customer-display-page .cd-app-card__link {
        min-height: 65px;

        padding: 9px 10px;

        gap: 10px;
    }

    .customer-display-page .cd-app-card__icon {
        width: 42px;
        height: 42px;
    }

    .customer-display-page .cd-app-card__content strong {
        font-size: 12px;
    }

    .customer-display-page .cd-app-card__content span {
        font-size: 10px;
    }


    /* FAQ */

    .customer-display-page .cd-section-heading h2 {
        font-size: 23px;
    }

    .customer-display-page .cd-faq__question {
        padding: 13px;

        font-size: 12px;
    }

    .customer-display-page .cd-faq__answer {
        padding: 0 13px 14px;

        font-size: 12px;
    }

    .customer-display-page .cd-faq__icon {
        width: 22px;
        height: 22px;

        flex-basis: 22px;

        font-size: 20px;
    }
}


/* =========================================================
   VERY SMALL MOBILE - 360px
   ========================================================= */

@media (max-width: 360px) {

    .customer-display-page .cd-container {
        width: calc(100% - 20px);
    }

    .customer-display-page .cd-hero__title {
        font-size: 25px;
    }

    .customer-display-page .cd-hero__subtitle {
        font-size: 14px;
    }

    .customer-display-page .cd-feature__title {
        font-size: 21px;
    }

    .customer-display-page .cd-app-cta__title {
        font-size: 30px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.customer-display-page
.cd-button:focus-visible,

.customer-display-page
.cd-app-card__link:focus-visible,

.customer-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) {

    .customer-display-page *,
    .customer-display-page *::before,
    .customer-display-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}