@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Dela+Gothic+One&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Marck+Script&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Sofia+Sans+Extra+Condensed:ital,wght@0,1..1000;1,1..1000&family=Unbounded:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Dela+Gothic+One&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Marck+Script&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Sofia+Sans+Extra+Condensed:ital,wght@0,1..1000;1,1..1000&family=Sofia+Sans+Semi+Condensed:ital,wght@0,1..1000;1,1..1000&family=Unbounded:wght@200..900&display=swap');

*,
*::before,
*::after {
    padding: 0px;
    margin: 0px;
    outline: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: sans-serif;
    overflow-x: visible;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
p {
    margin: 0;
    cursor: default;
}

.cl {
    font-size: 0;
    line-height: 0;
    clear: both;
    display: block;
    height: 0;
}

#helpnav,
#helpnav a {
    background: none !important;
    color: #fff;
    z-index: 10 !important;
    position: relative;
}

#ardes {
    margin-top: -52px;

    @media (max-width: 478px) {
        margin-top: 0;
    }
}


/* Constants */
.h2-gradient {
    background: linear-gradient(to right, #FFCA57, #997934);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.h2-gradient-blue {
    background: linear-gradient(135deg, #D2AB67 33%, #5FA4E6 54%, #665DCD 80%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    max-width: 800px;
    margin: 0 auto;
}


/* ___ Header ___ */
.promo_header {
    background: #000;
    color: #fff;
    font-family: "Sofia Sans Black", sans-serif;
    overflow: hidden;
    height: 702px;

    @media (min-width: 992px) {
        background: url('img/header-bg.png') no-repeat top #000;
        background-size: cover;
    }

    @media (max-width: 991px) {
        height: auto;
        text-align: center;
    }
}

.header_info {
    padding: 100px 0 0 0;

    h1 {
        font-size: 60px;
        font-weight: 900;
        line-height: normal;

        .h1-lg {
            text-transform: uppercase;
            font-family: "Sofia Sans Black", sans-serif;
            font-size: 100px;
            color: #FFCA57;
        }

    }

    .quote {
        background: url('img/img-quote.png') no-repeat top transparent;
        background-size: contain;
        max-width: 454px;
        width: 100%;
        max-height: 180px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        object-fit: cover;
        margin-top: 40px;
        font-family: "Sofia Sans Extra Condensed", sans-serif;
    }

    p {
        font-size: 36px;
        text-align: center;
        line-height: 30px;
        padding: 5px 20px;
    }

    @media (max-width: 991px) {
        padding: 70px 0 0 0;

        h1 {
            font-size: 28px;
            line-height: normal;
            padding: 10px;

            .h1-lg {
                font-size: 40px;
            }
        }

        .quote {
            margin-top: 0;
            margin: auto;
        }

        p {
            font-size: 22px;
            line-height: normal;
            margin-bottom: 40px;
        }
    }

    @media (max-width: 767px) {
        padding: 70px 0 0 0;
    }

    @media (max-width: 478px) {
        padding: 30px 0 0 0;
    }
}

.header_img {
    padding: 20px 0;
    margin: auto;

    @media (min-width: 992px) {
        padding: 0;
    }

    @media (max-width: 991px) {
        margin-top: 80px !important;
    }
}


/* ___ Navigation ___ */
.promo_nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #252C65;
    color: #fff;
    font-family: "Sofia Sans Semi Condensed", sans-serif;
    font-size: 26px;
    line-height: normal;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);

    a {
        background: #333B79;
        color: #BAC6FE;
        text-decoration: none;
        transition: all .3s ease-in-out;
        max-width: 222px;
        width: 100%;
        height: 52px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        border-radius: 10px;

        /* Glow effect when hover text and a box */
        &:hover,
        &.active {
            color: #fff;
            text-shadow: 0 0 10px #fff;
            background: #252C65;
            box-shadow: 0 0 10px #fff;
        }
    }

    @media (max-width: 991px) {
        .row {
            flex-wrap: nowrap;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE and Edge */
            padding-bottom: 5px;

            &::-webkit-scrollbar {
                display: none;
                /* Chrome, Safari, Opera */
            }

            >div {
                flex: 0 0 auto;
                width: auto;
            }


        }

        .row.justify-content-center {
            justify-content: start !important;
        }

        a {
            padding: 5px 10px;
        }
    }
}


