
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --blue: #1E90FF;
            --blue-deep: #0062CC;
            --blue-mid: #38B6FF;
            --blue-light: #EBF5FF;
            --blue-ultra: #F5FAFF;
            --ink: #1A2535;
            --ink-mid: #4A5568;
            --ink-soft: #9EA8B8;
            --green: #10B981;
            --red: #EF4444;
            --yellow: #F59E0B;
            --purple: #764ba2;
            --radius: 18px;
            --shadow: 0 4px 20px rgba(30, 144, 255, 0.08);
            --pending: #F59E0B;
            --accepted: #10B981;
            --rejected: #EF4444;
        }

        /* ── Standard System Font ── */
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background: linear-gradient(160deg, #F5FAFF 0%, #EBF5FF 50%, #DBEAFE 100%);
            min-height: 100vh;
            color: var(--ink);
            padding-bottom: 110px;
            overflow-x: hidden;
            -webkit-tap-highlight-color: transparent;
        }

        /* Reduce heavy animations on low-end devices or when user prefers reduced motion */
        @media (prefers-reduced-motion: reduce) {

            .shimmer-line,
            .sb-shimmer,
            .ch-shimmer,
            .tpl-tray {
                animation: none !important;
                transition: none !important;
            }
        }

        .reduced-motion-lowperf .shimmer-line,
        .reduced-motion-lowperf .sb-shimmer,
        .reduced-motion-lowperf .ch-shimmer,
        .reduced-motion-lowperf .tpl-tray,
        .reduced-motion-lowperf body::before,
        .reduced-motion-lowperf body::after {
            animation: none !important;
            transition: none !important;
            opacity: 1 !important;
            transform: none !important;
        }

        /* Hide scrollbar for all elements but keep scrolling active */
        html,
        body {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

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

        body::before {
            content: '';
            position: fixed;
            top: -120px;
            right: -80px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(30, 144, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            animation: orbFloat 8s ease-in-out infinite;
        }

        body::after {
            content: '';
            position: fixed;
            bottom: 80px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 98, 204, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            animation: orbFloat 10s ease-in-out infinite reverse;
        }

        @keyframes orbFloat {

            0%,
            100% {
                transform: translateY(0) scale(1)
            }

            50% {
                transform: translateY(-20px) scale(1.05)
            }
        }

        /* ── KYC HEADER STYLE (Keeps Fancy Fonts) ── */
        .page-header {
            font-family: 'DM Sans', sans-serif;
            background: linear-gradient(135deg, rgba(30, 144, 255, 0.95) 0%, rgba(0, 98, 204, 0.95) 100%);
            padding: 14px 16px 56px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(147, 197, 253, 0.3);
        }

        .page-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .page-header::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, transparent 70%);
            top: -80px;
            right: -60px;
            border-radius: 50%;
            pointer-events: none;
        }

        .shimmer-line {
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
            animation: headerShimmer 4s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes headerShimmer {
            0% {
                left: -100%
            }

            60% {
                left: 150%
            }

            100% {
                left: 150%
            }
        }

        .header-inner {
            position: relative;
            z-index: 2;
            max-width: 560px;
            margin: 0 auto;
        }

        .brand-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            padding-bottom: 12px;
        }

        .brand-title-main {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: 2px;
            line-height: 1;
        }

        .brand-title-main .accent {
            color: rgba(255, 255, 255, 0.52);
            font-weight: 300;
        }

        .brand-badge {
            font-size: 0.6rem;
            font-weight: 700;
            background: rgba(255, 255, 255, 0.2);
            padding: 3px 8px;
            border-radius: 12px;
            color: #fff;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* Profile Block Layout */
        .header-profile {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 16px;
            width: 100%;
        }

        .avatar-wrap {
            position: relative;
            flex-shrink: 0;
            cursor: pointer;
        }

        .avatar-circle {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.22);
            border: 2.5px solid rgba(255, 255, 255, 0.45);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Syne', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            transition: transform 0.2s;
        }

        .avatar-circle:hover {
            transform: scale(1.05);
        }

        .avatar-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .avatar-edit-dot {
            position: absolute;
            bottom: -4px;
            right: -4px;
            width: 22px;
            height: 22px;
            background: white;
            border-radius: 50%;
            border: 2px solid var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .avatar-edit-dot i {
            color: var(--blue-deep);
            font-size: 0.55rem;
        }

        .online-dot {
            position: absolute;
            top: -3px;
            left: -3px;
            width: 14px;
            height: 14px;
            background: #22C55E;
            border-radius: 50%;
            border: 2px solid var(--blue);
            box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.4);
            transition: background 0.3s;
        }

        .online-dot.offline {
            background: #94A3B8;
            box-shadow: none;
        }

        .name-card {
            min-width: 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .expert-name {
            font-family: 'DM Sans', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: -0.3px;
            text-transform: capitalize;
            color: white;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
            line-height: 1.2;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            word-break: break-word;
        }

        .org-inline {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            display: none;
            align-items: flex-start;
            gap: 5px;
            line-height: 1.3;
            word-break: break-word;
        }

        .org-inline.show {
            display: flex;
        }

        .org-inline i {
            font-size: 0.65rem;
            opacity: 0.8;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .classes-label {
            font-size: 0.72rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin-top: 4px;
            display: none;
            word-break: break-word;
        }

        /* ── MASTER BADGE (Wraps cleanly over 2 lines) ── */
        .master-badge {
            display: inline-flex;
            align-items: flex-start;
            gap: 6px;
            flex-wrap: wrap;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 100%);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 12px;
            padding: 6px 10px;
            font-size: 0.7rem;
            color: #fff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            margin-top: 2px;
            line-height: 1.4;
        }

        .master-badge i {
            color: #FFE066;
            font-size: 0.75rem;
            filter: drop-shadow(0 0 4px rgba(255, 224, 102, 0.6));
            margin-top: 2px;
            flex-shrink: 0;
        }

        .master-prefix {
            opacity: 0.85;
            font-weight: 600;
            flex-shrink: 0;
        }

        .master-text {
            font-weight: 800;
            word-break: break-word;
            display: block;
            white-space: normal;
            overflow: hidden;
            line-height: 1.2;
            max-height: calc(1.2em * 2);
        }

        .role-line {
            display: flex;
            flex-direction: column;
            gap: 3px;
            margin-top: 4px;
        }

        .role-text {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 600;
            margin-top: 2px;
        }

        /* ── VERIFIED BADGE (Sits below master badge) ── */
        .verify-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 9px;
            border-radius: 20px;
            font-size: 0.62rem;
            font-weight: 700;
            border: 1.5px solid;
            white-space: nowrap;
            width: fit-content;
            margin-top: 4px;
        }

        .verify-badge.verified {
            background: rgba(16, 185, 129, 0.15);
            border-color: rgba(16, 185, 129, 0.35);
            color: rgba(255, 255, 255, 0.95);
        }

        .verify-badge.unverified {
            background: rgba(251, 191, 36, 0.15);
            border-color: rgba(251, 191, 36, 0.35);
            color: rgba(255, 255, 255, 0.9);
        }

        /* ── CONTROL CENTER GRID (2x2) ── */
        .qc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-bottom: 12px;
            width: 100%;
        }

        .qc-btn {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 14px;
            padding: 12px 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.2s;
            backdrop-filter: blur(10px);
            color: white;
            text-decoration: none;
            text-align: left;
            position: relative;
        }

        .qc-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-1px);
        }

        .qc-icon {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            flex-shrink: 0;
            position: relative;
        }

        .qc-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .qc-title {
            font-size: 0.75rem;
            font-weight: 700;
            line-height: 1.1;
        }

        .qc-sub {
            font-size: 0.6rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        .qc-btn.active .qc-icon {
            background: rgba(34, 197, 94, 0.25);
            color: #4ade80;
        }

        .qc-btn.inactive .qc-icon {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }

        .qc-btn.inactive .qc-title {
            text-decoration: line-through;
            text-decoration-color: rgba(255, 255, 255, 0.4);
            opacity: 0.7;
        }

        /* Live Preview button */
        .live-prev-btn {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(255, 255, 255, 0.18);
            border: 1.5px solid rgba(255, 255, 255, 0.45);
            border-radius: 12px;
            padding: 7px 13px;
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            backdrop-filter: blur(10px);
            transition: all 0.2s;
            white-space: nowrap;
            font-family: 'Syne', sans-serif;
        }

        .live-prev-btn .lpb-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #6ee7b7;
            box-shadow: 0 0 5px #6ee7b7;
            animation: lpPulse 1.5s infinite;
            flex-shrink: 0;
        }

        @keyframes lpPulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .4;
                transform: scale(1.45)
            }
        }

        .live-prev-btn:hover {
            background: rgba(255, 255, 255, 0.28);
            transform: scale(1.04);
        }

        /* Desktop: bigger + center it in web view */
        @media(min-width:768px) {
            .live-prev-btn {
                font-size: 0.85rem;
                padding: 9px 18px;
            }
        }

        .hdr-refresh-btn {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.25);
            transition: background 0.2s;
            color: white;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .hdr-refresh-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.05);
        }

        .qc-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--red);
            color: white;
            font-size: 10px;
            font-weight: 900;
            padding: 2px 6px;
            border-radius: 10px;
            border: 2px solid var(--blue-deep);
            display: none;
        }

        .qc-badge.visible {
            display: block;
            animation: badgePop 0.3s ease;
        }

        @keyframes badgePop {
            0% {
                transform: scale(0)
            }

            80% {
                transform: scale(1.2)
            }

            100% {
                transform: scale(1)
            }
        }

        /* Experience & Rating Pills */
        .header-stats-row {
            display: flex;
            gap: 8px;
            margin-top: 10px;
        }

        .hstat-pill {
            flex: 1;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 14px;
            padding: 12px 14px;
            backdrop-filter: blur(10px);
            transition: background 0.2s;
            cursor: pointer;
        }

        .hstat-pill:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .htile-label {
            font-size: 0.65rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.85);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .htile-val {
            font-family: 'Syne', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: white;
            line-height: 1;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .htile-stars {
            display: flex;
            align-items: center;
            gap: 2px;
            margin-top: 5px;
        }

        .htile-stars i {
            font-size: 0.7rem;
            color: #FFE066;
        }

        .htile-sub {
            font-size: 0.6rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 4px;
        }

        /* ── WRAP & BODY ── */
        .wrap {
            max-width: 560px;
            margin: 0 auto;
            padding: 0 16px;
            position: relative;
            z-index: 1;
        }

        @keyframes cardIn {
            from {
                opacity: 0;
                transform: translateY(-16px) scale(0.97)
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1)
            }
        }

        .stats-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: -38px;
            margin-bottom: 14px;
            position: relative;
            z-index: 10;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1.5px solid rgba(30, 144, 255, 0.15);
            border-radius: var(--radius);
            box-shadow: 0 6px 24px rgba(30, 144, 255, 0.1);
            overflow: hidden;
            animation: cardIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
        }

        .stat-item {
            padding: 10px 6px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            border-right: 1px solid rgba(30, 144, 255, 0.1);
            transition: background 0.15s;
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-num {
            font-family: 'Syne', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--ink);
            line-height: 1;
        }

        .stat-num.green {
            color: var(--green);
        }

        .stat-num.blue {
            color: var(--blue);
        }

        .stat-lbl {
            font-size: 0.58rem;
            font-weight: 700;
            color: var(--ink-soft);
            text-transform: uppercase;
            letter-spacing: 0.4px;
        }

        .section {
            margin-top: 14px;
        }

        .section-label {
            font-family: 'Syne', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            color: var(--ink-soft);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            padding: 0 2px;
        }

        /* BALANCE WIDGET */
        .bal-widget {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border: 1.5px solid rgba(30, 144, 255, 0.15);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 16px 18px;
            margin-bottom: 14px;
        }

        .bal-widget.low {
            border-color: rgba(239, 68, 68, 0.3);
            background: rgba(255, 240, 240, 0.8);
        }

        .bal-widget.unlimited {
            border-color: rgba(30, 144, 255, 0.3);
        }

        .bal-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .bal-left-info {
            display: flex;
            align-items: center;
            gap: 11px;
            flex: 1;
            min-width: 0;
        }

        .bal-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: var(--blue-ultra);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--blue);
            flex-shrink: 0;
            border: 1px solid rgba(30, 144, 255, 0.2);
        }

        .bal-icon.low {
            background: rgba(239, 68, 68, 0.1);
            color: var(--red);
            border-color: rgba(239, 68, 68, 0.2);
        }

        .bal-text h4 {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            color: var(--ink);
            line-height: 1;
        }

        .bal-text p {
            font-size: 0.7rem;
            color: var(--ink-soft);
            margin-top: 2px;
            font-weight: 600;
            text-transform: uppercase;
        }



        .bal-recharge-pill {
            background: linear-gradient(135deg, var(--blue), var(--blue-deep));
            color: white;
            border: none;
            border-radius: 20px;
            padding: 9px 18px;
            font-family: 'DM Sans', sans-serif;
            font-size: .8rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
            transition: .2s;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .bal-recharge-pill:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(30, 144, 255, .4);
        }

        .bal-slots-bar-wrap {
            margin-top: 12px;
            display: none;
        }

        .bal-slots-bar-wrap.visible {
            display: block;
        }

        .bal-slots-bar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;
        }

        .bal-slots-bar-label {
            font-size: 0.68rem;
            font-weight: 600;
            color: var(--ink-soft);
        }

        .bal-slots-bar-count {
            font-size: 0.72rem;
            font-weight: 800;
            color: var(--ink);
        }

        .bal-slots-bar-track {
            height: 6px;
            background: rgba(0, 0, 0, 0.07);
            border-radius: 20px;
            overflow: hidden;
        }

        .bal-slots-bar-fill {
            height: 100%;
            border-radius: 20px;
            background: linear-gradient(90deg, var(--blue), var(--blue-deep));
            transition: width 0.6s cubic-bezier(.4, 0, .2, 1);
        }

        /* LOW BALANCE MODAL */
        .bal-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .5);
            backdrop-filter: blur(6px);
            z-index: 9999999;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        .bal-modal-overlay.open {
            display: flex;
        }

        .bal-modal {
            background: white;
            border-radius: 24px;
            padding: 28px 24px;
            max-width: 360px;
            width: 100%;
            text-align: center;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
            border: 1px solid rgba(30, 144, 255, 0.2);
        }

        .bal-modal .modal-icon {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            background: rgba(239, 68, 68, .08);
            color: var(--red);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 14px;
        }

        .bal-modal h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.15rem;
            color: var(--ink);
            margin-bottom: 8px;
            font-weight: 800;
        }

        .bal-modal p {
            font-size: .85rem;
            color: var(--ink-soft);
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .bal-modal .modal-recharge {
            width: 100%;
            background: linear-gradient(135deg, var(--blue), var(--blue-deep));
            color: white;
            border: none;
            border-radius: 12px;
            padding: 13px;
            font-family: 'DM Sans', sans-serif;
            font-size: .9rem;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
            transition: .2s;
            margin-bottom: 9px;
        }

        .bal-modal .modal-recharge:hover {
            transform: translateY(-2px);
        }

        .bal-modal .modal-cancel {
            width: 100%;
            background: #F3F4F6;
            color: var(--ink-soft);
            border: none;
            border-radius: 12px;
            padding: 11px;
            font-family: 'DM Sans', sans-serif;
            font-size: .83rem;
            font-weight: 600;
            cursor: pointer;
            transition: .2s;
        }

        /* TOOLBAR */
        .toolbar {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border: 1.5px solid rgba(30, 144, 255, 0.15);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 14px 16px;
            margin-bottom: 14px;
        }

        .toolbar-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-bottom: 12px;
        }

        /* ── REQUEST FILTER PILLS ── */
        .req-filter-pills {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-top: 10px;
        }

        .rfp {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 6px 12px;
            border-radius: 20px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            border: 1.5px solid rgba(30, 144, 255, 0.2);
            background: #fff;
            color: var(--ink-soft);
            cursor: pointer;
            transition: all 0.18s;
            white-space: nowrap;
        }

        .rfp i {
            font-size: 0.65rem;
        }

        .rfp.active[data-f="pending"] {
            background: rgba(245, 158, 11, 0.1);
            border-color: rgba(245, 158, 11, 0.4);
            color: #92400E;
        }

        .rfp.active[data-f="accepted"] {
            background: rgba(16, 185, 129, 0.1);
            border-color: rgba(16, 185, 129, 0.4);
            color: #065F46;
        }

        .rfp.active[data-f="all"] {
            background: rgba(30, 144, 255, 0.1);
            border-color: rgba(30, 144, 255, 0.4);
            color: var(--blue-deep);
        }

        .rfp.active[data-f="rejected"] {
            background: rgba(239, 68, 68, 0.08);
            border-color: rgba(239, 68, 68, 0.3);
            color: #991B1B;
        }

        .rfp-cnt {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.09);
            border-radius: 99px;
            min-width: 18px;
            height: 18px;
            padding: 0 5px;
            font-size: 0.65rem;
            font-weight: 900;
        }

        /* ── COMPACT ACCEPTED ROW ── */
        .acc-row {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.85);
            border: 1.5px solid rgba(16, 185, 129, 0.22);
            border-radius: 13px;
            padding: 9px 14px;
            transition: box-shadow 0.15s;
            animation: fadeUp 0.25s ease both;
        }

        .acc-row:hover {
            box-shadow: 0 4px 14px rgba(16, 185, 129, 0.14);
        }

        .acc-av {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--green), #059669);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            font-weight: 800;
            color: white;
        }

        .acc-info {
            flex: 1;
            min-width: 0;
        }

        .acc-name {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--ink);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .acc-meta {
            font-size: 0.68rem;
            color: var(--ink-soft);
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 1px;
        }

        .acc-meta .ph {
            color: var(--green);
            font-weight: 700;
        }

        .acc-chat-btn {
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--blue), var(--blue-deep));
            color: #fff;
            border: none;
            border-radius: 9px;
            padding: 6px 12px;
            font-size: 0.72rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 2px 8px rgba(30, 144, 255, 0.28);
            transition: all 0.15s;
        }

        .acc-chat-btn:hover {
            transform: translateY(-1px);
        }

        .acc-chat-btn i {
            font-size: 0.65rem;
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--ink);
        }

        .section-count {
            background: linear-gradient(135deg, var(--blue), var(--blue-deep));
            color: white;
            font-size: 0.68rem;
            font-weight: 700;
            padding: 2px 9px;
            border-radius: 20px;
        }

        .search-wrap {
            position: relative;
        }

        .search-wrap i {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--ink-soft);
            font-size: 0.8rem;
        }

        .search-wrap input {
            background: var(--blue-ultra);
            border: 1.5px solid rgba(30, 144, 255, 0.2);
            border-radius: 10px;
            padding: 8px 12px 8px 30px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.82rem;
            color: var(--ink);
            outline: none;
            transition: all 0.2s;
            width: 160px;
        }

        .search-wrap input:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
            width: 190px;
            background: white;
        }


        .time-pill,
        .filter-pill {
            padding: 5px 12px;
            border-radius: 20px;
            border: 1.5px solid rgba(30, 144, 255, 0.2);
            background: rgba(255, 255, 255, 0.8);
            font-family: 'DM Sans', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--ink-soft);
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .time-pill:hover,
        .filter-pill:hover {
            border-color: var(--blue);
            color: var(--blue-deep);
        }

        .time-pill.active,
        .filter-pill.active {
            background: linear-gradient(135deg, var(--blue), var(--blue-deep));
            color: white;
            border-color: transparent;
            box-shadow: 0 2px 8px rgba(30, 144, 255, 0.3);
        }

        .fpill-badge {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 99px;
            padding: 0 5px;
            font-size: 0.65rem;
            font-weight: 800;
            margin-left: 3px;
        }

        /* REQUEST CARDS */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(12px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .cards-grid {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .req-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border: 1.5px solid rgba(30, 144, 255, 0.15);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: transform 0.2s;
            animation: fadeUp 0.3s ease both;
        }

        .req-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 32px rgba(30, 144, 255, 0.15);
        }

        .card-top-bar {
            height: 3px;
        }

        .card-top-bar.pending {
            background: linear-gradient(90deg, var(--pending), #FBBF24);
        }

        .card-top-bar.accepted {
            background: linear-gradient(90deg, var(--accepted), #34D399);
        }

        .card-top-bar.rejected {
            background: linear-gradient(90deg, var(--rejected), #F87171);
        }

        .card-body {
            padding: 14px 16px;
        }

        .card-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 10px;
            gap: 10px;
        }

        .client-row {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            min-width: 0;
        }

        .client-av {
            width: 42px;
            height: 42px;
            border-radius: 13px;
            background: linear-gradient(135deg, var(--blue), var(--blue-deep));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: white;
            flex-shrink: 0;
        }

        .client-text h4 {
            font-family: 'Syne', sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--ink);
        }

        .time-tag {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.68rem;
            color: var(--ink-soft);
            margin-top: 2px;
        }

        .status-chip {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.68rem;
            font-weight: 700;
            border: 1.5px solid;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .status-chip.pending {
            background: rgba(245, 158, 11, 0.1);
            color: #92400E;
            border-color: rgba(245, 158, 11, 0.25);
        }

        .status-chip.accepted {
            background: rgba(16, 185, 129, 0.1);
            color: #065F46;
            border-color: rgba(16, 185, 129, 0.25);
        }

        .status-chip.rejected {
            background: rgba(239, 68, 68, 0.08);
            color: #991B1B;
            border-color: rgba(239, 68, 68, 0.2);
        }

        .chip-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: currentColor;
        }

        .client-contact {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-bottom: 10px;
            background: var(--blue-ultra);
            border: 1px solid rgba(30, 144, 255, 0.15);
            border-radius: 10px;
            padding: 8px 12px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--ink-mid);
        }

        .contact-item i {
            color: var(--blue);
            font-size: 0.75rem;
            width: 14px;
        }

        .msg-preview {
            background: #fff;
            border-radius: 10px;
            padding: 9px 12px;
            border: 1px solid rgba(30, 144, 255, 0.15);
            font-size: 0.8rem;
            color: var(--ink-soft);
            line-height: 1.5;
        }

        .card-footer {
            padding: 10px 16px 14px;
            border-top: 1px solid rgba(30, 144, 255, 0.1);
            display: flex;
            gap: 8px;
        }

        .act-btn {
            flex: 1;
            padding: 9px 12px;
            border: none;
            border-radius: 11px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: all 0.2s;
        }

        .act-btn.accept {
            background: linear-gradient(135deg, #22c55e, #16a34a);
            color: white;
            box-shadow: 0 3px 10px rgba(34, 197, 94, 0.3);
        }

        .act-btn.accept:hover {
            transform: translateY(-1px);
            box-shadow: 0 5px 14px rgba(34, 197, 94, 0.4);
        }

        .act-btn.reject {
            background: rgba(239, 68, 68, 0.08);
            color: var(--red);
            border: 1.5px solid rgba(239, 68, 68, 0.18);
        }

        .act-btn.reject:hover {
            background: #ef4444;
            color: white;
        }

        .act-btn.chat {
            background: linear-gradient(135deg, var(--blue), var(--blue-deep));
            color: white;
            box-shadow: 0 3px 10px rgba(30, 144, 255, 0.3);
        }

        .act-btn.chat:hover {
            transform: translateY(-1px);
            box-shadow: 0 5px 14px rgba(30, 144, 255, 0.4);
        }

        .act-btn.locked {
            background: rgba(239, 68, 68, 0.08);
            color: var(--red);
            border: 1.5px solid rgba(239, 68, 68, 0.18);
        }

        /* AD PROMO WIDGET */
        .ad-promo-section {
            margin-top: 24px;
        }

        .ad-preview-label {
            font-size: 0.68rem;
            font-weight: 700;
            color: var(--ink-soft);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            padding: 0 2px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ad-preview-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(30, 144, 255, 0.15);
        }

        /* ── MINI AD BANNER ── */
        .mini-ad-wrap {
            cursor: pointer;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(30, 144, 255, 0.18);
            border: 2px solid rgba(30, 144, 255, 0.35);
            transition: transform 0.25s, box-shadow 0.25s;
            position: relative;
        }

        .mini-ad-wrap:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 48px rgba(30, 144, 255, 0.28);
        }

        .mini-banner {
            width: 100%;
            height: 148px;
            display: flex;
            align-items: stretch;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0B1120 0%, #1A2535 60%, #1a3a6b 100%);
        }

        .mini-banner-shimmer {
            position: absolute;
            inset: 0;
            background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.07) 50%, transparent 80%);
            background-size: 200% 100%;
            animation: mbShim 4s ease-in-out infinite;
            pointer-events: none;
            z-index: 10;
        }

        @keyframes mbShim {
            0% {
                background-position: -100% 0;
            }

            60% {
                background-position: 200% 0;
            }

            100% {
                background-position: 200% 0;
            }
        }

        .mini-edge-t {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #1E90FF 20%, #38B6FF 50%, #1E90FF 80%, transparent);
            z-index: 11;
            animation: edgeGlow 3s ease-in-out infinite alternate;
        }

        @keyframes edgeGlow {
            0% {
                opacity: 0.5;
            }

            100% {
                opacity: 1;
            }
        }

        /* Logo box */
        .mini-logo-box {
            width: 100px;
            flex-shrink: 0;
            background: rgba(30, 144, 255, 0.1);
            border-right: 2px dashed rgba(30, 144, 255, 0.35);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 5;
            position: relative;
        }

        .mini-logo-box img {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 16px rgba(30, 144, 255, 0.4);
        }

        .mini-logo-box .mini-logo-fallback {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--blue), var(--blue-deep));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Syne', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 16px rgba(30, 144, 255, 0.4);
        }

        .mini-logo-sub {
            font-size: 7px;
            font-weight: 800;
            color: rgba(30, 144, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            text-align: center;
        }

        /* Brand block */
        .mini-brand-block {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            z-index: 5;
        }

        .mini-brand-top {
            height: 46px;
            flex-shrink: 0;
            padding: 6px 10px 4px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 3px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            overflow: hidden;
        }

        .mini-b-name {
            font-size: 13px;
            font-weight: 800;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            background: rgba(0, 98, 204, 0.8);
            padding: 2px 8px;
            border-radius: 5px;
            display: inline-block;
            max-width: 100%;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .mini-b-tag {
            font-size: 8px;
            font-weight: 600;
            color: #F5FAFF;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            background: rgba(30, 144, 255, 0.65);
            padding: 1px 7px;
            border-radius: 4px;
            display: inline-block;
            max-width: 100%;
        }

        /* Cards zone */
        .mini-cards-zone {
            flex: 1;
            display: flex;
            align-items: stretch;
            background: rgba(0, 0, 0, 0.38);
            overflow: hidden;
        }

        .mini-adcard {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 6px 5px 20px;
            position: relative;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mini-adcard:first-child {
            border-left: none;
        }

        /* Card 1 &mdash; Discount */
        .mini-disc-badge {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 35%, #ef4444, #b91c1c);
            border: 2px dashed rgba(255, 255, 255, 0.6);
            box-shadow: 0 3px 12px rgba(239, 68, 68, 0.5);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            animation: spin-slow 8s linear infinite;
        }

        @keyframes spin-slow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .mini-disc-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: spin-slow-rev 8s linear infinite;
        }

        @keyframes spin-slow-rev {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(-360deg);
            }
        }

        .mini-disc-pct {
            font-size: 14px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
        }

        .mini-disc-off {
            font-size: 6px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
        }

        .mini-card-lbl {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            font-size: 7px;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            text-align: center;
            padding: 2px 3px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .mini-lbl-red {
            background: rgba(185, 28, 28, 0.75);
        }

        .mini-lbl-blue {
            background: rgba(0, 98, 204, 0.75);
        }

        .mini-lbl-green {
            background: rgba(5, 150, 105, 0.75);
        }

        /* Card 2 &mdash; Classes */
        .mini-cs-range {
            font-size: 13px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            text-align: center;
        }

        .mini-cs-subjects {
            font-size: 7px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 0.04em;
            text-align: center;
            line-height: 1.4;
            margin-top: 3px;
        }

        /* Card 3 &mdash; CTA */
        .mini-cta-free {
            font-size: 15px;
            font-weight: 800;
            color: #FCD34D;
            line-height: 1;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        .mini-cta-demo {
            font-size: 8px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            text-align: center;
            margin-top: 2px;
        }

        .mini-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            background: linear-gradient(135deg, #10B981, #059669);
            color: #fff;
            font-size: 7px;
            font-weight: 800;
            padding: 3px 8px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.5);
            margin-top: 3px;
            animation: ctaPulse 2s ease-in-out infinite alternate;
        }

        @keyframes ctaPulse {
            0% {
                transform: scale(1);
                box-shadow: 0 2px 8px rgba(16, 185, 129, 0.5);
            }

            100% {
                transform: scale(1.06);
                box-shadow: 0 4px 14px rgba(16, 185, 129, 0.7);
            }
        }

        /* Create Ad CTA strip below banner */
        .mini-ad-cta-strip {
            background: linear-gradient(135deg, #0062CC, #1E90FF);
            padding: 10px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .mini-ad-cta-text {
            font-size: 0.78rem;
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .mini-ad-cta-text span {
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
        }

        .mini-ad-cta-btn {
            background: #fff;
            color: var(--blue-deep);
            font-family: 'Syne', sans-serif;
            font-size: 0.72rem;
            font-weight: 800;
            padding: 6px 14px;
            border-radius: 20px;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            transition: all 0.2s;
            flex-shrink: 0;
        }

        .mini-ad-cta-btn:hover {
            transform: scale(1.05);
        }

        /* AD CLICK MODAL */
        .ad-click-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(10, 18, 30, 0.6);
            backdrop-filter: blur(8px);
            z-index: 9999999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .ad-click-overlay.open {
            display: flex;
        }

        .ad-click-modal {
            background: #fff;
            border-radius: 24px;
            padding: 28px 24px;
            max-width: 340px;
            width: 100%;
            text-align: center;
            box-shadow: 0 24px 60px rgba(30, 144, 255, 0.2);
            border: 1.5px solid rgba(30, 144, 255, 0.15);
            animation: popUp 0.32s cubic-bezier(0.34, 1.4, 0.64, 1);
        }

        @keyframes popUp {
            from {
                opacity: 0;
                transform: scale(0.88) translateY(16px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .ad-click-icon {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--blue-light), #DBEAFE);
            border: 2px solid rgba(30, 144, 255, 0.2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 14px;
        }

        .ad-click-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .ad-click-sub {
            font-size: 0.82rem;
            color: var(--ink-soft);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .ad-click-features {
            display: flex;
            flex-direction: column;
            gap: 7px;
            background: var(--blue-ultra);
            border: 1px solid rgba(30, 144, 255, 0.15);
            border-radius: 14px;
            padding: 12px 14px;
            margin-bottom: 18px;
            text-align: left;
        }

        .ad-click-feat {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--ink-mid);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .ad-click-feat i {
            color: var(--blue);
            font-size: 0.7rem;
            flex-shrink: 0;
        }

        .ad-click-go {
            width: 100%;
            background: linear-gradient(135deg, var(--blue), var(--blue-deep));
            color: #fff;
            border: none;
            border-radius: 14px;
            padding: 14px;
            font-family: 'Syne', sans-serif;
            font-size: 0.92rem;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(30, 144, 255, 0.3);
            margin-bottom: 10px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .ad-click-go:hover {
            transform: translateY(-2px);
        }

        .ad-click-dismiss {
            width: 100%;
            background: #F3F4F6;
            color: var(--ink-soft);
            border: none;
            border-radius: 14px;
            padding: 12px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
        }

        /* PROMO POPUP */
        .rw-overlay {
            position: fixed;
            inset: 0;
            z-index: 99999999;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(8px);
            align-items: center;
            justify-content: center;
            padding: 16px;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.25s ease;
            display: flex;
        }

        .rw-overlay.open {
            visibility: visible;
            opacity: 1;
            pointer-events: all;
        }

        .rw-box {
            background: white;
            border-radius: 24px;
            max-width: 360px;
            width: 100%;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            transform: scale(0.92) translateY(16px);
            transition: transform 0.35s;
        }

        .rw-overlay.open .rw-box {
            transform: scale(1) translateY(0);
        }

        .rw-hdr {
            padding: 24px 20px 16px;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
        }

        .rw-hdr.grand {
            background: linear-gradient(135deg, #764ba2 0%, var(--blue) 100%);
        }

        .rw-close-btn {
            position: absolute;
            top: 11px;
            right: 13px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rw-icon {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin: 0 auto 10px;
        }

        .rw-hdr h2 {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            color: white;
            font-weight: 800;
        }

        .rw-hdr p {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.82);
        }

        .rw-streak-pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, 0.18);
            border: 1.5px solid rgba(255, 255, 255, 0.28);
            border-radius: 20px;
            padding: 3px 11px;
            font-size: 0.68rem;
            font-weight: 700;
            color: white;
            margin-top: 8px;
        }

        .rw-body {
            padding: 18px 20px 20px;
        }

        .rw-amount {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            background: var(--blue-light);
            color: var(--blue-deep);
            border: 2px solid rgba(30, 144, 255, 0.2);
            border-radius: 20px;
            padding: 8px 20px;
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 14px;
            font-family: 'Syne', sans-serif;
            width: fit-content;
            margin: 0 auto 14px;
        }

        .rw-dots {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        .rw-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 2px solid rgba(30, 144, 255, 0.2);
            background: white;
            font-size: 0.44rem;
            font-weight: 800;
            color: var(--ink-soft);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rw-dot.claimed {
            background: var(--blue);
            border-color: var(--blue);
            color: white;
        }

        .rw-dot.today {
            border-color: var(--blue);
            color: var(--blue-deep);
            box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.2);
        }

        .rw-prog-wrap {
            margin-bottom: 14px;
        }

        .rw-prog-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.68rem;
            font-weight: 700;
            color: var(--ink-soft);
            margin-bottom: 5px;
        }

        .rw-prog-track {
            height: 8px;
            background: rgba(30, 144, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
        }

        .rw-prog-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--blue-mid), var(--blue));
            transition: width .8s;
        }

        .rw-msg {
            font-size: 0.75rem;
            color: var(--ink-soft);
            font-weight: 600;
            background: var(--blue-ultra);
            border: 1px solid rgba(30, 144, 255, 0.15);
            border-radius: 12px;
            padding: 9px 13px;
            text-align: center;
            margin-bottom: 14px;
        }

        .rw-btn {
            width: 100%;
            padding: 13px;
            border: none;
            border-radius: 14px;
            font-size: 0.92rem;
            font-weight: 800;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            color: white;
            background: linear-gradient(135deg, var(--blue), var(--blue-deep));
            box-shadow: 0 6px 18px rgba(30, 144, 255, 0.3);
            transition: transform 0.2s;
        }

        .rw-btn:hover {
            transform: translateY(-2px);
        }

        /* REQUEST DRAWER */
        .req-drawer-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999999;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(6px);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        .req-drawer-overlay.open {
            display: flex;
        }

        .req-drawer {
            width: 100%;
            max-width: 480px;
            background: white;
            border-radius: 24px;
            max-height: calc(100vh - 40px);
            display: flex;
            flex-direction: column;
            transform: scale(0.92) translateY(20px);
            opacity: 0;
            transition: all 0.3s cubic-bezier(.34, 1.2, .64, 1);
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
            border: 1.5px solid rgba(30, 144, 255, 0.2);
            overflow: hidden;
        }

        .req-drawer-overlay.open .req-drawer {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .req-drawer-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px 14px;
            border-bottom: 1px solid rgba(30, 144, 255, 0.12);
            background: linear-gradient(135deg, var(--blue-ultra) 0%, #fff 100%);
            flex-shrink: 0;
        }

        .req-drawer-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.05rem;
            color: var(--ink);
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
        }

        .req-drawer-cnt {
            background: linear-gradient(135deg, var(--blue), var(--blue-deep));
            color: white;
            font-size: 10px;
            font-weight: 900;
            padding: 3px 10px;
            border-radius: 99px;
            box-shadow: 0 2px 8px rgba(30, 144, 255, 0.3);
        }

        .req-drawer-close {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: none;
            background: rgba(30, 144, 255, 0.12);
            color: var(--ink-soft);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            transition: all 0.15s;
        }

        .req-drawer-close:hover {
            background: var(--blue);
            color: white;
            transform: rotate(90deg);
        }

        .req-drawer-body {
            overflow-y: auto;
            flex: 1;
            padding: 0;
        }

        /* Modern Empty State */
        .req-drawer-empty {
            text-align: center;
            padding: 60px 20px;
            color: var(--ink-soft);
        }

        .req-drawer-empty .icon-bg {
            width: 70px;
            height: 70px;
            background: var(--blue-ultra);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            box-shadow: inset 0 4px 10px rgba(30, 144, 255, 0.1);
        }

        .req-drawer-empty i {
            font-size: 2.2rem;
            color: var(--blue-mid);
        }

        .req-drawer-empty h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--blue-deep);
            margin-bottom: 6px;
        }

        .req-drawer-empty p {
            font-size: 0.85rem;
            color: var(--ink-soft);
            line-height: 1.5;
        }

        .inc-notif-card {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(30, 144, 255, 0.1);
            animation: fadeUp 0.25s ease both;
        }

        .inc-notif-card:last-child {
            border-bottom: none;
        }

        .inc-notif-top {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .inc-notif-icon {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            background: var(--blue-ultra);
            color: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            border: 1px solid rgba(30, 144, 255, 0.15);
        }

        .inc-notif-name {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 2px;
        }

        .inc-notif-meta {
            font-size: 0.7rem;
            color: var(--ink-soft);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .inc-number-box {
            display: none;
            align-items: center;
            gap: 10px;
            background: #f0fdf4;
            border: 1.5px solid #86efac;
            border-radius: 12px;
            padding: 11px 16px;
            margin-bottom: 12px;
        }

        .inc-number-box.show {
            display: flex;
        }

        .inc-number-val {
            font-family: 'Syne', sans-serif;
            font-size: 1.25rem;
            font-weight: 800;
            color: #15803d;
        }

        .inc-no-slot-warn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fff1f2;
            border: 1.5px solid #fecdd3;
            border-radius: 10px;
            padding: 9px 14px;
            margin-bottom: 10px;
            font-size: 0.78rem;
            font-weight: 600;
            color: #be123c;
        }

        .inc-action-row {
            display: flex;
            gap: 8px;
        }

        .inc-btn {
            flex: 1;
            padding: 11px 14px;
            border: none;
            border-radius: 12px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.82rem;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            transition: all 0.15s;
        }

        .inc-btn.accept-see {
            background: linear-gradient(135deg, #22c55e, #16a34a);
            color: white;
            box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
        }

        .inc-btn.accept-see:hover {
            transform: translateY(-1px);
        }

        .inc-btn.open-chat {
            background: linear-gradient(135deg, var(--blue), var(--blue-deep));
            color: white;
        }

        .inc-btn.recharge-now {
            background: linear-gradient(135deg, #ef4444, #b91c1c);
            color: white;
        }

        .inc-btn.decline {
            background: rgba(239, 68, 68, 0.08);
            color: #e11d48;
            flex: 0 0 auto;
            padding: 11px 16px;
            border: 1.5px solid rgba(239, 68, 68, 0.2);
        }

        .inc-btn.decline:hover {
            background: #ef4444;
            color: white;
        }

        /* Empty / Loading Dashboard States */
        .loading-state,
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: var(--radius);
            border: 1.5px dashed rgba(30, 144, 255, 0.25);
        }

        .spinner-ring {
            width: 44px;
            height: 44px;
            border: 3px solid rgba(30, 144, 255, 0.1);
            border-top-color: var(--blue);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto 14px;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .empty-icon {
            font-size: 2.8rem;
            margin-bottom: 12px;
            color: var(--blue-light);
            text-shadow: 0 4px 12px rgba(30, 144, 255, 0.2);
        }

        .empty-state h3 {
            font-family: 'Syne', sans-serif;
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--blue-deep);
            margin-bottom: 6px;
        }

        .empty-state p {
            font-size: 0.85rem;
            color: var(--ink-soft);
            line-height: 1.5;
        }

        /* TOAST */
        .toast-notif {
            position: fixed;
            bottom: 90px;
            right: 20px;
            padding: 12px 18px;
            border-radius: 14px;
            font-size: .85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 4000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            opacity: 0;
            transform: translateY(14px);
            pointer-events: none;
            transition: all .3s ease;
            font-family: 'DM Sans', sans-serif;
        }

        .toast-notif.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .toast-notif.success {
            background: var(--ink);
            color: white;
        }

        .toast-notif.error {
            background: var(--red);
            color: white;
        }

        /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
           DESKTOP / WEB VIEW  (≥ 768px)
           Only layout, sizing, and typography changes.
           All mobile styles remain untouched below breakpoint.
        â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
        .desktop-nav-bar {
            display: none;
        }

        @media (min-width: 768px) {

            /* ── Hide mobile bottom nav on desktop ── */

            body {
                padding-bottom: 0 !important;
                background: linear-gradient(160deg, #F0F7FF 0%, #E8F1FF 50%, #D6E8FF 100%);
            }

            /* ── Desktop Nav Bar &mdash; exact match with tutor.html ── */
            .desktop-nav-bar {
                display: flex;
                align-items: center;
                justify-content: space-between;
                background: linear-gradient(135deg, #312E81 0%, #4F46E5 40%, #1E90FF 75%, #38B6FF 100%);
                padding: 0 40px;
                height: 62px;
                position: sticky;
                top: 0;
                z-index: 300;
                box-shadow: 0 2px 16px rgba(79, 70, 229, 0.25);
            }

            .dnav-logo {
                text-decoration: none;
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .dnav-logo img {
                width: 52px;
                height: 52px;
                border-radius: 13px;
                object-fit: cover;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
                flex-shrink: 0;
                background: rgba(255, 255, 255, 0.1);
            }

            .dnav-logo-col {
                flex: 1;
                min-width: 0;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .dnav-logo-name {
                font-family: 'Syne', sans-serif;
                font-size: 1.5rem;
                font-weight: 800;
                color: #fff;
                letter-spacing: 2px;
                line-height: 1;
            }

            .dnav-logo-name span {
                color: rgba(255, 255, 255, 0.52);
                font-weight: 300;
            }

            .dnav-logo-tagline {
                font-size: 0.75rem;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.65);
                letter-spacing: 2.5px;
                text-transform: uppercase;
                margin-top: 2px;
            }

            .dnav-links {
                display: flex;
                align-items: center;
                gap: 32px;
            }

            .dnav-links a {
                color: rgba(255, 255, 255, 0.82);
                font-weight: 600;
                font-size: 0.92rem;
                text-decoration: none;
                letter-spacing: 0.3px;
                transition: color 0.15s, text-shadow 0.15s;
                display: flex;
                align-items: center;
                gap: 7px;
            }

            .dnav-links a:hover,
            .dnav-links a.active {
                color: #fff;
                text-shadow: 0 0 10px rgba(255, 255, 255, 0.45);
            }

            .dnav-links a i {
                font-size: 0.85rem;
            }

            /* ── Page Header ── */
            .page-header {
                padding: 20px 24px 60px;
            }

            .header-inner {
                max-width: 900px;
                margin: 0 auto;
            }

            /* ── Hide repeated brand row on desktop &mdash; nav bar already has it ── */
            .brand-top-row {
                display: none;
            }

            /* Exception: keep live preview btn visible via a sibling element */
            .live-prev-desktop {
                display: flex !important;
                justify-content: center;
                margin-bottom: 14px;
            }

            /* ── Profile block ── */
            .header-profile {
                gap: 20px;
                margin-bottom: 20px;
            }

            .avatar-circle {
                width: 80px;
                height: 80px;
                border-radius: 24px;
                font-size: 2.2rem;
            }

            .online-dot {
                width: 16px;
                height: 16px;
            }

            .avatar-edit-dot {
                width: 26px;
                height: 26px;
            }

            .avatar-edit-dot i {
                font-size: 0.65rem;
            }

            .expert-name {
                font-size: 1.35rem;
            }

            .org-inline {
                font-size: 0.82rem;
                gap: 6px;
            }

            .org-inline i {
                font-size: 0.72rem;
            }

            .master-badge {
                font-size: 0.78rem;
                padding: 7px 12px;
                border-radius: 14px;
                gap: 7px;
            }

            .master-badge i {
                font-size: 0.85rem;
            }

            .master-text {
                font-size: 0.78rem;
            }

            .role-text {
                font-size: 0.82rem;
                gap: 6px;
            }

            .verify-badge {
                font-size: 0.7rem;
                padding: 4px 12px;
                border-radius: 20px;
            }

            /* ── ALL CONTROLS: QC buttons + Rating + Exp = ONE row ── */
            .controls-combined-row {
                display: flex;
                flex-direction: row;
                gap: 10px;
                align-items: stretch;
                margin-bottom: 0;
            }

            .controls-combined-row .qc-grid {
                display: flex;
                flex-direction: row;
                gap: 10px;
                grid-template-columns: unset;
                flex: 3;
                margin-bottom: 0;
            }

            .controls-combined-row .header-stats-row {
                display: flex;
                flex-direction: row;
                gap: 10px;
                margin-top: 0;
                flex: 1.6;
            }

            .qc-btn {
                flex: 1;
                padding: 10px 12px;
                border-radius: 13px;
                gap: 9px;
                align-items: center;
            }

            .qc-icon {
                width: 30px;
                height: 30px;
                border-radius: 8px;
                font-size: 0.88rem;
                flex-shrink: 0;
            }

            .qc-title {
                font-size: 0.78rem;
            }

            .qc-sub {
                font-size: 0.62rem;
            }

            .hdr-refresh-btn {
                width: 34px;
                height: 34px;
                border-radius: 10px;
                font-size: 0.88rem;
            }

            .hstat-pill {
                flex: 1;
                border-radius: 13px;
                padding: 10px 13px;
            }

            .htile-label {
                font-size: 0.66rem;
                margin-bottom: 4px;
                gap: 4px;
            }

            .htile-val {
                font-size: 1.2rem;
                gap: 4px;
            }

            .htile-stars {
                margin-top: 3px;
            }

            .htile-stars i {
                font-size: 0.7rem;
            }

            .htile-sub {
                font-size: 0.62rem;
                margin-top: 2px;
            }

            /* ── Stats strip ── */
            .stats-strip {
                max-width: 900px;
                margin: -42px auto 18px;
                border-radius: 20px;
            }

            .stat-item {
                padding: 14px 10px;
            }

            .stat-num {
                font-size: 1.5rem;
            }

            .stat-lbl {
                font-size: 0.65rem;
            }

            /* ── Main wrap ── */
            .wrap {
                max-width: 900px;
                padding: 0 24px;
            }

            /* ── Section labels ── */
            .section-label {
                font-size: 0.72rem;
                letter-spacing: 1.2px;
                margin-bottom: 12px;
            }

            /* ── Balance widget ── */
            .bal-widget {
                padding: 20px 24px;
                border-radius: 20px;
            }

            .bal-icon {
                width: 48px;
                height: 48px;
                border-radius: 14px;
                font-size: 1.1rem;
            }

            .bal-text h4 {
                font-size: 1.25rem;
            }

            .bal-text p {
                font-size: 0.75rem;
            }

            .bal-recharge-pill {
                font-size: 0.88rem;
                padding: 10px 22px;
                border-radius: 22px;
            }

            /* ── Toolbar ── */
            .toolbar {
                padding: 16px 20px;
                border-radius: 20px;
                margin-bottom: 16px;
            }

            .section-title {
                font-size: 1.15rem;
            }

            .section-count {
                font-size: 0.72rem;
                padding: 3px 11px;
            }

            .search-wrap input {
                width: 220px;
                font-size: 0.88rem;
            }

            .search-wrap input:focus {
                width: 260px;
            }

            .time-pill,
            .filter-pill {
                font-size: 0.8rem;
                padding: 6px 14px;
            }

            /* ── Two-column card grid on desktop ── */
            .cards-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            /* loading/empty state spans full width */
            .cards-grid .loading-state,
            .cards-grid .empty-state {
                grid-column: 1 / -1;
            }

            /* ── Request cards ── */
            .req-card {
                border-radius: 20px;
            }

            .card-body {
                padding: 16px 20px;
            }

            .card-footer {
                padding: 12px 20px 16px;
                gap: 10px;
            }

            .client-av {
                width: 48px;
                height: 48px;
                border-radius: 15px;
                font-size: 1.2rem;
            }

            .client-text h4 {
                font-size: 1rem;
            }

            .time-tag {
                font-size: 0.72rem;
            }

            .status-chip {
                font-size: 0.72rem;
                padding: 4px 12px;
            }

            .contact-item {
                font-size: 0.88rem;
            }

            .contact-item i {
                font-size: 0.8rem;
            }

            .msg-preview {
                font-size: 0.85rem;
                padding: 11px 14px;
                border-radius: 12px;
            }

            .act-btn {
                font-size: 0.88rem;
                padding: 11px 14px;
                border-radius: 13px;
            }

            /* ── Ad promo section ── */
            .ad-promo-section {
                margin-top: 30px;
            }

            /* ── Toast ── */
            .toast-notif {
                bottom: 30px;
                right: 30px;
                font-size: 0.9rem;
                padding: 14px 22px;
                border-radius: 16px;
            }
        }

        /* ── PWA Install Card (mobile-only, non-standalone) ── */
        .pwa-install-card {
            display: none;
            margin: 14px 0 4px;
            background: #fff;
            border: 1.5px solid rgba(30, 144, 255, 0.18);
            border-radius: 18px;
            padding: 14px 16px;
            box-shadow: 0 4px 18px rgba(30, 144, 255, 0.09);
        }

        .pwa-install-card.visible {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pwa-ic-icon {
            width: 46px;
            height: 46px;
            min-width: 46px;
            border-radius: 13px;
            overflow: hidden;
            border: 1.5px solid rgba(30, 144, 255, 0.15);
            flex-shrink: 0;
        }

        .pwa-ic-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .pwa-ic-body {
            flex: 1;
            min-width: 0;
        }

        .pwa-ic-title {
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.25;
            margin-bottom: 2px;
        }

        .pwa-ic-note {
            font-size: 0.60rem;
            font-weight: 600;
            color: var(--ink-soft);
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .pwa-ic-actions {
            display: flex;
            gap: 8px;
        }

        .pwa-ic-btn {
            flex: 1;
            padding: 6px 0;
            border: none;
            border-radius: 8px;
            font-size: 0.65rem;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Syne', sans-serif;
            transition: 0.2s;
        }

        .pwa-ic-btn.install {
            background: var(--blue);
            color: #fff;
            box-shadow: 0 4px 12px rgba(30, 144, 255, 0.25);
        }

        .pwa-ic-btn.install:active {
            transform: scale(0.96);
        }

        .pwa-ic-btn.dismiss {
            background: #f1f5f9;
            color: var(--ink-mid);
        }
    