/* ============================================================
   GLOBAL FONT — Outfit for entire site
   ============================================================ */

body {
    font-family: 'Outfit', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif !important;
}

p, a, span, li, td, th, label, input, textarea, select, button {
    font-family: 'Outfit', sans-serif;
}

/* ============================================================
   MODERN HEADER — Flat Transparent Dark Theme
   ============================================================ */

#header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#header .header-wrapper {
    padding: 0;
}

#header .wsmainfull {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3) !important;
    border-radius: 0 !important;
    margin: 0 !important;
    max-width: 100%;
    box-shadow: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#header .wsmainfull.scroll,
#header.scroll .wsmainfull,
.theme--dark .tra-menu .wsmainfull.scroll,
.theme--dark .tra-menu.dark-scroll .wsmainfull.scroll {
    background: #0c0118 !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom-color: rgba(139, 92, 246, 0.08) !important;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3) !important;
}

#header .wsmainwp {
    max-width: 1280px;
    padding: 0 24px;
}

/* Text Logo */
.oz-text-logo {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.oz-text-logo:hover {
    color: #fff !important;
    text-decoration: none !important;
}

#header .desktoplogo {
    line-height: 64px;
    flex-shrink: 0;
}

/* GoPidge Layout: logo left, nav center, CTA right */
#header .wsmainwp {
    display: flex;
    align-items: center;
    position: relative;
}

#header .wsmenu {
    flex: 1;
    display: flex;
    justify-content: center;
}

#header .wsmenu > .wsmenu-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

#header .wsmenu > .wsmenu-list > li.nav-cta {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

/* Nav Links */
#header .wsmenu > .wsmenu-list > li > a {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 8px 18px;
    line-height: 48px;
    border-radius: 0;
    background: transparent !important;
    transition: all 0.25s ease;
}

#header .wsmenu > .wsmenu-list > li > a:hover,
#header .wsmenu > .wsmenu-list > li:hover > a {
    color: #fff !important;
    background: transparent !important;
}

/* Dropdown Arrow */
#header .wsmenu > .wsmenu-list > li > a .wsarrow:after {
    border-top-color: rgba(255, 255, 255, 0.5);
    top: 30px;
    right: 8px;
    transition: transform 0.25s ease;
}

#header .wsmenu > .wsmenu-list > li:hover > a .wsarrow:after {
    border-top-color: #fff;
}

/* Dropdown Menu */
#header .wsmenu > .wsmenu-list > li > ul.sub-menu {
    background: rgba(15, 5, 40, 0.92) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(124, 58, 237, 0.2) !important;
    border-radius: 12px !important;
    padding: 8px !important;
    min-width: 220px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 30px rgba(124, 58, 237, 0.08), inset 0 1px 0 rgba(124, 58, 237, 0.1);
    top: 64px;
    animation: headerDropIn 0.2s ease;
}

@keyframes headerDropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

#header .wsmenu > .wsmenu-list > li > ul.sub-menu > li > a {
    font-family: 'Outfit', sans-serif;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 16px;
    font-weight: 400;
    padding: 9px 10px !important;
    border-radius: 8px;
    transition: background 0.2s ease;
    letter-spacing: 0.01em;
}

#header .wsmenu > .wsmenu-list > li > ul.sub-menu > li > a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

/* Product Dropdown — Icon Style */
#header .wsmenu > .wsmenu-list > li > ul.sub-menu--icons {
    min-width: 280px;
    padding: 8px !important;
}

/* Category Label */
.dd-category-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 12px 6px !important;
    pointer-events: none;
}

#header .wsmenu > .wsmenu-list > li > ul.sub-menu--icons > li > a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 9px 12px !important;
    border-radius: 8px;
}

#header .wsmenu > .wsmenu-list > li > ul.sub-menu--icons > li > a:hover {
    padding-left: 12px !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

.dd-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

#header .wsmenu > .wsmenu-list > li > ul.sub-menu--icons > li > a:hover .dd-icon {
    transform: scale(1.05);
}

.dd-icon svg {
    stroke: currentColor;
    width: 15px;
    height: 15px;
}

.dd-icon--purple {
    background: rgba(124, 58, 237, 0.18);
    color: #a78bfa;
}

.dd-icon--blue {
    background: rgba(59, 130, 246, 0.18);
    color: #93bbfd;
}

.dd-icon--green {
    background: rgba(16, 185, 129, 0.18);
    color: #6ee7b7;
}

.dd-icon--amber {
    background: rgba(245, 158, 11, 0.18);
    color: #fbbf24;
}

.dd-icon--teal {
    background: rgba(29, 158, 117, 0.18);
    color: #34d399;
}

/* Dropdown Badges */
.dd-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    line-height: 1.2;
}

.dd-badge--green {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.dd-badge--amber {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.dd-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
}

.dd-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.01em;
}

.dd-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.01em;
}

#header .wsmenu > .wsmenu-list > li > ul.sub-menu--icons > li > a:hover .dd-title {
    color: #fff;
}

#header .wsmenu > .wsmenu-list > li > ul.sub-menu--icons > li > a:hover .dd-desc {
    color: rgba(255, 255, 255, 0.55);
}

/* Resources Mega Menu — 3 Column Layout */
#header .wsmenu > .wsmenu-list > li > .wsmegamenu.mega--resources {
    width: 580px !important;
    right: 0;
    left: auto !important;
    padding: 18px 20px !important;
    background: rgba(15, 5, 40, 0.92) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(124, 58, 237, 0.2) !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(124, 58, 237, 0.08), inset 0 1px 0 rgba(124, 58, 237, 0.1) !important;
    animation: headerDropIn 0.25s ease forwards;
}

.mega--resources .row {
    margin: 0 !important;
}

.mega--resources .mega-col {
    padding: 0 12px !important;
}

.mega--resources .mega-col + .mega-col {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 10px;
    padding: 0 10px;
}

.mega-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background 0.2s ease;
}

.mega-item:hover {
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none !important;
}

.mega-item:hover .dd-title { color: #fff; }
.mega-item:hover .dd-desc { color: rgba(255, 255, 255, 0.55); }
.mega-item:hover .dd-icon { transform: scale(1.05); }

.mega-item--highlight {
    background: rgba(29, 158, 117, 0.08);
    border: 1px solid rgba(29, 158, 117, 0.15);
}

.mega-item--highlight:hover {
    background: rgba(29, 158, 117, 0.14) !important;
}

/* Mega menu responsive — stack on mobile */
@media (max-width: 991px) {
    #header .wsmenu > .wsmenu-list > li > .wsmegamenu.mega--resources {
        width: 100% !important;
        position: relative;
        padding: 10px 0 !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    .mega--resources .row {
        flex-direction: column;
    }
    .mega--resources .mega-col {
        padding: 8px 0 !important;
        border-left: none !important;
    }
    .mega--resources .mega-col + .mega-col {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 12px !important;
    }
}

/* Client Portal CTA — Rounded Pill (GoPidge style) */
#header .wsmenu > .wsmenu-list > li.nav-cta > a {
    background: #7C3AED !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 10px 24px !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600 !important;
    font-size: 14px !important;
    letter-spacing: 0.01em;
    line-height: 20px !important;
    margin: 0;
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
}

#header .wsmenu > .wsmenu-list > li.nav-cta > a:hover {
    background: #6D28D9 !important;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.45);
    transform: translateY(-1px);
}

/* Active Page Indicator */
#header .wsmenu > .wsmenu-list > li.active > a {
    color: #fff !important;
}

/* Mobile Header */
#header .wsmobileheader {
    background: rgba(12, 1, 24, 0.95) !important;
    height: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

#header .wsmobileheader .smllogo {
    margin-top: 0 !important;
    padding-left: 16px !important;
    line-height: 60px;
    height: 60px;
}

#header .wsmobileheader .smllogo .oz-text-logo {
    font-size: 20px;
}

#header .wsmobileheader .smllogo img {
    max-height: 28px;
    vertical-align: middle;
}

#header .wsmobileheader .wsanimated-arrow {
    margin: 18px 16px 0 0 !important;
}

#header .wsanimated-arrow span,
#header .wsanimated-arrow span:before,
#header .wsanimated-arrow span:after {
    background: #fff !important;
}

/* Mobile Menu Panel — Full-Screen Overlay */
@media (max-width: 991px) {
    #header .wsmainfull {
        margin: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        background: transparent !important;
    }

    #header .wsmainwp {
        display: block;
    }

    #header .wsmenu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100% !important;
        height: 100vh !important;
        background: #0c0118 !important;
        visibility: hidden;
        opacity: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        margin: 0;
        z-index: 9999;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .wsactive #header .wsmenu {
        visibility: visible;
        opacity: 1;
    }

    #header .wsmenu > .wsmenu-list {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 80px 0 40px 0 !important;
        background: transparent !important;
        text-align: left;
        float: none !important;
    }

    #header .wsmenu > .wsmenu-list > li {
        display: block !important;
        width: 100% !important;
        float: none !important;
        border-right: none !important;
    }

    #header .wsmenu > .wsmenu-list > li > a {
        font-size: 16px !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.85) !important;
        line-height: 24px !important;
        padding: 16px 28px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    #header .wsmenu > .wsmenu-list > li > a:hover,
    #header .wsmenu > .wsmenu-list > li:hover > a {
        color: #fff !important;
        background: rgba(124, 58, 237, 0.08) !important;
    }

    #header .wsmenu > .wsmenu-list > li > ul.sub-menu {
        background: rgba(12, 1, 24, 0.6) !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        animation: none !important;
        position: relative !important;
        top: 0 !important;
        width: 100% !important;
        padding: 0 !important;
    }

    #header .wsmenu > .wsmenu-list > li > ul.sub-menu > li > a {
        padding: 14px 40px !important;
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.6) !important;
        border-radius: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    }

    #header .wsmenu > .wsmenu-list > li > ul.sub-menu > li > a:hover {
        color: #fff !important;
        background: rgba(124, 58, 237, 0.1) !important;
        padding-left: 40px !important;
    }

    /* Mobile — Icon Dropdown */
    .dd-category-label {
        padding: 10px 28px 4px !important;
    }

    #header .wsmenu > .wsmenu-list > li > ul.sub-menu--icons > li > a {
        display: flex !important;
        align-items: center;
        gap: 14px;
        padding: 12px 28px !important;
    }

    #header .wsmenu > .wsmenu-list > li > ul.sub-menu--icons > li > a:hover {
        padding-left: 28px !important;
    }

    .dd-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        border-radius: 8px;
    }

    #header .wsmenu > .wsmenu-list > li.nav-cta {
        position: static !important;
        transform: none !important;
        padding: 20px 28px 12px !important;
    }

    #header .wsmenu > .wsmenu-list > li.nav-cta > a {
        display: block !important;
        text-align: center;
        margin: 0 !important;
        padding: 14px 24px !important;
        line-height: 24px !important;
        font-size: 15px !important;
        border-radius: 50px !important;
    }

    #header .wsmenu > .wsmenu-list > li > .wsmenu-click {
        height: 56px !important;
    }

    #header .wsmenu .overlapblackbg {
        display: none !important;
    }

    #header .wsmobileheader {
        z-index: 10000 !important;
    }

    .wsactive #header .wsmobileheader,
    .wsactive .wsmobileheader {
        margin-right: 0 !important;
    }

    .wsactive .wsmenucontainer {
        margin-right: 0 !important;
    }
}