/* ___ Products (legacy cont) ___ */
.cont {
    @media (min-width: 992px) {
        display: flex;
        align-items: center;
    }

    a.img img {
        max-width: fit-content;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .title a {
        font-family: "Gotham-Medium", sans-serif;
    }

    ul li {
        font-family: "Gotham-Medium", sans-serif;
        line-height: normal;

        &::before {
            width: 10px;
            height: 10px;
            background-color: #000;
            margin: 5px 0;
        }
    }

    span.old-price {
        font-family: "Gotham-Medium", sans-serif;
        color: #000;

        &::before {
            color: #000;
        }
    }

    span.price {
        font-family: "Gotham-Medium", sans-serif;
        color: #000;
    }

    a.here {
        font-family: "Gotham-Medium", sans-serif;
        background-color: #000;
        border: 2px solid #000;
        color: #fff;
        transition: all .3s ease-in-out;

        &:hover {
            color: #000;
            background-color: transparent;
            transform: translateY(-4px);
        }
    }

    @media(max-width:991px) {
        .btn_box {
            height: auto;
        }

        .price {
            font-size: 30px;
        }

        .old-price {
            top: 20px;
        }
    }
}

.out-cont {
    padding: 20px 0;
    background: #fff;
}


/* ___ Product Card Section ___ */
.desc.product {
    padding: 40px 20px;

    .container {
        background: #252c6592;
        /* border: 1px solid rgba(255, 202, 87, 0.25); */
        border-radius: 20px;
        /* box-shadow: 0 0 40px rgba(255, 202, 87, 0.08), inset 0 0 60px rgba(0, 0, 0, 0.3); */
        padding: 50px 40px;
        max-width: 1200px;
    }

    .product-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
        padding-right: 20px;
    }

    .product-title {
        font-family: "Sofia Sans Semi Condensed", "Anton", sans-serif;
        font-size: 100px;
        font-weight: 900;
        line-height: 1;
        color: #FFCA57;
        text-transform: uppercase;
        letter-spacing: -1px;
        /* text-shadow: 0 2px 12px rgba(255, 202, 87, 0.3); */
    }

    .product-subtitle {
        font-family: "Sofia Sans Semi Condensed", sans-serif;
        font-size: 28px;
        color: #fff;
        line-height: 32px;
        font-weight: 500;
        letter-spacing: -.7px;

        a {
            color: #FFCA57;
            text-decoration: none;
            font-weight: 700;

            &:hover {
                text-decoration: underline;
            }
        }
    }

    .product-desc {
        font-family: "Sofia Sans Semi Condensed", sans-serif;
        font-size: 20px;
        color: #fff;
        line-height: 28px;
    }

    .product-price-label {
        font-family: "Sofia Sans Semi Condensed", sans-serif;
        font-size: 40px;
        color: #fff;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: lowercase;
        margin-bottom: -10px;
    }

    .product-price {
        font-family: "Sofia Sans Semi Condensed", "Anton", sans-serif;
        font-size: 50px;
        font-weight: 900;
        color: #FFCA57;
        line-height: 1;
        /* text-shadow: 0 1px 8px rgba(255, 202, 87, 0.4); */
    }

    .product-cta-btn {
        display: inline-block;
        background: linear-gradient(135deg, #d4a030 0%, #b87b20 100%);
        color: #fff;
        font-family: "Sofia Sans Semi Condensed", "Anton", sans-serif;
        font-size: 40px;
        font-weight: 900;
        letter-spacing: 1px;
        text-decoration: none;
        padding: 16px 48px;
        border-radius: 50px;
        text-align: center;
        align-self: flex-start;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(180, 120, 30, 0.5);
        text-transform: uppercase;

        &:hover {
            background: linear-gradient(135deg, #e5b040 0%, #c98c30 100%);
            box-shadow: 0 8px 28px rgba(200, 140, 40, 0.65);
            transform: translateY(-2px);
            color: #fff;
        }
    }

    .product-img-col {
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            max-width: 100%;
            width: 100%;
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
        }
    }

    @media (max-width: 991px) {
        .container {
            padding: 30px 20px;
        }

        .product-title {
            font-size: 36px;
        }

        .product-price {
            font-size: 34px;
        }

        .product-info {
            padding-right: 0;
            margin-bottom: 30px;
            text-align: center;
            align-items: center;
        }

        .product-cta-btn {
            align-self: center;
            font-size: 26px;
        }
    }
}


/* ___ Reviews ___ */
.promo_reviews {
    background: url('img/bg-big.png') no-repeat top #0D112A;
    background-size: cover;
    color: #fff;
    font-family: "Sofia Sans Semi Condensed", sans-serif;
    overflow: hidden;

    /* Image */
    img {
        max-width: fit-content;
        width: 100%;
        margin: auto;
    }

    /* H2 */
    h2 {
        font-size: 50px;
        padding: 20px 0;
        font-weight: bold;
        letter-spacing: -1.25px;
        line-height: normal;
        background: linear-gradient(to right, #FFCA57, #997934);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-underline-offset: 10px;
    }

    /* H3 */
    h3 {
        font-size: 44px;
        line-height: normal;
        font-weight: bold;
        letter-spacing: -.75px;
        background: linear-gradient(90deg, rgba(210, 171, 103, 1) 4%, rgba(95, 164, 230, 1) 59%, rgba(102, 93, 205, 1) 89%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-transform: uppercase;
        font-weight: 700;
        padding: 30px 0;
    }

    /* h4 */
    h4 {
        font-size: 40px;
        margin: auto;
        /* line-height: 34px; */

        span {
            color: #d2a800;
        }
    }

    /* h6 */
    h6 {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: -.7px;
        font-weight: normal;
    }

    /* P */
    p {
        font-size: 22px;
        line-height: normal;
    }

    .desc {
        padding: 20px 0 40px 0;

        @media (min-width: 992px) {
            .row {
                max-width: 1180px;
                width: 100%;
                margin: auto;
            }
        }
    }

    /* grain background */
    .grain-bg {
        background: url('img/grain-bg.png') no-repeat top #0D112A;
        background-size: cover;
    }


    /* Proven in a real business */
    #provenInARealBusiness {
        .img-bx {
            background: url('img/gradient-bg-ardes.png') no-repeat top transparent;
            background-size: contain;
            max-width: 1180px;
            width: 100%;
            height: 230px;
            object-fit: contain;
            margin: 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;

            img {
                max-width: 515px;
                width: 100%;
                height: 160px;
            }


            @media (max-width: 991px) {
                background-size: cover;
                background-position-x: center;
            }
        }
    }

    /* Google Pazaruvaj Scores */
    #googlePazaruvajScores {
        .rating-bx {
            background-color: #1B214D;
            padding: 20px;
            border-radius: 15px;
            max-width: 520px;
            width: 100%;
            height: 310px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin: 20px auto;

            img {
                margin: 0;
            }
        }
    }


    /* Read and Learn */
    #readAndLearn {
        /* Празно за сега */
    }


    /* What to Learn Content */
    #whatToLearnContent {
        .learning-box {
            background-color: #233E66;
            color: #fff;
            padding: 0 20px;
            border-radius: 15px;
            margin: 40px 0;

            .learning-item {
                margin: 40px 0;
            }

            h5 {
                font-size: 30px;
                margin: auto;
                padding-bottom: 35px;
                color: #fff;
                text-transform: uppercase;

                u {
                    text-decoration: underline;
                    text-underline-offset: 4px;
                }
            }

            p {
                font-size: 24px;
                line-height: normal;
                color: #fff;
            }

            @media (max-width: 991px) {
                padding: 25px;

                h5 {
                    font-size: 20px;
                }

                p {
                    font-size: 16px;
                }
            }
        }
    }


    /* No Boring Theories */
    #noBoringTheories {
        padding: 60px 0;

        .section-title-bordered {
            color: #fff;
            text-transform: uppercase;
            font-size: 24px;
            border-top: 1px solid #1c4b82;
            border-bottom: 1px solid #1c4b82;
            padding: 15px 20px;
            margin-bottom: 40px;
            display: inline-block;
        }

        .theory-card {
            background-color: #273b5a;
            border-radius: 12px;
            padding: 30px 20px;
            height: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;

            .theory-num {
                color: #72a4c9;
                font-size: 55px;
                font-family: "Sofia Sans Semi Condensed", sans-serif;
                font-weight: bold;
                line-height: 1;
                position: absolute;
                top: 15px;
                left: 20px;
            }

            h6 {
                color: #fff;
                font-size: 18px;
                font-weight: bold;
                margin-top: 55px;
                /* Ensures text starts below the number space */
                margin-bottom: 15px;
                text-align: center;
                line-height: normal;
            }

            p {
                color: #fff;
                font-size: 18px;
                line-height: normal;
                text-align: center;
                margin-bottom: 0;
            }
        }
    }


    /* Who is the book for */
    #whoIsTheBookFor {
        .faq-section {
            /* max-width: 900px; */
            margin: 40px auto;
            text-align: left;

            .section-title {
                font-family: inherit;
                font-weight: bold;
            }
        }

        .faq-item {
            /* background-color: #273b5a; */
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;

            &.active {
                .faq-question::after {
                    content: '-';
                    transform: rotate(180deg);
                }
            }
        }

        .faq-question {
            padding: 20px 30px;
            cursor: pointer;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
            border-bottom: 2px solid transparent;
            border-image: linear-gradient(to right, #665DCD 0%, #5FA4E6 45%, #D2AB67 100%) 1;

            &:hover {
                background-color: #1c2f4a;
            }

            &::after {
                content: '+';
                font-size: 28px;
                line-height: 1;
                position: absolute;
                right: 30px;
                color: #72a4c9;
                transition: transform 0.3s ease;
            }

            h4 {
                font-size: 28px;
                font-weight: bold;
                color: #fff;
                margin: 0;
                line-height: 1.3;
                flex: 1;
                text-align: center;
                position: relative;
                padding-left: 52px;
                padding-right: 50px;

                img {
                    position: absolute;
                    left: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 32px;
                    height: auto;
                }

                @media (max-width: 991px) {
                    font-size: 20px;
                    padding-left: 36px;

                    img {
                        width: 24px;
                    }
                }
            }
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;

            p,
            li {
                font-size: 30px;
                line-height: 48px;
                color: #fff;
                margin: 0;
                padding: 10px 30px 25px 30px;
                letter-spacing: -1px;

                @media (max-width: 991px) {
                    font-size: 20px;
                    line-height: normal;
                }
            }
        }



    }

    @media (max-width: 991px) {
        text-align: center;

        h2 {
            font-size: 28px;
            text-underline-offset: 3px;
        }

        h3 {
            font-size: 24px;
            padding-left: 5px;
            padding-right: 5px;
        }

        h4 {
            font-size: 20px;
            line-height: normal;
            padding-bottom: 5px;
        }

        h6 {
            font-size: 18px;
            line-height: normal;
        }

        p {
            font-size: 20px;
        }
    }
}

