/* BanglaDock Single Product Page Optimized Stylesheet */

/* --- Component Styles --- */
/* Update Request Panel */
    .tp_update_request_panel {
        position: fixed;
        top: 140px;
        right: 20px;
        height: auto;
        max-height: calc(100vh - 160px);
        width: 380px;
        max-width: 90%;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transform: translateX(120%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1040;
        border-radius: 12px;
        border: 1px solid rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
    }
    .tp_update_request_panel.is-active { transform: translateX(0); }
    .tp_update_request_inner { padding: 24px; overflow-y: auto; padding-bottom: 70px; }
    .tp_update_request_close { background: transparent; border: none; color: #6b7280; float: right; font-size: 16px; }
    .tp_update_request_breadcrumb { font-size: 12px; color: #6b7280; margin-bottom: 6px; }
    .tp_update_request_title { font-size: 20px; font-weight: 700; margin-bottom: 4px; color: #111827; }
    .tp_update_request_text { font-size: 13px; color: #6b7280; margin-bottom: 18px; }
    .tp_update_version_badge { display: inline-flex; align-items: center; justify-content: center; padding: 4px 10px; border-radius: 999px; background: #111827; color: #ffffff; font-size: 11px; font-weight: 600; margin-left: 8px; }
    .tp_update_request_panel .tp_input_text label { font-size: 13px; margin-bottom: 4px; }
    .tp_update_request_panel .tp_input_text { margin-bottom: 10px; }
    .tp_update_request_panel .tp_btn { width: 100%; margin-top: 4px; }
    .tp_update_request_actions{ position: sticky; bottom: 0; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #ffffff 28%); padding-top: 8px; margin-top: 8px; }
    @media (max-width: 575px) { .tp_update_request_panel { width: 100%; } }

    /* Pulse, Float & Shimmer Animations */
    @keyframes tp-pulse { 
        0% { transform: scale3d(1, 1, 1); opacity: 1; } 
        50% { transform: scale3d(1.1, 1.1, 1); opacity: 0.8; } 
        100% { transform: scale3d(1, 1, 1); opacity: 1; } 
    }
    .tp-animate-icon { 
        animation: tp-pulse 1.5s infinite ease-in-out; 
        display: inline-block; 
        color: rgb(153, 81, 255) !important; 
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    @keyframes tp_float { 
        0%, 100% { transform: translate3d(0, 0, 0); } 
        50% { transform: translate3d(0, -6px, 0); } 
    }
    @keyframes tp_glow_pulse { 
        0% { box-shadow: 0 0 5px rgba(99, 102, 241, 0.2); } 
        50% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.6); } 
        100% { box-shadow: 0 0 5px rgba(99, 102, 241, 0.2); } 
    }
    @keyframes tp_shimmer_glow { 
        0% { background-position: 0% 50%; } 
        50% { background-position: 100% 50%; } 
        100% { background-position: 0% 50%; } 
    }
    @keyframes tp_hero_shimmer { 
        0% { transform: translate3d(-150%, 0, 0) skewX(-25deg); } 
        100% { transform: translate3d(150%, 0, 0) skewX(-25deg); } 
    }

    /* Entry Animations */
    @keyframes tp_wp_fade_in { 0% { opacity: 0; } 100% { opacity: 1; } }
    @keyframes tp_wp_upward_rise { 
        0% { transform: translate3d(0, 30px, 0); opacity: 0; } 
        100% { transform: translate3d(0, 0, 0); opacity: 1; } 
    }
    @keyframes tp_wp_smooth_reveal { 
        0% { transform: scale3d(0.95, 0.95, 1); opacity: 0; } 
        100% { transform: scale3d(1, 1, 1); opacity: 1; } 
    }
    @keyframes tp_wp_slide_left { 
        0% { transform: translate3d(-40px, 0, 0); opacity: 0; } 
        100% { transform: translate3d(0, 0, 0); opacity: 1; } 
    }
    @keyframes tp_wp_scale_pop { 
        0% { transform: scale3d(0.85, 0.85, 1); opacity: 0; } 
        70% { transform: scale3d(1.03, 1.03, 1); opacity: 1; } 
        100% { transform: scale3d(1, 1, 1); } 
    }
    @keyframes tp_wp_draw_dash { to { stroke-dashoffset: 0; } }

    /* ========================================== */
    /* PREMIUM CONTAINER RULES (ENHANCED SIZE & BORDER GLOW) */
    /* ========================================== */
    .tp_wp_desc_card_wrapper {
        font-family: 'Outfit', 'Inter', sans-serif !important;
        color: #f8fafc !important;
        background: linear-gradient(145deg, rgba(62, 26, 132, 0.72) 0%, rgba(32, 12, 75, 0.88) 100%) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border-radius: 28px !important;
        padding: 35px !important;
        margin-bottom: 45px !important;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        border: 1.5px solid rgba(216, 180, 254, 0.35) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.4) !important;
        box-shadow: 0 20px 50px rgba(12, 4, 32, 0.5) !important;
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    .tp_wp_desc_card_wrapper:hover {
        transform: translate3d(0, -6px, 0);
        box-shadow: 0 30px 60px rgba(124, 58, 237, 0.35) !important;
        border-color: rgba(216, 180, 254, 0.6) !important;
    }
    .tp_wp_desc_card_wrapper h2, 
    .tp_wp_desc_card_wrapper h3, 
    .tp_wp_desc_card_wrapper h4 {
        color: #ffffff;
    }
    .tp_wp_desc_card_wrapper p {
        color: #e2e8f0;
    }

    /* ========================================== */
    /* OVERVIEW HERO BASE STYLES                  */
    /* ========================================== */
    .tp_wp_builder_hero {
        background: rgba(255, 255, 255, 0.06);
        border-radius: 24px;
        padding: 30px;
        display: flex;
        align-items: center;
        gap: 25px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
        animation: tp_wp_scale_pop 0.6s ease-out both;
    }
    .tp_wp_builder_hero::after {
        content: '';
        position: absolute;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(236,72,153,0.15) 0%, transparent 70%);
        top: -50px;
        right: -50px;
        pointer-events: none;
    }
    .tp_wp_builder_logo_box {
        width: 95px;
        height: 95px;
        background: #ffffff;
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 42px;
        color: #d946ef;
        box-shadow: 0 10px 25px rgba(217, 70, 239, 0.15);
        border: 1px solid rgba(217, 70, 239, 0.1);
        flex-shrink: 0;
        animation: tp_float 4s ease-in-out infinite;
    }
    .tp_wp_builder_title {
        font-size: 30px;
        font-weight: 900;
        color: #0f172a;
        margin-bottom: 6px;
        letter-spacing: -0.8px;
        line-height: 1.2;
    }
    .tp_wp_builder_sub {
        font-size: 14px;
        color: #6366f1;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 4px;
    }
    .tp_wp_builder_intro {
        font-size: 15px;
        color: #e2e8f0;
        line-height: 1.8;
        margin-bottom: 30px;
        animation: tp_wp_fade_in 0.8s ease-out both;
    }

    /* Stats Grid */
    .tp_wp_stat_grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        margin-bottom: 40px;
    }
    .tp_wp_stat_card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        padding: 22px 14px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        animation: tp_wp_upward_rise 0.7s ease-out both;
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    .tp_wp_stat_card:hover {
        transform: translate3d(0, -6px, 0);
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(192, 132, 252, 0.45);
        box-shadow: 0 15px 35px rgba(168, 85, 247, 0.2);
    }
    .tp_wp_stat_num {
        font-size: 24px;
        font-weight: 900;
        margin-bottom: 6px;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        display: inline-block;
    }
    .tp_wp_stat_lbl {
        font-size: 11.5px;
        font-weight: 800;
        color: #cbd5e1;
        text-transform: uppercase;
        letter-spacing: 0.6px;
    }

    /* Vertical Featured List */
    .tp_wp_feature_rows {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 40px;
    }
    .tp_wp_feature_row {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        padding: 16px 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
        animation: tp_wp_slide_left 0.7s ease-out both;
        position: relative;
        text-align: left;
    }
    .tp_wp_feature_row:hover {
        transform: scale3d(1.01, 1.01, 1);
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(216, 180, 254, 0.4);
        box-shadow: 0 10px 35px rgba(124, 58, 237, 0.2);
    }
    .tp_wp_feature_row_header {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .tp_wp_feature_row_icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(217, 70, 239, 0.12);
        color: #f472b6;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
        margin: 0;
    }
    .tp_wp_feature_row_content {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }
    .tp_wp_feature_row_title {
        font-size: 15.5px;
        font-weight: 800;
        color: #ffffff;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .tp_wp_feature_row_desc {
        font-size: 13.5px;
        color: #cbd5e1;
        line-height: 1.6;
        margin: 0;
        width: 100%;
    }
    .tp_wp_badge_pro {
        font-size: 9px;
        font-weight: 900;
        color: #f87171;
        background: rgba(239, 68, 68, 0.15);
        border: 1px solid rgba(239, 68, 68, 0.3);
        padding: 2px 7px;
        border-radius: 5px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    /* Small Cards Grid */
    .tp_wp_cards_grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }
    .tp_wp_mini_card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        padding: 18px 16px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        animation: tp_wp_scale_pop 0.7s ease-out both;
    }
    .tp_wp_mini_card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(192, 132, 252, 0.4);
        box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
    }
    .tp_wp_mini_icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(168, 85, 247, 0.15);
        color: #c084fc;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        margin: 0 auto 12px;
    }
    .tp_wp_mini_title {
        font-size: 14px;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 4px;
    }
    .tp_wp_mini_desc {
        font-size: 11.5px;
        color: #cbd5e1;
        line-height: 1.5;
    }

    /* Pill Tags Section */
    .tp_wp_pill_section {
        margin-bottom: 40px;
        animation: tp_wp_fade_in 1s ease-out both;
    }
    .tp_wp_pills {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    .tp_wp_pill {
        font-size: 12px;
        font-weight: 700;
        color: #f472b6;
        background: rgba(219, 39, 119, 0.12);
        border: 1px solid rgba(219, 39, 119, 0.25);
        padding: 7px 16px;
        border-radius: 99px;
        transition: all 0.25s ease;
        cursor: default;
    }
    .tp_wp_pill:hover {
        background: rgba(219, 39, 119, 0.25);
        color: #ffffff;
        transform: scale(1.06);
        box-shadow: 0 4px 15px rgba(219, 39, 119, 0.3);
    }

    /* Section Subheaders */
    .tp_wp_section_header {
        font-size: 15.5px;
        font-weight: 900;
        color: #ffffff;
        margin-bottom: 18px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 10px;
    }
    .tp_wp_section_header i {
        color: #c084fc;
    }

    /* Perfect for Checklist */
    .tp_wp_checklist_row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-bottom: 40px;
        animation: tp_wp_fade_in 1s ease-out both;
    }
    .tp_wp_check_item {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(34, 197, 94, 0.08);
        border: 1px solid rgba(34, 197, 94, 0.25);
        border-radius: 14px;
        padding: 12px 18px;
        font-size: 13px;
        font-weight: 800;
        color: #86efac;
        transition: all 0.2s ease;
    }
    .tp_wp_check_item:hover {
        transform: translateX(5px);
        background: rgba(34, 197, 94, 0.14);
        border-color: rgba(34, 197, 94, 0.4);
    }
    .tp_wp_check_item i {
        font-size: 16px;
        color: #34d399;
    }

    /* Compatibility list */
    .tp_wp_compat_row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        animation: tp_wp_fade_in 1s ease-out both;
        margin-bottom: 40px;
    }
    .tp_wp_compat_item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 700;
        color: #cbd5e1;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        padding: 8px 14px;
        border-radius: 99px;
        transition: all 0.25s ease;
    }
    .tp_wp_compat_item:hover {
        border-color: #34d399;
        background: rgba(34, 197, 94, 0.1);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
    }
    .tp_wp_dot {
        width: 7px;
        height: 7px;
        background-color: #34d399;
        border-radius: 50%;
        display: inline-block;
        box-shadow: 0 0 6px #34d399;
    }

    /* ========================================== */
    /* TECHNICAL SPECIFICATIONS DUAL GRID       */
    /* ========================================== */
    .tp_wp_specs_box {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 20px 24px;
        margin-bottom: 35px;
        animation: tp_wp_smooth_reveal 1.1s ease-out both;
    }
    .tp_wp_specs_grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 24px;
    }
    .tp_wp_spec_item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
        padding-bottom: 10px;
        font-size: 13.5px;
        gap: 12px;
    }
    .tp_wp_spec_item:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }
    .tp_wp_spec_label {
        font-weight: 700;
        color: #cbd5e1;
        white-space: nowrap;
    }
    .tp_wp_spec_val {
        font-weight: 800;
        color: #ffffff;
        text-align: right;
    }

    /* ========================================== */
    /* GPL PREMIUM TRUST BANNER                   */
    /* ========================================== */
    .tp_wp_gpl_trust_banner {
        background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
        border-radius: 24px;
        padding: 25px;
        display: flex;
        align-items: center;
        gap: 20px;
        border: 1px solid rgba(168, 85, 247, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        animation: tp_wp_scale_pop 1.2s ease-out both;
    }
    .tp_wp_trust_icon_wrap {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: rgba(34, 197, 94, 0.15);
        border: 1px solid rgba(34, 197, 94, 0.3);
        color: #34d399;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
        box-shadow: 0 0 15px rgba(34, 197, 94, 0.25);
    }
    .tp_wp_trust_title {
        font-size: 14.5px;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 4px;
    }
    .tp_wp_trust_desc {
        font-size: 12px;
        color: #cbd5e1;
        line-height: 1.5;
    }
    .tp_wp_gpl_benefits {
        display: flex;
        gap: 15px;
        margin-left: auto;
        flex-shrink: 0;
    }
    .tp_wp_gpl_badge {
        font-size: 10.5px;
        font-weight: 800;
        color: #38bdf8;
        background: rgba(56, 189, 248, 0.12);
        border: 1px solid rgba(56, 189, 248, 0.3);
        padding: 4px 10px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* ========================================== */
    /* PERFORMANCE/CACHING WIDGET STYLES         */
    /* ========================================== */
    .tp_wp_gauge_grid {
        display: grid;
        grid-template-columns: 1.2fr 2fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    .tp_wp_gauge_circular_wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 24px;
        position: relative;
    }
    .tp_wp_gauge_svg {
        width: 140px;
        height: 140px;
        transform: rotate(-90deg);
    }
    .tp_wp_gauge_bg_circle {
        fill: none;
        stroke: rgba(255, 255, 255, 0.08);
        stroke-width: 10px;
    }
    .tp_wp_gauge_fill_circle {
        fill: none;
        stroke-width: 10px;
        stroke-linecap: round;
        stroke-dasharray: 439.8;
        stroke-dashoffset: 439.8;
        animation: tp_wp_draw_dash 2s cubic-bezier(0.4, 0, 0.2, 1) both;
    }
    .tp_wp_gauge_percentage {
        position: absolute;
        top: 62px;
        font-size: 28px;
        font-weight: 900;
        color: #ffffff;
    }
    .tp_wp_gauge_lbl {
        margin-top: 15px;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .tp_wp_performance_metrics {
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: center;
    }
    .tp_wp_metric_row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        padding: 14px 20px;
        border-left: 4px solid #f97316;
        font-size: 13.5px;
        font-weight: 700;
        color: #ffffff;
    }
    .tp_wp_metric_val {
        font-weight: 850;
    }

    /* Terminal Report Simulator */
    .tp_wp_terminal_box {
        background: rgba(10, 5, 25, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        padding: 18px;
        font-family: 'Consolas', 'Courier New', monospace;
        font-size: 12px;
        color: #f1f5f9;
        margin-bottom: 25px;
        box-shadow: inset 0 2px 8px rgba(0,0,0,0.6);
    }
    .tp_wp_terminal_header {
        display: flex;
        align-items: center;
        gap: 6px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 8px;
        margin-bottom: 12px;
        color: #94a3b8;
    }
    .tp_wp_terminal_dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }
    .tp_wp_terminal_line {
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .tp_wp_terminal_line.success { color: #34d399; }

    /* ========================================== */
    /* E-COMMERCE STORE STYLES                    */
    /* ========================================== */
    .tp_wp_timeline_horizontal {
        display: flex;
        justify-content: space-between;
        position: relative;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    .tp_wp_timeline_horizontal::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 30px;
        right: 30px;
        height: 2px;
        background: rgba(255, 255, 255, 0.15);
        z-index: 0;
    }
    .tp_wp_timeline_node {
        position: relative;
        z-index: 1;
        text-align: center;
        flex: 1;
    }
    .tp_wp_timeline_circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        border: 2px solid #60a5fa;
        color: #60a5fa;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        margin: 0 auto 10px;
        box-shadow: 0 4px 10px rgba(59, 130, 246, 0.25);
        transition: all 0.3s;
    }
    .tp_wp_timeline_node.active .tp_wp_timeline_circle {
        background: #3b82f6;
        color: #ffffff;
        transform: scale(1.1);
    }
    .tp_wp_timeline_lbl {
        font-size: 12px;
        font-weight: 800;
        color: #ffffff;
    }

    /* ========================================== */
    /* SEO SERP SIMULATOR STYLES                  */
    /* ========================================== */
    .tp_wp_serp_simulator {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        padding: 22px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        margin-bottom: 30px;
        animation: tp_wp_scale_pop 0.6s ease-out;
    }
    .tp_wp_serp_searchbox {
        display: flex;
        align-items: center;
        gap: 10px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(0, 0, 0, 0.25);
        border-radius: 99px;
        padding: 8px 18px;
        font-size: 13px;
        color: #cbd5e1;
        margin-bottom: 20px;
    }
    .tp_wp_serp_title {
        font-size: 19px;
        color: #93c5fd;
        font-weight: 700;
        text-decoration: none;
        margin-bottom: 5px;
        display: inline-block;
    }
    .tp_wp_serp_title:hover {
        text-decoration: underline;
        color: #bfdbfe;
    }
    .tp_wp_serp_link {
        font-size: 13px;
        color: #34d399;
        margin-bottom: 8px;
    }
    .tp_wp_serp_snippet {
        font-size: 14px;
        color: #cbd5e1;
        line-height: 1.6;
    }

    /* ========================================== */
    /* THEME CUSTOMIZER MOCKUP STYLES             */
    /* ========================================== */
    .tp_wp_theme_customizer {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 20px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        padding: 16px;
        margin-bottom: 30px;
        animation: tp_wp_smooth_reveal 0.8s ease-out;
    }
    .tp_wp_customizer_sidebar {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 12px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .tp_wp_customizer_item {
        font-size: 12px;
        font-weight: 700;
        color: #cbd5e1;
        padding: 8px 12px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .tp_wp_customizer_item.active, .tp_wp_customizer_item:hover {
        background: rgba(217, 119, 6, 0.25);
        color: #fbbf24;
        transform: translateX(4px);
    }
    .tp_wp_customizer_preview {
        background: rgba(15, 23, 42, 0.7);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: center;
    }
    .tp_wp_theme_swatches {
        display: flex;
        gap: 8px;
        justify-content: center;
    }
    .tp_wp_swatch {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        cursor: pointer;
        transition: transform 0.2s ease;
        border: 2px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
    }
    .tp_wp_swatch.active, .tp_wp_swatch:hover {
        transform: scale(1.25);
        box-shadow: 0 0 0 2px #d97706;
    }
    .tp_wp_preview_screen {
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        height: 120px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: rgba(2, 6, 23, 0.8);
        position: relative;
    }

    /* ========================================== */
    /* CONVERSION FUNNEL STYLES                   */
    /* ========================================== */
    .tp_wp_funnel_flow {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 30px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 24px;
    }
    .tp_wp_funnel_step {
        width: 100%;
        max-width: 320px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        animation: tp_wp_scale_pop 0.6s ease-out both;
    }
    .tp_wp_funnel_step.step_traffic {
        background: linear-gradient(135deg, #ef4444, #f43f5e);
    }
    .tp_wp_funnel_step.step_optin {
        background: linear-gradient(135deg, #f59e0b, #eab308);
    }
    .tp_wp_funnel_step.step_checkout {
        background: linear-gradient(135deg, #10b981, #059669);
    }
    .tp_wp_funnel_icon {
        font-size: 18px;
    }
    .tp_wp_funnel_label {
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 0.5px;
    }
    .tp_wp_funnel_val {
        font-size: 11px;
        font-weight: 900;
        background: rgba(0, 0, 0, 0.25);
        padding: 3px 8px;
        border-radius: 99px;
    }
    .tp_wp_funnel_arrow {
        font-size: 20px;
        color: #a855f7;
        animation: tp_float 2s ease-in-out infinite;
    }

    /* ========================================== */
    /* REAL-TIME ANALYTICS STYLES                 */
    /* ========================================== */
    .tp_wp_analytics_board {
        background: rgba(2, 6, 23, 0.85);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        padding: 24px;
        color: #f1f5f9;
        margin-bottom: 30px;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.8);
    }
    .tp_wp_live_badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(6, 182, 212, 0.15);
        border: 1px solid rgba(6, 182, 212, 0.3);
        padding: 6px 16px;
        border-radius: 99px;
        margin-bottom: 20px;
    }
    .tp_wp_pulse_dot {
        width: 8px;
        height: 8px;
        background: #22c55e;
        border-radius: 50%;
        display: inline-block;
        position: relative;
    }
    .tp_wp_pulse_dot::after {
        content: '';
        position: absolute;
        inset: -4px;
        background: #22c55e;
        border-radius: 50%;
        opacity: 0.4;
        animation: tp-pulse 1.2s infinite ease-in-out;
    }
    .tp_wp_pulse_lbl {
        font-size: 12px;
        font-weight: 900;
        color: #22c55e;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .tp_wp_analytics_sources {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .tp_wp_source_item {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .tp_wp_source_meta {
        display: flex;
        justify-content: space-between;
        font-size: 12.5px;
        font-family: 'Consolas', monospace;
    }
    .tp_wp_source_meta span {
        color: #cbd5e1;
    }
    .tp_wp_source_meta strong {
        color: #38bdf8;
    }
    .tp_wp_analytics_bar_bg {
        height: 8px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        overflow: hidden;
    }
    .tp_wp_analytics_bar_fill {
        height: 100%;
        border-radius: 4px;
        transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ========================================== */
    /* LMS SYLLABUS PORTAL STYLES                 */
    /* ========================================== */
    .tp_wp_lms_syllabus {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        padding: 24px;
        margin-bottom: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    .tp_wp_syllabus_header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 14px;
        margin-bottom: 16px;
    }
    .tp_wp_course_title {
        font-size: 13.5px;
        font-weight: 850;
        color: #ffffff;
    }
    .tp_wp_course_progress_lbl {
        font-size: 11px;
        font-weight: 900;
        color: #34d399;
        background: rgba(16, 185, 129, 0.15);
        border: 1px solid rgba(16, 185, 129, 0.3);
        padding: 4px 10px;
        border-radius: 99px;
    }
    .tp_wp_syllabus_list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .tp_wp_syllabus_item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
        transition: all 0.2s ease;
    }
    .tp_wp_syllabus_item.completed {
        background: rgba(16, 185, 129, 0.1);
        border-color: rgba(16, 185, 129, 0.3);
    }
    .tp_wp_syllabus_item.active {
        background: rgba(16, 185, 129, 0.18);
        border-color: rgba(16, 185, 129, 0.45);
        font-weight: 750;
    }
    .tp_wp_syllabus_icon {
        font-size: 16px;
        color: #34d399;
        display: inline-flex;
    }
    .tp_wp_syllabus_pulse {
        width: 10px;
        height: 10px;
        background: #34d399;
        border-radius: 50%;
        animation: tp-pulse 1s infinite ease-in-out;
    }
    .tp_wp_syllabus_text {
        font-size: 12px;
        color: #cbd5e1;
    }
    .tp_wp_syllabus_item.active .tp_wp_syllabus_text {
        color: #6ee7b7;
    }

    /* ========================================== */
    /* PREMIUM PACKAGE BENEFITS GRID              */
    /* ========================================== */
    .tp_wp_pkg_grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }
    .tp_wp_pkg_card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 20px 16px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        animation: tp_wp_upward_rise 0.8s ease-out both;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .tp_wp_pkg_card:hover {
        transform: translateY(-6px);
        background: rgba(255, 255, 255, 0.09);
        border-color: rgba(192, 132, 252, 0.4);
        box-shadow: 0 15px 30px rgba(168, 85, 247, 0.2);
    }
    .tp_wp_pkg_icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(168, 85, 247, 0.15);
        color: #c084fc;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        margin: 0 auto 12px;
    }
    .tp_wp_pkg_title {
        font-size: 13.5px;
        font-weight: 850;
        color: #ffffff;
        margin-bottom: 6px;
    }
    .tp_wp_pkg_desc {
        font-size: 11px;
        color: #cbd5e1;
        line-height: 1.5;
    }

    /* Shimmer gloss effect on builder heroes */
    .tp_wp_builder_hero {
        position: relative;
        overflow: hidden;
    }
    .tp_wp_builder_hero::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        transform: translateX(-150%) skewX(-25deg);
        animation: tp_hero_shimmer 6s infinite ease-in-out;
        pointer-events: none;
    }

    /* ========================================== */
    /* RESPONSIVE LAYOUT BREAKPOINTS              */
    /* ========================================== */
    @media (max-width: 1024px) {
        .tp_wp_stat_grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        .tp_wp_cards_grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        .tp_wp_pkg_grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        .tp_wp_theme_customizer {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .tp_wp_gauge_grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .tp_wp_builder_hero {
            flex-direction: column;
            text-align: center;
            padding: 28px;
            gap: 20px;
        }
        .tp_wp_gpl_trust_banner {
            flex-direction: column;
            text-align: center;
            gap: 16px;
            padding: 20px;
        }
        .tp_wp_gpl_benefits {
            margin-left: 0;
            margin-top: 10px;
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        .tp_wp_desc_card_wrapper {
            padding: 30px;
            border-radius: 24px;
        }
        .tp_wp_desc_card_wrapper::before {
            border-radius: 24px;
        }
        .tp_wp_checklist_row {
            grid-template-columns: 1fr;
            gap: 10px;
        }
    }

    @media (max-width: 575px) {
        .tp_wp_desc_card_wrapper {
            padding: 20px 16px;
            border-radius: 20px;
            margin-bottom: 25px;
        }
        .tp_wp_desc_card_wrapper::before {
            border-radius: 20px;
            padding: 1px;
        }
        .tp_wp_builder_hero {
            padding: 22px 14px;
            gap: 15px;
            border-radius: 16px;
        }
        .tp_wp_builder_logo_box {
            width: 70px;
            height: 70px;
            font-size: 30px;
            border-radius: 16px;
        }
        .tp_wp_builder_title {
            font-size: 20px !important;
            letter-spacing: -0.5px;
        }
        .tp_wp_builder_sub {
            font-size: 11px;
        }
        .tp_wp_builder_intro {
            font-size: 13.5px;
            line-height: 1.7;
            margin-bottom: 22px;
        }
        .tp_wp_stat_grid {
            grid-template-columns: 1fr;
            gap: 10px;
            margin-bottom: 25px;
        }
        .tp_wp_stat_card {
            padding: 14px 10px;
            border-radius: 14px;
        }
        .tp_wp_stat_num {
            font-size: 20px;
        }
        .tp_wp_stat_lbl {
            font-size: 10px;
        }
        .tp_wp_feature_rows {
            gap: 10px;
            margin-bottom: 25px;
        }
        .tp_wp_feature_row {
            padding: 14px 16px;
            gap: 14px;
            border-radius: 14px;
        }
        .tp_wp_feature_row_icon {
            width: 38px;
            height: 38px;
            font-size: 16px;
            border-radius: 10px;
        }
        .tp_wp_feature_row_title {
            font-size: 13.5px;
        }
        .tp_wp_feature_row_desc {
            font-size: 12px;
            line-height: 1.5;
        }
        .tp_wp_cards_grid {
            grid-template-columns: 1fr;
            gap: 10px;
            margin-bottom: 25px;
        }
        .tp_wp_mini_card {
            padding: 14px;
            border-radius: 14px;
        }
        .tp_wp_pkg_grid {
            grid-template-columns: 1fr;
            gap: 10px;
            margin-bottom: 25px;
        }
        .tp_wp_pkg_card {
            padding: 14px;
            border-radius: 14px;
        }
        .tp_wp_pkg_icon {
            width: 38px;
            height: 38px;
            font-size: 16px;
            border-radius: 10px;
            margin-bottom: 8px;
        }
        .tp_wp_pkg_title {
            font-size: 12.5px;
        }
        .tp_wp_pkg_desc {
            font-size: 10.5px;
        }
        .tp_wp_theme_customizer {
            padding: 12px;
        }
        .tp_wp_customizer_sidebar {
            padding: 8px;
            gap: 4px;
        }
        .tp_wp_customizer_item {
            font-size: 11px;
            padding: 6px 10px;
        }
        .tp_wp_customizer_preview {
            padding: 12px;
        }
        .tp_wp_funnel_flow {
            padding: 16px;
            gap: 8px;
        }
        .tp_wp_funnel_step {
            padding: 10px 14px;
            border-radius: 10px;
        }
        .tp_wp_funnel_label {
            font-size: 11.5px;
        }
        .tp_wp_funnel_val {
            font-size: 9.5px;
            padding: 2px 6px;
        }
        .tp_wp_funnel_arrow {
            font-size: 16px;
        }
        .tp_wp_analytics_board {
            padding: 16px;
        }
        .tp_wp_live_badge {
            padding: 4px 12px;
            margin-bottom: 14px;
        }
        .tp_wp_pulse_lbl {
            font-size: 10.5px;
        }
        .tp_wp_source_meta {
            font-size: 11.5px;
        }
        .tp_wp_lms_syllabus {
            padding: 16px;
        }
        .tp_wp_syllabus_header {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            padding-bottom: 10px;
            margin-bottom: 12px;
        }
        .tp_wp_course_title {
            font-size: 12.5px;
        }
        .tp_wp_course_progress_lbl {
            font-size: 9.5px;
            padding: 2px 8px;
        }
        .tp_wp_syllabus_item {
            padding: 8px 10px;
            border-radius: 10px;
            gap: 8px;
        }
        .tp_wp_syllabus_text {
            font-size: 11px;
            line-height: 1.4;
        }
        .tp_wp_section_header {
            font-size: 13.5px;
            margin-bottom: 14px;
            padding-bottom: 8px;
        }
        .tp_wp_check_item {
            padding: 10px 14px;
            font-size: 12px;
            border-radius: 10px;
        }
        .tp_wp_check_item i {
            font-size: 14px;
        }
        .tp_wp_compat_row {
            gap: 6px;
            margin-bottom: 25px;
        }
        .tp_wp_compat_item {
            font-size: 11px;
            padding: 6px 10px;
        }
        .tp_wp_specs_box {
            padding: 14px;
            border-radius: 16px;
            margin-bottom: 25px;
        }
        .tp_wp_specs_grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }
        .tp_wp_spec_item {
            padding-bottom: 8px;
            border-bottom: 1px dashed rgba(148, 163, 184, 0.15);
        }
        .tp_wp_spec_item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .tp_wp_spec_label {
            font-size: 12px;
        }
        .tp_wp_spec_val {
            font-size: 12px;
        }
        .tp_wp_spec_item:nth-last-child(2) {
            border-bottom: 1px dashed rgba(148, 163, 184, 0.15);
            padding-bottom: 8px;
        }
        .tp_wp_gpl_trust_banner {
            border-radius: 16px;
        }
        .tp_wp_trust_icon_wrap {
            width: 44px;
            height: 44px;
            font-size: 18px;
        }
        .tp_wp_trust_title {
            font-size: 13px;
        }
        .tp_wp_trust_desc {
            font-size: 11px;
            line-height: 1.45;
        }
    }

    /* ========================================== */
    /* PREMIUM SIDEBAR TRUST CARD STYLES         */
    /* ========================================== */
    .tp_sidebar_trust_card {
        position: relative;
        background: rgba(33, 111, 255, 0.05) !important;
        border-radius: 20px;
        padding: 24px;
        color: #374151 !important;
        border: 1px solid rgba(33, 111, 255, 0.15) !important;
        box-shadow: 0 10px 30px rgba(33, 111, 255, 0.02);
        overflow: hidden;
        margin-top: 25px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        text-align: left;
    }
    .tp_sidebar_trust_card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(33, 111, 255, 0.08);
        border-color: rgba(33, 111, 255, 0.3) !important;
    }
    .tp_trust_glow_bg {
        position: absolute;
        width: 140px;
        height: 140px;
        background: radial-gradient(circle, rgba(33, 111, 255, 0.15) 0%, transparent 70%);
        top: -40px;
        right: -40px;
        pointer-events: none;
        transition: all 0.4s ease;
    }
    .tp_sidebar_trust_card:hover .tp_trust_glow_bg {
        transform: scale(1.3);
        background: radial-gradient(circle, rgba(33, 111, 255, 0.25) 0%, transparent 70%);
    }
    .tp_trust_card_inner {
        position: relative;
        z-index: 1;
    }
    .tp_trust_card_badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 10px;
        font-weight: 900;
        background: rgba(33, 111, 255, 0.1);
        border: 1px solid rgba(33, 111, 255, 0.2);
        color: #216fff;
        padding: 3px 8px;
        border-radius: 6px;
        letter-spacing: 1px;
        margin-bottom: 12px;
        text-transform: uppercase;
    }
    .tp_trust_card_title {
        font-size: 17px;
        font-weight: 800;
        color: #111827 !important;
        margin-bottom: 10px;
        letter-spacing: -0.3px;
        line-height: 1.3;
        text-align: left;
    }
    .tp_trust_card_desc {
        font-size: 12px;
        color: #4b5563 !important;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: left;
    }
    .tp_trust_action_box {
        margin-bottom: 18px;
    }
    .tp_trust_action_btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(135deg, #216fff, #0056e0) !important;
        color: #ffffff !important;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 11px 16px;
        border-radius: 10px;
        transition: all 0.3s ease;
        text-decoration: none !important;
        box-shadow: 0 4px 15px rgba(33, 111, 255, 0.2);
    }
    .tp_trust_action_btn:hover {
        background: linear-gradient(135deg, #0056e0, #216fff) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(33, 111, 255, 0.3);
    }
    .tp_trust_features_list {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        border-top: 1px solid rgba(33, 111, 255, 0.1) !important;
        padding-top: 14px;
    }
    .tp_trust_feat {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 10px;
        font-weight: 800;
        color: #4b5563 !important;
    }
    .tp_trust_feat i {
        color: #10b981;
    }
    /* ========================================== */
    /* GPL Legality & Transparency Section Styles */
    /* ========================================== */
    /* ========================================== */
    /* GPL Legality & Transparency Section Styles */
    /* ========================================== */
    .tp_gpl_transparency_section {
        background: linear-gradient(145deg, rgba(82, 36, 170, 0.55) 0%, rgba(45, 18, 105, 0.78) 100%);
        border: 1px solid rgba(16, 185, 129, 0.35);
        border-radius: 24px;
        padding: 36px;
        margin-top: 30px;
        margin-bottom: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        position: relative;
    }
    .tp_gpl_transparency_section::before {
        display: none;
    }
    .tp_gpl_transparency_section .tp_gpl_tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 10px;
        font-weight: 900;
        color: #34d399;
        background: rgba(16, 185, 129, 0.15);
        border: 1px solid rgba(16, 185, 129, 0.3);
        padding: 4px 12px;
        border-radius: 99px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }
    .tp_gpl_transparency_section .tp_gpl_tag::before {
        content: '';
        width: 6px;
        height: 6px;
        background-color: #34d399;
        border-radius: 50%;
        display: inline-block;
        box-shadow: 0 0 8px #34d399;
    }
    .tp_gpl_transparency_section h3 {
        font-size: 28px;
        font-weight: 900;
        color: #ffffff;
        margin-bottom: 12px;
        text-align: left;
        letter-spacing: -0.5px;
    }
    .tp_gpl_transparency_section h3 span {
        color: #34d399;
        position: relative;
    }
    .tp_gpl_transparency_section h3 span::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 0;
        width: 100%;
        height: 4px;
        background: rgba(16, 185, 129, 0.25);
        border-radius: 2px;
    }
    .tp_gpl_transparency_section .tp_gpl_lead {
        font-size: 15px;
        color: #e2e8f0;
        line-height: 1.7;
        margin-bottom: 32px;
        text-align: left;
    }
    .tp_gpl_cards_grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 32px;
    }
    .tp_gpl_card {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        padding: 20px 24px;
        text-align: left;
        position: relative;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .tp_gpl_card::after {
        display: none;
    }
    .tp_gpl_card:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-4px) translateX(2px);
    }
    .tp_gpl_card:nth-child(1):hover {
        box-shadow: 0 12px 30px rgba(12, 166, 120, 0.2);
        border-color: rgba(12, 166, 120, 0.4);
    }
    .tp_gpl_card:nth-child(2):hover {
        box-shadow: 0 12px 30px rgba(43, 119, 244, 0.2);
        border-color: rgba(43, 119, 244, 0.4);
    }
    .tp_gpl_card:nth-child(3):hover {
        box-shadow: 0 12px 30px rgba(219, 39, 119, 0.2);
        border-color: rgba(219, 39, 119, 0.4);
    }
    .tp_gpl_card_header {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .tp_gpl_card_icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: rgba(12, 166, 120, 0.15);
        color: #34d399;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        margin-bottom: 0;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border: 1px solid rgba(12, 166, 120, 0.3);
        flex-shrink: 0;
    }
    .tp_gpl_card:hover .tp_gpl_card_icon {
        transform: scale(1.08) rotate(3deg);
    }
    .tp_gpl_card_icon.shield {
        background: rgba(43, 119, 244, 0.15);
        color: #60a5fa;
        border-color: rgba(43, 119, 244, 0.3);
    }
    .tp_gpl_card_icon.globe {
        background: rgba(219, 39, 119, 0.15);
        color: #f472b6;
        border-color: rgba(219, 39, 119, 0.3);
    }
    .tp_gpl_card_title,
    .tp_gpl_card h4 {
        font-size: 16px;
        font-weight: 800;
        color: #ffffff;
        margin: 0;
        letter-spacing: -0.3px;
    }
    .tp_gpl_card_desc,
    .tp_gpl_card p {
        font-size: 13.5px;
        color: #cbd5e1;
        line-height: 1.65;
        margin: 0;
        width: 100%;
    }
    .tp_gpl_why_legal {
        background: rgba(16, 185, 129, 0.08);
        border-left: 4px solid #10b981;
        border-radius: 6px 16px 16px 6px;
        padding: 24px 28px;
        text-align: left;
        border-top: 1px solid rgba(16, 185, 129, 0.2);
        border-right: 1px solid rgba(16, 185, 129, 0.2);
        border-bottom: 1px solid rgba(16, 185, 129, 0.2);
    }
    .tp_gpl_why_legal_header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 10px;
    }
    .tp_gpl_why_legal_title {
        font-size: 11px;
        font-weight: 900;
        color: #34d399;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    .tp_gpl_why_legal_line {
        flex-grow: 1;
        height: 1px;
        background-color: rgba(16, 185, 129, 0.3);
    }
    .tp_gpl_why_legal p {
        font-size: 13.5px;
        color: #e2e8f0;
        line-height: 1.65;
        margin: 0 0 14px 0;
    }
    .tp_gpl_why_legal p strong {
        color: #ffffff;
    }
    .tp_gpl_why_legal a {
        font-size: 13.5px;
        font-weight: 800;
        color: #34d399 !important;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: gap 0.2s ease;
    }
    .tp_gpl_why_legal a:hover {
        gap: 10px;
        color: #6ee7b7 !important;
    }

    /* Interactive Compliance Validator Widget */
    .tp_gpl_validator_box {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        padding: 26px;
        color: #f1f5f9;
        margin-bottom: 32px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
        position: relative;
        overflow: hidden;
    }
    .tp_gpl_validator_box::after {
        content: '';
        position: absolute;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
        bottom: -50px;
        right: -50px;
        pointer-events: none;
    }
    .tp_gpl_validator_header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        margin-bottom: 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 18px;
    }
    .tp_gpl_validator_title_wrap {
        display: flex;
        flex-direction: column;
        gap: 6px;
        text-align: left;
    }
    .tp_gpl_validator_badge {
        font-size: 9px;
        font-weight: 900;
        color: #10b981;
        background: rgba(16, 185, 129, 0.1);
        border: 1px solid rgba(16, 185, 129, 0.2);
        padding: 3px 10px;
        border-radius: 6px;
        text-transform: uppercase;
        letter-spacing: 1px;
        width: fit-content;
    }
    .tp_gpl_validator_title_wrap h4 {
        font-size: 16px;
        font-weight: 850;
        color: #ffffff;
        margin: 0;
        letter-spacing: -0.3px;
    }
    .tp_gpl_verify_btn {
        background: linear-gradient(135deg, #10b981, #059669);
        color: #ffffff !important;
        border: none;
        padding: 10px 18px;
        border-radius: 8px;
        font-size: 12px;
        font-weight: 900;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    }
    .tp_gpl_verify_btn:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    }
    .tp_gpl_verify_btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }
    .tp_gpl_checklist_lines {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 22px;
    }
    .tp_gpl_check_line {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 13px;
        color: #94a3b8;
        padding: 10px 14px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.03);
        transition: all 0.3s ease;
        text-align: left;
    }
    .tp_gpl_check_line.completed {
        color: #f1f5f9;
        background: rgba(16, 185, 129, 0.05);
        border-color: rgba(16, 185, 129, 0.15);
    }
    .tp_gpl_check_line i {
        font-size: 15px;
        width: 18px;
        text-align: center;
        color: #64748b;
        transition: all 0.3s ease;
    }
    .tp_gpl_check_line.completed i {
        color: #10b981;
        transform: scale(1.1);
    }
    .tp_gpl_validator_bar {
        height: 6px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 99px;
        overflow: hidden;
        margin-bottom: 18px;
        display: none;
    }
    .tp_gpl_validator_progress {
        height: 100%;
        background: linear-gradient(90deg, #10b981, #34d399);
        width: 0%;
        border-radius: 99px;
        transition: width 0.1s linear;
    }
    .tp_gpl_status_result {
        font-size: 12.5px;
        color: #94a3b8;
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.02);
        padding: 12px 16px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.04);
        text-align: left;
        transition: all 0.3s ease;
    }
    .tp_gpl_status_result.success {
        color: #10b981;
        background: rgba(16, 185, 129, 0.08);
        border-color: rgba(16, 185, 129, 0.2);
        animation: tp_wp_pulse_glow 1.5s infinite alternate;
    }
    @keyframes tp_wp_pulse_glow {
        0% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.1); }
        100% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.3); }
    }
    @media (max-width: 991px) {
        .tp_gpl_transparency_section .tp_gpl_cards_grid {
            flex-direction: column !important;
            gap: 16px !important;
        }
        .tp_gpl_transparency_section {
            padding: 24px !important;
            text-align: center !important;
        }
        .tp_gpl_why_legal {
            text-align: center !important;
        }
    }

    @media (max-width: 767.98px) {
        /* Container and Hero */
        .tp_wp_desc_card_wrapper {
            padding: 18px 14px !important;
            border-radius: 20px !important;
            margin-bottom: 24px !important;
            text-align: left !important;
        }
        
        .tp_wp_builder_hero {
            flex-direction: column !important;
            text-align: center !important;
            padding: 20px 14px !important;
            gap: 12px !important;
            border-radius: 18px !important;
            margin-bottom: 20px !important;
        }
        
        .tp_wp_builder_logo_box {
            width: 58px !important;
            height: 58px !important;
            font-size: 26px !important;
            border-radius: 14px !important;
            margin: 0 auto !important;
        }
        
        .tp_wp_builder_title {
            font-size: 20px !important;
            line-height: 1.3 !important;
            margin-bottom: 4px !important;
        }
        
        .tp_wp_builder_sub {
            font-size: 12px !important;
        }

        .tp_wp_builder_intro {
            font-size: 13.5px !important;
            line-height: 1.65 !important;
            margin-bottom: 20px !important;
            text-align: left !important;
        }

        /* Stats Grid (2-columns on mobile) */
        .tp_wp_stat_grid {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 10px !important;
            margin-bottom: 25px !important;
        }
        
        .tp_wp_stat_card {
            text-align: center !important;
            padding: 14px 10px !important;
            border-radius: 14px !important;
        }

        .tp_wp_stat_num {
            font-size: 20px !important;
            margin-bottom: 4px !important;
        }

        .tp_wp_stat_lbl {
            font-size: 11px !important;
        }

        /* Gauge & Performance */
        .tp_wp_gauge_grid {
            grid-template-columns: 1fr !important;
            gap: 18px !important;
            justify-content: center !important;
            align-items: center !important;
            margin-bottom: 25px !important;
        }
        
        .tp_wp_gauge_circular_wrap {
            margin: 0 auto !important;
        }
        
        .tp_wp_performance_metrics {
            width: 100% !important;
        }
        
        .tp_wp_metric_row {
            text-align: left !important;
            font-size: 12.5px !important;
            padding: 8px 12px !important;
            margin-bottom: 6px !important;
        }

        /* Terminal Diagnostics */
        .tp_wp_terminal_box {
            padding: 14px 12px !important;
            font-size: 11.5px !important;
            border-radius: 14px !important;
            margin-bottom: 20px !important;
        }

        .tp_wp_terminal_header {
            font-size: 11px !important;
            flex-wrap: wrap !important;
            gap: 4px !important;
        }

        .tp_wp_terminal_line {
            font-size: 11.5px !important;
            line-height: 1.5 !important;
            word-break: break-word !important;
        }

        /* Section Header */
        .tp_wp_section_header {
            font-size: 15px !important;
            margin-top: 20px !important;
            margin-bottom: 12px !important;
        }

        /* Feature Row List (Header with Icon + Title, Full-width Description) */
        .tp_wp_feature_rows {
            gap: 10px !important;
            margin-bottom: 25px !important;
        }

        .tp_wp_feature_row {
            flex-direction: column !important;
            text-align: left !important;
            padding: 14px 16px !important;
            gap: 8px !important;
            border-radius: 14px !important;
            align-items: stretch !important;
        }
        
        .tp_wp_feature_row_header {
            display: flex !important;
            align-items: center !important;
            gap: 10px !important;
        }

        .tp_wp_feature_row_icon {
            width: 32px !important;
            height: 32px !important;
            font-size: 14px !important;
            border-radius: 8px !important;
            flex-shrink: 0 !important;
            margin: 0 !important;
        }

        .tp_wp_feature_row_title {
            font-size: 14px !important;
            margin: 0 !important;
        }

        .tp_wp_feature_row_desc {
            font-size: 12.5px !important;
            line-height: 1.55 !important;
            width: 100% !important;
        }

        /* Checklist Items */
        .tp_wp_checklist_row {
            grid-template-columns: 1fr !important;
            gap: 8px !important;
            margin-bottom: 25px !important;
        }

        .tp_wp_check_item {
            font-size: 13px !important;
            padding: 10px 12px !important;
            border-radius: 10px !important;
        }

        /* Packages Grid */
        .tp_wp_pkg_grid {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 10px !important;
            margin-bottom: 25px !important;
        }
        
        .tp_wp_pkg_card {
            text-align: center !important;
            padding: 14px 10px !important;
            border-radius: 14px !important;
        }
        
        .tp_wp_pkg_icon {
            width: 38px !important;
            height: 38px !important;
            font-size: 18px !important;
            margin: 0 auto 8px auto !important;
        }

        .tp_wp_pkg_num {
            font-size: 20px !important;
            margin-bottom: 4px !important;
        }

        .tp_wp_pkg_lbl {
            font-size: 11px !important;
        }

        /* Specs Grid */
        .tp_wp_specs_grid {
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 10px !important;
            margin-bottom: 25px !important;
        }

        .tp_wp_spec_card {
            padding: 12px 10px !important;
            border-radius: 12px !important;
        }

        /* Generic Cards Grid */
        .tp_wp_cards_grid {
            grid-template-columns: 1fr !important;
            gap: 12px !important;
            margin-bottom: 25px !important;
        }

        /* Funnel Steps Flow */
        .tp_wp_funnel_flow {
            flex-direction: column !important;
            align-items: center !important;
            gap: 10px !important;
            margin-bottom: 25px !important;
        }
        
        .tp_wp_funnel_step {
            width: 100% !important;
            text-align: center !important;
            padding: 14px 12px !important;
            border-radius: 14px !important;
        }
        
        .tp_wp_funnel_arrow {
            transform: rotate(90deg) !important;
            margin: 4px 0 !important;
        }

        /* Analytics Board */
        .tp_wp_analytics_board {
            text-align: center !important;
            padding: 16px 14px !important;
            border-radius: 16px !important;
            margin-bottom: 25px !important;
        }
        
        .tp_wp_live_badge {
            margin: 0 auto 8px auto !important;
        }

        /* LMS Syllabus */
        .tp_wp_syllabus_header {
            align-items: center !important;
            text-align: center !important;
        }
        
        .tp_wp_syllabus_item {
            flex-direction: row !important;
            text-align: left !important;
            align-items: flex-start !important;
            padding: 12px 14px !important;
            gap: 10px !important;
            border-radius: 12px !important;
        }
        
        .tp_wp_syllabus_icon {
            width: 32px !important;
            height: 32px !important;
            font-size: 14px !important;
            flex-shrink: 0 !important;
            margin: 0 !important;
        }

        /* Overview GPL Trust Banner */
        .tp_wp_gpl_trust_banner {
            flex-direction: column !important;
            text-align: center !important;
            padding: 16px 14px !important;
            gap: 12px !important;
            border-radius: 16px !important;
            margin-top: 25px !important;
        }

        .tp_wp_gpl_trust_icon {
            margin: 0 auto !important;
        }

        .tp_wp_gpl_trust_btn {
            width: 100% !important;
            justify-content: center !important;
            font-size: 13px !important;
            padding: 10px 16px !important;
        }

        /* ========================================== */
        /* GPL TRANSPARENCY SECTION (MOBILE)         */
        /* ========================================== */
        .tp_gpl_transparency_section {
            padding: 20px 14px !important;
            border-radius: 20px !important;
            margin-bottom: 25px !important;
            text-align: center !important;
        }
        
        .tp_gpl_transparency_section h3 {
            font-size: 18px !important;
            line-height: 1.35 !important;
            margin-bottom: 10px !important;
            text-align: center !important;
        }
        
        .tp_gpl_lead {
            text-align: center !important;
            font-size: 13px !important;
            line-height: 1.6 !important;
            margin-bottom: 18px !important;
        }
        
        .tp_gpl_cards_grid {
            display: flex !important;
            flex-direction: column !important;
            gap: 10px !important;
        }
        
        .tp_gpl_card {
            flex-direction: column !important;
            align-items: stretch !important;
            text-align: left !important;
            padding: 14px 16px !important;
            gap: 8px !important;
            border-radius: 14px !important;
        }
        
        .tp_gpl_card_header {
            display: flex !important;
            align-items: center !important;
            gap: 10px !important;
        }

        .tp_gpl_card_icon {
            width: 32px !important;
            height: 32px !important;
            font-size: 14px !important;
            border-radius: 8px !important;
            flex-shrink: 0 !important;
            margin: 0 !important;
        }

        .tp_gpl_card_title {
            font-size: 14px !important;
            margin: 0 !important;
        }

        .tp_gpl_card_desc {
            font-size: 12.5px !important;
            line-height: 1.55 !important;
            width: 100% !important;
        }
        
        .tp_gpl_why_legal {
            text-align: left !important;
            padding: 16px 14px !important;
            border-radius: 16px !important;
            margin-top: 18px !important;
        }
        
        .tp_gpl_why_legal_header {
            flex-direction: row !important;
            gap: 8px !important;
            align-items: center !important;
            margin-bottom: 10px !important;
        }

        .tp_gpl_why_legal_title {
            font-size: 14px !important;
        }
        
        .tp_gpl_why_legal_line {
            display: none !important;
        }

        .tp_gpl_why_legal_desc {
            font-size: 12px !important;
            line-height: 1.6 !important;
        }

        /* Real-time compliance validator widget on mobile */
        .tp_gpl_validator_box {
            padding: 16px 14px !important;
            border-radius: 16px !important;
            margin-top: 18px !important;
        }
        
        .tp_gpl_validator_header {
            flex-direction: column !important;
            gap: 12px !important;
            text-align: center !important;
            align-items: stretch !important;
        }
        
        .tp_gpl_validator_badge {
            margin: 0 auto 6px auto !important;
            display: inline-flex !important;
            font-size: 10px !important;
        }

        .tp_gpl_validator_title {
            font-size: 14px !important;
        }
        
        .tp_gpl_verify_btn {
            width: 100% !important;
            justify-content: center !important;
            font-size: 12.5px !important;
            padding: 10px 14px !important;
        }
        
        .tp_gpl_check_line {
            text-align: left !important;
            font-size: 12px !important;
            padding: 6px 10px !important;
        }
        
        .tp_gpl_status_result {
            text-align: left !important;
            font-size: 12px !important;
            padding: 10px 12px !important;
        }

        /* Layout Customizer Widget on mobile */
        .tp_wp_theme_customizer {
            grid-template-columns: 1fr !important;
            gap: 12px !important;
        }
        
        .tp_wp_customizer_sidebar {
            display: grid !important;
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 6px !important;
        }
        
        .tp_wp_customizer_item {
            padding: 8px 10px !important;
            font-size: 12px !important;
            text-align: center !important;
            justify-content: center !important;
            border-radius: 10px !important;
        }
        
        .tp_wp_customizer_preview {
            min-height: 130px !important;
            padding: 14px !important;
            border-radius: 14px !important;
        }
    }

    @media (max-width: 480px) {
        .tp_wp_stat_card {
            padding: 12px 6px !important;
        }
        .tp_wp_stat_num {
            font-size: 18px !important;
        }
        .tp_wp_stat_lbl {
            font-size: 10px !important;
        }
        .tp_wp_specs_grid {
            grid-template-columns: 1fr !important;
        }
    }