/* ============================================================
   HERO SECTION - Badge, CTA, Typography
   ============================================================ */

.hero-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #a78bfa;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.8) !important;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.hero-cta-group .btn--theme {
    border-color: #7C3AED !important;
    background-color: #7C3AED !important;
    border-radius: 50px !important;
}

.hero-cta-group .btn--theme:hover {
    border-color: #6D28D9 !important;
    background-color: #6D28D9 !important;
}

.hero-cta-group .btn--tra-white {
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(139, 92, 246, 0.25) !important;
    background: transparent !important;
    border-radius: 50px !important;
}

.hero-cta-group .btn--tra-white:hover {
    color: #fff !important;
    border-color: rgba(139, 92, 246, 0.5) !important;
    background-color: rgba(139, 92, 246, 0.08) !important;
}

.hero-sub-note {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 0 !important;
    margin-top: 4px;
}

.hero-sub-note .flaticon-check {
    color: #7C3AED !important;
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .hero-section-badge {
        font-size: 12px;
        padding: 8px 18px;
    }
}

/* ============================================================
   HERO DARK BACKGROUND & PRODUCT IMAGE
   ============================================================ */

.hero-dark {
    background: #0c0118 !important;
    padding-top: 120px;
    padding-bottom: 80px;
}

/* Mockup Scene — perspective container */
.mockup-scene {
    position: relative;
    margin-top: 50px;
    perspective: 1200px;
}

/* Radial glow behind the dashboard */
.mockup-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(0, 180, 120, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Dashboard mockup card */
.mockup-wrapper {
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transform-origin: center center;
    will-change: transform, opacity;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.12);
    transform: perspective(1200px) rotateX(25deg) scale(0.88);
    opacity: 0.7;
}

.hero-product-screenshot {
    width: 100%;
    display: block;
    border-radius: 15px;
}

@media (max-width: 991px) {
    .mockup-scene {
        margin-top: 30px;
        perspective: none;
    }

    .mockup-glow {
        display: none;
    }

    .mockup-wrapper {
        transform: none !important;
        opacity: 1 !important;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    }

    .hero-product-screenshot {
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .hero-dark {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .mockup-wrapper {
        border-radius: 10px;
    }

    .hero-product-screenshot {
        border-radius: 10px;
    }
}

/* ============================================================
   GENERAL
   ============================================================ */

.footer-logo {
    width: 200px;
    height: auto;
}

.payment-logo img {
    height: 32px;
    width: 45px;
}


/* use for products screenshot gallery */
#owl-demo .item img {
    display: block;
    width: 100%;
    height: auto;
}

.main-content {
    position: relative;

    .owl-theme {
        .custom-nav {
            position: absolute;
            top: 40%;
            left: 0;
            right: 0;

            .owl-prev,
            .owl-next {
                position: absolute;
                height: 50px;
                color: inherit;
                background: none;
                border: none;
                z-index: 100;
                padding-top: 9px;
            }

            .owl-prev {
                left: 70px;
            }

            .owl-next {
                right: 70px;
            }
        }
    }
}



/* ============================================================
   QUICK START SECTION
   ============================================================ */

.qs-section {
    background: #0c0118;
}

.qs-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.qs-arrow {
    color: #7C3AED;
    margin-right: 6px;
}

/* Terminal Frame */
.qs-terminal {
    background: #16162a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Title Bar */
.qs-titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: #12121f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    gap: 16px;
}

.qs-dots {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 54px;
}

.qs-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.qs-dot-red { background: #ff5f57; border: 1px solid #e0443e; }
.qs-dot-yellow { background: #febc2e; border: 1px solid #dea123; }
.qs-dot-green { background: #28c840; border: 1px solid #1aab29; }

/* Tabs */
.qs-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.qs-tab {
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.qs-tab:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.12);
}

.qs-tab.active {
    color: #fff;
    background: #7C3AED;
}

.qs-step-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    min-width: 60px;
    text-align: right;
}

/* Panels */
.qs-panel {
    display: none;
    padding: 30px;
}

.qs-panel.active {
    display: block;
}

.qs-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
}

/* Code Blocks */
.qs-code-block {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid rgba(138, 92, 246, 0.6);
    padding: 14px 18px;
    margin-bottom: 12px;
    border-radius: 6px;
    font-family: 'Courier New', Consolas, monospace;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    overflow-x: auto;
    word-break: break-all;
}

.qs-prompt {
    color: #7C3AED;
    font-weight: 700;
    margin-right: 8px;
    user-select: none;
}

/* Config Boxes */
.qs-config-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.qs-config-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.qs-config-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.qs-config-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.qs-config-val {
    color: #7C3AED;
    font-weight: 600;
}

/* Footer Row */
.qs-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    gap: 16px;
}

.qs-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.qs-note-icon {
    color: #7C3AED;
    margin-right: 6px;
}

.qs-copy-btn {
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #9333ea;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.qs-copy-btn:hover {
    background: #7c22d4;
    transform: translateY(-1px);
}

.qs-copy-btn.copied {
    background: #28c840;
}

/* Step Dots */
.qs-dots-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
    margin-bottom: 14px;
}

.qs-dot-step {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #28c840;
    opacity: 0.3;
    transition: all 0.3s ease;
    cursor: pointer;
}

.qs-dot-step.active {
    opacity: 1;
    width: 24px;
    border-radius: 5px;
    background: #7C3AED;
}

.qs-dot-step.completed {
    opacity: 1;
    background: #28c840;
}

.qs-platform-note {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .qs-titlebar {
        flex-direction: column;
        gap: 10px;
        padding: 10px 14px;
    }

    .qs-dots {
        display: none;
    }

    .qs-tabs {
        gap: 2px;
    }

    .qs-tab {
        padding: 5px 10px;
        font-size: 11px;
    }

    .qs-step-count {
        text-align: center;
    }

    .qs-panel {
        padding: 20px 16px;
    }

    .qs-code-block {
        font-size: 11px;
        padding: 10px 12px;
    }

    .qs-config-row {
        flex-direction: column;
        gap: 8px;
    }

    .qs-footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .qs-heading {
        font-size: 1.5rem;
    }
}

/* ============================================================
   SOFTWARE SCREENSHOTS GALLERY
   ============================================================ */

.ss-section {
    background: #0c0118;
    background-image: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(124,58,237,0.08) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

/* Badge */
.ss-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #a78bfa;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    margin-bottom: 18px;
}

.ss-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.ss-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    margin: 0 auto;
}