@media (min-width: 992px) and (max-width: 1400px) {

    .promo_header img,
    .promo_reviews img {
        max-width: fit-content;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 991px) {

    .promo_header img,
    .promo_reviews img {
        max-width: fit-content;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}











/* ___ Not For You ___ */
.not-for-you-list {
    list-style: none;
    padding: 0;
    margin: 0;

    li {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 1.5;
        display: flex;
        align-items: flex-start;

        &:last-child {
            margin-bottom: 0;
        }

        span {
            color: #e3000f;
            font-weight: bold;
            margin-right: 15px;
            font-size: 22px;
            line-height: normal;
        }
    }
}


/* ___ Reviews Section ___ */
#partnerReviews {
    /* background-color: #243956; */
    padding: 80px 0;
    position: relative;
    color: #fff;


    .section-title-yellow {
        color: #f7ca18;
        text-transform: uppercase;
        font-size: 28px;
        border-top: 2px solid #f7ca18;
        border-bottom: 2px solid #f7ca18;
        padding: 15px 20px;
        margin-bottom: 60px;
        display: inline-block;
        font-family: inherit;
        font-weight: bold;
    }

    .reviews-slider-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        max-width: 1100px;
        margin: 0 auto;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        border: 2px solid #72a4c9;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #72a4c9;
        font-size: 22px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;

        &:hover {
            background-color: #72a4c9;
            color: #243956;
        }

        &.left-arrow {
            left: -60px;
        }

        &.right-arrow {
            right: -60px;
        }

        @media (max-width: 1199px) {
            &.left-arrow {
                left: -10px;
                background-color: #243956;
            }

            &.right-arrow {
                right: -10px;
                background-color: #243956;
            }
        }

        @media (max-width: 991px) {
            display: none;
        }
    }

    .custom-reviews-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        margin: 0;
        width: 100%;
        align-items: stretch;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */

        &::-webkit-scrollbar {
            display: none;
        }

        @media (max-width: 991px) {
            overflow-x: auto;
            padding-bottom: 15px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;

            >div {
                scroll-snap-align: center;
                flex: 0 0 calc(100% - 30px);
            }
        }
    }

    .slider-card-item {
        display: flex;
    }

    .review-card {
        background-color: #fff;
        border-radius: 12px;
        padding: 35px 25px 28px;
        max-width: 270px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        color: #0b111a;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

        .review-avatar {
            width: 80px !important;
            height: 80px !important;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            display: block;
        }

        h4 {
            font-size: 18px;
            font-weight: bold;
            color: #243956;
            margin-bottom: 5px;
        }

        h6 {
            font-size: 14px;
            color: #05003894;
            margin-bottom: 25px;
            line-height: normal;
        }

        p {
            font-size: 16px;
            font-style: italic;
            color: #05003894;
            line-height: 24px;
            flex-grow: 1;
            margin-bottom: 15px;
        }

        .read-more {
            color: #2f80ed;
            text-decoration: none;
            font-size: 14px;
            font-weight: bold;
            transition: color 0.3s;

            &:hover {
                color: #1e5bb0;
            }
        }

        .read-more-btn {
            margin-top: auto;
            background: transparent;
            border: 1.5px solid #243956;
            color: #243956;
            font-family: inherit;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 8px 18px;
            border-radius: 999px;
            cursor: pointer;
            transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;

            &:hover,
            &:focus {
                background-color: #243956;
                color: #f7ca18;
                outline: none;
            }

            &:active {
                transform: translateY(1px);
            }
        }
    }

    .review-modal {
        position: fixed;
        inset: 0;
        z-index: 1050;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;

        &.open {
            display: flex;
        }

        .review-modal-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(11, 17, 26, 0.75);
            backdrop-filter: blur(3px);
            cursor: pointer;
        }

        .review-modal-dialog {
            position: relative;
            background-color: #fff;
            color: #0b111a;
            border-radius: 14px;
            max-width: 720px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            padding: 40px 36px 32px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
            text-align: center;
            animation: reviewModalIn 0.25s ease;

            @media (max-width: 575px) {
                padding: 32px 22px 24px;
            }
        }

        .review-modal-close {
            position: absolute;
            top: 10px;
            right: 14px;
            background: transparent;
            border: none;
            color: #243956;
            font-size: 34px;
            line-height: 1;
            cursor: pointer;
            padding: 4px 10px;
            transition: color 0.2s ease, transform 0.2s ease;

            &:hover,
            &:focus {
                color: #f7ca18;
                transform: scale(1.1);
                outline: none;
            }
        }

        .review-modal-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 18px;
        }

        .review-modal-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 14px;
        }

        .review-modal-name {
            font-size: 20px;
            font-weight: bold;
            color: #243956;
            margin-bottom: 4px;
        }

        .review-modal-role {
            font-size: 14px;
            color: #05003894;
            margin-bottom: 0;
            line-height: normal;
        }

        .review-modal-body {
            text-align: left;
            color: #0b111a;

            p {
                font-size: 16px;
                font-style: normal;
                line-height: 1.65;
                color: #2a2f3a;
                margin-bottom: 14px;

                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }

    @keyframes reviewModalIn {
        from {
            opacity: 0;
            transform: translateY(20px) scale(0.98);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #72a4c9;
            cursor: pointer;
            transition: background-color 0.3s;

            &.active {
                background-color: #fff;
            }
        }
    }
}


