/* =========================================================
   SALESPLAY CUSTOMER DISPLAY PAGE
   ========================================================= */

.web-store-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;
}

.web-store-page *,
.web-store-page *::before,
.web-store-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   GLOBAL CONTAINER
   ========================================================= */

.web-store-page .cd-container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.web-store-page .cd-hero {
    width: 100%;
    background: var(--cd-hero-bg);
    text-align: center;
    overflow: hidden;
}

.web-store-page .cd-hero > .cd-container {
    margin-top: 40px;
    padding-top: 48px;
    padding-bottom: 65px;
}


/* ---------------------------------------------------------
   Hero Title
   --------------------------------------------------------- */

.web-store-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
   --------------------------------------------------------- */

.web-store-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
   --------------------------------------------------------- */

.web-store-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;
}

.web-store-page .cd-hero__description p {
    margin: 0;
    font-size: 18px;
}


/* ---------------------------------------------------------
   Hero Image
   --------------------------------------------------------- */

.web-store-page .cd-hero__image {
    width: 100%;
    max-width: 1080px;

    margin: 25px auto 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

.web-store-page .cd-hero__image img {
    display: block;

    width: 100%;
    max-width: 1080px;
    height: auto;

    margin: 0 auto;

    object-fit: contain;
}


/* =========================================================
   FEATURE SECTIONS
   ========================================================= */

.web-store-page .cd-feature {
    width: 100%;

    padding: 75px 0;

    background: #ffffff;
}

.web-store-page .cd-feature--gray {
    background: #f4f8fa;
}

.web-store-page .cd-feature--no-margin {
    padding-bottom: 0;
}


/* ---------------------------------------------------------
   Feature Grid
   --------------------------------------------------------- */

.web-store-page .cd-feature__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 80px;
}


/* ---------------------------------------------------------
   Reverse Layout
   --------------------------------------------------------- */

.web-store-page .cd-feature--reverse
.cd-feature__grid {
    direction: rtl;
}

.web-store-page .cd-feature--reverse
.cd-feature__grid > * {
    direction: ltr;
}


/* =========================================================
   FEATURE IMAGE
   ========================================================= */

.web-store-page .cd-feature__media {
    width: 100%;

    display: flex;

    justify-content: center;
    align-items: center;
}

.web-store-page .cd-feature__media img {
    display: block;

    width: 100%;
    max-width: 1080px;
    height: auto;

    margin: 0 auto;

    object-fit: contain;
}


/* =========================================================
   FEATURE CONTENT
   ========================================================= */

.web-store-page .cd-feature__content {
    width: 100%;
    max-width: 540px;
}

.web-store-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;
}

.web-store-page .cd-feature__description {
    color: #555d66;

    font-size: 15px;
    line-height: 1.8;
}

.web-store-page .cd-feature__description p {
    margin: 0 0 15px;
}

.web-store-page .cd-feature__description p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   Feature Lists
   --------------------------------------------------------- */

.web-store-page .cd-feature__description ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.web-store-page .cd-feature__description ol {
    padding-left: 22px;
}

.web-store-page .cd-feature__description li {
    position: relative;

    margin: 0 0 12px;

    padding-left: 30px;
}

.web-store-page .cd-feature__description li:last-child {
    margin-bottom: 0;
}

.web-store-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
   ========================================================= */

.web-store-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;
}

.web-store-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);
}




/* =========================================
   SalesPlay CTA
========================================= */

.salesplay-cta {
    position: relative;
    padding: 90px 24px;
    overflow: hidden;
    background: #f7f9fb;
}

.salesplay-cta__container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* CTA Card */

.salesplay-cta__card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    display: flex;
    align-items: center;
    padding: 70px 80px;
    border-radius: 28px;
    background:#b9e0f9;
    box-shadow:
        0 25px 70px rgba(7, 29, 49, 0.16);
}


/* Content */

.salesplay-cta__content {
    position: relative;
    z-index: 2;
    /* max-width: 720px; */
}


/* Eyebrow */

.salesplay-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #053f59;
}


/* Heading */

.salesplay-cta__title {
    margin: 0 0 20px;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.035em;
    color: #030303;
}


/* Description */