/* Filter Pills */
.ss-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ss-filter {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ss-filter:hover {
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.ss-filter.active {
    color: #fff;
    background: #7C3AED;
    border-color: #7C3AED;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
    transform: scale(1.04);
}

/* ---- Gallery Layout ---- */
.ss-gallery {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* ---- Spotlight Panel (left ~65%) ---- */
.ss-spotlight {
    flex: 1;
    min-width: 0;
    position: relative;
}

.ss-spot-frame {
    background: #150a26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 60px rgba(124, 58, 237, 0.08);
    transition: box-shadow 0.4s ease;
}

.ss-spot-frame:hover {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.45), 0 0 80px rgba(124, 58, 237, 0.12);
}

.ss-spot-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ss-spot-dots {
    display: flex;
    gap: 6px;
}

.ss-dot-r, .ss-dot-y, .ss-dot-g {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.ss-dot-r { background: #ff5f57; }
.ss-dot-y { background: #febc2e; }
.ss-dot-g { background: #28c840; }

.ss-spot-url {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Outfit', sans-serif;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.04);
    padding: 3px 14px;
    border-radius: 4px;
}

.ss-spot-viewport {
    line-height: 0;
    overflow: hidden;
    position: relative;
}

.ss-spot-viewport img {
    width: 100%;
    display: block;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ss-spot-viewport img.ss-spot-entering {
    opacity: 0;
    transform: scale(0.98) translateY(8px);
}

/* Spotlight Footer */
.ss-spot-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px 0;
}

.ss-spot-name {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: opacity 0.3s ease;
}

/* Category Tags */
.ss-spot-tag, .ss-thumb-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 4px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    transition: opacity 0.3s ease;
}

.ss-tag-management {
    color: #c4b5fd;
    background: rgba(139, 92, 246, 0.12);
}
.ss-tag-billing {
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.12);
}
.ss-tag-reports {
    color: #fcd34d;
    background: rgba(245, 158, 11, 0.12);
}
.ss-tag-settings {
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.12);
}
.ss-tag-logs {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.12);
}
.ss-tag-network {
    color: #67e8f9;
    background: rgba(6, 182, 212, 0.12);
}
.ss-tag-inventory {
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.12);
}

/* Navigation Arrows */
.ss-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(14, 11, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ss-arrow:hover {
    background: rgba(124, 58, 237, 0.55);
    border-color: rgba(124, 58, 237, 0.6);
    color: #fff;
    transform: translateY(-100%) scale(1.12);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.ss-arrow:active {
    transform: translateY(-100%) scale(0.95);
}

.ss-arrow-left { left: 12px; }
.ss-arrow-right { right: 12px; }

/* ---- Thumbnail Rail (right) ---- */
.ss-rail {
    width: 240px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 680px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(124, 58, 237, 0.3) transparent;
    scroll-behavior: smooth;
}

.ss-rail::-webkit-scrollbar {
    width: 4px;
}
.ss-rail::-webkit-scrollbar-track {
    background: transparent;
}
.ss-rail::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.3);
    border-radius: 4px;
}

/* Thumbnail Card */
.ss-thumb {
    cursor: pointer;
    border-radius: 10px;
    border: 1.5px solid transparent;
    padding: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.ss-thumb:hover {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.15);
}

.ss-thumb.ss-thumb-active {
    border-color: #7C3AED;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.25), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.ss-thumb.ss-thumb-hidden {
    display: none;
}

.ss-thumb-frame {
    background: #150a26;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.35s ease;
}

.ss-thumb:hover .ss-thumb-frame {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.ss-thumb-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 8px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ss-tdot-r, .ss-tdot-y, .ss-tdot-g {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}
.ss-tdot-r { background: #ff5f57; }
.ss-tdot-y { background: #febc2e; }
.ss-tdot-g { background: #28c840; }

.ss-thumb-img {
    line-height: 0;
    overflow: hidden;
}

.ss-thumb-img img {
    width: 100%;
    display: block;
    transition: filter 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.82);
}

.ss-thumb:hover .ss-thumb-img img {
    filter: brightness(0.95);
    transform: scale(1.03);
}

.ss-thumb.ss-thumb-active .ss-thumb-img img {
    filter: brightness(1);
}

/* Thumbnail Info */
.ss-thumb-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 4px 3px;
    gap: 4px;
}

.ss-thumb-name {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ss-thumb-tag {
    font-size: 9px;
    padding: 2px 7px;
    flex-shrink: 0;
}

/* ---- Progress Dots ---- */
.ss-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ss-pdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ss-pdot:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.3);
}

.ss-pdot.ss-pdot-active {
    width: 24px;
    border-radius: 10px;
    background: #7C3AED;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .ss-gallery {
        flex-direction: column;
    }

    .ss-rail {
        width: 100%;
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 10px;
        padding-right: 0;
        padding-bottom: 6px;
        scrollbar-width: thin;
    }

    .ss-rail::-webkit-scrollbar {
        height: 4px;
        width: auto;
    }

    .ss-thumb {
        min-width: 160px;
        max-width: 160px;
    }

    .ss-title {
        font-size: 1.8rem;
    }

    .ss-arrow {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .ss-filters {
        gap: 6px;
    }

    .ss-filter {
        padding: 6px 14px;
        font-size: 12px;
    }

    .ss-title {
        font-size: 1.5rem;
    }

    .ss-thumb {
        min-width: 140px;
        max-width: 140px;
    }

    .ss-arrow {
        width: 32px;
        height: 32px;
    }

    .ss-arrow svg {
        width: 14px;
        height: 14px;
    }

    .ss-spot-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* ============================================================
   PRODUCT PAGE SCREENSHOT GALLERY (ZalPro / ABC Syslog)
   ============================================================ */
.screenshots-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.screenshot-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.screenshot-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.screenshot-item:hover img {
    transform: scale(1.03);
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.overlay-content {
    padding: 14px 16px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.screenshot-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 1100px;
    width: 90%;
    margin: auto;
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: background 0.2s ease;
    line-height: 1;
    z-index: 10000;
}

.close-lightbox:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .screenshots-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .screenshots-masonry {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .close-lightbox {
        top: 12px;
        right: 12px;
        font-size: 28px;
        width: 36px;
        height: 36px;
    }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.ft-section {
    background: #0c0118;
}

.ft-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #a78bfa;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    margin-bottom: 18px;
}

.ft-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.ft-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 620px;
    margin: 0 auto;
}

/* Category */
.ft-category {
    margin-bottom: 56px;
}

.ft-category:last-child {
    margin-bottom: 0;
}

.ft-cat-heading {
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    padding-left: 16px;
    border-left: 3px solid #7C3AED;
}

/* 3-column border grid */
.ft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ft-card {
    padding: 30px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.3s ease;
}

.ft-card:hover {
    background: rgba(124, 58, 237, 0.04);
}

/* top border on first row (items 1-3) */
.ft-card:nth-child(-n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* left border on first column */
.ft-card:nth-child(3n+1) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

/* Card Icon */
.ft-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.1);
    margin-bottom: 18px;
}

.ft-icon span {
    font-size: 20px;
    color: #7C3AED;
}

/* Card Content */
.ft-card-title {
    font-size: 16.5px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.ft-card-desc {
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
}

/* --- Responsive --- */

/* 2-column at ≤991px */
@media (max-width: 991px) {
    .ft-title {
        font-size: 1.8rem;
    }

    .ft-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* reset 3-col borders */
    .ft-card:nth-child(-n+3) {
        border-top: none;
    }
    .ft-card:nth-child(3n+1) {
        border-left: none;
    }

    /* top border on first row (items 1-2) */
    .ft-card:nth-child(-n+2) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    /* left border on first column */
    .ft-card:nth-child(2n+1) {
        border-left: 1px solid rgba(255, 255, 255, 0.12);
    }
}

/* 1-column at ≤576px */
@media (max-width: 576px) {
    .ft-title {
        font-size: 1.5rem;
    }

    .ft-grid {
        grid-template-columns: 1fr;
    }

    /* reset 2-col borders */
    .ft-card:nth-child(-n+2) {
        border-top: none;
    }
    .ft-card:nth-child(2n+1) {
        border-left: none;
    }

    /* top border only on first item */
    .ft-card:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    /* left border on all */
    .ft-card {
        border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    .ft-card {
        padding: 24px 20px;
    }

    .ft-category {
        margin-bottom: 40px;
    }
}

/* ============================================================
   PRICING SECTION
   ============================================================ */

.pr-section {
    background: #0c0118;
}

/* Toggle */
.pr-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.pr-toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s;
}

.pr-toggle-label.pr-toggle-active {
    color: #fff;
}

.pr-switch {
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.pr-switch-knob {
    width: 18px;
    height: 18px;
    background: #7C3AED;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: left 0.3s;
}

.pr-switch.active .pr-switch-knob {
    left: 22px;
}

/* Discount Note */
.pr-discount-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Cloud tagline */
.pr-cloud-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.pr-cloud-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

/* Pricing Grid */
.pr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* 3-column pricing grid (for ABC Syslog) */
.pr-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Pricing Card */
.pr-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 40px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.3s;
}

.pr-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

/* Featured Card */
.pr-card-featured {
    border-color: rgba(124, 58, 237, 0.3);
    background: rgba(124, 58, 237, 0.04);
}

.pr-card-featured:hover {
    border-color: rgba(124, 58, 237, 0.5);
}

.pr-badge-popular {
    position: absolute;
    top: -1px;
    right: 24px;
    background: #7C3AED;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 0 0 6px 6px;
    letter-spacing: 0.3px;
}

/* Card Head */
.pr-card-head {
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.18);
}

.pr-plan-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.pr-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.pr-currency {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.pr-amount {
    font-size: 54px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -1px;
}

.pr-amount-text {
    font-size: 28px;
    letter-spacing: 0;
}

.pr-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 2px;
}

/* License Fee Pill */
.pr-license-line {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    background: transparent;
}

.pr-license-line strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* Per User / Month Line */
.pr-per-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.pr-per-user-price {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #a78bfa;
    padding: 5px 14px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.06);
}

/* Features List */
.pr-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    flex: 1;
}

.pr-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.65);
    padding: 8px 0;
}

.pr-features li svg {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    padding: 7px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    stroke: rgba(255, 255, 255, 0.35);
}

/* Best Choice card – bright icon circles */
.pr-card-featured .pr-features li svg {
    border-color: rgba(124, 58, 237, 0.35);
    background: rgba(124, 58, 237, 0.1);
    stroke: #7C3AED;
}

/* Button */
.pr-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: auto;
}

.pr-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.pr-btn-featured {
    color: #fff;
    background: #7C3AED;
    border-color: #7C3AED;
}

.pr-btn-featured:hover {
    color: #fff;
    background: #6D28D9;
    border-color: #6D28D9;
}

/* Multi-Year Pricing Table */
.pr-multiyear-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.pr-multiyear-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}
.pr-multiyear-table {
    width: 100%;
    overflow-x: auto;
}

.pr-pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.pr-pricing-table thead {
    background: rgba(255, 255, 255, 0.03);
}