body.review-modal-open {
    overflow: hidden;
}


#make-it-foreward {
    p {
        span {
            color: #f7ca18;
            font-size: 24px;
        }
    }

    img {
        border-radius: 30px;
    }
}


#compass {
    h4 {
        span {
            color: #d2a800;
        }
    }
}

/* ___ Prod Section ___ */
#prod {
    padding: 60px 0 40px;
    color: #fff;
    /* background-color: #0b111a; */

    .prod-card {
        background: rgba(40, 48, 107, 0.85);
        border: 1px solid rgba(114, 164, 201, 0.25);
        border-radius: 16px;
        padding: 35px 30px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: 100%;

        &.prod-card--luxury {
            border-color: #f7ca18;
        }

        .prod-card-title {
            font-size: 46px;
            font-weight: bold;
            color: #f7ca18 !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
            line-height: 50px;

            @media (max-width: 991px) {
                font-size: 30px;
                line-height: normal;
            }
        }

        .prod-card-img {
            width: 100%;
            margin-bottom: 20px;

            img {
                max-width: 100%;
                height: auto;
                object-fit: contain;
                max-height: 370px;
            }
        }

        .prod-card-book-label {
            font-size: 24px;
            color: #f7ca18;
            margin-bottom: 4px;
            font-weight: 600;
            text-align: left;

            @media (max-width: 991px) {
                text-align: center;
            }
        }

        .prod-card-book-sub {
            font-size: 24px;
            color: #f7ca18;
            font-weight: 700;
            margin-bottom: 18px;
            text-align: left;
            margin-left: -15px;

            @media (max-width: 991px) {
                text-align: center;
                margin-left: 0;
            }
        }

        .prod-card-value {
            font-size: 24px;
            color: #f7ca18;
            font-weight: normal;
        }

        .prod-card-features {
            list-style: none;
            padding: 0;
            margin: 0 0 12px;
            text-align: left;
            width: 100%;

            border-bottom: 1px solid #1e5bb0;
            padding-bottom: 12px;

            li {
                font-size: 24px;
                color: #fff;
                padding: 5px 0 5px 22px;
                position: relative;
                line-height: 34px;

                &::before {
                    content: '✓';
                    position: absolute;
                    left: 0;
                    color: #fff;
                    font-weight: bold;
                }
            }
        }

        .prod-card-guarantees {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
            text-align: left;
            width: 100%;

            li {
                font-size: 20px;
                color: #fff;
                padding: 4px 0 4px 22px;
                position: relative;

                &::before {
                    content: '🛡';
                    position: absolute;
                    left: 0;
                    font-size: 20px;
                    top: 5px;
                }
            }
        }

        .prod-card-price-label {
            font-size: 40px;
            color: #fff;
            margin-top: auto;
            margin-bottom: -10px;

            @media (max-width: 991px) {
                text-align: center;
                font-size: 30px;
            }
        }

        .prod-card-price {
            font-size: 50px;
            font-weight: 900;
            color: #f7ca18;
            margin-bottom: 20px;
            letter-spacing: -0.5px;

            @media (max-width: 991px) {
                text-align: center;
                font-size: 30px;
            }
        }

        .prod-card-btn {
            display: inline-block;
            background: linear-gradient(135deg, #d4a030 0%, #b87b20 100%);
            /* background: linear-gradient(135deg, #f7ca18, #e0a800); */
            color: #fff;
            font-weight: 900;
            font-size: 40px;
            text-transform: uppercase;
            text-decoration: none;
            padding: 14px 36px;
            border-radius: 50px;
            letter-spacing: 1px;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            width: 100%;

            &:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(247, 202, 24, 0.4);
            }

            @media (max-width: 991px) {
                font-size: 24px;
            }
        }
    }

    .prod-bottom-quote {
        text-align: center;
        color: #f7ca18;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        line-height: 1.6;
        margin-top: 50px;
        padding: 0 20px;

        @media (max-width: 991px) {
            font-size: 15px;
        }
    }
}