.salesplay-cta__description {
    max-width: 650px;
    margin: 0 0 32px;
    font-size: 18px;
    line-height: 1.65;
    color: #1d365c !important;
}


/* Actions */

.salesplay-cta__actions {
    display: flex;
    align-items: center;
    gap: 24px;

    flex-wrap: wrap;
}


/* Primary button */

.salesplay-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 0 25px;

    border-radius: 999px;

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.salesplay-cta__button--primary {
    color: #ffffff;
    background: linear-gradient(125deg, rgba(33, 140, 195, 1) 8%, rgba(11, 77, 146, 1) 59%);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);
}

.salesplay-cta__button--primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
    background: linear-gradient(79deg, rgba(11, 77, 146, 1) 8%, rgba(33, 140, 195, 1) 59%);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.24);
}

.salesplay-cta__button svg {
    transition: transform 0.25s ease;
}

.salesplay-cta__button:hover svg {
    transform: translateX(4px);
}


/* Secondary */

.salesplay-cta__secondary {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    color: #1d365c;
}

.salesplay-cta__signin {
    color: #1d365c !important;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #1d365c;
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.salesplay-cta__signin:hover {
    color: #0086c4;
    border-color: #0086c4;
    text-decoration: none;
}


/* Trust text */

.salesplay-cta__trust {
    margin-top: 30px;

    font-size: 13px;
    line-height: 1.5;

    color: rgba(255, 255, 255, 0.55);
}


/* Decorative elements */

.salesplay-cta__decoration {
    position: absolute;

    right: -80px;
    bottom: -100px;

    width: 430px;
    height: 430px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 50%;
}

.salesplay-cta__decoration::before,
.salesplay-cta__decoration::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}

.salesplay-cta__decoration::before {
    inset: 45px;
}

.salesplay-cta__decoration::after {
    inset: 95px;
}


/* =========================================
   Tablet
========================================= */

@media (max-width: 991px) {

    .salesplay-cta {
        padding: 70px 20px;
    }

    .salesplay-cta__card {
        padding: 60px 50px;
    }

    .salesplay-cta__title {
        font-size: 44px;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .salesplay-cta {
        padding: 50px 16px;
    }

    .salesplay-cta__card {
        min-height: auto;

        padding: 45px 28px;

        border-radius: 22px;
    }

    .salesplay-cta__title {
        font-size: 34px;
        line-height: 1.4;
    }

    .salesplay-cta__description {
        font-size: 16px;
        line-height: 1.6;
    }

    .salesplay-cta__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .salesplay-cta__button {
        width: 100%;
    }

    .salesplay-cta__secondary {
        flex-wrap: wrap;
    }

    .salesplay-cta__decoration {
        width: 280px;
        height: 280px;

        right: -120px;
        bottom: -80px;
    }

}




/* =========================================================
   FAQ SECTION
   ========================================================= */

.web-store-page .cd-faq {
    width: 100%;

    padding: 10px 0 70px;

    background: #ffffff;
}


/* ---------------------------------------------------------
   FAQ Heading
   --------------------------------------------------------- */

.web-store-page .cd-section-heading {
    margin-bottom: 25px;
}

.web-store-page .cd-section-heading h2 {
    margin: 0;

    color: var(--cd-heading);

    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
}


/* ---------------------------------------------------------
   FAQ List
   --------------------------------------------------------- */

.web-store-page .cd-faq__list {
    width: 100%;
    max-width: 1000px;

    margin: 0 auto;
}

.web-store-page .cd-faq__item {
    width: 100%;

    margin-bottom: 8px;

    background: #ffffff;

    border: 1px solid var(--cd-border);
    border-radius: 6px;

    overflow: hidden;
}

.web-store-page .cd-faq__item:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   FAQ Question
   --------------------------------------------------------- */

.web-store-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;
}

.web-store-page .cd-faq__question:hover {
    background: #f8fafc;
}

.web-store-page .cd-faq__question > span:first-child {
    padding-right: 20px;
}


/* ---------------------------------------------------------
   FAQ Icon
   --------------------------------------------------------- */

.web-store-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;
}

.web-store-page
.cd-faq__question[aria-expanded="true"]
.cd-faq__icon {
    transform: rotate(45deg);
}