.pr-table-header {
    padding: 20px 16px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pr-table-users {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
    text-transform: none;
}

.pr-pricing-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pr-pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pr-table-pack {
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.pr-table-rate {
    padding: 18px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
}

.pr-discount-20 {
    color: #fb923c !important;
    font-weight: 500;
}

.pr-discount-30 {
    color: #60a5fa !important;
    font-weight: 500;
}

.pr-table-price {
    padding: 18px 16px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.pr-price-highlight {
    color: #fb923c !important;
}

.pr-price-highlight-blue {
    color: #60a5fa !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .pr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pr-multiyear-table {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .pr-pricing-table {
        min-width: 800px;
    }
}

@media (max-width: 767px) {
    .pr-grid,
    .pr-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .pr-grid,
    .pr-grid-3 {
        grid-template-columns: 1fr;
    }

    .pr-amount {
        font-size: 42px;
    }

    .pr-card {
        padding: 32px 24px;
    }
}

/* ============================================================
   ZALULTRA RECOMMENDATION NOTICE
   ============================================================ */

.zalultra-notice-banner {
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-left: 4px solid #7C3AED;
    border-radius: 4px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.zalultra-notice-banner:hover {
    box-shadow: none;
    border-left-color: #7C3AED;
}

.notice-icon-wrapper {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #7C3AED;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: none;
}

.notice-text {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.notice-highlight {
    color: #7C3AED;
    font-weight: 600;
}

.notice-cta {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #7C3AED;
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: none;
    box-shadow: none;
}

.notice-cta:hover {
    background: #6d28d9;
    color: #fff !important;
    text-decoration: none !important;
    transform: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 767px) {
    .zalultra-notice-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .notice-text {
        font-size: 14px;
    }

    .notice-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   WHATSAPP CONTACT SECTION
   ============================================================ */

.whatsapp-contact-section {
    padding: 80px 0;
    background: #0c0118;
}

.whatsapp-contact-card {
    background: rgba(124, 58, 237, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 36px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-contact-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
    text-decoration: none;
}

.wa-card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.wa-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.wa-icon-box {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    transition: all 0.3s ease;
}

.whatsapp-contact-card:hover .wa-icon-box {
    background: rgba(124, 58, 237, 0.2);
    color: #c4b5fd;
}

.wa-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.wa-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

.wa-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.wa-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 50px;
}

.wa-dot {
    width: 7px;
    height: 7px;
    background: #34d399;
    border-radius: 50%;
    animation: waDotPulse 2s ease-in-out infinite;
}

@keyframes waDotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
    50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(52, 211, 153, 0); }
}

.wa-status-text {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #34d399;
    letter-spacing: 0.3px;
}

.wa-btn-visual {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #7C3AED;
    border-radius: 10px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-contact-card:hover .wa-btn-visual {
    background: #6D28D9;
    transform: translateX(2px);
}

/* Responsive */
@media (max-width: 991px) {
    .whatsapp-contact-card {
        padding: 32px 28px;
        gap: 24px;
    }
    .wa-heading {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .whatsapp-contact-section {
        padding: 60px 0;
    }
    .whatsapp-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
    }
    .wa-left {
        flex-direction: column;
        text-align: center;
    }
    .wa-heading {
        font-size: 18px;
    }
    .wa-right {
        align-items: center;
        width: 100%;
    }

    .whatsapp-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   COMPARISON SECTION
   ============================================================ */

.cmp-section {
    background: #0c0118;
}

/* Table Container */
.cmp-table {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
}

/* Header */
.cmp-header {
    display: grid;
    grid-template-columns: 1fr 160px 160px 160px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cmp-header .cmp-col {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.cmp-header .cmp-feature-col {
    align-items: flex-start;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cmp-product-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.cmp-product-tag {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.12);
    padding: 2px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cmp-tag-active {
    color: #7C3AED;
    background: rgba(124, 58, 237, 0.12);
}

/* Row */
.cmp-row {
    display: grid;
    grid-template-columns: 1fr 160px 160px 160px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.cmp-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.cmp-row .cmp-col {
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cmp-row .cmp-feature-col {
    align-items: flex-start;
    justify-content: center;
}

/* Feature Info */
.cmp-feature-name {
    font-size: 16.5px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.cmp-feature-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Status Indicators */
.cmp-status {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cmp-status.cmp-yes {
    background: rgba(124, 58, 237, 0.12);
    color: #7C3AED;
}

.cmp-status.cmp-limited {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
}

.cmp-status.cmp-no {
    background: rgba(248, 113, 113, 0.12);
    color: #f87171;
}

.cmp-status-text {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* Ultra Column Highlight */
.cmp-header .cmp-ultra-col,
.cmp-row .cmp-ultra-col,
.cmp-footer .cmp-ultra-col {
    background: rgba(124, 58, 237, 0.03);
    border-left: 1px solid rgba(124, 58, 237, 0.08);
}

.cmp-header .cmp-other-col,
.cmp-row .cmp-other-col,
.cmp-footer .cmp-other-col {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.cmp-header .cmp-pro-col,
.cmp-row .cmp-pro-col,
.cmp-footer .cmp-pro-col {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer */
.cmp-footer {
    display: grid;
    grid-template-columns: 1fr 160px 160px 160px;
    background: rgba(255, 255, 255, 0.02);
}

.cmp-footer .cmp-col {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmp-footer .cmp-feature-col {
    justify-content: flex-start;
}

.cmp-footer-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.cmp-upgrade-btn {
    display: inline-block;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: #7C3AED;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.cmp-upgrade-btn:hover {
    background: #6D28D9;
    color: #fff;
    text-decoration: none;
}

/* Legend */
.cmp-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
}

.cmp-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 991px) {
    .cmp-header,
    .cmp-row,
    .cmp-footer {
        grid-template-columns: 1fr 130px 130px 130px;
    }

    .cmp-header .cmp-col,
    .cmp-row .cmp-col,
    .cmp-footer .cmp-col {
        padding: 16px 16px;
    }
}

@media (max-width: 767px) {
    .cmp-header,
    .cmp-row,
    .cmp-footer {
        grid-template-columns: 1fr 100px 100px 100px;
    }

    .cmp-header .cmp-col,
    .cmp-row .cmp-col,
    .cmp-footer .cmp-col {
        padding: 14px 12px;
    }

    .cmp-product-name {
        font-size: 13px;
    }

    .cmp-feature-name {
        font-size: 15px;
    }

    .cmp-feature-desc {
        display: none;
    }

    .cmp-status-text {
        font-size: 10px;
    }

    .cmp-status {
        width: 24px;
        height: 24px;
    }

    .cmp-legend {
        gap: 14px;
        flex-wrap: wrap;
    }

    .cmp-upgrade-btn {
        padding: 6px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cmp-header,
    .cmp-row,
    .cmp-footer {
        grid-template-columns: 1fr 70px 70px 70px;
    }

    .cmp-product-tag {
        display: none;
    }

    .cmp-status-text {
        display: none;
    }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
    background: #0c0118;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

/* FAQ Item */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
    margin-bottom: 8px;
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.15);
}

.faq-item.active {
    border-color: rgba(124, 58, 237, 0.25);
    background: rgba(124, 58, 237, 0.03);
}

/* Trigger Button */
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    font-size: 16.5px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.faq-item.active .faq-icon {
    background: rgba(124, 58, 237, 0.15);
    color: #7C3AED;
    transform: rotate(45deg);
}

/* Answer Panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 20px 18px;
}

.faq-answer p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 8px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 8px 0;
}

.faq-answer ul li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding: 3px 0 3px 18px;
    position: relative;
}

.faq-answer ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7C3AED;
}

/* Contact Link */
.faq-contact-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
}

.faq-contact-link {
    color: #7C3AED;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.faq-contact-link:hover {
    color: #9b6df0;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 767px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-trigger {
        padding: 16px 16px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px;
    }
}

/* scroll top button */
#goToTopBtn {
    display: none;
    position: fixed;
    bottom: 120px;
    right: 20px;
    font-size: 0;
    padding: 0;
    background: linear-gradient(135deg, #7C3AED, #6D28D9);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    z-index: 1000;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

#goToTopBtn::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2.5px solid #fff;
    border-right: 2.5px solid #fff;
    transform: rotate(-45deg);
    margin-top: 3px;
}

#goToTopBtn:hover {
    background: linear-gradient(135deg, #6D28D9, #5B21B6);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.45);
}

/* ============================================================
   FOOTER - Professional Redesign
   ============================================================ */
.site-footer {
    background: #0c0118;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.ft-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.ft-footer-brand .ft-footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 16px;
}

.ft-footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    max-width: 280px;
}

.ft-footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ft-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.ft-footer-social a:hover {
    background: #7C3AED;
    color: #fff;
    transform: translateY(-2px);
}

.ft-footer-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.ft-footer-heading {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.ft-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-footer-links li {
    margin-bottom: 7px;
}

.ft-footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ft-footer-links a:hover {
    color: #c4b5fd;
    padding-left: 4px;
}

.ft-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.ft-footer-contact-item .ft-fc-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 6px;
    background: rgba(124, 58, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.ft-footer-contact-item .ft-fc-icon svg {
    width: 14px;
    height: 14px;
    stroke: #7C3AED;
    fill: none;
    stroke-width: 2;
}

.ft-footer-contact-item a,
.ft-footer-contact-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
}

.ft-footer-contact-item a:hover {
    color: #a78bfa;
}

.ft-footer-contact-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

/* Contact Support sub-section under Products */
.ft-footer-contact-sub {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ft-footer-contact-sub .ft-footer-heading {
    margin-bottom: 14px;
}

.ft-cs-item {
    margin-bottom: 7px;
}

.ft-cs-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}

.ft-cs-value {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.2s;
}

.ft-cs-value:hover {
    color: #c4b5fd;
}

/* Office Addresses */
.ft-footer-office {
    margin-bottom: 4px;
}

.ft-office-region {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin: 0 0 6px 0;
}

.ft-office-address {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    font-style: normal;
    margin: 0;
}

.ft-office-phone {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.2s;
}

.ft-office-phone:hover {
    color: #c4b5fd;
}

.ft-footer-office + .ft-footer-office {
    margin-top: 20px;
}

/* Giant Wordmark */
.oz-ft-wordmark-wrap {
    position: relative;
    text-align: center;
    height: clamp(80px, 12vw, 130px);
    overflow: hidden;
    margin-top: 10px;
}

.oz-ft-wordmark-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 80px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.18), transparent 70%);
    pointer-events: none;
}

.oz-ft-wordmark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(100px, 15vw, 160px);
    line-height: 1;
    letter-spacing: 4px;
    background: linear-gradient(180deg, rgba(167, 139, 250, 0.25) 0%, transparent 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
    pointer-events: none;
}

/* Footer Bottom */
.ft-footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.ft-footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.ft-footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.ft-footer-bottom a:hover {
    color: #a78bfa;
}

.ft-footer-bottom-links {
    display: flex;
    gap: 20px;
}

.ft-footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Responsive */
@media (max-width: 991px) {
    .ft-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .ft-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ft-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .ft-footer-bottom-links {
        justify-content: center;
    }
    .oz-ft-wordmark {
        font-size: 60px;
    }
    .oz-ft-wordmark-wrap {
        height: 55px;
    }
}

/* ============================================================
   HOME HERO SECTION - Orbital Ring
   ============================================================ */
.oz-hero {
    background: #0c0118;
    background-image:
        radial-gradient(ellipse at 60% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 30% 80%, rgba(88, 28, 135, 0.06) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
}

.oz-hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 40px;
}

/* Brand Name */
.oz-hero-brand {
    font-size: 14px;
    font-weight: 600;
    color: #8b5cf6;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    animation: oz-fadeUp 0.6s ease both;
}

/* Badge */
.oz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.06);
    color: #a78bfa;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 28px;
    animation: oz-fadeUp 0.8s ease both;
}

/* Title */
.oz-hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.05;
    letter-spacing: 2px;
    margin: 0 0 22px 0;
    animation: oz-fadeUp 0.8s 0.15s ease both;
}

/* Hero Accent Word */
.oz-hero-accent {
    background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.oz-hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 0 34px 0;
    animation: oz-fadeUp 0.8s 0.3s ease both;
}

/* CTA Buttons */
.oz-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: oz-fadeUp 0.8s 0.45s ease both;
}

.oz-hero-cta {
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    border-radius: 50px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.oz-hero-cta:hover {
    border-color: rgba(139, 92, 246, 0.4);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

.oz-hero-cta-outline {
    display: inline-flex;
    align-items: center;
    padding: 13px 30px;
    border-radius: 50px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.oz-hero-cta-outline:hover {
    border-color: rgba(139, 92, 246, 0.4);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.15);
}

/* ---- ORBITAL VISUAL ---- */
.oz-hero-visual {
    position: relative;
    width: 480px;
    height: 480px;
    margin: 0 auto;
}

.oz-orbit-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

/* Center Stat */
.oz-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.oz-orbit-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 34px;
    color: #fff;
    line-height: 1;
    letter-spacing: 1px;
}

.oz-orbit-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Rings */
.oz-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(139, 92, 246, 0.22);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.06), inset 0 0 15px rgba(139, 92, 246, 0.04);
}

.oz-ring-outer {
    width: 420px;
    height: 420px;
    margin-left: -210px;
    margin-top: -210px;
    animation: oz-rotate-cw 60s linear infinite;
}

.oz-ring-inner {
    width: 260px;
    height: 260px;
    margin-left: -130px;
    margin-top: -130px;
    animation: oz-rotate-ccw 45s linear infinite;
}

/* Nodes */
.oz-node {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.oz-node-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.oz-node-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.oz-node-icon svg {
    width: 22px;
    height: 22px;
    color: #a78bfa;
}

.oz-node-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 500;
}

.oz-ring-outer .oz-node-inner {
    animation: oz-rotate-ccw 60s linear infinite;
}

.oz-ring-inner .oz-node-inner {
    animation: oz-rotate-cw 45s linear infinite;
}

/* Keyframes */
@keyframes oz-rotate-cw {
    to { transform: rotate(360deg); }
}

@keyframes oz-rotate-ccw {
    to { transform: rotate(-360deg); }
}

@keyframes oz-fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- LOGO MARQUEE STRIP ---- */
.oz-logo-strip {
    background: #0c0118;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px 0;
    overflow: hidden;
}

.oz-logo-strip-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.oz-logo-strip-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    flex-shrink: 0;
    line-height: 1.6;
    max-width: 160px;
}

.oz-logo-strip-text span {
    color: #8b5cf6;
    font-weight: 600;
}

.oz-marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.oz-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: oz-marquee 120s linear infinite;
}

.oz-marquee-track img {
    height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    flex-shrink: 0;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    opacity: 0.85;
    transition: all 0.4s ease;
}

.oz-marquee-track img:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(139, 92, 246, 0.08);
}

@keyframes oz-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 991px) {
    .oz-logo-strip {
        padding: 24px 0;
    }
    .oz-logo-strip-inner {
        gap: 20px;
    }
    .oz-marquee-track {
        gap: 40px;
    }
    .oz-marquee-track img {
        height: 36px;
        max-width: 120px;
        padding: 8px 14px;
    }
}