/* ___ Money Back Warranty ___ */

.money-back-warranty {
    /* background: radial-gradient(circle at center top, #1f2e45 0%, #0b111a 100%); */
    color: #fff;
    padding: 80px 0;

    img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
        height: auto;
        border-radius: 20px;
    }

    @media (max-width: 991px) {
        .main-title {
            font-size: 28px;
            margin-bottom: 40px;
        }
    }
}

.money-back-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
    height: 100%;

    @media (max-width: 991px) {
        padding-left: 0;
        margin-top: 40px;
    }
}

.money-back-text1 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 30px;
    font-family: inherit;

    span {
        color: #e3b04b;
        font-weight: bold;
    }

    @media (max-width: 991px) {
        font-size: 20px;
    }
}

.money-back-text2 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 40px;

    @media (max-width: 991px) {
        font-size: 22px;
    }
}

.warranty-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e3b04b;
    font-size: 20px;
    text-decoration: none;
    border-bottom: 1px solid #4a5c75;
    padding-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;

    &:hover {
        color: #ffd880;
    }

    .icon {
        font-size: 22px;
        transition: transform 0.3s ease;
        color: #e3b04b;
    }

    &.active .icon {
        transform: rotate(180deg);
    }
}

.warranty-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease;
    opacity: 0;

    &.open {
        opacity: 1;
    }

    p {
        font-size: 20px;
        line-height: normal;
        color: #d1d9e6;
        margin-top: 20px;
        padding-bottom: 20px;
    }
}


