/* Hero description */

.hero-description {
    max-width: 690px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.7;
}

/* Hero feature list */

.hero-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 28px;
    max-width: 680px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.hero-list li img {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

/* Dashboard image */

.cmspost-hero-dashboard {
    position: relative;
}

.hero-dashboard-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

/* Floating dashboard status cards */

.hero-status {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 210px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    color: #151515;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.hero-status-copy {
    display: flex;
    flex-direction: column;
    color: #666666;
    font-size: 12px;
    line-height: 1.35;
}

.hero-status-copy strong {
    color: #151515;
    font-size: 13px;
    font-weight: 700;
}

.hero-status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 800;
}

.hero-status-icon.success {
    color: #238238;
    background: #e3f8e6;
}

.hero-status-icon.review {
    color: #a86f00;
    background: #fff0c9;
}

.hero-status-social {
    top: 20px;
    right: -12px;
}

.hero-status-pages {
    bottom: 18px;
    left: -20px;
}

.hero-status-reviews {
    right: -16px;
    bottom: 95px;
}

/* Responsive */

@media (max-width: 1199px) {
    .hero-list {
        gap: 12px 18px;
    }

    .hero-list li {
        font-size: 14px;
    }

    .hero-status {
        min-width: 190px;
    }
}

@media (max-width: 991px) {
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-list {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .hero-list {
        grid-template-columns: 1fr;
        width: max-content;
        max-width: 100%;
    }

    .hero-status {
        display: none;
    }
}
/* ========================================
   DESKTOP NAVIGATION ONLY
======================================== */

.header-main .main-menu11.menu-style11 > ul > li > a {
    color: rgba(255, 255, 255, 0.88) !important;
    background: transparent !important;
}

.header-main .main-menu11.menu-style11 > ul > li:last-child > a {
    color: rgba(255, 255, 255, 0.88) !important;
    background: transparent !important;
}

.header-main .main-menu11.menu-style11 > ul > li > a.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.14) !important;
}

.header-main .main-menu11.menu-style11 > ul > li > a:hover {
    color: #ffffff !important;
    background: rgba(204, 27, 255, 0.18) !important;
}

.header-main .main-menu11.menu-style11 > ul > li > a.active:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.14) !important;
}
/* ========================================
   CMSPOST BRANDED SCROLLBAR
======================================== */

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #cc1bff #090909;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #090909;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #cc1bff 0%,
        #8b2cff 55%,
        #72db3a 100%
    );
    border: 3px solid #090909;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        #db4cff 0%,
        #a044ff 55%,
        #8bea52 100%
    );
}

::-webkit-scrollbar-corner {
    background: #090909;
}
/* ========================================
   SMART IMPORT FEATURE
======================================== */

.smart-import-feature {
    position: relative;
    overflow: hidden;
}

.smart-import-feature::before {
    content: "";
    position: absolute;
    top: 80px;
    right: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(204, 27, 255, 0.08);
    filter: blur(100px);
    pointer-events: none;
}

.smart-import-intro {
    max-width: 850px;
    margin: 18px auto 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.75;
    text-align: center;
}

.smart-import-btn {
    margin-top: 32px;
}

.smart-import-image {
    position: relative;
    padding: 22px;
}

.smart-import-image > img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(116, 41, 255, 0.14);
    border-radius: 24px;
    box-shadow:
        0 28px 70px rgba(26, 18, 46, 0.14),
        0 0 70px rgba(204, 27, 255, 0.06);
}

.smart-import-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border: 1px solid rgba(204, 27, 255, 0.16);
    border-radius: 14px;
    color: #141423;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 16px 40px rgba(26, 18, 46, 0.14);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.smart-import-badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #ffffff;
    background: #9818e7;
    font-size: 12px;
    font-weight: 800;
}

.badge-scan {
    top: 2px;
    left: 0;
}

.badge-review {
    top: 42%;
    right: -5px;
}

.badge-import {
    bottom: 2px;
    left: 12%;
}

@media (max-width: 991px) {
    .smart-import-image {
        max-width: 850px;
        margin: 50px auto 0;
    }
}

@media (max-width: 767px) {
    .smart-import-intro {
        font-size: 16px;
        text-align: left;
    }

    .smart-import-image {
        padding: 0;
    }

    .smart-import-badge {
        display: none;
    }
}
/* ========================================
   MOBILE CTA — ALWAYS VISIBLE
======================================== */

@media (max-width: 991px) {
    .mobile-menu .mobile-cta {
        display: block !important;
        width: 100% !important;
        margin: 22px 0 0 !important;
        padding: 0 !important;
        border: 0 !important;
    }

    .mobile-menu .mobile-cta > a.btn-style1 {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        min-height: 58px !important;
        padding: 7px 8px 7px 26px !important;
        border: 0 !important;
        border-radius: 999px !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        background: linear-gradient(
            90deg,
            #7b19e8 0%,
            #c718ed 100%
        ) !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        text-decoration: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: 0 12px 30px rgba(139, 28, 232, 0.24) !important;
    }

    .mobile-menu .mobile-cta > a.btn-style1::before,
    .mobile-menu .mobile-cta > a.btn-style1::after {
        display: none !important;
        content: none !important;
    }

    .mobile-menu .mobile-cta > a.btn-style1 span {
        position: static !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 44px !important;
        width: 44px !important;
        height: 44px !important;
        margin: 0 !important;
        border-radius: 50% !important;
        background: #111111 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .mobile-menu .mobile-cta > a.btn-style1 span img {
        display: block !important;
        width: 16px !important;
        height: 16px !important;
        margin: 0 !important;
        filter: brightness(0) invert(1) !important;
    }

    .mobile-menu .mobile-cta > a.btn-style1:hover,
    .mobile-menu .mobile-cta > a.btn-style1:focus,
    .mobile-menu .mobile-cta > a.btn-style1:active {
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
        background: linear-gradient(
            90deg,
            #6f12d8 0%,
            #b610da 100%
        ) !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
}