@media (max-width: 768px) {
    .oz-logo-strip-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .oz-logo-strip-text {
        white-space: normal;
        max-width: none;
    }
    .oz-marquee-track {
        gap: 32px;
    }
    .oz-marquee-track img {
        height: 40px;
        max-width: 110px;
        padding: 8px 12px;
    }
}

/* Hero Responsive */
@media (max-width: 991px) {
    .oz-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    .oz-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .oz-hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .oz-hero-actions {
        justify-content: center;
    }
    .oz-hero-visual {
        width: 380px;
        height: 380px;
    }
    .oz-ring-outer {
        width: 340px;
        height: 340px;
        margin-left: -170px;
        margin-top: -170px;
    }
    .oz-ring-inner {
        width: 210px;
        height: 210px;
        margin-left: -105px;
        margin-top: -105px;
    }
}

@media (max-width: 576px) {
    .oz-hero {
        padding: 100px 0 40px;
    }
    .oz-hero-visual {
        width: 300px;
        height: 300px;
    }
    .oz-ring-outer {
        width: 270px;
        height: 270px;
        margin-left: -135px;
        margin-top: -135px;
    }
    .oz-ring-inner {
        width: 170px;
        height: 170px;
        margin-left: -85px;
        margin-top: -85px;
    }
    .oz-orbit-center {
        width: 90px;
        height: 90px;
    }
    .oz-orbit-num {
        font-size: 26px;
    }
    .oz-node-icon {
        width: 40px;
        height: 40px;
    }
    .oz-node-icon svg {
        width: 18px;
        height: 18px;
    }
    .oz-node-label {
        font-size: 8px;
    }
}

/* ---- REVIEWS SECTION ---- */
.oz-reviews-section {
    background: #0c0118;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.oz-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
}

.oz-reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.oz-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.06);
    color: #a78bfa;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.oz-reviews-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: normal;
    margin-bottom: 14px;
    line-height: 1.3;
}

.oz-reviews-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.oz-reviews-embed {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
}

.oz-reviews-embed iframe {
    display: block;
    width: 100%;
    border: none;
}

@media (max-width: 768px) {
    .oz-reviews-section {
        padding: 60px 0 50px;
    }
    .oz-reviews-header {
        margin-bottom: 30px;
    }
    .oz-reviews-embed {
        border-radius: 10px;
    }
}

/* Generic Section Badge (index page) */
.oz-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.06);
    color: #a78bfa;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

/* ============================================================
   UNIVERSAL INTEGRATION - Sliding Badge Rows
   ============================================================ */
.ui-section {
    background: #0c0118;
    padding: 80px 0 70px;
    overflow: hidden;
}

.ui-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: normal;
    margin: 0;
}

/* .ui-arrow removed — replaced by .oz-section-badge */

.ui-marquee-area {
    position: relative;
    width: 100%;
}

.ui-marquee-area::before,
.ui-marquee-area::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.ui-marquee-area::before {
    left: 0;
    background: linear-gradient(90deg, #0c0118 0%, transparent 100%);
}

.ui-marquee-area::after {
    right: 0;
    background: linear-gradient(270deg, #0c0118 0%, transparent 100%);
}

.ui-marquee-row {
    overflow: hidden;
    padding: 6px 0;
}

.ui-marquee-track {
    display: flex;
    gap: 12px;
    width: max-content;
}

.ui-slide-left {
    animation: uiSlideLeft 60s linear infinite;
}

.ui-slide-right {
    animation: uiSlideRight 60s linear infinite;
}

@keyframes uiSlideLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes uiSlideRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.ui-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: border-color 0.3s ease, background 0.3s ease;
    letter-spacing: 0.2px;
}

.ui-badge:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.06);
}

.ui-badge-icon {
    font-size: 14px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.ui-icon-stripe {
    color: #635bff;
    font-weight: 700;
    font-size: 16px;
}

.ui-icon-razorpay::before { content: '⚡'; color: #528ff0; }
.ui-icon-jazzcash::before { content: '●'; color: #e3342f; }
.ui-icon-easypaisa { color: #4cb050; }
.ui-icon-mpesa { color: #4caf50; }
.ui-icon-bkash { color: #e2136e; }
.ui-icon-multicaixa { color: #f57c00; }

.ui-badge-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    margin-left: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .ui-section {
        padding: 50px 0 40px;
    }
    .ui-marquee-area::before,
    .ui-marquee-area::after {
        width: 40px;
    }
    .ui-badge {
        padding: 6px 14px;
        font-size: 12px;
    }
    .ui-slide-left {
        animation-duration: 40s;
    }
    .ui-slide-right {
        animation-duration: 40s;
    }
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.hiw-section {
    background: #0c0118;
    padding: 100px 0 90px;
    overflow: hidden;
}

/* Header */
.hiw-header {
    text-align: center;
    margin-bottom: 50px;
}

.hiw-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.06);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #a78bfa;
    margin-bottom: 24px;
}

.hiw-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 14px;
    letter-spacing: normal;
}

.hiw-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Product Tabs */
.hiw-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 56px;
}

.hiw-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hiw-tab:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

.hiw-tab-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.hiw-tab--active .hiw-tab-dot {
    opacity: 1;
}

/* Active tab per product */
.hiw-tab--active[data-product="zalultra"] {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}
.hiw-tab--active[data-product="zalpro"] {
    border-color: rgba(6, 182, 212, 0.4);
    background: rgba(6, 182, 212, 0.08);
    color: #06b6d4;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}
.hiw-tab--active[data-product="abcsyslog"] {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

/* Steps Grid */
.hiw-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    margin-bottom: 56px;
}

/* Connecting line */
.hiw-line {
    position: absolute;
    top: 64px;
    left: 12%;
    right: 12%;
    height: 1px;
    border-top: 2px dashed rgba(255, 255, 255, 0.12);
    z-index: 0;
}

/* Step Card */
.hiw-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 0.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 24px 28px;
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
}

.hiw-card.hiw-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hiw-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Ghost number */
.hiw-ghost {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Syne', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

/* Icon */
.hiw-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.hiw-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 16.5px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
}

.hiw-card-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Accent glow per product */
.hiw-section[data-active="zalultra"] .hiw-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.15), 0 8px 32px rgba(139, 92, 246, 0.08);
}
.hiw-section[data-active="zalultra"] .hiw-icon {
    color: #8b5cf6;
    border-color: rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.06);
}

.hiw-section[data-active="zalpro"] .hiw-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.15), 0 8px 32px rgba(6, 182, 212, 0.08);
}
.hiw-section[data-active="zalpro"] .hiw-icon {
    color: #06b6d4;
    border-color: rgba(6, 182, 212, 0.2);
    background: rgba(6, 182, 212, 0.06);
}

.hiw-section[data-active="abcsyslog"] .hiw-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.15), 0 8px 32px rgba(245, 158, 11, 0.08);
}
.hiw-section[data-active="abcsyslog"] .hiw-icon {
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.2);
    background: rgba(245, 158, 11, 0.06);
}

/* Toggle */
.hiw-toggle-wrap {
    text-align: center;
}

.hiw-toggle {
    display: inline-flex;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    gap: 2px;
}

.hiw-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hiw-toggle-btn svg {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.hiw-toggle-btn--active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.hiw-toggle-btn--active svg {
    opacity: 1;
}

.hiw-toggle-note {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hiw-toggle-note.hiw-fade {
    opacity: 0;
    transform: translateY(6px);
}

/* Responsive */
@media (max-width: 991px) {
    .hiw-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .hiw-line {
        display: none;
    }
}

@media (max-width: 576px) {
    .hiw-section {
        padding: 60px 0 50px;
    }
    .hiw-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hiw-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    .hiw-tab {
        padding: 8px 18px;
        font-size: 13px;
    }
    .hiw-ghost {
        font-size: 56px;
    }
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.fcta {
    position: relative;
    background: linear-gradient(180deg, #0c0118 0%, #110d1e 35%, #150f28 50%, #110d1e 65%, #0c0118 100%);
    padding: 110px 0 100px;
    overflow: hidden;
    text-align: center;
}

/* Grid overlay */
.fcta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Radial glow */
.fcta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0.04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Dividers */
.fcta-divider-top,
.fcta-divider-bottom {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    width: 60%;
    max-width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
}
.fcta-divider-top { top: 0; }
.fcta-divider-bottom { bottom: 0; }

/* Inner content */
.fcta-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

/* Badge */
.fcta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid rgba(124, 58, 237, 0.25);
    background: rgba(124, 58, 237, 0.06);
    color: #a78bfa;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(16px);
    animation: fctaUp 0.6s ease 0.1s forwards;
}

/* Pulsing dot */
.fcta-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7c3aed;
    display: inline-block;
    animation: fctaPulse 2s ease-in-out infinite;
}

@keyframes fctaPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(124, 58, 237, 0); }
}

/* Title */
.fcta-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    opacity: 0;
    transform: translateY(16px);
    animation: fctaUp 0.6s ease 0.2s forwards;
}

.fcta-gradient {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subline */
.fcta-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 36px;
    opacity: 0;
    transform: translateY(16px);
    animation: fctaUp 0.6s ease 0.3s forwards;
}

/* Buttons */
.fcta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(16px);
    animation: fctaUp 0.6s ease 0.4s forwards;
}

.fcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.fcta-btn--primary {
    background: #7c3aed;
    color: #ffffff;
    border: 1px solid #7c3aed;
}

.fcta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
    background: #6d28d9;
    color: #ffffff;
}

.fcta-btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.fcta-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Trust signals */
.fcta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
    animation: fctaUp 0.6s ease 0.5s forwards;
}

.fcta-trust-item {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* Fade-up keyframe */
@keyframes fctaUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .fcta {
        padding: 80px 0 70px;
    }
    .fcta-actions {
        flex-direction: column;
        align-items: center;
    }
    .fcta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .fcta-trust {
        flex-direction: column;
        gap: 12px;
    }
    .fcta-glow {
        width: 400px;
        height: 400px;
    }
    .fcta-divider-top,
    .fcta-divider-bottom {
        width: 80%;
    }
}

/* ============================================================
   PAIN POINTS SECTION — Zigzag Timeline
   ============================================================ */
.pain {
    position: relative;
    background: #0c0118;
    padding: 120px 0;
    overflow: hidden;
}

.pain-bg-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 900px;
    height: 600px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.035) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Header */
.pain-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 72px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pain.pain--visible .pain-header {
    opacity: 1;
    transform: translateY(0);
}

.pain-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.25);
    background: rgba(139, 92, 246, 0.06);
    color: #a78bfa;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.pain-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: normal;
    margin: 0 0 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pain-gradient {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

.pain-bright {
    color: rgba(255, 255, 255, 0.7);
}

/* ---- Timeline Container ---- */
.pain-timeline {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
}

/* Center vertical line */
.pain-timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.3), rgba(124, 58, 237, 0.06));
    transform: translateX(-50%);
}

/* ---- Each Row ---- */
.pain-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
}

.pain-row:last-child {
    margin-bottom: 0;
}