/* --- Page Style Block 1 --- */
.tp_update_request_btn {
            width: 100%;
            margin-top: 10px;
        }
        .tp_update_request_panel {
            position: fixed;
            top: 140px;
            right: 20px;
            height: auto;
            max-height: calc(100vh - 160px);
            width: 380px;
            max-width: 90%;
            background: #1f0f42;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
            transform: translateX(120%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 999999 !important;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            flex-direction: column;
            color: #cbd5e1;
        }
        .tp_update_request_panel.is-active {
            transform: translateX(0);
        }
        .tp_update_request_inner {
            padding: 24px;
            overflow-y: auto;
            padding-bottom: 70px;
        }
        .tp_update_request_close {
            background: transparent;
            border: none;
            color: #94a3b8;
            float: right;
            font-size: 18px;
            cursor: pointer;
            transition: color 0.2s;
        }
        .tp_update_request_close:hover {
            color: #ffffff;
        }
        .tp_update_request_breadcrumb {
            font-size: 12px;
            color: #a78bfa;
            margin-bottom: 6px;
            font-weight: 600;
        }
        .tp_update_request_title {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 4px;
            color: #ffffff;
        }
        .tp_update_request_text {
            font-size: 13px;
            color: #cbd5e1;
            margin-bottom: 18px;
        }
        .tp_update_version_badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(139, 92, 246, 0.3);
            border: 1px solid rgba(167, 139, 250, 0.4);
            color: #ffffff;
            font-size: 11px;
            font-weight: 600;
            margin-left: 8px;
        }
        .tp_update_request_panel .tp_input_text label {
            font-size: 13px;
            margin-bottom: 4px;
            color: #e2e8f0;
            font-weight: 600;
        }
        .tp_update_request_panel .tp_input_text {
            margin-bottom: 12px;
        }
        .tp_update_request_panel .form-control {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            border-radius: 10px;
            font-size: 13.5px;
        }
        .tp_update_request_panel .form-control:focus {
            background: rgba(255, 255, 255, 0.12);
            border-color: #8b5cf6;
            color: #ffffff;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
        }
        .tp_update_request_panel .tp_btn {
            width: 100%;
            margin-top: 4px;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
            color: #fff;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            padding: 12px;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
        }
        .tp_update_request_actions {
            position: sticky;
            bottom: 0;
            background: linear-gradient(180deg, rgba(31, 15, 66, 0) 0%, #1f0f42 28%);
            padding-top: 8px;
            margin-top: 8px;
        }
        @media (max-width: 575px) {
            .tp_update_request_panel {
                width: 100%;
            }
        }
        .tp_singlepage_section {
            background-color: #2b1464 !important;
            background-image: 
                radial-gradient(circle at 15% 15%, rgba(216, 180, 254, 0.22) 0%, transparent 50%),
                radial-gradient(circle at 85% 35%, rgba(192, 132, 252, 0.18) 0%, transparent 50%),
                radial-gradient(circle at 50% 85%, rgba(147, 51, 234, 0.2) 0%, transparent 55%),
                linear-gradient(180deg, #37197a 0%, #241154 50%, #2f1566 100%) !important;
            min-height: 100vh;
            padding-top: 20px !important;
            padding-bottom: 60px !important;
            color: #f8fafc !important;
            font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif !important;
        }
        .tp_sidebar_sticky {
            position: -webkit-sticky !important;
            position: sticky !important;
            top: 90px !important;
            z-index: 30;
            margin-top: 0 !important;
        }
        @media (max-width: 767px) {
            .tp_sidebar_sticky {
                position: static !important;
            }
        }
        .tp_template_box {
            margin-top: 0 !important;
        }
        .tp_sidebar_category.tp_sidebar_category_single {
            margin-top: 0 !important;
        }
        .tp_sidebar_sticky .tp_leftbar_box,
        .tp_sidebar_sticky .tp_tem_option {
            background: transparent !important;
            background-color: transparent !important;
            border: none !important;
            padding: 0 !important;
            margin: 0 !important;
            box-shadow: none !important;
        }

/* --- Page Style Block 2 --- */
.tp_tab_box .nav-tabs {
                                background: rgba(255, 255, 255, 0.04);
                                backdrop-filter: blur(16px);
                                -webkit-backdrop-filter: blur(16px);
                                border: 1px solid rgba(255, 255, 255, 0.12);
                                border-bottom: none;
                                border-radius: 20px 20px 0 0;
                                padding: 8px 10px 0 10px;
                                gap: 6px;
                            }
                            .tp_tab_box .nav-tabs .nav-link {
                                color: #94a3b8 !important;
                                background: transparent;
                                border: none;
                                font-weight: 600;
                                font-size: 14px;
                                padding: 10px 18px;
                                border-radius: 12px 12px 0 0;
                                transition: all 0.25s ease;
                            }
                            .tp_tab_box .nav-tabs .nav-link:hover {
                                color: #ffffff !important;
                                background: rgba(255, 255, 255, 0.06);
                            }
                            .tp_tab_box .nav-tabs .nav-link.active {
                                color: #ffffff !important;
                                background: linear-gradient(135deg, rgba(139, 92, 246, 0.35) 0%, rgba(59, 130, 246, 0.35) 100%) !important;
                                border: 1px solid rgba(167, 139, 250, 0.4) !important;
                                border-bottom: none !important;
                                font-weight: 700;
                                box-shadow: 0 -4px 15px rgba(139, 92, 246, 0.25);
                            }
                            .tp_tab_box .tab-content {
                                background: rgba(255, 255, 255, 0.04) !important;
                                backdrop-filter: blur(16px);
                                -webkit-backdrop-filter: blur(16px);
                                border: 1px solid rgba(255, 255, 255, 0.12) !important;
                                border-top: none !important;
                                border-radius: 0 0 20px 20px !important;
                                color: #cbd5e1;
                                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
                            }
                            @media (max-width: 767.98px) {
                                .tp_tab_box .nav-tabs {
                                    display: flex !important;
                                    flex-wrap: nowrap !important;
                                    overflow-x: auto !important;
                                    overflow-y: hidden !important;
                                    -webkit-overflow-scrolling: touch !important;
                                    white-space: nowrap !important;
                                    scrollbar-width: none !important;
                                    -ms-overflow-style: none !important;
                                    padding: 6px 6px 0 6px !important;
                                    gap: 6px !important;
                                    border-radius: 16px 16px 0 0 !important;
                                }
                                .tp_tab_box .nav-tabs::-webkit-scrollbar {
                                    display: none !important;
                                    width: 0 !important;
                                    height: 0 !important;
                                }
                                .tp_tab_box .nav-tabs .nav-item {
                                    flex: 0 0 auto !important;
                                }
                                .tp_tab_box .nav-tabs .nav-link {
                                    font-size: 13px !important;
                                    padding: 8px 14px !important;
                                    white-space: nowrap !important;
                                    border-radius: 10px 10px 0 0 !important;
                                }
                                .tp_tab_box .tab-content {
                                    padding: 16px 12px !important;
                                    border-radius: 0 0 16px 16px !important;
                                }
                                .tp_uikit_section.tp_uikit_product {
                                    background: transparent !important;
                                    padding: 0 !important;
                                    margin-top: 25px !important;
                                }
                            }
                            .tp_desc_card {
                                border: 1px solid rgba(255, 255, 255, 0.1);
                                border-radius: 18px;
                                background: rgba(255, 255, 255, 0.02);
                                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
                                overflow: hidden;
                            }
                            .tp_desc_card .tp_desc_header {
                                display: flex;
                                align-items: center;
                                justify-content: space-between;
                                gap: 10px;
                                padding: 16px 22px;
                                background: linear-gradient(135deg, rgba(139, 92, 246, 0.35) 0%, rgba(59, 130, 246, 0.35) 100%);
                                color: #ffffff;
                                font-weight: 800;
                                letter-spacing: .2px;
                                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                            }
                            .tp_desc_card .tp_desc_header i { opacity: .95; color: #38bdf8; }
                            .tp_desc_card .tp_desc_body { padding: 24px; color: #cbd5e1; font-size: 15px; line-height: 1.8; }
                            .tp_desc_card .tp_desc_body h1, .tp_desc_card .tp_desc_body h2, .tp_desc_card .tp_desc_body h3, .tp_desc_card .tp_desc_body h4 {
                                margin-top: 18px;
                                margin-bottom: 12px;
                                color: #ffffff !important;
                                font-weight: 800;
                                position: relative;
                            }
                            .tp_desc_card .tp_desc_body h2::after {
                                content: '';
                                position: absolute;
                                left: 0;
                                bottom: -6px;
                                height: 3px;
                                width: 36%;
                                max-width: 140px;
                                background: linear-gradient(90deg, #38bdf8, #8b5cf6);
                                border-radius: 3px;
                            }
                            .tp_desc_card .tp_desc_body h3::after {
                                content: '';
                                position: absolute;
                                left: 0;
                                bottom: -6px;
                                height: 3px;
                                width: 28%;
                                max-width: 120px;
                                background: linear-gradient(90deg, #8b5cf6, #ec4899);
                                border-radius: 3px;
                            }
                            .tp_desc_card .tp_desc_body a {
                                color: #38bdf8;
                                text-decoration: none;
                                border-bottom: 1px dashed rgba(56, 189, 248, 0.4);
                                transition: all .2s ease;
                            }
                            .tp_desc_card .tp_desc_body a:hover {
                                color: #a78bfa;
                                border-bottom-color: #a78bfa;
                            }
                            .tp_desc_card .tp_desc_body ul { padding-left: 18px; margin-bottom: 14px; }
                            .tp_desc_card .tp_desc_body li { margin: 8px 0; position: relative; padding-left: 18px; }
                            .tp_desc_card .tp_desc_body li::before {
                                content: '';
                                position: absolute;
                                left: 0;
                                top: .6em;
                                width: 7px;
                                height: 7px;
                                border-radius: 50%;
                                background: #38bdf8;
                                box-shadow: 0 0 8px rgba(56, 189, 248, 0.6);
                            }
                            .tp_desc_card .tp_desc_body blockquote {
                                margin: 14px 0;
                                padding: 14px 18px;
                                border-left: 4px solid #8b5cf6;
                                background: rgba(139, 92, 246, 0.1);
                                border-radius: 10px;
                                color: #e2e8f0;
                            }
                            .tp_desc_card .tp_desc_body pre {
                                background: #0f0728;
                                color: #e2e8f0;
                                padding: 16px;
                                border-radius: 12px;
                                overflow: auto;
                                position: relative;
                                margin: 14px 0;
                                border: 1px solid rgba(255, 255, 255, 0.12);
                            }
                            .tp_desc_card .tp_copy_btn {
                                position: absolute;
                                top: 8px;
                                right: 8px;
                                background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
                                color: #fff;
                                border: none;
                                border-radius: 999px;
                                padding: 5px 12px;
                                font-size: 11.5px;
                                cursor: pointer;
                                font-weight: 700;
                            }
                            .tp_desc_card .tp_copy_btn:hover { opacity: 0.9; }
                            .tp_desc_card .tp_desc_body table {
                                width: 100%;
                                border-collapse: collapse;
                                margin: 14px 0;
                                font-size: 14px;
                                background: rgba(255, 255, 255, 0.02);
                                border-radius: 10px;
                                overflow: hidden;
                            }
                            .tp_desc_card .tp_desc_body table th, .tp_desc_card .tp_desc_body table td {
                                border: 1px solid rgba(255, 255, 255, 0.08);
                                padding: 10px 14px;
                            }
                            .tp_desc_card .tp_desc_body table th {
                                background: rgba(255, 255, 255, 0.06);
                                color: #ffffff;
                                font-weight: 700;
                            }
                            .tp_desc_card .tp_desc_body p>strong {
                                background: rgba(139, 92, 246, 0.18);
                                padding: 2px 8px;
                                border-radius: 6px;
                                color: #ffffff;
                            }
                            .tp_desc_badges { display: flex; align-items: center; gap: 8px; }
                            .tp_desc_badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
                            .tp_desc_badge.new { background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; }
                            .tp_desc_badge.updated { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }
                            .tp_main_heading h2 {
                                color: #ffffff !important;
                                font-size: 24px;
                                font-weight: 800;
                                letter-spacing: -0.5px;
                                position: relative;
                                display: inline-block;
                                padding-bottom: 8px;
                            }
                            .tp_main_heading h2::after {
                                content: '';
                                position: absolute;
                                bottom: 0;
                                left: 0;
                                width: 50px;
                                height: 3px;
                                background: linear-gradient(90deg, #38bdf8, #8b5cf6);
                                border-radius: 3px;
                            }
                            .tp_sidebar_trust_card {
                                background: linear-gradient(135deg, rgba(31, 15, 66, 0.95) 0%, rgba(43, 20, 100, 0.92) 100%) !important;
                                backdrop-filter: blur(16px);
                                -webkit-backdrop-filter: blur(16px);
                                border: 1px solid rgba(167, 139, 250, 0.3) !important;
                                border-radius: 20px !important;
                                padding: 24px !important;
                                margin-top: 20px !important;
                                position: relative;
                                overflow: hidden;
                                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), 0 0 20px rgba(124, 58, 237, 0.15) !important;
                            }
                            .tp_trust_card_badge {
                                display: inline-flex !important;
                                align-items: center !important;
                                gap: 6px !important;
                                background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%) !important;
                                color: #000000 !important;
                                font-size: 11px !important;
                                font-weight: 800 !important;
                                padding: 3px 10px !important;
                                border-radius: 99px !important;
                                margin-bottom: 12px !important;
                            }
                            .tp_trust_card_title {
                                font-size: 18px !important;
                                font-weight: 800 !important;
                                color: #ffffff !important;
                                margin-bottom: 8px !important;
                            }
                            .tp_trust_card_desc {
                                font-size: 13.5px !important;
                                color: #cbd5e1 !important;
                                line-height: 1.6 !important;
                                margin-bottom: 16px !important;
                            }
                            .tp_trust_action_btn {
                                display: inline-flex !important;
                                align-items: center !important;
                                justify-content: center !important;
                                gap: 8px !important;
                                width: 100% !important;
                                padding: 12px 18px !important;
                                background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
                                color: #ffffff !important;
                                font-weight: 700 !important;
                                font-size: 14px !important;
                                border-radius: 12px !important;
                                text-decoration: none !important;
                                box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4) !important;
                                transition: all 0.25s ease !important;
                            }
                            .tp_trust_action_btn:hover {
                                transform: translateY(-2px) !important;
                                box-shadow: 0 8px 20px rgba(99, 102, 241, 0.5) !important;
                                color: #ffffff !important;
                            }
                            .tp_trust_features_list {
                                display: flex !important;
                                align-items: center !important;
                                justify-content: space-between !important;
                                gap: 6px !important;
                                margin-top: 14px !important;
                                padding-top: 12px !important;
                                border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
                                font-size: 12px !important;
                                color: #94a3b8 !important;
                            }
                            .tp_trust_feat {
                                color: #94a3b8 !important;
                                font-weight: 600 !important;
                                display: inline-flex !important;
                                align-items: center !important;
                                gap: 4px !important;
                            }
                            .tp_trust_feat i {
                                color: #34d399 !important;
                                margin-right: 4px;
                            }

/* --- Page Style Block 3 --- */
#noFileModal {
        z-index: 999999 !important;
    }
    .modal-backdrop {
        z-index: 999998 !important;
    }
    .tp_nofile_modal_content {
        background: linear-gradient(135deg, rgba(27, 10, 58, 0.96) 0%, rgba(43, 20, 100, 0.94) 50%, rgba(55, 25, 122, 0.96) 100%) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(25px) !important;
        border: 1px solid rgba(167, 139, 250, 0.25) !important;
        border-radius: 24px !important;
        color: #f8fafc !important;
        box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(124, 58, 237, 0.2) !important;
        font-family: 'Outfit', 'Inter', sans-serif !important;
        overflow: hidden !important;
    }
    .tp_nofile_close_btn:hover {
        background: rgba(255, 255, 255, 0.15) !important;
        color: #ffffff !important;
        transform: rotate(90deg) scale(1.1);
    }
    .tp_nofile_icon_wrapper {
        position: relative;
        width: 76px;
        height: 76px;
        margin: 0 auto;
        background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(124, 58, 237, 0.45);
    }
    .tp_nofile_icon {
        font-size: 32px;
        color: #ffffff;
    }
    .tp_rotate_anim {
        animation: rotateIcon infinite 4s linear;
        display: inline-block;
    }
    .tp_nofile_icon_pulse {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid rgba(167, 139, 250, 0.6);
        animation: pulseCircle 2s infinite;
    }
    .tp_nofile_title {
        font-size: 21px;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: -0.3px;
    }
    .tp_nofile_card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(167, 139, 250, 0.15);
        border-radius: 14px;
        backdrop-filter: blur(10px);
    }
    .tp_nofile_text {
        font-size: 13.5px;
        line-height: 1.6;
        color: #cbd5e1;
        text-align: center;
        font-weight: 400;
    }
    .tp_nofile_submit_btn {
        background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #ffffff !important;
        font-weight: 600;
        font-size: 14px;
        border-radius: 12px;
        transition: all 0.25s ease;
        box-shadow: 0 6px 20px rgba(109, 40, 217, 0.4);
    }
    .tp_nofile_submit_btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(109, 40, 217, 0.55);
        background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
    }
    .tp_nofile_submit_btn:active {
        transform: translateY(0);
    }

    @keyframes rotateIcon {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    @keyframes pulseCircle {
        0% { transform: scale(0.95); opacity: 1; }
        100% { transform: scale(1.4); opacity: 0; }
    }

    /* Success Checkmark styling */
    .tp_success_checkmark {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    .tp_success_checkmark .check-icon {
        width: 80px;
        height: 80px;
        position: relative;
        border-radius: 50%;
        box-sizing: content-box;
        border: 4px solid #10b981;
    }
    .tp_success_checkmark .check-icon::before, .tp_success_checkmark .check-icon::after {
        content: '';
        height: 100px;
        position: absolute;
        background: transparent;
        transform: rotate(-45deg);
    }
    .tp_success_checkmark .check-icon .icon-line {
        height: 5px;
        background-color: #10b981;
        display: block;
        border-radius: 2px;
        position: absolute;
        z-index: 10;
    }
    .tp_success_checkmark .check-icon .icon-line.line-tip {
        top: 46px;
        left: 19px;
        width: 25px;
        transform: rotate(45deg);
    }
    .tp_success_checkmark .check-icon .icon-line.line-long {
        top: 38px;
        right: 14px;
        width: 47px;
        transform: rotate(-45deg);
    }
    .tp_success_checkmark .check-icon .icon-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 4px solid rgba(16, 185, 129, 0.25);
        box-sizing: content-box;
        position: absolute;
        z-index: 1;
        top: -4px;
        left: -4px;
    }

/* --- Product Bundle Modern Glassmorphic Cards --- */
.bd-bundle-count-badge {
    background: rgba(168, 85, 247, 0.25);
    color: #d8b4fe;
    border: 1px solid rgba(216, 180, 254, 0.35);
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    margin-left: 8px;
    vertical-align: middle;
    display: inline-block;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.bd-bundle-card {
    background: linear-gradient(135deg, rgba(31, 15, 66, 0.75) 0%, rgba(43, 20, 100, 0.7) 100%);
    border: 1.5px solid rgba(216, 180, 254, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bd-bundle-card:hover {
    background: linear-gradient(135deg, rgba(50, 22, 105, 0.85) 0%, rgba(68, 28, 140, 0.8) 100%);
    border-color: rgba(216, 180, 254, 0.65);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.35), 0 0 16px rgba(168, 85, 247, 0.25);
}

.bd-bundle-thumb-wrapper {
    width: 74px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-bundle-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.bd-bundle-card:hover .bd-bundle-thumb {
    transform: scale(1.08);
}

.bd-bundle-info {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.bd-bundle-title {
    color: #ffffff !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    margin-bottom: 4px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    transition: color 0.2s ease;
}

.bd-bundle-card:hover .bd-bundle-title {
    color: #e9d5ff !important;
}

.bd-bundle-price-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.bd-bundle-price-badge {
    font-size: 12px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: -0.2px;
    display: inline-block;
}

.bd-bundle-price-badge.paid {
    background: rgba(16, 185, 129, 0.18);
    color: #34d399 !important;
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.25);
}

.bd-bundle-price-badge.free {
    background: rgba(56, 189, 248, 0.18);
    color: #38bdf8 !important;
    border: 1px solid rgba(56, 189, 248, 0.4);
}

.bd-bundle-arrow {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 11px;
    transition: all 0.25s ease;
}

.bd-bundle-card:hover .bd-bundle-arrow {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) translateX(2px);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* --- Mobile 60fps Performance Overrides --- */
@media (max-width: 768px) {
    .tp_wp_desc_card_wrapper,
    .tp_tab_box .nav-tabs,
    .tp_tab_box .tab-content,
    .tp_sidebar_trust_card,
    .tp_nofile_modal_content,
    .tp_slide_main,
    .bd-bundle-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    .bd-bundle-card {
        padding: 10px 12px;
    }
    .bd-bundle-thumb-wrapper {
        width: 64px;
        height: 50px;
    }
    .bd-bundle-title {
        font-size: 13px;
    }
    .tp_tab_box {
        contain: layout style;
    }
}