/* ___ Book Content Section ___ */
/* ___ Q&A Section (General FAQ) ___ */
#qaSection {
    padding: 80px 0;
    color: #fff;

    h2 {
        color: #f7ca18;
        background: none;
        -webkit-text-fill-color: #f7ca18;
        text-transform: uppercase;
        /* font-size: 32px; */
        /* font-weight: 900; */
        letter-spacing: 1px;
        margin-bottom: 50px;
        text-align: center !important;
    }


    @media (max-width: 991px) {
        padding: 20px 0;
    }
}

#qaSection .qa-item {
    border: 1px solid rgba(114, 164, 201, 0.3);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

#qaSection .qa-item.open {
    border-color: #fff;
}

#qaSection .qa-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    background: #192342;
    transition: background-color 0.3s ease;
}

#qaSection .qa-question:hover {
    background: #192342;
}

#qaSection .qa-question h5 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.4;

    @media (max-width: 991px) {
        font-size: 22px;
    }
}

#qaSection .qa-icon {
    background: #5E82EE;
    font-size: 26px;
    color: #fff;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;

    max-width: 50px;
    width: 100%;
    max-height: 50px;
    height: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#qaSection .qa-item.open .qa-icon {
    transform: rotate(180deg);
}

#qaSection .qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#qaSection .qa-item.open .qa-answer {
    max-height: 600px;
}