.pain-row.pain-row--visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Left-aligned card: card on left half, dot on center */
.pain-row--left {
    justify-content: flex-start;
    padding-right: calc(50% + 20px);
}

/* Right-aligned card: dot on center, card on right half */
.pain-row--right {
    justify-content: flex-end;
    padding-left: calc(50% + 20px);
}

/* ---- Dot on the center line ---- */
.pain-dot {
    position: absolute;
    top: 28px;
    left: 50%;
    width: 12px;
    height: 12px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #7c3aed;
    border: 2px solid #0e0e12;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
    z-index: 2;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.pain-row:hover .pain-dot {
    box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.3), 0 0 16px rgba(124, 58, 237, 0.2);
    background: #a78bfa;
}

/* ---- Card ---- */
.pain-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 24px 28px;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    width: 100%;
}

.pain-row:hover .pain-card {
    background: rgba(124, 58, 237, 0.03);
    border-color: rgba(124, 58, 237, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* Card head: number + icon inline */
.pain-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.pain-row-num {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(167, 139, 250, 0.45);
    letter-spacing: 0.06em;
    transition: color 0.3s ease;
}

.pain-row:hover .pain-row-num {
    color: rgba(167, 139, 250, 0.8);
}

.pain-row-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.pain-row:hover .pain-row-icon {
    background: rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.1);
}

/* Card title */
.pain-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.pain-row:hover .pain-card-title {
    color: #a78bfa;
}

/* Card description */
.pain-card-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin: 0;
}

/* ---- Transition Line ---- */
.pain-transition {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 800px;
    margin: 56px auto 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.pain.pain--visible .pain-transition {
    opacity: 1;
    transform: translateY(0);
}

.pain-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.12), transparent);
}

.pain-turn {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    white-space: nowrap;
    text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .pain { padding: 80px 0; }

    .pain-timeline-line {
        left: 20px;
    }

    .pain-row--left,
    .pain-row--right {
        padding-left: 48px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .pain-dot {
        left: 20px;
        top: 24px;
        width: 10px;
        height: 10px;
    }

    .pain-card { padding: 20px; }
    .pain-card-title { font-size: 14.5px; }
    .pain-card-desc { font-size: 12.5px; }
    .pain-transition { flex-direction: column; gap: 16px; }
    .pain-turn { white-space: normal; }
    .pain-rule { width: 60%; flex: none; }
    .pain-bg-glow { width: 400px; height: 300px; }
}

@media (max-width: 576px) {
    .pain-card { padding: 16px; }
    .pain-row-icon { width: 30px; height: 30px; }
    .pain-row-icon svg { width: 16px; height: 16px; }
    .pain-row--left,
    .pain-row--right {
        padding-left: 40px;
    }
    .pain-timeline-line { left: 16px; }
    .pain-dot { left: 16px; width: 8px; height: 8px; }
}

/* ============================================================
   SCROLL-STACK FEATURE SHOWCASE
   ============================================================ */
.stkf {
    position: relative;
    background: #0c0118;
    padding: 0;
    overflow: visible;
}

/* ---- Header ---- */
.stkf-header {
    text-align: center;
    padding: 120px 0 80px;
}

.stkf-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.stkf-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: normal;
    margin: 0 0 18px;
}

.stkf-title-grad {
    background: linear-gradient(135deg, #7c3aed, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stkf-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.35);
    line-height: 1.7;
    margin: 0;
}

/* ---- Stack Container ---- */
.stkf-container {
    position: relative;
    height: calc(3 * 100vh + 200px);
    padding: 0 20px;
}

/* ---- Sticky Card ---- */
.stkf-card {
    position: sticky;
    top: 80px;
    max-width: 1100px;
    margin: 0 auto 60px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    transition: border-color 0.35s ease;
    will-change: transform;
}

.stkf-card:hover {
    border-color: rgba(124,58,237,0.3);
}

/* Ambient glow */
.stkf-card-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.stkf-glow--purple {
    background: radial-gradient(ellipse at 0% 100%, rgba(124,58,237,0.1), transparent 55%);
}

.stkf-glow--cyan {
    background: radial-gradient(ellipse at 0% 100%, rgba(6,182,212,0.1), transparent 55%);
}

.stkf-glow--green {
    background: radial-gradient(ellipse at 0% 100%, rgba(16,185,129,0.1), transparent 55%);
}

/* ---- Card Inner Layout ---- */
.stkf-card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    min-height: 480px;
    background: #13131a;
}

/* ---- Text Panel (Left 40%) ---- */
.stkf-text {
    width: 40%;
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Icon */
.stkf-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.stkf-icon--purple { background: rgba(124,58,237,0.12); }
.stkf-icon--cyan   { background: rgba(6,182,212,0.12); }
.stkf-icon--green  { background: rgba(16,185,129,0.12); }

.stkf-card-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
}

.stkf-card-body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #8b87a8;
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.stkf-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 8px;
    transition: gap 0.3s ease;
}

.stkf-cta:hover { gap: 12px; }
.stkf-cta svg { transition: transform 0.3s ease; }
.stkf-cta:hover svg { transform: translateX(4px); }