/* ---------------------------------------------------------
   FAQ Answer
   --------------------------------------------------------- */

.web-store-page .cd-faq__answer {
    padding: 0 18px 18px;

    color: #666666;

    font-size: 14px;
    line-height: 1.8;
}

.web-store-page .cd-faq__answer p {
    margin: 0 0 10px;
}

.web-store-page .cd-faq__answer p:last-child {
    margin-bottom: 0;
}

.web-store-page .cd-faq__answer ul,
.web-store-page .cd-faq__answer ol {
    margin-top: 10px;
    margin-bottom: 10px;
}


/* =========================================================
   TABLET - 1024px
   ========================================================= */

@media (max-width: 1024px) {

    .web-store-page .cd-container {
        width: min(920px, calc(100% - 40px));
    }

    /* Hero */

    .web-store-page .cd-hero > .cd-container {
        margin-top: 150px;
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .web-store-page .cd-hero__title {
        font-size: 42px;
    }

    .web-store-page .cd-hero__subtitle {
        margin-top: 28px;
        font-size: 19px;
    }

    .web-store-page .cd-hero__description {
        margin-top: 30px;
    }

    .web-store-page .cd-hero__image {
        max-width: 900px;
        margin-top: 50px;
    }

    /* Features */

    .web-store-page .cd-feature {
        padding: 60px 0;
    }

    .web-store-page .cd-feature__grid {
        gap: 50px;
    }

    .web-store-page .cd-feature__title {
        font-size: 27px;
    }

    .web-store-page .cd-feature__description {
        font-size: 14px;
    }

    /* CTA */

    .web-store-page .cd-app-cta {
        padding: 45px 0;
    }
}


/* =========================================================
   TABLET / MOBILE - 768px
   ========================================================= */

@media (max-width: 767px) {

    .web-store-page .cd-container {
        width: calc(100% - 30px);
    }


    /* =====================================================
       HERO
       ===================================================== */

    .web-store-page .cd-hero > .cd-container {
        margin-top: 50px;
        padding-top: 35px;
        padding-bottom: 40px;
    }

    .web-store-page .cd-hero__title {
        font-size: 32px;
        line-height: 1.2;

        letter-spacing: -0.3px;
    }

    .web-store-page .cd-hero__subtitle {
        margin-top: 18px;

        font-size: 17px;
        line-height: 1.5;
    }

    .web-store-page .cd-hero__description {
        margin-top: 22px;
        font-size: 13px;
        line-height: 1.7;
    }

    .web-store-page .cd-hero__image {
        max-width: 600px;

        margin-top: 35px;
    }


    /* =====================================================
       FEATURE
       ===================================================== */

    .web-store-page .cd-feature {
        padding: 45px 0;
    }

    .web-store-page .cd-feature__grid {
        display: flex;

        flex-direction: column;

        gap: 30px;
    }


    /* Reset desktop reverse layout */

    .web-store-page .cd-feature--reverse
    .cd-feature__grid {
        direction: ltr;
    }


    /* Image always first */

    .web-store-page .cd-feature__media {
        width: 100%;

        order: 1;
    }

    .web-store-page .cd-feature__media img {
        width: 100%;
        max-width: 500px;
    }


    /* Content always second */

    .web-store-page .cd-feature__content {
        width: 100%;
        max-width: none;

        order: 2;
    }

    .web-store-page .cd-feature__title {
        margin-bottom: 16px;

        font-size: 24px;
        line-height: 1.3;
    }

    .web-store-page .cd-feature__description {
        font-size: 14px;
        line-height: 1.7;
    }

    .web-store-page .cd-feature__description li {
        margin-bottom: 9px;

        padding-left: 17px;
    }


    /* =====================================================
       BUTTON
       ===================================================== */

    .web-store-page .cd-button {
        margin-top: 20px;

        padding: 11px 20px;

        font-size: 13px;
    }


    /* =====================================================
       APP CTA
       ===================================================== */

    .web-store-page .cd-app-cta {
        padding: 35px 0;
    }

    .web-store-page .cd-app-cta__box {
        padding: 28px 18px;

        border-radius: 8px;
    }

    .web-store-page .cd-app-cta__title {
        font-size: 30px;
    }

    .web-store-page .cd-app-cta__description {
        margin-bottom: 22px;

        font-size: 13px;
    }

    .web-store-page .cd-app-cta__apps {
        width: 100%;

        flex-direction: column;

        gap: 10px;
    }

    .web-store-page .cd-app-card {
        width: 100%;
        min-width: 0;
    }

    .web-store-page .cd-app-card__link {
        width: 100%;
    }


    /* =====================================================
       FAQ
       ===================================================== */

    .web-store-page .cd-faq {
        padding: 10px 0 45px;
    }

    .web-store-page .cd-section-heading {
        margin-bottom: 18px;
    }

    .web-store-page .cd-section-heading h2 {
        font-size: 25px;
    }

    .web-store-page .cd-faq__question {
        min-height: 52px;

        padding: 14px 15px;

        font-size: 13px;
    }

    .web-store-page .cd-faq__answer {
        padding: 0 15px 16px;

        font-size: 13px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE - 480px
   ========================================================= */

@media (max-width: 480px) {

    .web-store-page .cd-container {
        width: calc(100% - 24px);
    }


    /* Hero */

    .web-store-page .cd-hero > .cd-container {
        margin-top: 50px;
        padding-top: 50px;
        padding-bottom: 32px;
    }

    .web-store-page .cd-hero__title {
        font-size: 27px;
    }

    .web-store-page .cd-hero__subtitle {
        margin-top: 15px;

        font-size: 15px;
    }

    .web-store-page .cd-hero__description {
        margin-top: 18px;

        font-size: 12px;
    }

    .web-store-page .cd-hero__image {
        margin-top: 28px;
    }


    /* Feature */

    .web-store-page .cd-feature {
        padding: 38px 0;
    }

    .web-store-page .cd-feature__grid {
        gap: 24px;
    }

    .web-store-page .cd-feature__title {
        font-size: 22px;
    }

    .web-store-page .cd-feature__description {
        font-size: 13px;
    }

    .web-store-page .cd-feature__description li {
        padding-left: 15px;
    }

    .web-store-page
    .cd-feature__description ul li::before {
        top: 9px;

        width: 4px;
        height: 4px;
    }


    /* CTA */

    .web-store-page .cd-app-cta {
        padding: 28px 0;
    }

    .web-store-page .cd-app-cta__box {
        padding: 24px 14px;
    }

    .web-store-page .cd-app-cta__title {
        font-size: 30px;
    }

    .web-store-page .cd-app-cta__description {
        font-size: 14px;
    }

    .web-store-page .cd-app-card__link {
        min-height: 65px;

        padding: 9px 10px;

        gap: 10px;
    }

    .web-store-page .cd-app-card__icon {
        width: 42px;
        height: 42px;
    }

    .web-store-page .cd-app-card__content strong {
        font-size: 12px;
    }

    .web-store-page .cd-app-card__content span {
        font-size: 10px;
    }


    /* FAQ */

    .web-store-page .cd-section-heading h2 {
        font-size: 23px;
    }

    .web-store-page .cd-faq__question {
        padding: 13px;

        font-size: 12px;
    }

    .web-store-page .cd-faq__answer {
        padding: 0 13px 14px;

        font-size: 12px;
    }

    .web-store-page .cd-faq__icon {
        width: 22px;
        height: 22px;

        flex-basis: 22px;

        font-size: 20px;
    }
}


/* =========================================================
   VERY SMALL MOBILE - 360px
   ========================================================= */

@media (max-width: 360px) {

    .web-store-page .cd-container {
        width: calc(100% - 20px);
    }

    .web-store-page .cd-hero__title {
        font-size: 25px;
    }

    .web-store-page .cd-hero__subtitle {
        font-size: 14px;
    }

    .web-store-page .cd-feature__title {
        font-size: 21px;
    }

    .web-store-page .cd-app-cta__title {
        font-size: 30px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.web-store-page
.cd-button:focus-visible,

.web-store-page
.cd-app-card__link:focus-visible,

.web-store-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) {

    .web-store-page *,
    .web-store-page *::before,
    .web-store-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}