#qaSection .qa-answer p {
    padding: 18px 24px 22px;
    font-size: 24px;
    color: #fff;
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid rgba(114, 164, 201, 0.2);

    @media (max-width: 991px) {
        font-size: 18px;
        line-height: normal;
    }
}




/* ___ Book Content Section ___ */
.book-content-section {

    background-color: #2E4076;
    padding: 80px 0;
    color: #fff;
    /* border-top: 1px solid #1c2b42; */
    /* border-bottom: 1px solid #1c2b42; */

    h2 {
        color: #fff;
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: #fff;
        text-transform: uppercase;
        font-size: 50px;
        font-weight: bold;

        text-align: left !important;
    }

    .book-content-title {
        text-transform: uppercase;
        font-size: 32px;
        font-weight: bold;
        color: #fff;
    }

    .book-content-box {
        /* text-align: center; */
    }
}

.content-part-title {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: normal;

    .subtext {
        font-size: 15px;
        font-weight: normal;
        color: #fff;
    }
}

.book-index-list {
    list-style-type: none;
    padding: 0;
    margin: 0;

    li {
        font-size: 24px;
        color: #fff;
        margin-bottom: 8px;
        line-height: 30px;

        .subtext {
            font-size: 20px;
            color: #fff;
        }
    }
}

.content-toggle-wrapper {
    margin: 40px 0;
}

.content-toggle {
    color: #e3b04b;
    font-size: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e3b04b;
    transition: all 0.3s;

    &:hover {
        color: #ffd880;
        border-bottom-color: #ffd880;
    }

    .icon {
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    &.active .icon {
        transform: rotate(180deg);
    }
}

.book-content-hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease;
    opacity: 0;

    &.open {
        opacity: 1;
    }
}


/* ___ Author Section ___ */
.for-author-section {
    /* background: radial-gradient(circle at right center, #1b2838 0%, #0b111a 100%); */
    padding: 80px 0;
    color: #fff;
    position: relative;

    .section-subtitle {
        color: #e3b04b;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .author-title {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .author-subtitle {
        font-size: 33px !important;
        line-height: normal;
    }

    .author-description {
        font-size: 24px;
        line-height: normal;
        color: #fff;
        margin-bottom: 30px;
    }

    .author-img {
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        width: 100%;
        max-width: 450px;
    }
}