.stkf-cta--purple { color: #a78bfa; }
.stkf-cta--cyan   { color: #67e8f9; }
.stkf-cta--green  { color: #6ee7b7; }

/* Button CTA */
.stkf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    margin-top: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.stkf-btn svg {
    transition: transform 0.3s ease;
}

.stkf-btn:hover svg {
    transform: translateX(4px);
}

.stkf-btn--cyan {
    background: rgba(6,182,212,0.12);
    color: #67e8f9;
    border: 1px solid rgba(6,182,212,0.25);
}

.stkf-btn--cyan:hover {
    background: rgba(6,182,212,0.2);
    border-color: rgba(6,182,212,0.4);
    box-shadow: 0 4px 20px rgba(6,182,212,0.15);
    color: #67e8f9;
}

.stkf-btn--purple {
    background: rgba(124,58,237,0.12);
    color: #a78bfa;
    border: 1px solid rgba(124,58,237,0.25);
}

.stkf-btn--purple:hover {
    background: rgba(124,58,237,0.2);
    border-color: rgba(124,58,237,0.4);
    box-shadow: 0 4px 20px rgba(124,58,237,0.15);
    color: #a78bfa;
}

.stkf-btn--green {
    background: rgba(16,185,129,0.12);
    color: #6ee7b7;
    border: 1px solid rgba(16,185,129,0.25);
}

.stkf-btn--green:hover {
    background: rgba(16,185,129,0.2);
    border-color: rgba(16,185,129,0.4);
    box-shadow: 0 4px 20px rgba(16,185,129,0.15);
    color: #6ee7b7;
}

/* ---- Visual Panel (Right 60%) ---- */
.stkf-visual {
    width: 60%;
    border-radius: 0 23px 23px 0;
    overflow: hidden;
    position: relative;
}

.stkf-vis--product {
    background: none;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    overflow: hidden;
}

.stkf-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    border-radius: 0 23px 23px 0;
    transition: transform 0.5s ease;
}

.stkf-card:hover .stkf-product-img {
    transform: scale(1.02);
}

.stkf-product-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    border-radius: 12px;
    display: block;
}

/* macOS Window Frame */
.stkf-mac-frame {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #1c1c28;
    border-radius: 0;
    overflow: hidden;
}

.stkf-mac-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #242432;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stkf-mac-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.stkf-mac-dot--red    { background: #ff5f57; }
.stkf-mac-dot--yellow { background: #febc2e; }
.stkf-mac-dot--green  { background: #28c840; }

.stkf-mac-frame .stkf-product-video {
    border-radius: 0;
    width: 100%;
    flex: 1;
    display: block;
    object-fit: cover;
    object-position: top left;
    min-height: 0;
}

.stkf-vis--billing {
    background: linear-gradient(135deg, #1a1025 0%, #0d1a2e 100%);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stkf-vis--clients {
    background: linear-gradient(135deg, #0d1a2e 0%, #0a1f2e 100%);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stkf-vis--syslog {
    background: linear-gradient(135deg, #0a1f1a 0%, #0d1a2e 100%);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================
   MOCK UI — SHARED
   ========================== */
.stkf-mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stkf-mock-title {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.stkf-mock-date {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

/* ==========================
   MOCK UI — BILLING (Card 1)
   ========================== */
.stkf-mock-billing {
    width: 100%;
    max-width: 480px;
    background: rgba(14,14,18,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 24px;
    position: relative;
}

.stkf-mock-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
}

.stkf-mock-table thead th {
    text-align: left;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    padding: 0 8px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.stkf-mock-table tbody td {
    padding: 10px 8px;
    color: rgba(255,255,255,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.stkf-mock-table tbody tr:last-child td {
    border-bottom: none;
}

/* Status badges */
.stkf-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.stkf-status--paid    { background: rgba(16,185,129,0.15); color: #6ee7b7; }
.stkf-status--pending { background: rgba(245,158,11,0.15); color: #fbbf24; }
.stkf-status--overdue { background: rgba(239,68,68,0.15);  color: #fca5a5; }

/* Floating invoice card */
.stkf-float-invoice {
    position: absolute;
    bottom: -16px;
    right: -12px;
    background: #1e1e2a;
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 180px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    animation: stkfFloat 3s ease-in-out infinite;
}

@keyframes stkfFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.stkf-invoice-label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.stkf-invoice-amount {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 4px;
}

.stkf-invoice-detail {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.stkf-invoice-date {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    margin-top: 4px;
}

/* ==========================
   MOCK UI — CLIENTS (Card 2)
   ========================== */
.stkf-mock-clients {
    width: 100%;
    max-width: 480px;
    background: rgba(14,14,18,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 24px;
    position: relative;
}

.stkf-clients-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(6,182,212,0.12);
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #67e8f9;
    letter-spacing: 0.02em;
}

.stkf-client-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}

.stkf-client-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.stkf-client-row--active {
    background: rgba(6,182,212,0.08);
    border: 1px solid rgba(6,182,212,0.15);
}

.stkf-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.stkf-client-name {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    flex: 1;
    min-width: 0;
}

.stkf-client-pkg {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.stkf-client-dot,
.stkf-device-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stkf-dot--online  { background: #10b981; box-shadow: 0 0 6px rgba(16,185,129,0.5); }
.stkf-dot--offline { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,0.5); }

.stkf-client-ip {
    font-family: 'Outfit', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

/* Client detail card */
.stkf-client-detail {
    background: rgba(6,182,212,0.04);
    border: 1px solid rgba(6,182,212,0.12);
    border-radius: 10px;
    padding: 14px 16px;
}

.stkf-detail-name {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #67e8f9;
    margin-bottom: 10px;
}

.stkf-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.stkf-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stkf-detail-label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stkf-detail-val {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.stkf-val--online {
    color: #6ee7b7;
}

/* ==========================
   MOCK UI — SYSLOG (Card 3)
   ========================== */
.stkf-mock-syslog {
    width: 100%;
    max-width: 480px;
    background: rgba(14,14,18,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 24px;
}

.stkf-syslog-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #6ee7b7;
}

.stkf-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    animation: stkfLivePulse 1.5s ease-in-out infinite;
}

@keyframes stkfLivePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 4px rgba(16,185,129,0); }
}

.stkf-syslog-split {
    display: flex;
    gap: 12px;
}

/* Device sidebar */
.stkf-device-list {
    width: 120px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 12px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.stkf-device {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    padding: 5px 0;
}

/* Log feed */
.stkf-log-feed {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-height: 260px;
}

.stkf-log-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.02);
    animation: stkfLogSlide 0.3s ease;
}

.stkf-log-row--alert {
    background: rgba(16,185,129,0.1);
    border-left: 2px solid #10b981;
}

@keyframes stkfLogSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.stkf-log-time {
    font-family: 'Outfit', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
    width: 52px;
    padding-top: 1px;
}

.stkf-log-msg {
    font-family: 'Outfit', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

.stkf-log-row--alert .stkf-log-msg {
    color: #6ee7b7;
    font-weight: 500;
}

/* ==========================
   RESPONSIVE
   ========================== */
@media (max-width: 991px) {
    .stkf-header { padding: 100px 0 60px; }
    .stkf-card-inner {
        flex-direction: column;
        min-height: auto;
    }
    .stkf-text {
        width: 100%;
        padding: 40px 36px 28px;
    }
    .stkf-visual {
        width: 100%;
        border-radius: 0 0 23px 23px;
        padding: 28px;
    }
    .stkf-vis--billing,
    .stkf-vis--clients,
    .stkf-vis--syslog {
        padding: 28px;
    }
    .stkf-vis--product {
        min-height: 300px;
    }
    .stkf-product-img {
        border-radius: 0 0 23px 23px;
    }
    .stkf-container {
        height: calc(3 * 120vh + 200px);
    }
}

@media (max-width: 768px) {
    .stkf-header { padding: 80px 0 48px; }
    .stkf-text { padding: 32px 28px 20px; }
    .stkf-card-title { font-size: 1.25rem; }
    .stkf-card-body { font-size: 14px; }
    .stkf-card { top: 60px; border-radius: 18px; }
    .stkf-syslog-split { flex-direction: column; }
    .stkf-device-list {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-right: 0;
        padding-bottom: 8px;
        margin-bottom: 4px;
    }
    .stkf-mock-table { font-size: 11px; }
    .stkf-float-invoice { display: none; }
    .stkf-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .stkf-text { padding: 24px 20px 16px; }
    .stkf-vis--billing,
    .stkf-vis--clients,
    .stkf-vis--syslog {
        padding: 20px;
    }
    .stkf-card { margin-bottom: 40px; border-radius: 14px; }
    .stkf-card-title { font-size: 1.1rem; }
    .stkf-icon { width: 44px; height: 44px; border-radius: 10px; }
    .stkf-icon svg { width: 22px; height: 22px; }
    .stkf-client-ip { display: none; }
    .stkf-client-pkg { display: none; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.ct-info-section {
    background: #0c0118;
    padding: 80px 0 40px;
}

.ct-info-card {
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.ct-info-card:hover {
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.1);
}

.ct-info-icon {
    width: 52px;
    height: 52px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.ct-info-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.ct-info-link {
    font-size: 14px;
    color: #a78bfa !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ct-info-link:hover {
    color: #c4b5fd !important;
}

.ct-info-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Contact Form Section */
.ct-form-section {
    background: #0c0118;
    padding: 40px 0 100px;
}

.ct-form-wrapper {
    background: rgba(139, 92, 246, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 20px;
    overflow: hidden;
}

/* Left Info Panel */
.ct-form-info {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
    padding: 48px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ct-form-info-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ct-form-info-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 36px;
    line-height: 1.6;
}

.ct-form-info-items {
    margin-bottom: auto;
}

.ct-form-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.ct-form-info-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.ct-form-social {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(139, 92, 246, 0.15);
}

.ct-form-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
}

.ct-form-social a:hover {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

/* Right Form Body */
.ct-form-body {
    padding: 48px 40px;
}

.ct-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.ct-form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #ffffff;
    transition: all 0.2s ease;
    outline: none;
    font-family: 'Outfit', sans-serif;
}

.ct-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.ct-form-input:focus {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.06);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.ct-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.ct-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #7c3aed;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.ct-form-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4);
}

@media (max-width: 991px) {
    .ct-form-info {
        padding: 36px 28px;
    }
    .ct-form-body {
        padding: 36px 28px;
    }
}

@media (max-width: 576px) {
    .ct-info-section {
        padding: 60px 0 20px;
    }
    .ct-form-section {
        padding: 20px 0 60px;
    }
    .ct-form-info {
        padding: 28px 20px;
    }
    .ct-form-body {
        padding: 28px 20px;
    }
    .ct-form-info-title {
        font-size: 22px;
    }
    .ct-form-wrapper {
        border-radius: 14px;
    }
}

/* ============================================================
   DARK CONTENT SECTION (General Pages)
   ============================================================ */
.dark-content-section {
    background: #0c0118 !important;
    color: rgba(255, 255, 255, 0.75);
}

.dark-content-section h2,
.dark-content-section h3,
.dark-content-section h4,
.dark-content-section h5,
.dark-content-section h6,
.dark-content-section .s-46,
.dark-content-section .s-44,
.dark-content-section .s-28,
.dark-content-section .s-24,
.dark-content-section .s-20,
.dark-content-section .s-19,
.dark-content-section .w-700 {
    color: #ffffff !important;
}

.dark-content-section p,
.dark-content-section .list-item p,
.dark-content-section .single-post-txt p,
.dark-content-section .color--grey {
    color: rgba(255, 255, 255, 0.65) !important;
}

/* Accordion styles for FAQ on dark bg */
.dark-content-section .accordion-item {
    border-bottom: 1px solid rgba(139, 92, 246, 0.12) !important;
}

.dark-content-section .accordion-thumb {
    background: transparent;
    border-color: rgba(139, 92, 246, 0.15);
}

.dark-content-section .accordion-thumb h4,
.dark-content-section .accordion-thumb h5 {
    color: #ffffff !important;
}

.dark-content-section .accordion-item .accordion-thumb:after,
.dark-content-section .accordion-item.is-active .accordion-thumb:after {
    color: rgba(255, 255, 255, 0.6) !important;
}

.dark-content-section .accordion-item.is-active .accordion-thumb {
    border-bottom: 1px solid rgba(139, 92, 246, 0.12) !important;
}

.dark-content-section .accordion-panel {
    background: transparent;
    border-color: rgba(139, 92, 246, 0.1);
}

.dark-content-section .accordion-panel p {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Form inputs on dark bg */
.dark-content-section .form-control {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
    color: #ffffff;
}

.dark-content-section .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Paragraph sizes */
.dark-content-section .p-lg,
.dark-content-section .p-md {
    color: rgba(255, 255, 255, 0.65) !important;
}

/* Override bg--white classes inside dark sections */
.dark-content-section .bg--white-400,
.dark-content-section .bg--white-300,
.dark-content-section .bg--white-500 {
    background-color: rgba(139, 92, 246, 0.08) !important;
}

/* Statistic blocks */
.dark-content-section .statistic-block {
    border-color: rgba(139, 92, 246, 0.15);
}

.dark-content-section .statistic-number,
.dark-content-section .count-element {
    color: #ffffff !important;
}

.dark-content-section .statistic-block-txt p,
.dark-content-section .statistic-txt h5 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* color--black override */
.dark-content-section .color--black {
    color: #ffffff !important;
}

/* Links */
.dark-content-section a:not(.btn):not(.color--theme) {
    color: #a78bfa;
}

.dark-content-section a:not(.btn):hover {
    color: #c4b5fd;
}

.dark-content-section .color--theme {
    color: #a78bfa !important;
}

.dark-content-section .color--theme:hover {
    color: #c4b5fd !important;
}

/* List markers */
.dark-content-section .simple-list .list-item::before {
    color: #a78bfa;
}

/* Dividers */
.dark-content-section hr,
.dark-content-section .divider {
    border-color: rgba(139, 92, 246, 0.12);
}

/* More questions box (FAQ page) */
.dark-content-section .more-questions-txt {
    background-color: rgba(139, 92, 246, 0.08) !important;
    border: 1px solid rgba(139, 92, 246, 0.15);
}

.dark-content-section .more-questions-txt p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Client grid wrapper override for dark bg */
.dark-content-section .integrations-2-wrapper {
    padding: 0 !important;
}

/* Client logo card override for dark bg */
.dark-content-section .in_tool_logo.bg--white-100 {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Block shadow override for dark bg */
.dark-content-section .block-shadow {
    box-shadow: none !important;
}

/* ============================================================
   DARK PARTNERS SECTION
   ============================================================ */
.dark-partners-section {
    background: #0c0118;
}

.dark-partner-card {
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.dark-partner-card:hover {
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.12);
}

.dark-partner-photo {
    padding: 20px 20px 0;
}

.dark-partner-photo img {
    width: 100%;
    border-radius: 12px;
}

.dark-partner-info {
    padding: 18px 20px 22px;
}

.dark-partner-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.dark-partner-role {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #a78bfa;
    margin-bottom: 10px;
}

.dark-partner-detail {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2px;
    line-height: 1.6;
}

@media (max-width: 576px) {
    .dark-partner-card {
        border-radius: 12px;
    }
    .dark-partner-photo {
        padding: 14px 14px 0;
    }
    .dark-partner-info {
        padding: 14px 14px 18px;
    }
    .dark-partner-name {
        font-size: 16px;
    }
}

/* ============================================================
   DARK SPEC TABLE SECTION
   ============================================================ */
.dark-spec-section {
    background: #0c0118;
    padding: 70px 0;
}

.dark-spec-section + .dark-spec-section {
    padding-top: 0;
}

.dark-spec-header {
    text-align: center;
    margin-bottom: 40px;
}

.dark-spec-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    font-style: normal;
}

.dark-spec-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.dark-spec-table thead th {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    white-space: nowrap;
}

.dark-spec-table tbody td {
    font-size: 14.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
}

.dark-spec-table tbody tr:last-child td {
    border-bottom: none;
}

.dark-spec-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.dark-spec-table tbody td:first-child {
    font-weight: 500;
    color: #ffffff;
}

.dark-spec-btn {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #f59e0b !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dark-spec-btn:hover {
    color: #fbbf24 !important;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .dark-spec-section {
        padding: 50px 0;
    }
    .dark-spec-title {
        font-size: 26px;
    }
    .dark-spec-table thead th {
        font-size: 11px;
        padding: 12px 12px;
    }
    .dark-spec-table tbody td {
        font-size: 13px;
        padding: 14px 12px;
    }
}

/* ============================================================
   FEATURE CARDS (moved from inline <style> in header.php)
   ============================================================ */

.feature-card {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
    border-color: rgba(var(--theme-color-rgb), 0.5);
}

.img-wrap {
    max-width: 300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
}

.img-wrap img {
    transition: transform 0.5s ease;
}

.feature-card:hover .img-wrap img {
    transform: scale(1.05);
}

.feature-icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background-color: rgba(var(--theme-color-rgb), 0.2);
    border-radius: 50%;
}

.feature-text h3,
.feature-text p {
    color: #ffffff;
}

.feature-highlights .feature-item {
    transition: all 0.3s ease;
}

.feature-highlights .feature-item:hover {
    transform: translateX(5px);
}

.feature-highlights p {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .feature-card {
        padding: 30px 20px;
    }

    .feature-image {
        margin-bottom: 30px;
    }
}

/* ============================================================
   PRICING TOGGLE (moved from inline <style> in header.php)
   ============================================================ */

.custom-pricing-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pricing-option {
    font-size: 25px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 36px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 30, 35, 0.7);
    transition: .4s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.slider:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 4px;
    bottom: 3px;
    background-color: #0078ff;
    transition: .4s;
}

input:checked+.slider {
    background-color: rgba(30, 30, 35, 0.7);
}

input:checked+.slider:before {
    transform: translateX(34px);
}

.save-text {
    margin-top: 12px;
    font-size: 15px;
    color: #0078ff;
    font-weight: 500;
}

/* ============================================================
   FEATURE TABS (moved from inline <style> in header.php)
   ============================================================ */

.feature-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 10px;
}

.feature-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 12px 20px;
    margin-bottom: -1px;
    background-color: transparent;
    border-radius: 6px 6px 0 0;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.tab-icon {
    margin-right: 8px;
    font-size: 16px;
}

.feature-tabs .nav-link:hover {
    color: #ffffff;
    background-color: rgba(var(--theme-color-rgb), 0.05);
}

.feature-tabs .nav-link.active {
    color: #ffffff;
    background-color: rgba(0, 120, 255, 0.2);
    border-bottom: 2px solid #0078ff;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    border-radius: 12px;
    background-color: rgba(30, 30, 35, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(var(--theme-color-rgb), 0.3);
    background-color: rgba(35, 35, 40, 0.4);
}

.feature-icon {
    flex-shrink: 0;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--theme-color-rgb), 0.1);
    border-radius: 50%;
}

.feature-icon span {
    font-size: 20px;
}

/* ============================================================
   VIDEO TUTORIALS PAGE
   ============================================================ */
/* Page background override to match homepage */
.vt-page-bg {
    background: #0c0118;
    background-image: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.06) 0%, transparent 60%);
}

.vt-hero { padding: 120px 0 50px; text-align: center; }
.vt-hero-content { max-width: 640px; margin: 0 auto; }
.vt-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600;
    color: #a78bfa; background: rgba(124, 58, 237, 0.12);
    padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}
.vt-hero-badge svg { stroke: #a78bfa; }
.vt-hero-title {
    font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 700;
    color: #fff; margin: 0 0 14px; letter-spacing: -0.02em;
}
.vt-hero-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0; }

.feature-content h5 {
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.5;
}

.tab-pane.fade {
    transition: opacity 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .feature-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .feature-tabs .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }

    .feature-box {
        padding: 20px;
    }
}

/* Featured Video */
.vt-featured { padding: 0 0 50px; }
.vt-featured-card {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 20px; align-items: center;
}
.vt-featured-thumb {
    position: relative; border-radius: 12px; overflow: hidden;
    cursor: pointer; aspect-ratio: 16/9;
}
.vt-featured-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vt-play-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.35); opacity: 0; transition: opacity 0.2s ease;
}
.vt-featured-thumb:hover .vt-play-overlay,
.vt-card-thumb:hover .vt-play-overlay { opacity: 1; }
.vt-play-btn {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,0.95); color: #0c0118;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3); transition: transform 0.2s ease;
}
.vt-play-btn--lg { width: 68px; height: 68px; }
.vt-play-btn--lg svg { width: 28px; height: 28px; }
.vt-featured-thumb:hover .vt-play-btn,
.vt-card-thumb:hover .vt-play-btn { transform: scale(1.1); }
.vt-featured-info { padding: 8px 0; }
.vt-badge {
    display: inline-block; font-family: 'Outfit', sans-serif;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; padding: 4px 10px; border-radius: 6px; margin-bottom: 14px;
}
.vt-badge--featured { background: rgba(124,58,237,0.18); color: #a78bfa; }
.vt-featured-title {
    font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700;
    color: #fff; margin: 0 0 12px; line-height: 1.3;
}
.vt-featured-desc {
    font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 0 0 16px;
}
.vt-featured-meta { display: flex; align-items: center; gap: 14px; }
.vt-duration {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 13px; color: rgba(255,255,255,0.45);
}
.vt-duration svg { stroke: rgba(255,255,255,0.4); }

/* Category Pills */
.vt-cat-pill {
    display: inline-block; font-family: 'Outfit', sans-serif;
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.04em; padding: 3px 8px; border-radius: 4px;
}
.vt-cat-pill--gs { background: rgba(124,58,237,0.15); color: #a78bfa; }
.vt-cat-pill--bi { background: rgba(59,130,246,0.15); color: #93bbfd; }
.vt-cat-pill--sub { background: rgba(16,185,129,0.15); color: #6ee7b7; }
.vt-cat-pill--nr { background: rgba(245,158,11,0.15); color: #fbbf24; }
.vt-cat-pill--st { background: rgba(239,68,68,0.15); color: #fca5a5; }
.vt-cat-pill--set { background: rgba(107,114,128,0.15); color: #9ca3af; }

/* Filter Tabs */
.vt-filter { padding: 0 0 40px; }
.vt-filter-tabs {
    display: flex; gap: 8px; flex-wrap: wrap;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; -ms-overflow-style: none;
}
.vt-filter-tabs::-webkit-scrollbar { display: none; }
.vt-tab {
    font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08); border-radius: 20px;
    padding: 7px 18px; cursor: pointer; white-space: nowrap;
    transition: all 0.2s ease;
}
.vt-tab:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.15); }
.vt-tab--active {
    background: #7C3AED !important; color: #fff !important;
    border-color: #7C3AED !important;
}

/* Video Grid */
.vt-grid-section { padding: 0 0 60px; }
.vt-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.vt-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; overflow: hidden; cursor: pointer;
    transition: all 0.25s ease;
}
.vt-card:hover {
    border-color: rgba(124,58,237,0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.vt-card-thumb {
    position: relative; aspect-ratio: 16/9; overflow: hidden;
}
.vt-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vt-card-duration {
    position: absolute; bottom: 8px; right: 8px;
    font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600;
    color: #fff; background: rgba(0,0,0,0.75); padding: 2px 8px;
    border-radius: 4px; backdrop-filter: blur(4px);
}
.vt-card-body { padding: 16px 18px 20px; }
.vt-card-body .vt-cat-pill { margin-bottom: 10px; }
.vt-card-title {
    font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
    color: rgba(255,255,255,0.9); margin: 0 0 6px; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.vt-card-desc {
    font-size: 13px; color: rgba(255,255,255,0.4); margin: 0;
    line-height: 1.4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Empty State */
.vt-empty {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 60px 20px; color: rgba(255,255,255,0.3); text-align: center;
}
.vt-empty svg { margin-bottom: 16px; stroke: rgba(255,255,255,0.2); }
.vt-empty p { font-size: 15px; margin: 0; }

/* YouTube Subscribe Banner */
.vt-subscribe { padding: 0 0 80px; }
.vt-subscribe-card {
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, #7C3AED 0%, #5b21b6 100%);
    border-radius: 16px; padding: 32px 40px; gap: 24px;
}
.vt-subscribe-content { display: flex; align-items: center; gap: 18px; }
.vt-subscribe-icon { color: rgba(255,255,255,0.9); flex-shrink: 0; }
.vt-subscribe-title {
    font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700;
    color: #fff; margin: 0 0 4px;
}
.vt-subscribe-desc { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; }
.vt-subscribe-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
    color: #fff; background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3); border-radius: 10px;
    padding: 10px 22px; text-decoration: none; white-space: nowrap;
    transition: all 0.2s ease;
}
.vt-subscribe-btn:hover {
    background: rgba(255,255,255,0.25); color: #fff;
    transform: translateY(-1px);
}

/* Video Modal */
.vt-modal {
    position: fixed; inset: 0; z-index: 99999;
    display: flex; align-items: center; justify-content: center;
}
.vt-modal-backdrop {
    position: absolute; inset: 0; background: rgba(0,0,0,0.88);
    cursor: pointer;
}
.vt-modal-content {
    position: relative; width: 90%; max-width: 900px; z-index: 1;
}
.vt-modal-close {
    position: absolute; top: -40px; right: 0;
    background: none; border: none; color: rgba(255,255,255,0.7);
    font-size: 28px; cursor: pointer; padding: 4px 10px;
    transition: color 0.2s;
}
.vt-modal-close:hover { color: #fff; }
.vt-modal-iframe {
    position: relative; width: 100%; aspect-ratio: 16/9;
    border-radius: 12px; overflow: hidden; background: #000;
}
.vt-modal-iframe iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* Video Tutorials Responsive */
@media (max-width: 991px) {
    .vt-hero-title { font-size: 34px; }
    .vt-featured-card { grid-template-columns: 1fr; gap: 24px; }
    .vt-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .vt-subscribe-card { flex-direction: column; text-align: center; padding: 28px 24px; }
    .vt-subscribe-content { flex-direction: column; }
}
@media (max-width: 767px) {
    .vt-hero { padding: 100px 0 40px; }
    .vt-hero-title { font-size: 28px; }
    .vt-grid { grid-template-columns: 1fr; }
    .vt-featured-title { font-size: 20px; }
    .vt-modal-content { width: 95%; }
}

/* ============================================================
   LIVE DEMO MODAL
   ============================================================ */
.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.demo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.demo-modal-content {
    position: relative;
    z-index: 1;
    background: #13091f;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    animation: demoFadeIn 0.25s ease;
}

@keyframes demoFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.demo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s;
}

.demo-modal-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.demo-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #a78bfa;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.demo-modal-title {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.demo-modal-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 28px;
}

.demo-cred-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.demo-cred-row {
    text-align: left;
}

.demo-cred-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.demo-cred-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 14px;
}

.demo-cred-value span {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.demo-copy-btn {
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #a78bfa;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.demo-copy-btn:hover {
    background: rgba(124, 58, 237, 0.25);
    color: #c4b5fd;
}

.demo-info-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.12);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 24px;
    text-align: left;
}

.demo-info-note svg {
    flex-shrink: 0;
    color: #a78bfa;
    margin-top: 2px;
}

.demo-info-note span {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.demo-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 28px;
    background: #7C3AED;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none !important;
    transition: all 0.2s;
    margin-bottom: 20px;
}

.demo-open-btn:hover {
    background: #6d28d9;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.35);
    color: #ffffff !important;
}

.demo-modal-footer {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    line-height: 1.5;
}

.demo-modal-footer a {
    color: #a78bfa !important;
    text-decoration: none;
}

.demo-modal-footer a:hover {
    color: #c4b5fd !important;
}

@media (max-width: 480px) {
    .demo-modal-content {
        padding: 28px 20px;
    }
    .demo-modal-title {
        font-size: 20px;
    }
}