.author-toggle {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    color: #e3b04b;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 1px solid #e3b04b;
    padding-bottom: 5px;
    cursor: pointer;
    transition: all 0.3s;

    &:hover {
        color: #ffd880;
        border-bottom-color: #ffd880;
    }

    .icon {
        font-size: 20px;
        transition: transform 0.3s ease;
        margin-left: 10px;
    }

    &.active .icon {
        transform: rotate(180deg);
    }
}

.author-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease;
    opacity: 0;

    &.open {
        opacity: 1;
    }

    p {
        font-size: 16px;
        line-height: 1.6;
        color: #d1d9e6;
        margin-top: 20px;
    }
}


/* BNP */
.bnp {
    background: #000;

    img {
        display: block;
        margin: auto;
        max-width: fit-content;
        width: 100%;
    }
}


/* ___  Separator  Footer ___ */
p.promo_footer,
a.promo_seperator {
    padding: 20px 0;
    text-align: center;
    font-family: "Gotham-Medium", sans-serif;
    font-size: 35px;
    line-height: normal;

    @media (max-width: 991px) {
        font-size: 25px;
        padding: 10px 5px;
    }

    @media (max-width: 767px) {
        font-size: 25px;
    }
}

/* ___  Footer ___ */
p.promo_footer {
    background-color: #000;
    color: #fff;
}

/* Separator */
a.promo_seperator {
    display: block;
    margin: auto;
    background-color: #000;
    text-decoration: none;
    color: #fff;

    span {
        font-family: "Gotham-Bold", sans-serif;
        color: #fff;
        text-decoration: underline;
    }
}


/* ___ Recognition Section ___ */
#recognition {
    padding: 80px 0;
    background: transparent;

    .section-title {
        color: #e3b04b;
        font-weight: bold;
        font-family: inherit;
    }

    .recognition-intro {
        font-size: 30px;
        max-width: 100%;
        color: #fff;
    }
}

.recognition-card {
    max-width: 403px;
    width: 100%;
    height: 483px;
    background-color: #2E4076;
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */

    .card-content {
        padding: 30px;
    }

    .icon-wrap {
        font-size: 24px;

        &.icon-orange {
            color: #ff914d;
        }

        &.icon-green {
            color: #00d287;
        }

        &.icon-purple {
            color: #a155b9;
        }

        &.icon-yellow {
            color: #f7ca18;
        }
    }

    h3 {
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        padding: 0;
    }

    h4 {
        font-size: 27px;
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: bold;
    }



    p.mb-1 {
        color: #fff;
        font-size: 16px;
        font-family: "Plus Jakarta Sans", sans-serif;
        min-height: 48px;
        margin-top: 20px;
    }

    a.text-decoration-none {
        color: #fff;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 0.5px;
        display: none;
    }

    .card-image {
        img {
            /* object-fit: cover; */
            max-width: 487px;
            width: 100%;
            height: 227px;
            margin: 0 auto;
        }
    }
}

.col-md-6.col-lg-5.mb-4.d-flex.revealed {
    justify-content: center;
}

@media (max-width: 991px) {
    .col-md-6.col-lg-3.mb-4.slider-card-item.revealed {
        justify-content: center;
        display: flex;
    }
}

/* ==============================
   ___ Scroll Reveal Animations ___
============================== */

/* Base hidden state */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="up"] {
    transform: translateY(24px);
}

[data-reveal="down"] {
    transform: translateY(-24px);
}

[data-reveal="left"] {
    transform: translateX(-28px);
}

[data-reveal="right"] {
    transform: translateX(28px);
}

[data-reveal="scale"] {
    transform: scale(0.95);
}

[data-reveal="fade"] {
    transform: none;
}

/* Visible state — JS adds this class */
[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* Stagger delays for sibling groups */
[data-reveal][data-delay="1"] {
    transition-delay: 0.07s;
}

[data-reveal][data-delay="2"] {
    transition-delay: 0.14s;
}

[data-reveal][data-delay="3"] {
    transition-delay: 0.21s;
}

[data-reveal][data-delay="4"] {
    transition-delay: 0.28s;
}

[data-reveal][data-delay="5"] {
    transition-delay: 0.35s;
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}