/* Ezseen — visual system extracted verbatim from the supplied build.
   Visual identity, 3D language, cards and typography are preserved.
   Device adaptation lives in responsive.css (loaded after this file). */
:root {
            --graphite-950: #08080c; --graphite-900: #0f0f16; --graphite-850: #15151e;
            --graphite-800: #1a1a24; --graphite-750: #202030; --graphite-700: #262636;
            --graphite-600: #30303f; --graphite-500: #3d3d4d; --graphite-400: #5a5a70;
            --graphite-300: #808099; --graphite-200: #a8a8bf; --graphite-100: #d5d5e3;
            --purple-primary: #a78bfa; --purple-deep: #8b5cf6; --purple-dark: #6d28d9;
            --purple-glow: rgba(167, 139, 250, 0.15);
            --purple-gradient: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 30%, #8b5cf6 60%, #6d28d9 100%);
            --success: #34d399; --warning: #fbbf24; --danger: #f87171;
            --font-family: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --shadow-purple: 0 8px 32px rgba(139, 92, 246, 0.25);
            --shadow-purple-lg: 0 16px 64px rgba(139, 92, 246, 0.35);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        [data-theme="light"] {
            --graphite-950: #f5f5f7; --graphite-900: #ffffff; --graphite-850: #fafafc;
            --graphite-800: #ffffff; --graphite-750: #f8f8fa; --graphite-700: #f0f0f2;
            --graphite-600: #e5e5ea; --graphite-500: #d1d1d6; --graphite-400: #8e8e93;
            --graphite-300: #636366; --graphite-200: #48484a; --graphite-100: #1c1c1e;
            --purple-primary: #7c3aed; --purple-deep: #6d28d9; --purple-dark: #5b21b6;
            --purple-glow: rgba(124, 58, 237, 0.12);
            --purple-gradient: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 30%, #6d28d9 60%, #5b21b6 100%);
            --success: #059669; --warning: #d97706; --danger: #dc2626;
            --shadow-purple: 0 8px 32px rgba(124, 58, 237, 0.2);
            --shadow-purple-lg: 0 16px 64px rgba(124, 58, 237, 0.3);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        html { scroll-behavior: auto; }
        body { font-family: var(--font-family); background: #000; color: var(--graphite-100); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; font-size: 15px; }
        [data-theme="light"] body { background: #f5f5f7; color: #1c1c1e; }
        img { max-width: 100%; height: auto; }

        /* ===== INTRO ===== */
        .intro-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999; overflow: hidden; background: #000; }
        [data-theme="light"] .intro-wrapper { background: #f5f5f7; }
        .intro-wrapper.hidden { display: none; }
        .intro-scroll-driver { position: absolute; top: 0; left: 0; width: 1px; height: 400vh; pointer-events: none; opacity: 0; }
        .intro-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none; z-index: 1; }
        .intro-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; animation: introOrbFloat 20s infinite ease-in-out; }
        .intro-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #8b5cf6, transparent 70%); top: -200px; right: -200px; }
        .intro-orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #6d28d9, transparent 70%); bottom: -150px; left: -150px; animation-delay: -7s; }
        .intro-orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, #a78bfa, transparent 70%); top: 50%; left: 50%; margin: -200px 0 0 -200px; animation-delay: -14s; }
        @keyframes introOrbFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 25% { transform: translate(50px, -50px) scale(1.1); } 50% { transform: translate(-30px, 30px) scale(0.9); } 75% { transform: translate(20px, 20px) scale(1.05); } }
        .intro-particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; overflow: hidden; }
        .intro-particle { position: absolute; width: 3px; height: 3px; background: var(--purple-primary); border-radius: 50%; box-shadow: 0 0 10px var(--purple-primary); opacity: 0; animation: introParticleFloat linear infinite; }
        @keyframes introParticleFloat { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 10% { opacity: 0.6; } 50% { opacity: 0.8; } 90% { opacity: 0.6; } 100% { transform: translateY(-100vh) scale(1); opacity: 0; } }
        .intro-skip { position: fixed; top: 30px; left: 30px; z-index: 200; padding: 10px 20px; background: rgba(167, 139, 250, 0.1); border: 1px solid rgba(167, 139, 250, 0.3); border-radius: 30px; color: var(--purple-primary); font-family: var(--font-family); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.3s; backdrop-filter: blur(10px); }
        .intro-skip:hover { background: rgba(167, 139, 250, 0.2); border-color: var(--purple-primary); transform: translateY(-2px); }
        [data-theme="light"] .intro-skip { background: rgba(124, 58, 237, 0.08); border-color: rgba(124, 58, 237, 0.3); color: #7c3aed; }
        .intro-stage { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 50; pointer-events: none; }
        .intro-ezseen { position: absolute; font-weight: 900; letter-spacing: -0.04em; font-family: 'Vazirmatn', sans-serif; background: linear-gradient(270deg, #c4b5fd, #a78bfa, #8b5cf6, #6d28d9, #c4b5fd); background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradientShift 3s ease infinite; filter: drop-shadow(0 0 60px rgba(167, 139, 250, 0.6)); will-change: font-size, opacity, top, left, filter; transform: translate(-50%, -50%); direction: ltr; white-space: nowrap; user-select: none; line-height: 1; transition: font-size 0.08s linear; }
        [data-theme="light"] .intro-ezseen { filter: drop-shadow(0 0 60px rgba(124, 58, 237, 0.3)); }
        @keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
        .intro-ezseen::before { content: 'Ezseen'; position: absolute; top: 0; left: 0; z-index: -1; background: linear-gradient(270deg, #c4b5fd, #a78bfa, #8b5cf6, #6d28d9, #c4b5fd); background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: blur(40px); opacity: 0.6; animation: gradientShift 3s ease infinite; }
        [data-theme="light"] .intro-ezseen::before { opacity: 0.3; }
        .intro-text { position: absolute; max-width: 480px; opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: none; direction: rtl; padding: 0 20px; }
        .intro-text.active { opacity: 1; transform: translateY(0); }
        .intro-text-title { font-size: 42px; font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.2; letter-spacing: -1px; }
        [data-theme="light"] .intro-text-title { color: #1c1c1e; }
        .intro-text-title-gradient { background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 50%, #8b5cf6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        [data-theme="light"] .intro-text-title-gradient { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 50%, #6d28d9 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .intro-text-number { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; background: var(--purple-gradient); color: white; font-weight: 800; font-size: 18px; margin-bottom: 20px; box-shadow: var(--shadow-purple); }
        .intro-text-desc { font-size: 17px; color: rgba(220, 220, 227, 0.75); line-height: 1.9; font-weight: 400; }
        [data-theme="light"] .intro-text-desc { color: #636366; }
        .intro-text-1 { right: 8%; top: 50%; transform: translateY(-50%) translateY(30px); }
        .intro-text-1.active { transform: translateY(-50%); }
        .intro-text-2 { left: 8%; top: 50%; transform: translateY(-50%) translateY(30px); }
        .intro-text-2.active { transform: translateY(-50%); }
        .intro-text-3 { left: 50%; top: 50%; transform: translateX(-50%) translateY(30px); text-align: center; }
        .intro-text-3.active { transform: translateX(-50%) translateY(0); }
        .intro-hint { position: fixed; bottom: 60px; left: 50%; transform: translateX(-50%); z-index: 200; color: rgba(167, 139, 250, 0.7); font-size: 12px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; animation: hintBounce 2s infinite; transition: opacity 0.5s; pointer-events: none; display: flex; flex-direction: column; align-items: center; gap: 8px; }
        [data-theme="light"] .intro-hint { color: rgba(124, 58, 237, 0.6); }
        .intro-hint::before { content: ''; width: 24px; height: 40px; border: 2px solid rgba(167, 139, 250, 0.5); border-radius: 12px; position: relative; }
        [data-theme="light"] .intro-hint::before { border-color: rgba(124, 58, 237, 0.4); }
        .intro-hint::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: rgba(167, 139, 250, 0.8); border-radius: 2px; animation: scrollIndicator 1.5s infinite; }
        [data-theme="light"] .intro-hint::after { background: rgba(124, 58, 237, 0.7); }
        @keyframes scrollIndicator { 0% { transform: translateX(-50%) translateY(0); opacity: 1; } 100% { transform: translateX(-50%) translateY(15px); opacity: 0; } }
        @keyframes hintBounce { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; } 50% { transform: translateX(-50%) translateY(-6px); opacity: 1; } }

        /* ===== MAIN SITE ===== */
        .main-site { position: relative; opacity: 0; visibility: hidden; transition: opacity 1s ease; }
        .main-site.visible { opacity: 1; visibility: visible; }
        .scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--purple-gradient); z-index: 10000; transition: width 0.1s ease; width: 0; box-shadow: 0 0 12px rgba(167, 139, 250, 0.3); }
        .bg-orbs { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; perspective: 1000px; }
        .orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; animation: orbFloat3D 20s infinite ease-in-out; transform-style: preserve-3d; }
        [data-theme="light"] .orb { opacity: 0.25; }
        .orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #8b5cf6, transparent 70%); top: -200px; right: -200px; }
        .orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #6d28d9, transparent 70%); bottom: -150px; left: -150px; animation-delay: -7s; }
        .orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, #a78bfa, transparent 70%); top: 50%; left: 50%; margin: -200px 0 0 -200px; animation-delay: -14s; }
        .orb-4 { width: 300px; height: 300px; background: radial-gradient(circle, #c4b5fd, transparent 70%); top: 30%; right: 20%; animation-delay: -5s; }
        @keyframes orbFloat3D { 0%, 100% { transform: translate(0, 0) scale(1) rotateX(0deg) rotateY(0deg); } 25% { transform: translate(50px, -50px) scale(1.1) rotateX(10deg) rotateY(15deg); } 50% { transform: translate(-30px, 30px) scale(0.9) rotateX(-10deg) rotateY(-15deg); } 75% { transform: translate(20px, 20px) scale(1.05) rotateX(5deg) rotateY(-10deg); } }
        .floating-particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
        .particle { position: absolute; width: 3px; height: 3px; background: var(--purple-primary); border-radius: 50%; animation: floatParticle linear infinite; opacity: 0; box-shadow: 0 0 8px rgba(167, 139, 250, 0.5); }
        @keyframes floatParticle { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 10% { opacity: 0.6; } 90% { opacity: 0.6; } 100% { transform: translateY(-100vh) scale(1); opacity: 0; } }

        /* ===== ADMIN VISUAL CONTENT ===== */
        .admin-visual-content { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 5; overflow: hidden; }
        .admin-visual-item { position: absolute; pointer-events: none; }
        .admin-visual-item img, .admin-visual-item video { width: 100%; height: 100%; object-fit: cover; display: block; }
        .admin-visual-item.fixed { position: fixed; }
        .admin-visual-item.absolute { position: absolute; }

        /* ===== NAVBAR ===== */
        .navbar { position: fixed; top: 0; width: 100%; background: rgba(8, 8, 12, 0.75); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%); border-bottom: 1px solid var(--purple-glow); z-index: 1000; transition: var(--transition); }
        [data-theme="light"] .navbar { background: rgba(255, 255, 255, 0.85); border-bottom: 1px solid rgba(124, 58, 237, 0.15); }
        .navbar.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2); }
        .navbar-content { max-width: 1400px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 16px; }
        .navbar-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
        .logo { font-size: 26px; font-weight: 900; cursor: pointer; background: linear-gradient(270deg, #c4b5fd, #a78bfa, #8b5cf6, #6d28d9, #c4b5fd); background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradientShift 3s ease infinite; letter-spacing: -0.5px; display: flex; align-items: center; gap: 8px; direction: ltr; }
        [data-theme="light"] .logo { background: linear-gradient(270deg, #8b5cf6, #7c3aed, #6d28d9, #8b5cf6); background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .logo::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--purple-primary); box-shadow: 0 0 12px var(--purple-primary); animation: pulse 2s infinite; }
        @keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.6; } }
        .nav-links { display: flex; gap: 4px; align-items: center; }
        .nav-link { color: var(--graphite-300); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 10px; cursor: pointer; transition: var(--transition); border: none; background: none; font-family: var(--font-family); position: relative; }
        [data-theme="light"] .nav-link { color: #636366; }
        .nav-link::after { content: ''; position: absolute; bottom: 4px; right: 50%; transform: translateX(50%); width: 0; height: 2px; background: var(--purple-gradient); border-radius: 2px; transition: width 0.3s ease; }
        .nav-link:hover { color: var(--purple-primary); background: var(--graphite-800); }
        .nav-link:hover::after { width: 60%; }
        .nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
        .icon-btn { width: 40px; height: 40px; border-radius: 12px; background: var(--graphite-800); border: 1px solid var(--graphite-600); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: var(--purple-primary); position: relative; }
        .icon-btn:hover { border-color: var(--purple-primary); background: var(--purple-glow); transform: translateY(-2px); box-shadow: var(--shadow-purple); }
        .icon-btn svg { width: 18px; height: 18px; fill: currentColor; }
        .mobile-menu-btn { display: none; width: 40px; height: 40px; border-radius: 12px; background: var(--graphite-800); border: 1px solid var(--graphite-600); cursor: pointer; align-items: center; justify-content: center; color: var(--purple-primary); }
        .mobile-menu-btn svg { width: 20px; height: 20px; fill: currentColor; }
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border-radius: 14px; font-family: var(--font-family); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; text-decoration: none; white-space: nowrap; }
        .btn-primary { background: var(--purple-gradient); color: white; box-shadow: var(--shadow-purple); }
        .btn-primary:hover { box-shadow: var(--shadow-purple-lg); transform: translateY(-2px); }
        .btn-secondary { background: var(--graphite-800); color: var(--graphite-100); border: 1px solid var(--graphite-600); }
        .btn-secondary:hover { border-color: var(--purple-primary); transform: translateY(-2px); }
        .btn-ghost { background: transparent; color: var(--purple-primary); }
        .btn-ghost:hover { background: var(--purple-glow); }
        .btn-danger { background: var(--danger); color: white; }
        .btn-danger:hover { background: #dc2626; }
        .btn-success { background: var(--success); color: white; }
        .btn-success:hover { background: #059669; }
        .btn-lg { padding: 16px 32px; font-size: 15px; }
        .btn-sm { padding: 8px 14px; font-size: 12px; border-radius: 10px; }
        .btn-block { width: 100%; }

        /* ===== USER AVATAR & DROPDOWN ===== */
        .user-menu-wrapper { position: relative; display: none; }
        .user-menu-wrapper.active { display: block; }
        .nav-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--purple-gradient); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: white; cursor: pointer; transition: var(--transition); overflow: hidden; flex-shrink: 0; border: 2px solid transparent; position: relative; box-shadow: var(--shadow-purple); }
        .nav-avatar:hover { transform: scale(1.08); border-color: var(--purple-primary); }
        .nav-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .nav-avatar.admin { border-color: #fbbf24; box-shadow: 0 0 16px rgba(251, 191, 36, 0.5); }
        .nav-avatar-badge { position: absolute; top: -2px; left: -2px; min-width: 16px; height: 16px; padding: 0 4px; background: var(--danger); color: white; border-radius: 8px; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid var(--graphite-900); }
        [dir="ltr"] .nav-avatar-badge { left: auto; right: -2px; }
        .nav-avatar-crown { position: absolute; top: -8px; right: -4px; font-size: 14px; filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.8)); pointer-events: none; }
        [dir="ltr"] .nav-avatar-crown { right: auto; left: -4px; }

        .user-dropdown { position: absolute; top: calc(100% + 12px); left: 0; right: auto; width: 280px; max-width: calc(100vw - 20px); background: var(--graphite-850); border: 1px solid var(--graphite-600); border-radius: 18px; box-shadow: var(--shadow-purple-lg); z-index: 1900; display: none; flex-direction: column; overflow: hidden; animation: dropdownIn 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
        [dir="ltr"] .user-dropdown { right: 0; left: auto; }
        [data-theme="light"] .user-dropdown { background: #ffffff; border-color: #e5e5ea; }
        .user-dropdown.active { display: flex; }
        @keyframes dropdownIn { from { opacity: 0; transform: translateY(-10px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
        .user-dropdown-header { padding: 18px 16px; border-bottom: 1px solid var(--graphite-700); display: flex; align-items: center; gap: 12px; }
        [data-theme="light"] .user-dropdown-header { border-bottom-color: #e5e5ea; }
        .user-dropdown-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--purple-gradient); display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: white; flex-shrink: 0; overflow: hidden; }
        .user-dropdown-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .user-dropdown-avatar.admin { border: 2px solid #fbbf24; }
        .user-dropdown-info { flex: 1; min-width: 0; }
        .user-dropdown-name { font-size: 14px; font-weight: 700; color: var(--graphite-100); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; gap: 6px; }
        [data-theme="light"] .user-dropdown-name { color: #1c1c1e; }
        .user-dropdown-email { font-size: 11px; color: var(--graphite-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .user-dropdown-role { font-size: 11px; color: var(--purple-primary); font-weight: 600; margin-top: 2px; }
        .user-dropdown-body { padding: 8px; max-height: 380px; overflow-y: auto; }
        .user-dropdown-item { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; cursor: pointer; transition: var(--transition); color: var(--graphite-200); font-size: 13px; font-weight: 500; position: relative; border: none; background: none; width: 100%; text-align: right; font-family: var(--font-family); }
        [dir="ltr"] .user-dropdown-item { text-align: left; }
        [data-theme="light"] .user-dropdown-item { color: #48484a; }
        .user-dropdown-item:hover { background: var(--graphite-800); color: var(--purple-primary); }
        [data-theme="light"] .user-dropdown-item:hover { background: #f5f5f8; }
        .user-dropdown-item-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--purple-glow); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
        .user-dropdown-item-text { flex: 1; }
        .user-dropdown-item-badge { min-width: 20px; height: 20px; padding: 0 6px; background: var(--danger); color: white; border-radius: 10px; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
        .user-dropdown-item.danger { color: var(--danger); }
        .user-dropdown-item.danger:hover { background: rgba(248, 113, 113, 0.1); color: var(--danger); }
        .user-dropdown-item.danger .user-dropdown-item-icon { background: rgba(248, 113, 113, 0.15); color: var(--danger); }
        .user-dropdown-item.admin-item { color: #fbbf24; }
        .user-dropdown-item.admin-item:hover { background: rgba(251, 191, 36, 0.1); color: #fbbf24; }
        .user-dropdown-item.admin-item .user-dropdown-item-icon { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
        .user-dropdown-divider { height: 1px; background: var(--graphite-700); margin: 6px 8px; }
        [data-theme="light"] .user-dropdown-divider { background: #e5e5ea; }
        .user-dropdown-body::-webkit-scrollbar { width: 5px; }
        .user-dropdown-body::-webkit-scrollbar-track { background: transparent; }
        .user-dropdown-body::-webkit-scrollbar-thumb { background: var(--graphite-600); border-radius: 3px; }

        /* NOTIF PANEL */
        .notif-panel { position: fixed; top: 76px; left: 20px; width: 380px; max-width: calc(100% - 40px); max-height: 500px; background: var(--graphite-850); border: 1px solid var(--graphite-600); border-radius: 20px; box-shadow: var(--shadow-purple-lg); z-index: 1900; display: none; flex-direction: column; overflow: hidden; animation: notifSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
        [dir="ltr"] .notif-panel { left: auto; right: 20px; }
        [data-theme="light"] .notif-panel { background: #ffffff; border-color: #e5e5ea; }
        .notif-panel.active { display: flex; }
        @keyframes notifSlide { from { opacity: 0; transform: translateY(-15px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
        .notif-header { padding: 16px 20px; border-bottom: 1px solid var(--graphite-700); display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-shrink: 0; }
        [data-theme="light"] .notif-header { border-bottom-color: #e5e5ea; }
        .notif-header-title { font-size: 15px; font-weight: 800; color: var(--graphite-100); display: flex; align-items: center; gap: 8px; }
        [data-theme="light"] .notif-header-title { color: #1c1c1e; }
        .notif-clear-btn { background: transparent; border: none; color: var(--purple-primary); font-family: var(--font-family); font-size: 12px; font-weight: 600; cursor: pointer; padding: 4px 8px; border-radius: 8px; transition: var(--transition); }
        .notif-clear-btn:hover { background: var(--purple-glow); }
        .notif-list { overflow-y: auto; flex: 1; padding: 8px; }
        .notif-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: 12px; cursor: pointer; transition: var(--transition); position: relative; margin-bottom: 4px; }
        .notif-item:hover { background: var(--graphite-800); }
        [data-theme="light"] .notif-item:hover { background: #f5f5f8; }
        .notif-item.unread { background: var(--purple-glow); }
        .notif-item.unread::before { content: ''; position: absolute; top: 16px; right: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--purple-primary); box-shadow: 0 0 8px var(--purple-primary); }
        [dir="ltr"] .notif-item.unread::before { right: auto; left: 8px; }
        .notif-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; background: var(--purple-glow); }
        .notif-icon.success { background: rgba(52, 211, 153, 0.15); }
        .notif-icon.warning { background: rgba(251, 191, 36, 0.15); }
        .notif-icon.danger { background: rgba(248, 113, 113, 0.15); }
        .notif-icon.info { background: rgba(96, 165, 250, 0.15); }
        .notif-body { flex: 1; min-width: 0; padding-left: 8px; }
        [dir="ltr"] .notif-body { padding-left: 0; padding-right: 8px; }
        .notif-title { font-size: 13px; font-weight: 700; color: var(--graphite-100); margin-bottom: 3px; line-height: 1.4; }
        [data-theme="light"] .notif-title { color: #1c1c1e; }
        .notif-desc { font-size: 12px; color: var(--graphite-400); line-height: 1.5; margin-bottom: 4px; }
        .notif-time { font-size: 11px; color: var(--graphite-500); font-weight: 500; }
        .notif-empty { padding: 40px 20px; text-align: center; color: var(--graphite-400); }
        .notif-empty-icon { font-size: 44px; margin-bottom: 10px; opacity: 0.5; }
        .notif-footer { padding: 12px 16px; border-top: 1px solid var(--graphite-700); text-align: center; flex-shrink: 0; }
        [data-theme="light"] .notif-footer { border-top-color: #e5e5ea; }
        .notif-footer-btn { background: transparent; border: none; color: var(--purple-primary); font-family: var(--font-family); font-size: 13px; font-weight: 600; cursor: pointer; padding: 8px 16px; border-radius: 10px; transition: var(--transition); width: 100%; }
        .notif-footer-btn:hover { background: var(--purple-glow); }
        .icon-btn.has-unread { animation: bellShake 0.8s ease-in-out; }
        @keyframes bellShake { 0%, 100% { transform: rotate(0deg); } 15% { transform: rotate(12deg); } 30% { transform: rotate(-10deg); } 45% { transform: rotate(8deg); } 60% { transform: rotate(-6deg); } 75% { transform: rotate(3deg); } }

        /* HERO */
        .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 20px 60px; position: relative; z-index: 1; }
        .hero-content { max-width: 900px; width: 100%; }
        .hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: var(--purple-glow); border: 1px solid var(--purple-primary); border-radius: 30px; color: var(--purple-primary); font-size: 13px; font-weight: 500; margin-bottom: 24px; }
        .hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--purple-primary); box-shadow: 0 0 8px var(--purple-primary); animation: pulse 2s infinite; }
        .hero-title { font-size: 64px; font-weight: 900; margin-bottom: 20px; line-height: 1.15; letter-spacing: -1.5px; color: var(--graphite-100); }
        [data-theme="light"] .hero-title { color: #1c1c1e; }
        .hero-title-gradient { background: linear-gradient(270deg, #c4b5fd, #a78bfa, #8b5cf6, #c4b5fd); background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradientShift 4s ease infinite; }
        [data-theme="light"] .hero-title-gradient { background: linear-gradient(270deg, #8b5cf6, #7c3aed, #6d28d9, #8b5cf6); background-size: 300% 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero-subtitle { font-size: 18px; color: var(--graphite-300); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.8; }
        .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

        .section { padding: 80px 20px; max-width: 1400px; margin: 0 auto; position: relative; z-index: 1; }
        .section-header { text-align: center; margin-bottom: 48px; }
        .section-badge { display: inline-block; padding: 4px 12px; background: var(--purple-glow); color: var(--purple-primary); border-radius: 20px; font-size: 12px; font-weight: 600; margin-bottom: 12px; letter-spacing: 0.5px; }
        .section-title { font-size: 40px; font-weight: 800; margin-bottom: 12px; background: var(--purple-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -1px; }
        .section-subtitle { font-size: 16px; color: var(--graphite-400); max-width: 600px; margin: 0 auto; }
        .search-container { max-width: 640px; margin: 0 auto 32px; position: relative; }
        .search-input { width: 100%; padding: 16px 52px 16px 20px; background: var(--graphite-850); border: 1px solid var(--graphite-600); border-radius: 20px; color: var(--graphite-100); font-family: var(--font-family); font-size: 15px; transition: var(--transition); }
        .search-input::placeholder { color: var(--graphite-400); }
        .search-input:focus { outline: none; border-color: var(--purple-primary); box-shadow: var(--shadow-purple); background: var(--graphite-800); }
        .search-icon { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--purple-primary); font-size: 18px; pointer-events: none; }
        [dir="ltr"] .search-icon { right: auto; left: 18px; }
        .filter-tabs { display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap; justify-content: center; padding: 0 10px; }
        .filter-tab { padding: 10px 20px; background: var(--graphite-850); border: 1px solid var(--graphite-600); border-radius: 25px; color: var(--graphite-300); cursor: pointer; transition: var(--transition); font-family: var(--font-family); font-size: 13px; font-weight: 500; }
        .filter-tab:hover { border-color: var(--purple-primary); color: var(--purple-primary); transform: translateY(-2px); }
        .filter-tab.active { background: var(--purple-gradient); color: white; border-color: transparent; box-shadow: var(--shadow-purple); }

        .specialists-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
        .specialist-card { background: var(--graphite-850); border: 1px solid var(--graphite-700); border-radius: 20px; padding: 24px; cursor: pointer; transition: var(--transition); position: relative; overflow: hidden; }
        .specialist-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--purple-gradient); opacity: 0; transition: opacity 0.3s; }
        .specialist-card:hover { transform: translateY(-8px); border-color: var(--purple-primary); box-shadow: var(--shadow-purple-lg); background: var(--graphite-800); }
        .specialist-card:hover::before { opacity: 1; }
        .specialist-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
        .avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--purple-gradient); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: white; flex-shrink: 0; overflow: hidden; box-shadow: var(--shadow-purple); }
        .avatar img { width: 100%; height: 100%; object-fit: cover; }
        .avatar.avatar-lg { width: 120px; height: 120px; font-size: 48px; box-shadow: var(--shadow-purple-lg); }
        .specialist-info { flex: 1; min-width: 0; }
        .specialist-name { font-size: 16px; font-weight: 700; color: var(--graphite-100); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-bottom: 4px; }
        [data-theme="light"] .specialist-name { color: #1c1c1e; }
        .verified-badge { display: inline-flex; align-items: center; gap: 3px; background: var(--purple-glow); border: 1px solid var(--purple-primary); padding: 2px 8px; border-radius: 10px; font-size: 10px; color: var(--purple-primary); font-weight: 600; white-space: nowrap; }
        .ezplus-badge { background: var(--purple-gradient); color: white; padding: 2px 8px; border-radius: 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap; }
        .specialist-role { font-size: 13px; color: var(--purple-primary); font-weight: 500; }
        .specialist-bio { font-size: 13px; color: var(--graphite-300); margin-bottom: 14px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .skills-list { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
        .skill-tag { background: var(--graphite-700); color: var(--purple-primary); padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 500; border: 1px solid var(--graphite-600); display: inline-flex; align-items: center; gap: 4px; }
        [data-theme="light"] .skill-tag { background: #f0f0f2; border-color: #e5e5ea; }
        .skill-tag .skill-stars { color: #fbbf24; font-size: 9px; letter-spacing: 0.5px; direction: ltr; }
        .card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--graphite-700); font-size: 12px; color: var(--graphite-400); gap: 8px; flex-wrap: wrap; }
        [data-theme="light"] .card-footer { border-top-color: #e5e5ea; }
        .rating { color: #fbbf24; display: inline-flex; align-items: center; gap: 4px; font-weight: 600; }
        .price-tag { font-size: 14px; font-weight: 700; background: var(--purple-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .empty-state { text-align: center; padding: 60px 20px; color: var(--graphite-400); }
        .empty-state-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.5; }

        .discount-box { max-width: 500px; margin: 0 auto 32px; background: var(--graphite-850); border: 1px solid var(--graphite-700); border-radius: 20px; padding: 20px; }
        [data-theme="light"] .discount-box { background: #ffffff; border-color: #e5e5ea; }
        .discount-box-title { font-size: 14px; font-weight: 600; margin-bottom: 12px; color: var(--graphite-200); display: flex; align-items: center; gap: 6px; }
        .discount-input-group { display: flex; gap: 8px; }
        .discount-input { flex: 1; padding: 12px 16px; background: var(--graphite-800); border: 1px solid var(--graphite-600); border-radius: 14px; color: var(--graphite-100); font-family: var(--font-family); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
        [data-theme="light"] .discount-input { background: #f5f5f8; color: #1c1c1e; }
        .discount-input:focus { outline: none; border-color: var(--purple-primary); }
        .discount-message { display: none; margin-top: 12px; padding: 10px 14px; border-radius: 10px; font-size: 13px; text-align: center; }
        .discount-message.success { display: block; background: rgba(52, 211, 153, 0.1); border: 1px solid var(--success); color: var(--success); }
        .discount-message.error { display: block; background: rgba(248, 113, 113, 0.1); border: 1px solid var(--danger); color: var(--danger); }

        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
        .pricing-card { background: var(--graphite-850); border: 2px solid var(--graphite-700); border-radius: 20px; padding: 32px 24px; text-align: center; cursor: pointer; transition: var(--transition); position: relative; display: flex; flex-direction: column; }
        [data-theme="light"] .pricing-card { background: #ffffff; border-color: #e5e5ea; }
        .pricing-card:hover { transform: translateY(-8px); border-color: var(--purple-primary); box-shadow: var(--shadow-purple-lg); }
        .pricing-card.selected { border-color: var(--purple-primary); box-shadow: var(--shadow-purple-lg); background: var(--graphite-800); }
        [data-theme="light"] .pricing-card.selected { background: #fafafc; }
        .pricing-card.selected::after { content: '✓'; position: absolute; top: 12px; left: 12px; width: 28px; height: 28px; border-radius: 50%; background: var(--purple-gradient); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
        .pricing-card.featured { border-color: var(--purple-primary); box-shadow: var(--shadow-purple); }
        .pricing-badge { position: absolute; top: -14px; right: 50%; transform: translateX(50%); background: var(--purple-gradient); color: white; padding: 5px 16px; border-radius: 20px; font-size: 11px; font-weight: 700; white-space: nowrap; }
        .pricing-name { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--graphite-100); }
        [data-theme="light"] .pricing-name { color: #1c1c1e; }
        .pricing-price { font-size: 34px; font-weight: 900; color: var(--purple-primary); margin-bottom: 24px; letter-spacing: -1px; }
        .pricing-price small { font-size: 13px; font-weight: 400; color: var(--graphite-400); }
        .pricing-price-old { font-size: 16px; color: var(--graphite-500); text-decoration: line-through; font-weight: 500; margin-right: 6px; }
        .pricing-features { list-style: none; text-align: right; margin-bottom: 24px; flex: 1; }
        [dir="ltr"] .pricing-features { text-align: left; }
        .pricing-features li { padding: 8px 0; color: var(--graphite-300); font-size: 13px; display: flex; align-items: center; gap: 8px; }
        .pricing-features li::before { content: '✓'; color: var(--purple-primary); font-weight: 700; font-size: 14px; flex-shrink: 0; }
        .plan-summary { display: none; max-width: 500px; margin: 32px auto 0; background: var(--graphite-850); border: 1px solid var(--purple-primary); border-radius: 20px; padding: 24px; box-shadow: var(--shadow-purple); }
        [data-theme="light"] .plan-summary { background: #ffffff; }
        .plan-summary.show { display: block; }
        .plan-summary-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--purple-primary); display: flex; align-items: center; gap: 8px; }
        .plan-summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--graphite-300); }
        .plan-summary-total { display: flex; justify-content: space-between; padding: 12px 0 0; margin-top: 12px; border-top: 1px solid var(--graphite-600); font-size: 16px; font-weight: 700; color: var(--purple-primary); }

        .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
        .step-card { background: var(--graphite-850); border: 1px solid var(--graphite-700); border-radius: 20px; padding: 32px 24px; text-align: center; transition: var(--transition); }
        [data-theme="light"] .step-card { background: #ffffff; border-color: #e5e5ea; }
        .step-card:hover { transform: translateY(-6px); border-color: var(--purple-primary); box-shadow: var(--shadow-purple); }
        .step-number { width: 56px; height: 56px; border-radius: 16px; background: var(--purple-gradient); color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 22px; margin: 0 auto 20px; box-shadow: var(--shadow-purple); }
        .step-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--graphite-100); }
        [data-theme="light"] .step-title { color: #1c1c1e; }
        .step-desc { color: var(--graphite-400); font-size: 13px; line-height: 1.7; }

        .about-card { background: var(--graphite-850); border: 1px solid var(--graphite-700); border-radius: 20px; padding: 40px 32px; max-width: 800px; margin: 0 auto; text-align: center; }
        [data-theme="light"] .about-card { background: #ffffff; border-color: #e5e5ea; }
        .about-text { color: var(--graphite-300); line-height: 2; font-size: 15px; margin-bottom: 32px; }
        [data-theme="light"] .about-text { color: #48484a; }
        .social-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .social-link { display: flex; flex-direction: column; align-items: center; gap: 10px; text-decoration: none; padding: 20px 24px; border-radius: 20px; background: var(--graphite-800); border: 1px solid var(--graphite-600); transition: var(--transition); min-width: 140px; cursor: pointer; }
        [data-theme="light"] .social-link { background: #ffffff; border-color: #e5e5ea; }
        .social-link:hover { transform: translateY(-6px); border-color: var(--purple-primary); box-shadow: var(--shadow-purple-lg); }
        .social-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); color: white; }
        .instagram-icon { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); box-shadow: 0 4px 20px rgba(220, 39, 67, 0.35); }
        .telegram-icon { background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%); box-shadow: 0 4px 20px rgba(34, 158, 217, 0.35); }
        .social-icon svg { width: 26px; height: 26px; fill: currentColor; }
        .social-link:hover .social-icon { transform: scale(1.1); }
        .social-name { color: var(--graphite-100); font-weight: 700; font-size: 14px; }
        [data-theme="light"] .social-name { color: #1c1c1e; }
        .social-handle { color: var(--purple-primary); font-size: 12px; }

        .footer { background: var(--graphite-900); border-top: 1px solid var(--graphite-700); padding: 48px 24px 24px; margin-top: 80px; position: relative; z-index: 1; }
        [data-theme="light"] .footer { background: #ffffff; border-top: 1px solid #e5e5ea; }
        .footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
        .footer-brand .logo { font-size: 24px; margin-bottom: 12px; }
        .footer-desc { color: var(--graphite-400); font-size: 13px; line-height: 1.8; max-width: 400px; }
        .footer-title { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--graphite-100); }
        [data-theme="light"] .footer-title { color: #1c1c1e; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { color: var(--graphite-400); text-decoration: none; font-size: 13px; transition: var(--transition); cursor: pointer; }
        [data-theme="light"] .footer-links a { color: #636366; }
        .footer-links a:hover { color: var(--purple-primary); padding-right: 4px; }
        .footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--graphite-700); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--graphite-500); }
        [data-theme="light"] .footer-bottom { border-top-color: #e5e5ea; }

        .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); z-index: 2000; align-items: center; justify-content: center; padding: 16px; }
        .modal.active { display: flex; }
        .modal-content { background: var(--graphite-850); border: 1px solid var(--graphite-600); border-radius: 20px; padding: 32px; max-width: 480px; width: 100%; max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-purple-lg); position: relative; }
        [data-theme="light"] .modal-content { background: #ffffff; border: 1px solid #e5e5ea; }
        .modal-close { position: absolute; top: 16px; left: 16px; width: 32px; height: 32px; border-radius: 50%; background: var(--graphite-700); border: none; color: var(--graphite-300); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: var(--transition); z-index: 2; }
        [dir="ltr"] .modal-close { left: auto; right: 16px; }
        [data-theme="light"] .modal-close { background: #f0f0f2; color: #636366; }
        .modal-close:hover { background: var(--danger); color: white; }
        .modal-title { font-size: 24px; font-weight: 800; margin-bottom: 24px; background: var(--purple-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-align: center; }
        .form-group { margin-bottom: 16px; }
        .form-label { display: block; margin-bottom: 8px; color: var(--graphite-300); font-size: 13px; font-weight: 600; }
        .form-input { width: 100%; padding: 12px 16px; background: var(--graphite-800); border: 1px solid var(--graphite-600); border-radius: 14px; color: var(--graphite-100); font-family: var(--font-family); font-size: 14px; transition: var(--transition); }
        [data-theme="light"] .form-input { background: #f5f5f8; border-color: #e5e5ea; color: #1c1c1e; }
        .form-input:focus { outline: none; border-color: var(--purple-primary); box-shadow: var(--shadow-purple); }
        select.form-input { cursor: pointer; }
        textarea.form-input { resize: vertical; min-height: 80px; }
        .file-upload { position: relative; display: inline-block; cursor: pointer; }
        .file-upload input[type="file"] { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; }
        .upload-preview { width: 90px; height: 90px; border-radius: 50%; background: var(--graphite-700); display: flex; align-items: center; justify-content: center; font-size: 32px; border: 2px dashed var(--graphite-500); overflow: hidden; transition: var(--transition); margin: 0 auto; }
        [data-theme="light"] .upload-preview { background: #f0f0f2; border-color: #d1d1d6; }
        .upload-preview:hover { border-color: var(--purple-primary); }
        .upload-preview img { width: 100%; height: 100%; object-fit: cover; }

        .software-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; margin-top: 8px; max-height: 280px; overflow-y: auto; padding: 8px; border: 1px solid var(--graphite-700); border-radius: 14px; background: var(--graphite-900); }
        [data-theme="light"] .software-grid { background: #f5f5f8; border-color: #e5e5ea; }
        .software-item { display: flex; align-items: center; gap: 8px; padding: 10px 12px; background: var(--graphite-800); border: 1px solid var(--graphite-600); border-radius: 10px; cursor: pointer; transition: var(--transition); font-size: 13px; user-select: none; }
        [data-theme="light"] .software-item { background: #ffffff; border-color: #e5e5ea; }
        .software-item:hover { border-color: var(--purple-primary); background: var(--graphite-750); }
        [data-theme="light"] .software-item:hover { background: #fafafc; }
        .software-item.selected { border-color: var(--purple-primary); background: var(--purple-glow); box-shadow: 0 0 12px rgba(167, 139, 250, 0.2); }
        .software-item input[type="checkbox"] { display: none; }
        .software-checkbox { width: 20px; height: 20px; border-radius: 6px; border: 2px solid var(--graphite-500); background: transparent; display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
        .software-item.selected .software-checkbox { background: var(--purple-gradient); border-color: var(--purple-primary); }
        .software-checkbox::after { content: '✓'; color: white; font-size: 12px; font-weight: 800; opacity: 0; transform: scale(0); transition: var(--transition); }
        .software-item.selected .software-checkbox::after { opacity: 1; transform: scale(1); }
        .software-name { flex: 1; color: var(--graphite-100); font-weight: 500; direction: ltr; text-align: left; font-size: 12px; }
        [data-theme="light"] .software-name { color: #1c1c1e; }
        .software-stars { color: #fbbf24; font-size: 9px; letter-spacing: 1px; flex-shrink: 0; direction: ltr; }
        .software-required { font-size: 11px; color: var(--danger); margin-top: 6px; font-weight: 500; }

        .profile-page { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--graphite-950); z-index: 1500; overflow-y: auto; -webkit-overflow-scrolling: touch; }
        .profile-page.active { display: block; }
        .profile-header { background: rgba(15, 15, 22, 0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--graphite-700); padding: 16px 24px; position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
        [data-theme="light"] .profile-header { background: rgba(255, 255, 255, 0.9); border-bottom: 1px solid #e5e5ea; }
        .profile-content { max-width: 1000px; margin: 0 auto; padding: 40px 24px; }
        .profile-hero { text-align: center; margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--graphite-700); }
        [data-theme="light"] .profile-hero { border-bottom-color: #e5e5ea; }
        .profile-name { font-size: 28px; font-weight: 800; display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; margin: 16px 0 8px; padding: 0 8px; line-height: 1.4; }
        .profile-role { color: var(--purple-primary); font-size: 17px; font-weight: 500; }
        .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .info-card { background: var(--graphite-850); border: 1px solid var(--graphite-700); border-radius: 20px; padding: 24px; }
        [data-theme="light"] .info-card { background: #ffffff; border-color: #e5e5ea; }
        .info-card-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--purple-primary); display: flex; align-items: center; gap: 8px; }
        .skill-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--graphite-700); gap: 8px; flex-wrap: wrap; }
        [data-theme="light"] .skill-row { border-bottom-color: #f0f0f2; }
        .skill-row:last-child { border-bottom: none; }
        .stars { color: #fbbf24; letter-spacing: 2px; white-space: nowrap; }
        .info-row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--graphite-300); font-size: 14px; gap: 8px; flex-wrap: wrap; }
        .info-row strong { color: var(--graphite-100); }
        [data-theme="light"] .info-row strong { color: #1c1c1e; }
        .portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
        .portfolio-item { background: var(--graphite-850); border: 1px solid var(--graphite-700); border-radius: 14px; padding: 16px; transition: var(--transition); cursor: pointer; }
        [data-theme="light"] .portfolio-item { background: #ffffff; border-color: #e5e5ea; }
        .portfolio-item:hover { transform: translateY(-4px); border-color: var(--purple-primary); box-shadow: var(--shadow-purple); }
        .portfolio-image { width: 100%; height: 160px; background: var(--graphite-800); border-radius: 10px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; font-size: 44px; overflow: hidden; }
        [data-theme="light"] .portfolio-image { background: #f5f5f8; }
        .portfolio-image img, .portfolio-image video { width: 100%; height: 100%; object-fit: cover; }
        .portfolio-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
        .portfolio-desc { color: var(--graphite-400); font-size: 12px; }

        /* CHAT */
        .chat-page { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--graphite-950); z-index: 1600; flex-direction: column; }
        .chat-page.active { display: flex; }
        .chat-header { background: rgba(15, 15, 22, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--graphite-700); padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-shrink: 0; }
        [data-theme="light"] .chat-header { background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid #e5e5ea; }
        .chat-header-title { font-size: 16px; font-weight: 700; color: var(--graphite-100); display: flex; align-items: center; gap: 8px; }
        [data-theme="light"] .chat-header-title { color: #1c1c1e; }
        .chat-layout { display: grid; grid-template-columns: 320px 1fr; flex: 1; overflow: hidden; }
        .conversations-list { background: var(--graphite-900); border-left: 1px solid var(--graphite-700); overflow-y: auto; display: flex; flex-direction: column; }
        [dir="ltr"] .conversations-list { border-left: none; border-right: 1px solid #e5e5ea; }
        [data-theme="light"] .conversations-list { background: #ffffff; border-left: 1px solid #e5e5ea; }
        .conversations-search { padding: 12px; border-bottom: 1px solid var(--graphite-700); flex-shrink: 0; }
        [data-theme="light"] .conversations-search { border-bottom-color: #e5e5ea; }
        .conversations-search input { width: 100%; padding: 10px 14px; background: var(--graphite-800); border: 1px solid var(--graphite-600); border-radius: 12px; color: var(--graphite-100); font-family: var(--font-family); font-size: 13px; }
        [data-theme="light"] .conversations-search input { background: #f5f5f8; border-color: #e5e5ea; color: #1c1c1e; }
        .conversations-search input:focus { outline: none; border-color: var(--purple-primary); }
        .conversation-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; cursor: pointer; transition: var(--transition); border-bottom: 1px solid var(--graphite-800); position: relative; }
        [data-theme="light"] .conversation-item { border-bottom-color: #f5f5f8; }
        .conversation-item:hover { background: var(--graphite-800); }
        [data-theme="light"] .conversation-item:hover { background: #f5f5f8; }
        .conversation-item.active { background: var(--purple-glow); border-right: 3px solid var(--purple-primary); }
        [dir="ltr"] .conversation-item.active { border-right: none; border-left: 3px solid var(--purple-primary); }
        .conversation-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--purple-gradient); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: white; flex-shrink: 0; overflow: hidden; }
        .conversation-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .conversation-info { flex: 1; min-width: 0; }
        .conversation-name { font-size: 14px; font-weight: 700; color: var(--graphite-100); margin-bottom: 4px; display: flex; align-items: center; justify-content: space-between; gap: 6px; }
        [data-theme="light"] .conversation-name { color: #1c1c1e; }
        .conversation-time { font-size: 11px; color: var(--graphite-400); font-weight: 400; }
        .conversation-preview { font-size: 12px; color: var(--graphite-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .conversation-unread { position: absolute; top: 14px; left: 14px; min-width: 20px; height: 20px; padding: 0 6px; background: var(--purple-primary); color: white; border-radius: 10px; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
        [dir="ltr"] .conversation-unread { left: auto; right: 14px; }
        .chat-area { display: flex; flex-direction: column; background: var(--graphite-950); overflow: hidden; }
        [data-theme="light"] .chat-area { background: #fafafc; }
        .chat-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--graphite-400); text-align: center; padding: 20px; }
        .chat-empty-icon { font-size: 72px; margin-bottom: 16px; opacity: 0.4; }
        .chat-active { display: none; flex-direction: column; flex: 1; overflow: hidden; }
        .chat-active.active { display: flex; }
        .chat-active-header { padding: 14px 20px; background: var(--graphite-850); border-bottom: 1px solid var(--graphite-700); display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
        [data-theme="light"] .chat-active-header { background: #ffffff; border-bottom: 1px solid #e5e5ea; }
        .chat-active-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--purple-gradient); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: white; flex-shrink: 0; overflow: hidden; }
        .chat-active-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .chat-active-name { font-size: 15px; font-weight: 700; color: var(--graphite-100); }
        [data-theme="light"] .chat-active-name { color: #1c1c1e; }
        .chat-active-role { font-size: 12px; color: var(--purple-primary); }
        .chat-back-btn { display: none; background: var(--graphite-800); border: 1px solid var(--graphite-600); color: var(--purple-primary); width: 36px; height: 36px; border-radius: 10px; cursor: pointer; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
        .chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; -webkit-overflow-scrolling: touch; }
        .chat-message { max-width: 70%; padding: 10px 14px; border-radius: 16px; font-size: 13px; line-height: 1.6; word-wrap: break-word; position: relative; animation: messageIn 0.25s ease; }
        @keyframes messageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
        .chat-message.sent { align-self: flex-start; background: var(--purple-gradient); color: white; border-bottom-right-radius: 4px; }
        [dir="ltr"] .chat-message.sent { align-self: flex-end; border-bottom-right-radius: 16px; border-bottom-left-radius: 4px; }
        .chat-message.received { align-self: flex-end; background: var(--graphite-800); color: var(--graphite-100); border-bottom-left-radius: 4px; border: 1px solid var(--graphite-700); }
        [dir="ltr"] .chat-message.received { align-self: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 4px; }
        [data-theme="light"] .chat-message.received { background: #ffffff; color: #1c1c1e; border-color: #e5e5ea; }
        .chat-message-time { font-size: 10px; opacity: 0.7; margin-top: 4px; display: block; }
        .chat-input-area { padding: 14px 20px; background: var(--graphite-850); border-top: 1px solid var(--graphite-700); display: flex; gap: 8px; align-items: flex-end; flex-shrink: 0; padding-bottom: calc(14px + env(safe-area-inset-bottom)); }
        [data-theme="light"] .chat-input-area { background: #ffffff; border-top: 1px solid #e5e5ea; }
        .chat-input { flex: 1; padding: 12px 16px; background: var(--graphite-800); border: 1px solid var(--graphite-600); border-radius: 20px; color: var(--graphite-100); font-family: var(--font-family); font-size: 14px; resize: none; max-height: 100px; min-height: 44px; line-height: 1.5; }
        [data-theme="light"] .chat-input { background: #f5f5f8; border-color: #e5e5ea; color: #1c1c1e; }
        .chat-input:focus { outline: none; border-color: var(--purple-primary); box-shadow: var(--shadow-purple); }
        .chat-send-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--purple-gradient); color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: var(--transition); box-shadow: var(--shadow-purple); }
        .chat-send-btn:hover { transform: translateY(-2px) scale(1.05); box-shadow: var(--shadow-purple-lg); }

        /* COLLAB */
        .collab-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); z-index: 2100; align-items: center; justify-content: center; padding: 16px; }
        .collab-modal.active { display: flex; }
        .collab-content { background: var(--graphite-850); border: 1px solid var(--graphite-600); border-radius: 20px; padding: 32px; max-width: 560px; width: 100%; max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-purple-lg); position: relative; }
        [data-theme="light"] .collab-content { background: #ffffff; border: 1px solid #e5e5ea; }
        .collab-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--graphite-700); }
        [data-theme="light"] .collab-header { border-bottom-color: #e5e5ea; }
        .collab-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--purple-gradient); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: white; flex-shrink: 0; overflow: hidden; box-shadow: var(--shadow-purple); }
        .collab-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .collab-specialist-info { flex: 1; min-width: 0; }
        .collab-specialist-name { font-size: 16px; font-weight: 700; color: var(--graphite-100); margin-bottom: 2px; }
        [data-theme="light"] .collab-specialist-name { color: #1c1c1e; }
        .collab-specialist-role { font-size: 13px; color: var(--purple-primary); font-weight: 500; }
        .collab-title { font-size: 22px; font-weight: 800; margin-bottom: 20px; background: var(--purple-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-align: center; }
        .budget-info { background: var(--purple-glow); border: 1px solid var(--purple-primary); border-radius: 12px; padding: 12px 16px; margin-bottom: 16px; font-size: 12px; color: var(--purple-primary); line-height: 1.6; display: flex; align-items: flex-start; gap: 8px; }
        .budget-info-icon { font-size: 16px; flex-shrink: 0; }
        .price-breakdown { background: var(--graphite-900); border: 1px solid var(--graphite-700); border-radius: 14px; padding: 16px; margin-top: 16px; display: none; }
        [data-theme="light"] .price-breakdown { background: #f5f5f8; border-color: #e5e5ea; }
        .price-breakdown.show { display: block; }
        .price-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 13px; color: var(--graphite-300); }
        .price-row.total { border-top: 1px solid var(--graphite-600); margin-top: 8px; padding-top: 12px; font-size: 15px; font-weight: 700; color: var(--purple-primary); }
        [data-theme="light"] .price-row.total { border-top-color: #e5e5ea; }
        .price-row strong { color: var(--graphite-100); }
        [data-theme="light"] .price-row strong { color: #1c1c1e; }

        .collab-list-page { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--graphite-950); z-index: 1550; overflow-y: auto; -webkit-overflow-scrolling: touch; }
        .collab-list-page.active { display: block; }
        .collab-list-header { background: rgba(15, 15, 22, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--graphite-700); padding: 16px 24px; position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
        [data-theme="light"] .collab-list-header { background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid #e5e5ea; }
        .collab-list-title { font-size: 18px; font-weight: 800; color: var(--graphite-100); display: flex; align-items: center; gap: 8px; }
        [data-theme="light"] .collab-list-title { color: #1c1c1e; }
        .collab-list-content { max-width: 1000px; margin: 0 auto; padding: 32px 24px; }
        .collab-filters { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
        .collab-filter-tab { padding: 8px 18px; background: var(--graphite-850); border: 1px solid var(--graphite-600); border-radius: 20px; color: var(--graphite-300); cursor: pointer; transition: var(--transition); font-family: var(--font-family); font-size: 13px; font-weight: 500; }
        [data-theme="light"] .collab-filter-tab { background: #ffffff; border-color: #e5e5ea; color: #636366; }
        .collab-filter-tab:hover { border-color: var(--purple-primary); color: var(--purple-primary); }
        .collab-filter-tab.active { background: var(--purple-gradient); color: white; border-color: transparent; box-shadow: var(--shadow-purple); }
        .collab-request-card { background: var(--graphite-850); border: 1px solid var(--graphite-700); border-radius: 18px; padding: 20px; margin-bottom: 16px; transition: var(--transition); }
        [data-theme="light"] .collab-request-card { background: #ffffff; border-color: #e5e5ea; }
        .collab-request-card:hover { border-color: var(--purple-primary); box-shadow: var(--shadow-purple); }
        .collab-request-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; flex-wrap: wrap; gap: 10px; }
        .collab-request-title { font-size: 15px; font-weight: 700; color: var(--graphite-100); display: flex; align-items: center; gap: 8px; }
        [data-theme="light"] .collab-request-title { color: #1c1c1e; }
        .collab-status { padding: 4px 12px; border-radius: 12px; font-size: 11px; font-weight: 600; }
        .status-pending { background: rgba(251, 191, 36, 0.15); color: var(--warning); }
        .status-accepted { background: rgba(52, 211, 153, 0.15); color: var(--success); }
        .status-rejected { background: rgba(248, 113, 113, 0.15); color: var(--danger); }
        .status-more-info { background: rgba(96, 165, 250, 0.15); color: #60a5fa; }
        .collab-request-body { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 14px; font-size: 13px; }
        .collab-request-field { display: flex; flex-direction: column; gap: 4px; }
        .collab-request-label { color: var(--graphite-400); font-size: 11px; font-weight: 500; }
        .collab-request-value { color: var(--graphite-100); font-weight: 600; }
        [data-theme="light"] .collab-request-value { color: #1c1c1e; }
        .collab-request-description { background: var(--graphite-900); border-radius: 10px; padding: 12px; font-size: 13px; color: var(--graphite-300); line-height: 1.7; margin-bottom: 14px; }
        [data-theme="light"] .collab-request-description { background: #f5f5f8; color: #48484a; }
        .collab-request-actions { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid var(--graphite-700); }
        [data-theme="light"] .collab-request-actions { border-top-color: #e5e5ea; }
        .collab-empty { text-align: center; padding: 60px 20px; color: var(--graphite-400); }
        .collab-empty-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.5; }

        /* REVIEWS */
        .review-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); z-index: 2200; align-items: center; justify-content: center; padding: 16px; }
        .review-modal.active { display: flex; }
        .review-content { background: var(--graphite-850); border: 1px solid var(--graphite-600); border-radius: 20px; padding: 32px; max-width: 520px; width: 100%; max-height: 92vh; overflow-y: auto; box-shadow: var(--shadow-purple-lg); position: relative; }
        [data-theme="light"] .review-content { background: #ffffff; border: 1px solid #e5e5ea; }
        .review-title { font-size: 22px; font-weight: 800; margin-bottom: 24px; background: var(--purple-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-align: center; }
        .star-rating-input { display: flex; justify-content: center; gap: 8px; margin-bottom: 8px; direction: ltr; }
        .star-btn { font-size: 42px; color: var(--graphite-600); cursor: pointer; transition: var(--transition); background: none; border: none; padding: 0; line-height: 1; user-select: none; }
        .star-btn:hover, .star-btn.hovered { color: #fbbf24; transform: scale(1.15); filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.5)); }
        .star-btn.active { color: #fbbf24; filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.6)); }
        .rating-label { text-align: center; font-size: 14px; color: var(--graphite-400); margin-bottom: 20px; min-height: 20px; font-weight: 500; }

        .reviews-section { margin-top: 40px; }
        .reviews-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
        .reviews-title { font-size: 20px; font-weight: 700; color: var(--graphite-100); display: flex; align-items: center; gap: 8px; }
        [data-theme="light"] .reviews-title { color: #1c1c1e; }
        .reviews-summary { display: flex; align-items: center; gap: 12px; padding: 10px 16px; background: var(--purple-glow); border: 1px solid var(--purple-primary); border-radius: 12px; }
        .reviews-avg { font-size: 24px; font-weight: 900; color: var(--purple-primary); }
        .reviews-count { font-size: 12px; color: var(--graphite-400); }
        .reviews-stars-display { color: #fbbf24; font-size: 14px; letter-spacing: 2px; }
        .review-card { background: var(--graphite-850); border: 1px solid var(--graphite-700); border-radius: 16px; padding: 18px; margin-bottom: 14px; transition: var(--transition); }
        [data-theme="light"] .review-card { background: #ffffff; border-color: #e5e5ea; }
        .review-card:hover { border-color: var(--purple-primary); box-shadow: var(--shadow-purple); }
        .review-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
        .review-author-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--purple-gradient); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: white; flex-shrink: 0; }
        .review-author-info { flex: 1; min-width: 0; }
        .review-author-name { font-size: 14px; font-weight: 700; color: var(--graphite-100); margin-bottom: 2px; }
        [data-theme="light"] .review-author-name { color: #1c1c1e; }
        .review-date { font-size: 11px; color: var(--graphite-400); }
        .review-rating { color: #fbbf24; font-size: 15px; letter-spacing: 2px; direction: ltr; }
        .review-text { font-size: 13px; color: var(--graphite-300); line-height: 1.8; padding: 12px; background: var(--graphite-900); border-radius: 10px; }
        [data-theme="light"] .review-text { background: #f5f5f8; color: #48484a; }
        .reviews-empty { text-align: center; padding: 40px 20px; color: var(--graphite-400); background: var(--graphite-850); border: 1px dashed var(--graphite-600); border-radius: 16px; }
        [data-theme="light"] .reviews-empty { background: #fafafc; border-color: #e5e5ea; }
        .reviews-empty-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }

        /* DASHBOARD */
        .dashboard-page { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--graphite-950); z-index: 1500; overflow-y: auto; -webkit-overflow-scrolling: touch; }
        .dashboard-page.active { display: block; }
        .dashboard-header { background: rgba(15, 15, 22, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--graphite-700); padding: 16px 24px; position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
        [data-theme="light"] .dashboard-header { background: rgba(255, 255, 255, 0.95); border-bottom: 1px solid #e5e5ea; }
        .dashboard-title { font-size: 18px; font-weight: 800; color: var(--graphite-100); display: flex; align-items: center; gap: 8px; }
        [data-theme="light"] .dashboard-title { color: #1c1c1e; }
        .dashboard-tabs { display: flex; gap: 8px; padding: 16px 24px; background: var(--graphite-900); border-bottom: 1px solid var(--graphite-700); overflow-x: auto; position: sticky; top: 62px; z-index: 9; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
        [data-theme="light"] .dashboard-tabs { background: #ffffff; border-bottom: 1px solid #e5e5ea; }
        .dashboard-tabs::-webkit-scrollbar { display: none; }
        .dashboard-tab { padding: 9px 18px; background: var(--graphite-800); border: 1px solid var(--graphite-600); border-radius: 20px; color: var(--graphite-300); cursor: pointer; white-space: nowrap; font-family: var(--font-family); font-size: 13px; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; font-weight: 500; flex-shrink: 0; }
        [data-theme="light"] .dashboard-tab { background: #f0f0f2; border-color: #e5e5ea; color: #636366; }
        .dashboard-tab:hover { border-color: var(--purple-primary); color: var(--purple-primary); }
        .dashboard-tab.active { background: var(--purple-gradient); color: white; border-color: transparent; box-shadow: var(--shadow-purple); }
        .dashboard-content { padding: 32px 24px; max-width: 1200px; margin: 0 auto; }
        .dashboard-section { display: none; }
        .dashboard-section.active { display: block; }
        .dashboard-welcome { background: linear-gradient(135deg, var(--graphite-850) 0%, var(--graphite-800) 100%); border: 1px solid var(--purple-glow); border-radius: 24px; padding: 32px; margin-bottom: 24px; position: relative; overflow: hidden; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
        [data-theme="light"] .dashboard-welcome { background: linear-gradient(135deg, #fafafc 0%, #ffffff 100%); border-color: rgba(124, 58, 237, 0.15); }
        .dashboard-welcome::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
        .dashboard-welcome-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--purple-gradient); display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 800; color: white; box-shadow: var(--shadow-purple); flex-shrink: 0; z-index: 1; overflow: hidden; }
        .dashboard-welcome-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .dashboard-welcome-info { flex: 1; min-width: 200px; z-index: 1; }
        .dashboard-welcome-name { font-size: 24px; font-weight: 800; color: var(--graphite-100); margin-bottom: 4px; }
        [data-theme="light"] .dashboard-welcome-name { color: #1c1c1e; }
        .dashboard-welcome-role { font-size: 14px; color: var(--purple-primary); font-weight: 500; }
        .dashboard-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
        .dashboard-stat-card { background: var(--graphite-850); border: 1px solid var(--graphite-700); border-radius: 18px; padding: 20px; transition: var(--transition); position: relative; overflow: hidden; }
        [data-theme="light"] .dashboard-stat-card { background: #ffffff; border-color: #e5e5ea; }
        .dashboard-stat-card:hover { transform: translateY(-4px); border-color: var(--purple-primary); box-shadow: var(--shadow-purple); }
        .dashboard-stat-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--purple-glow); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 12px; }
        .dashboard-stat-label { font-size: 12px; color: var(--graphite-400); margin-bottom: 6px; font-weight: 500; }
        .dashboard-stat-value { font-size: 28px; font-weight: 800; color: var(--purple-primary); line-height: 1.2; }
        .dashboard-stat-sub { font-size: 11px; color: var(--graphite-500); margin-top: 4px; }
        .dashboard-card { background: var(--graphite-850); border: 1px solid var(--graphite-700); border-radius: 20px; padding: 24px; margin-bottom: 20px; }
        [data-theme="light"] .dashboard-card { background: #ffffff; border-color: #e5e5ea; }
        .dashboard-card-title { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: var(--purple-primary); display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
        .dashboard-card-title-text { display: flex; align-items: center; gap: 8px; }
        .dashboard-profile-avatar-edit { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--graphite-700); }
        [data-theme="light"] .dashboard-profile-avatar-edit { border-bottom-color: #e5e5ea; }
        .dashboard-profile-avatar { width: 110px; height: 110px; border-radius: 50%; background: var(--purple-gradient); display: flex; align-items: center; justify-content: center; font-size: 42px; font-weight: 800; color: white; overflow: hidden; box-shadow: var(--shadow-purple-lg); position: relative; cursor: pointer; transition: var(--transition); }
        .dashboard-profile-avatar:hover { transform: scale(1.03); }
        .dashboard-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .dashboard-profile-avatar-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); font-size: 24px; border-radius: 50%; }
        .dashboard-profile-avatar:hover .dashboard-profile-avatar-overlay { opacity: 1; }
        .dashboard-item { display: flex; align-items: center; gap: 12px; padding: 14px; background: var(--graphite-900); border-radius: 14px; margin-bottom: 10px; transition: var(--transition); cursor: pointer; border: 1px solid transparent; }
        [data-theme="light"] .dashboard-item { background: #f5f5f8; }
        .dashboard-item:hover { border-color: var(--purple-primary); background: var(--purple-glow); }
        .dashboard-item-icon { width: 40px; height: 40px; border-radius: 12px; background: var(--purple-glow); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
        .dashboard-item-info { flex: 1; min-width: 0; }
        .dashboard-item-title { font-size: 14px; font-weight: 700; color: var(--graphite-100); margin-bottom: 2px; }
        [data-theme="light"] .dashboard-item-title { color: #1c1c1e; }
        .dashboard-item-desc { font-size: 12px; color: var(--graphite-400); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .dashboard-item-arrow { color: var(--graphite-500); font-size: 18px; flex-shrink: 0; }
        [dir="ltr"] .dashboard-item-arrow { transform: scaleX(-1); }
        .dashboard-empty { text-align: center; padding: 40px 20px; color: var(--graphite-400); background: var(--graphite-900); border-radius: 14px; border: 1px dashed var(--graphite-600); }
        [data-theme="light"] .dashboard-empty { background: #fafafc; border-color: #e5e5ea; }
        .dashboard-empty-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }

        /* PORTFOLIO MANAGER */
        .portfolio-manager { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-top: 16px; }
        .portfolio-manage-item { background: var(--graphite-900); border: 1px solid var(--graphite-700); border-radius: 14px; padding: 14px; position: relative; transition: var(--transition); }
        [data-theme="light"] .portfolio-manage-item { background: #f5f5f8; border-color: #e5e5ea; }
        .portfolio-manage-item:hover { border-color: var(--purple-primary); box-shadow: var(--shadow-purple); }
        .portfolio-manage-preview { width: 100%; height: 130px; background: var(--graphite-800); border-radius: 10px; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; font-size: 40px; overflow: hidden; position: relative; }
        [data-theme="light"] .portfolio-manage-preview { background: #ffffff; }
        .portfolio-manage-preview img, .portfolio-manage-preview video { width: 100%; height: 100%; object-fit: cover; }
        .portfolio-manage-title { font-size: 13px; font-weight: 700; color: var(--graphite-100); margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
        [data-theme="light"] .portfolio-manage-title { color: #1c1c1e; }
        .portfolio-manage-desc { font-size: 11px; color: var(--graphite-400); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; line-height: 1.5; }
        .portfolio-manage-actions { display: flex; gap: 6px; }
        .portfolio-manage-actions .btn { flex: 1; padding: 6px 10px; font-size: 11px; }
        .portfolio-delete-btn { position: absolute; top: 8px; left: 8px; width: 28px; height: 28px; border-radius: 50%; background: var(--danger); color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; opacity: 0; transition: var(--transition); z-index: 2; }
        [dir="ltr"] .portfolio-delete-btn { left: auto; right: 8px; }
        .portfolio-manage-item:hover .portfolio-delete-btn { opacity: 1; }
        .portfolio-upload-area { border: 2px dashed var(--graphite-600); border-radius: 14px; padding: 24px; text-align: center; cursor: pointer; transition: var(--transition); background: var(--graphite-900); margin-bottom: 16px; }
        [data-theme="light"] .portfolio-upload-area { background: #fafafc; border-color: #d1d1d6; }
        .portfolio-upload-area:hover { border-color: var(--purple-primary); background: var(--purple-glow); }
        .portfolio-upload-icon { font-size: 36px; margin-bottom: 8px; opacity: 0.7; }
        .portfolio-upload-text { font-size: 13px; color: var(--graphite-300); font-weight: 500; }
        [data-theme="light"] .portfolio-upload-text { color: #636366; }
        .portfolio-upload-hint { font-size: 11px; color: var(--graphite-500); margin-top: 4px; }
        .portfolio-upload-preview { display: none; margin-bottom: 16px; text-align: center; }
        .portfolio-upload-preview.show { display: block; }
        .portfolio-upload-preview img, .portfolio-upload-preview video { max-width: 100%; max-height: 200px; border-radius: 12px; border: 1px solid var(--graphite-600); }
        .portfolio-type-tabs { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
        .portfolio-type-tab { padding: 8px 16px; background: var(--graphite-800); border: 1px solid var(--graphite-600); border-radius: 20px; color: var(--graphite-300); cursor: pointer; transition: var(--transition); font-family: var(--font-family); font-size: 12px; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; }
        [data-theme="light"] .portfolio-type-tab { background: #f0f0f2; border-color: #e5e5ea; color: #636366; }
        .portfolio-type-tab:hover { border-color: var(--purple-primary); color: var(--purple-primary); }
        .portfolio-type-tab.active { background: var(--purple-gradient); color: white; border-color: transparent; box-shadow: var(--shadow-purple); }
        .lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 5000; align-items: center; justify-content: center; padding: 20px; }
        .lightbox.active { display: flex; }
        .lightbox-content { max-width: 90vw; max-height: 90vh; position: relative; }
        .lightbox-content img, .lightbox-content video { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8); }
        .lightbox-close { position: absolute; top: -50px; left: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); color: white; border: none; cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
        .lightbox-close:hover { background: var(--danger); }

        /* ADMIN */
        .admin-panel { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--graphite-950); z-index: 3000; overflow-y: auto; -webkit-overflow-scrolling: touch; }
        .admin-panel.active { display: block; }
        .admin-header { background: rgba(15, 15, 22, 0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--graphite-700); padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 10; gap: 16px; }
        [data-theme="light"] .admin-header { background: rgba(255, 255, 255, 0.9); border-bottom: 1px solid #e5e5ea; }
        .admin-title { font-size: 18px; font-weight: 800; color: var(--purple-primary); display: flex; align-items: center; gap: 8px; }
        .admin-nav { display: flex; gap: 8px; padding: 16px 24px; background: var(--graphite-900); border-bottom: 1px solid var(--graphite-700); overflow-x: auto; position: sticky; top: 62px; z-index: 9; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
        [data-theme="light"] .admin-nav { background: #ffffff; border-bottom: 1px solid #e5e5ea; }
        .admin-nav::-webkit-scrollbar { display: none; }
        .admin-tab { padding: 9px 18px; background: var(--graphite-800); border: 1px solid var(--graphite-600); border-radius: 20px; color: var(--graphite-300); cursor: pointer; white-space: nowrap; font-family: var(--font-family); font-size: 13px; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; font-weight: 500; flex-shrink: 0; }
        [data-theme="light"] .admin-tab { background: #f0f0f2; border-color: #e5e5ea; color: #636366; }
        .admin-tab:hover { border-color: var(--purple-primary); color: var(--purple-primary); }
        .admin-tab.active { background: var(--purple-gradient); color: white; border-color: transparent; box-shadow: var(--shadow-purple); }
        .admin-content { padding: 24px; max-width: 1400px; margin: 0 auto; }
        .admin-card { background: var(--graphite-850); border: 1px solid var(--graphite-700); border-radius: 20px; padding: 24px; margin-bottom: 20px; }
        [data-theme="light"] .admin-card { background: #ffffff; border-color: #e5e5ea; }
        .admin-card-title { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: var(--purple-primary); display: flex; align-items: center; gap: 8px; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
        .stat-card { background: var(--graphite-850); border: 1px solid var(--graphite-700); border-radius: 20px; padding: 20px; transition: var(--transition); }
        [data-theme="light"] .stat-card { background: #ffffff; border-color: #e5e5ea; }
        .stat-card:hover { border-color: var(--purple-primary); transform: translateY(-3px); }
        .stat-card-label { color: var(--graphite-400); font-size: 12px; margin-bottom: 8px; }
        .stat-card-value { font-size: 28px; font-weight: 800; color: var(--purple-primary); }
        .admin-table { width: 100%; border-collapse: collapse; overflow-x: auto; display: block; white-space: nowrap; }
        .admin-table thead, .admin-table tbody { display: table; width: 100%; }
        .admin-table th { text-align: right; padding: 12px 10px; border-bottom: 2px solid var(--graphite-600); color: var(--purple-primary); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
        [dir="ltr"] .admin-table th { text-align: left; }
        [data-theme="light"] .admin-table th { border-bottom-color: #e5e5ea; }
        .admin-table td { padding: 12px 10px; border-bottom: 1px solid var(--graphite-700); font-size: 13px; }
        [data-theme="light"] .admin-table td { border-bottom-color: #f0f0f2; }
        .admin-table tr:hover { background: var(--graphite-800); }
        [data-theme="light"] .admin-table tr:hover { background: #f5f5f8; }
        .status-badge { display: inline-block; padding: 4px 10px; border-radius: 10px; font-size: 11px; font-weight: 600; }
        .status-active { background: rgba(52, 211, 153, 0.15); color: var(--success); }
        .status-pending { background: rgba(251, 191, 36, 0.15); color: var(--warning); }
        .status-inactive { background: rgba(248, 113, 113, 0.15); color: var(--danger); }

        /* ADMIN VISUAL MANAGER */
        .admin-visual-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
        .admin-visual-card { background: var(--graphite-900); border: 1px solid var(--graphite-700); border-radius: 14px; padding: 14px; position: relative; transition: var(--transition); }
        [data-theme="light"] .admin-visual-card { background: #f5f5f8; border-color: #e5e5ea; }
        .admin-visual-card:hover { border-color: var(--purple-primary); box-shadow: var(--shadow-purple); }
        .admin-visual-preview { width: 100%; height: 140px; background: var(--graphite-800); border-radius: 10px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; font-size: 40px; overflow: hidden; position: relative; cursor: grab; }
        [data-theme="light"] .admin-visual-preview { background: #ffffff; }
        .admin-visual-preview:active { cursor: grabbing; }
        .admin-visual-preview img, .admin-visual-preview video { width: 100%; height: 100%; object-fit: cover; pointer-events: none; user-select: none; }
        .admin-visual-actions { display: flex; gap: 6px; flex-wrap: wrap; }
        .admin-visual-actions .btn { flex: 1; padding: 6px 10px; font-size: 11px; }
        .visual-controls { display: grid; gap: 10px; margin-top: 12px; }
        .visual-control-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
        .visual-control-row label { font-size: 11px; color: var(--graphite-400); min-width: 70px; }
        .visual-control-row input[type="range"] { flex: 1; min-width: 80px; accent-color: var(--purple-primary); }
        .visual-control-row input[type="number"] { width: 70px; padding: 6px 8px; background: var(--graphite-800); border: 1px solid var(--graphite-600); border-radius: 8px; color: var(--graphite-100); font-family: var(--font-family); font-size: 12px; }
        .visual-position-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
        .visual-pos-btn { padding: 8px 6px; background: var(--graphite-800); border: 1px solid var(--graphite-600); border-radius: 8px; color: var(--graphite-300); font-size: 10px; cursor: pointer; transition: var(--transition); font-family: var(--font-family); }
        .visual-pos-btn:hover { border-color: var(--purple-primary); color: var(--purple-primary); }
        .visual-pos-btn.active { background: var(--purple-gradient); color: white; border-color: transparent; }
        .visual-type-tabs { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
        .visual-type-tab { padding: 6px 12px; background: var(--graphite-800); border: 1px solid var(--graphite-600); border-radius: 16px; color: var(--graphite-300); cursor: pointer; font-family: var(--font-family); font-size: 11px; transition: var(--transition); }
        .visual-type-tab.active { background: var(--purple-gradient); color: white; border-color: transparent; }

        .settings-item { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--graphite-700); }
        [data-theme="light"] .settings-item { border-bottom-color: #e5e5ea; }
        .settings-item:last-child { border-bottom: none; }
        .settings-label { font-weight: 600; color: var(--graphite-100); font-size: 14px; display: flex; align-items: center; gap: 10px; }
        [data-theme="light"] .settings-label { color: #1c1c1e; }
        .toggle-switch { width: 48px; height: 26px; background: var(--graphite-600); border-radius: 13px; cursor: pointer; position: relative; transition: var(--transition); flex-shrink: 0; border: none; }
        .toggle-switch.active { background: var(--purple-primary); }
        .toggle-switch::after { content: ''; position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; background: white; border-radius: 50%; transition: var(--transition); }
        [dir="ltr"] .toggle-switch::after { right: auto; left: 3px; }
        .toggle-switch.active::after { right: 25px; }
        [dir="ltr"] .toggle-switch.active::after { right: auto; left: 25px; }

        .toast-container { position: fixed; bottom: 90px; right: 20px; z-index: 5000; display: flex; flex-direction: column; gap: 10px; pointer-events: none; max-width: calc(100% - 40px); }
        [dir="ltr"] .toast-container { right: auto; left: 20px; }
        .toast { background: var(--graphite-800); border: 1px solid var(--purple-primary); border-radius: 14px; padding: 14px 18px; color: var(--graphite-100); box-shadow: var(--shadow-purple-lg); display: flex; align-items: center; gap: 12px; min-width: 280px; max-width: 380px; animation: toastIn 0.35s cubic-bezier(0.4, 0, 0.2, 1); pointer-events: all; }
        [data-theme="light"] .toast { background: #ffffff; color: #1c1c1e; }
        .toast.removing { animation: toastOut 0.3s ease forwards; }
        @keyframes toastIn { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }
        [dir="ltr"] @keyframes toastIn { from { opacity: 0; transform: translateX(-100px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes toastOut { to { opacity: 0; transform: translateX(100px); } }
        .toast-icon { font-size: 22px; flex-shrink: 0; }
        .toast-content { flex: 1; min-width: 0; }
        .toast-title { font-weight: 700; font-size: 13px; margin-bottom: 2px; }
        [data-theme="light"] .toast-title { color: #1c1c1e; }
        .toast-desc { font-size: 12px; color: var(--graphite-400); }

        .back-to-top { position: fixed; bottom: 90px; left: 20px; width: 44px; height: 44px; border-radius: 50%; background: var(--purple-gradient); color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-purple); z-index: 998; opacity: 0; visibility: hidden; transition: var(--transition); font-size: 18px; }
        [dir="ltr"] .back-to-top { left: auto; right: 20px; }
        .back-to-top.show { opacity: 1; visibility: visible; }
        .back-to-top:hover { transform: translateY(-4px) scale(1.05); }

        .mobile-menu { position: fixed; top: 0; right: -100%; width: 85%; max-width: 340px; height: 100vh; background: var(--graphite-900); border-left: 1px solid var(--purple-glow); z-index: 2000; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); padding: 24px; overflow-y: auto; box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5); }
        [dir="ltr"] .mobile-menu { right: auto; left: -100%; border-left: none; border-right: 1px solid var(--purple-glow); transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
        [data-theme="light"] .mobile-menu { background: #ffffff; box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1); }
        .mobile-menu.open { right: 0; }
        [dir="ltr"] .mobile-menu.open { right: auto; left: 0; }
        .mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--graphite-700); }
        [data-theme="light"] .mobile-menu-header { border-bottom-color: #e5e5ea; }
        .mobile-menu-close { width: 36px; height: 36px; border-radius: 10px; background: var(--graphite-800); border: 1px solid var(--graphite-600); color: var(--purple-primary); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; }
        [data-theme="light"] .mobile-menu-close { background: #f0f0f2; border-color: #e5e5ea; }
        .mobile-nav-link { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 14px; color: var(--graphite-200); font-size: 15px; font-weight: 500; cursor: pointer; transition: var(--transition); margin-bottom: 6px; border: none; background: none; width: 100%; text-align: right; font-family: var(--font-family); }
        [dir="ltr"] .mobile-nav-link { text-align: left; }
        [data-theme="light"] .mobile-nav-link { color: #48484a; }
        .mobile-nav-link:hover, .mobile-nav-link:active { background: var(--graphite-800); color: var(--purple-primary); }
        [data-theme="light"] .mobile-nav-link:hover { background: #f0f0f2; }
        .mobile-nav-link .nav-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--purple-glow); display: flex; align-items: center; justify-content: center; color: var(--purple-primary); font-size: 16px; flex-shrink: 0; }
        .mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); z-index: 1999; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
        .mobile-menu-overlay.show { opacity: 1; visibility: visible; }

        .bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--graphite-900); border-top: 1px solid var(--graphite-700); z-index: 999; padding: 6px 0 calc(6px + env(safe-area-inset-bottom)); backdrop-filter: blur(20px); }
        [data-theme="light"] .bottom-nav { background: #ffffff; border-top: 1px solid #e5e5ea; }
        .bottom-nav-items { display: flex; justify-content: space-around; align-items: center; max-width: 600px; margin: 0 auto; }
        .bottom-nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px 12px; border-radius: 12px; cursor: pointer; transition: var(--transition); color: var(--graphite-300); font-size: 10px; font-weight: 500; border: none; background: none; font-family: var(--font-family); flex: 1; position: relative; }
        [data-theme="light"] .bottom-nav-item { color: #636366; }
        .bottom-nav-item.active { color: var(--purple-primary); }
        .bottom-nav-item.active::before { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 24px; height: 3px; background: var(--purple-gradient); border-radius: 0 0 4px 4px; }
        .bottom-nav-icon { font-size: 20px; line-height: 1; }

        /* ============================================ */
        /* ===== RESPONSIVE — TABLET (768px - 1024px) ===== */
        /* ============================================ */
        @media (max-width: 1024px) {
            .navbar-content { padding: 0 20px; gap: 12px; }
            .hero-title { font-size: 48px; }
            .section-title { font-size: 32px; }
            .intro-text { max-width: 380px; }
            .intro-text-title { font-size: 32px; }
            .intro-text-desc { font-size: 15px; }
            .specialists-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
            .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
            .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
            .portfolio-manager { grid-template-columns: repeat(2, 1fr); }
            .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
            .info-grid { grid-template-columns: repeat(2, 1fr); }
            .admin-visual-grid { grid-template-columns: repeat(2, 1fr); }
            .nav-link { font-size: 13px; padding: 8px 10px; }
            .chat-layout { grid-template-columns: 280px 1fr; }
        }

        /* ============================================ */
        /* ===== RESPONSIVE — MOBILE (< 768px) ===== */
        /* ============================================ */
        @media (max-width: 768px) {
            body { font-size: 14px; }
            .navbar-content { height: 56px; padding: 0 12px; gap: 6px; }
            .navbar-brand { gap: 6px; }
            .logo { font-size: 20px; }
            .logo::after { width: 5px; height: 5px; }
            .nav-actions { gap: 4px; }
            .icon-btn { width: 34px; height: 34px; border-radius: 10px; }
            .icon-btn svg { width: 15px; height: 15px; }
            .nav-avatar { width: 34px; height: 34px; font-size: 13px; }
            .nav-avatar-badge { min-width: 14px; height: 14px; font-size: 9px; padding: 0 3px; top: -1px; left: -1px; }
            [dir="ltr"] .nav-avatar-badge { left: auto; right: -1px; }
            .nav-avatar-crown { font-size: 11px; top: -6px; right: -2px; }
            .navbar .btn-sm { padding: 5px 9px; font-size: 11px; border-radius: 8px; }
            #loginBtn { display: inline-flex !important; }
            #registerBtn { display: inline-flex !important; }
            #logoutBtn { display: none !important; }
            #logoutBtn[style*="inline-flex"] { display: inline-flex !important; }
            .mobile-menu-btn { width: 34px; height: 34px; border-radius: 10px; }
            .mobile-menu-btn svg { width: 18px; height: 18px; }
            .user-dropdown { position: fixed; top: auto; bottom: 0; left: 0 !important; right: 0 !important; width: 100%; max-width: 100%; border-radius: 22px 22px 0 0; max-height: 85vh; animation: bottomSheetIn 0.3s cubic-bezier(0.4, 0, 0.2, 1); padding-bottom: calc(env(safe-area-inset-bottom) + 8px); overflow: hidden; display: flex; flex-direction: column; }
            [dir="ltr"] .user-dropdown { left: 0 !important; right: 0 !important; }
            .user-dropdown-body { max-height: 55vh; overflow-y: auto; -webkit-overflow-scrolling: touch; }
            .user-dropdown-header { padding: 14px 16px; }
            .user-dropdown-item { padding: 12px 14px; font-size: 14px; }
            .user-dropdown-item-icon { width: 36px; height: 36px; font-size: 16px; }
            @keyframes bottomSheetIn { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }
            .hero { min-height: auto; padding: 80px 16px 40px; }
            .hero-title { font-size: 32px; letter-spacing: -1px; line-height: 1.25; }
            .hero-subtitle { font-size: 14px; margin-bottom: 20px; line-height: 1.7; }
            .hero-badge { font-size: 11px; padding: 6px 12px; margin-bottom: 14px; }
            .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
            .hero-actions .btn { width: 100%; padding: 14px 18px; font-size: 14px; }
            .section { padding: 44px 16px; }
            .section-header { margin-bottom: 28px; }
            .section-badge { font-size: 11px; padding: 3px 10px; }
            .section-title { font-size: 24px; letter-spacing: -0.5px; }
            .section-subtitle { font-size: 13px; }
            .search-container { margin-bottom: 20px; }
            .search-input { padding: 13px 44px 13px 16px; font-size: 14px; border-radius: 16px; }
            .search-icon { right: 16px; font-size: 16px; }
            [dir="ltr"] .search-icon { right: auto; left: 16px; }
            .filter-tabs { gap: 6px; margin-bottom: 20px; flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 4px 16px 10px; scrollbar-width: none; margin-left: -16px; margin-right: -16px; width: calc(100% + 32px); -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; }
            .filter-tabs::-webkit-scrollbar { display: none; }
            .filter-tab { padding: 8px 16px; font-size: 12px; white-space: nowrap; flex-shrink: 0; scroll-snap-align: start; }
            .specialists-grid { grid-template-columns: 1fr; gap: 14px; }
            .specialist-card { padding: 18px; border-radius: 16px; }
            .specialist-card-header { gap: 12px; margin-bottom: 12px; }
            .avatar { width: 54px; height: 54px; font-size: 20px; }
            .specialist-name { font-size: 15px; }
            .specialist-role { font-size: 12px; }
            .specialist-bio { font-size: 12px; margin-bottom: 12px; }
            .skill-tag { font-size: 10px; padding: 3px 8px; }
            .card-footer { padding-top: 12px; font-size: 11px; gap: 6px; }
            .price-tag { font-size: 13px; }
            .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
            .pricing-card { padding: 24px 18px; border-radius: 18px; }
            .pricing-price { font-size: 26px; }
            .pricing-name { font-size: 16px; }
            .pricing-features li { font-size: 12px; padding: 6px 0; }
            .discount-box { padding: 16px; border-radius: 16px; margin-bottom: 24px; }
            .discount-input-group { flex-direction: column; }
            .discount-input-group .btn { width: 100%; padding: 12px; }
            .plan-summary { padding: 18px; border-radius: 16px; }
            .plan-summary-row { font-size: 13px; }
            .plan-summary-total { font-size: 15px; }
            .steps-grid { grid-template-columns: 1fr; gap: 14px; }
            .step-card { padding: 22px 18px; border-radius: 16px; }
            .step-number { width: 48px; height: 48px; font-size: 18px; margin-bottom: 16px; }
            .step-title { font-size: 16px; }
            .step-desc { font-size: 12px; }
            .about-card { padding: 22px 18px; border-radius: 16px; }
            .about-text { font-size: 13px; line-height: 1.9; margin-bottom: 22px; }
            .social-links { gap: 10px; }
            .social-link { min-width: 100px; padding: 14px 12px; border-radius: 16px; }
            .social-icon { width: 44px; height: 44px; }
            .social-icon svg { width: 20px; height: 20px; }
            .social-name { font-size: 12px; }
            .social-handle { font-size: 10px; }
            .footer { padding: 32px 16px 100px; margin-top: 40px; }
            .footer-content { grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
            .footer-brand .logo { font-size: 22px; }
            .footer-desc { font-size: 12px; }
            .footer-title { font-size: 14px; margin-bottom: 12px; }
            .footer-links a { font-size: 12px; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 6px; padding-top: 20px; font-size: 11px; }
            .modal { padding: 12px; align-items: flex-end; }
            .modal.active { align-items: flex-end; }
            .modal-content { padding: 22px 18px; border-radius: 20px 20px 0 0; max-height: 92vh; overflow-y: auto; -webkit-overflow-scrolling: touch; padding-bottom: calc(22px + env(safe-area-inset-bottom)); width: 100%; max-width: 100%; }
            .modal-title { font-size: 20px; margin-bottom: 18px; }
            .modal-close { top: 14px; left: 14px; width: 30px; height: 30px; font-size: 14px; }
            [dir="ltr"] .modal-close { left: auto; right: 14px; }
            .form-group { margin-bottom: 14px; }
            .form-label { font-size: 12px; margin-bottom: 6px; }
            .form-input { padding: 12px 14px; font-size: 14px; border-radius: 12px; }
            textarea.form-input { min-height: 70px; }
            .upload-preview { width: 80px; height: 80px; font-size: 28px; }
            .software-grid { grid-template-columns: 1fr; max-height: 220px; gap: 6px; }
            .software-item { padding: 9px 10px; font-size: 12px; }
            .software-name { font-size: 11px; }
            .profile-header { padding: 12px 16px; }
            .profile-content { padding: 20px 16px; }
            .profile-hero { margin-bottom: 28px; padding-bottom: 24px; }
            .avatar.avatar-lg { width: 90px; height: 90px; font-size: 36px; }
            .profile-name { font-size: 20px; gap: 6px; margin: 12px 0 6px; padding: 0 4px; line-height: 1.4; }
            .profile-role { font-size: 14px; }
            .verified-badge { font-size: 9px; padding: 2px 6px; }
            .ezplus-badge { font-size: 9px; padding: 2px 6px; }
            .info-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
            .info-card { padding: 18px; border-radius: 16px; }
            .info-card-title { font-size: 15px; margin-bottom: 12px; }
            .skill-row { padding: 6px 0; font-size: 13px; }
            .info-row { padding: 6px 0; font-size: 13px; }
            .portfolio-grid { grid-template-columns: 1fr; gap: 12px; }
            .portfolio-item { padding: 14px; }
            .portfolio-image { height: 140px; font-size: 40px; }
            .portfolio-title { font-size: 13px; }
            .portfolio-desc { font-size: 11px; }
            .reviews-header { flex-direction: column; align-items: flex-start; }
            .reviews-title { font-size: 17px; }
            .reviews-summary { padding: 8px 12px; }
            .reviews-avg { font-size: 20px; }
            .reviews-count { font-size: 11px; }
            .review-content { padding: 22px 18px; border-radius: 20px; }
            .star-btn { font-size: 34px; }
            .rating-label { font-size: 13px; }
            .review-card { padding: 14px; border-radius: 14px; }
            .review-author-avatar { width: 38px; height: 38px; font-size: 14px; }
            .review-author-name { font-size: 13px; }
            .review-text { font-size: 12px; padding: 10px; }
            .dashboard-page { background: var(--graphite-950); }
            .dashboard-header { padding: 12px 14px; gap: 10px; }
            .dashboard-title { font-size: 15px; }
            .dashboard-header .btn-sm { padding: 6px 10px; font-size: 11px; }
            .dashboard-tabs { padding: 10px 14px; gap: 6px; top: 56px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; }
            .dashboard-tabs::-webkit-scrollbar { display: none; }
            .dashboard-tab { padding: 8px 14px; font-size: 12px; flex-shrink: 0; scroll-snap-align: start; }
            .dashboard-content { padding: 16px 14px; }
            .dashboard-welcome { padding: 20px 16px; flex-direction: column; text-align: center; gap: 14px; border-radius: 18px; margin-bottom: 18px; }
            .dashboard-welcome-avatar { width: 70px; height: 70px; font-size: 28px; }
            .dashboard-welcome-name { font-size: 18px; }
            .dashboard-welcome-role { font-size: 13px; }
            .dashboard-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 18px; }
            .dashboard-stat-card { padding: 14px; border-radius: 14px; }
            .dashboard-stat-icon { width: 38px; height: 38px; font-size: 17px; margin-bottom: 10px; border-radius: 10px; }
            .dashboard-stat-label { font-size: 11px; margin-bottom: 4px; }
            .dashboard-stat-value { font-size: 20px; }
            .dashboard-stat-sub { font-size: 10px; }
            .dashboard-card { padding: 16px; border-radius: 16px; margin-bottom: 14px; }
            .dashboard-card-title { font-size: 14px; margin-bottom: 14px; }
            .dashboard-item { padding: 12px; border-radius: 12px; margin-bottom: 8px; gap: 10px; }
            .dashboard-item-icon { width: 36px; height: 36px; font-size: 16px; border-radius: 10px; }
            .dashboard-item-title { font-size: 13px; }
            .dashboard-item-desc { font-size: 11px; }
            .dashboard-item-arrow { font-size: 16px; }
            .dashboard-profile-avatar { width: 90px; height: 90px; font-size: 36px; }
            .dashboard-profile-avatar-edit { margin-bottom: 18px; padding-bottom: 18px; gap: 10px; }
            .portfolio-manager { grid-template-columns: 1fr; gap: 12px; }
            .portfolio-manage-item { padding: 12px; border-radius: 12px; }
            .portfolio-manage-preview { height: 130px; font-size: 36px; }
            .portfolio-manage-title { font-size: 13px; }
            .portfolio-manage-desc { font-size: 11px; }
            .portfolio-manage-actions .btn { padding: 7px 10px; font-size: 11px; }
            .portfolio-delete-btn { opacity: 1; top: 6px; left: 6px; width: 26px; height: 26px; font-size: 12px; }
            [dir="ltr"] .portfolio-delete-btn { left: auto; right: 6px; }
            .chat-header { padding: 10px 14px; gap: 10px; }
            .chat-header-title { font-size: 14px; }
            .chat-header .btn-sm { padding: 6px 10px; font-size: 11px; }
            .chat-layout { grid-template-columns: 1fr; }
            .conversations-list { border-left: none; }
            [dir="ltr"] .conversations-list { border-right: none; }
            .chat-layout.show-chat .conversations-list { display: none; }
            .chat-layout:not(.show-chat) .chat-area { display: none; }
            .chat-back-btn { display: flex; }
            .chat-active-header { padding: 10px 14px; gap: 10px; }
            .chat-active-avatar { width: 38px; height: 38px; font-size: 14px; }
            .chat-active-name { font-size: 14px; }
            .chat-active-role { font-size: 11px; }
            .chat-message { max-width: 85%; font-size: 13px; padding: 10px 12px; }
            .chat-messages { padding: 14px 12px; gap: 10px; }
            .chat-input-area { padding: 10px 12px; padding-bottom: calc(10px + env(safe-area-inset-bottom)); position: sticky; bottom: 0; background: var(--graphite-850); z-index: 10; }
            [data-theme="light"] .chat-input-area { background: #ffffff; }
            .chat-input { padding: 10px 14px; font-size: 14px; min-height: 42px; }
            .chat-send-btn { width: 42px; height: 42px; font-size: 16px; }
            .conversation-item { padding: 12px 14px; gap: 10px; }
            .conversation-avatar { width: 42px; height: 42px; font-size: 16px; }
            .conversation-name { font-size: 13px; }
            .conversation-preview { font-size: 11px; }
            .conversations-search { padding: 10px; }
            .conversations-search input { padding: 9px 12px; font-size: 12px; }
            .collab-list-header { padding: 12px 14px; gap: 10px; }
            .collab-list-title { font-size: 15px; }
            .collab-list-header .btn-sm { padding: 6px 10px; font-size: 11px; }
            .collab-list-content { padding: 16px 14px; }
            .collab-filters { gap: 6px; margin-bottom: 18px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
            .collab-filters::-webkit-scrollbar { display: none; }
            .collab-filter-tab { padding: 7px 14px; font-size: 12px; flex-shrink: 0; white-space: nowrap; }
            .collab-request-card { padding: 16px; border-radius: 16px; margin-bottom: 12px; }
            .collab-request-header { margin-bottom: 12px; }
            .collab-request-title { font-size: 14px; }
            .collab-status { font-size: 10px; padding: 3px 10px; }
            .collab-request-body { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; font-size: 12px; }
            .collab-request-description { padding: 10px; font-size: 12px; margin-bottom: 12px; }
            .collab-request-actions { padding-top: 12px; gap: 6px; }
            .collab-request-actions .btn { padding: 7px 12px; font-size: 11px; }
            .collab-content { padding: 22px 18px; border-radius: 20px 20px 0 0; }
            .collab-header { margin-bottom: 18px; padding-bottom: 16px; gap: 12px; }
            .collab-avatar { width: 48px; height: 48px; font-size: 18px; }
            .collab-specialist-name { font-size: 15px; }
            .collab-specialist-role { font-size: 12px; }
            .collab-title { font-size: 18px; margin-bottom: 16px; }
            .budget-info { padding: 10px 12px; font-size: 11px; }
            .price-breakdown { padding: 12px; }
            .price-row { font-size: 12px; }
            .price-row.total { font-size: 14px; }
            .notif-panel { top: 62px; left: 10px; right: 10px; width: auto; max-width: none; max-height: 65vh; border-radius: 16px; }
            [dir="ltr"] .notif-panel { left: 10px; right: 10px; }
            .notif-header { padding: 12px 16px; }
            .notif-header-title { font-size: 14px; }
            .notif-clear-btn { font-size: 11px; padding: 4px 8px; }
            .notif-item { padding: 10px 12px; gap: 10px; }
            .notif-icon { width: 36px; height: 36px; font-size: 16px; }
            .notif-title { font-size: 12px; }
            .notif-desc { font-size: 11px; }
            .notif-time { font-size: 10px; }
            .notif-footer { padding: 10px 14px; }
            .notif-footer-btn { font-size: 12px; padding: 8px 12px; }
            .mobile-menu { padding: 20px; }
            .mobile-menu-header { margin-bottom: 24px; padding-bottom: 14px; }
            .mobile-nav-link { padding: 12px 14px; font-size: 14px; gap: 10px; }
            .mobile-nav-link .nav-icon { width: 32px; height: 32px; font-size: 14px; }
            .admin-header { padding: 12px 14px; gap: 10px; }
            .admin-title { font-size: 15px; }
            .admin-header .btn-sm { padding: 6px 10px; font-size: 11px; }
            .admin-nav { padding: 10px 14px; gap: 6px; top: 56px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; }
            .admin-nav::-webkit-scrollbar { display: none; }
            .admin-tab { padding: 8px 14px; font-size: 12px; flex-shrink: 0; scroll-snap-align: start; }
            .admin-content { padding: 16px 14px; }
            .admin-card { padding: 16px; border-radius: 16px; margin-bottom: 14px; }
            .admin-card-title { font-size: 14px; margin-bottom: 14px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .stat-card { padding: 14px; border-radius: 14px; }
            .stat-card-value { font-size: 20px; }
            .stat-card-label { font-size: 11px; }
            .admin-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
            .admin-table th { padding: 8px 8px; font-size: 10px; }
            .admin-table td { padding: 10px 8px; font-size: 12px; }
            .admin-table .btn-sm { padding: 5px 8px; font-size: 10px; }
            .admin-visual-grid { grid-template-columns: 1fr; gap: 12px; }
            .admin-visual-card { padding: 12px; }
            .admin-visual-preview { height: 120px; font-size: 32px; }
            .visual-control-row { gap: 6px; }
            .visual-control-row label { font-size: 10px; min-width: 55px; }
            .visual-control-row input[type="number"] { width: 58px; font-size: 11px; padding: 5px 6px; }
            .visual-position-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
            .visual-pos-btn { padding: 7px 4px; font-size: 9px; }
            .visual-type-tab { padding: 6px 10px; font-size: 10px; }
            .settings-item { padding: 14px 0; }
            .settings-label { font-size: 13px; }
            .toggle-switch { width: 44px; height: 24px; }
            .toggle-switch::after { width: 18px; height: 18px; top: 3px; right: 3px; }
            [dir="ltr"] .toggle-switch::after { right: auto; left: 3px; }
            .toggle-switch.active::after { right: 23px; }
            [dir="ltr"] .toggle-switch.active::after { right: auto; left: 23px; }
            .bottom-nav { display: block; }
            .bottom-nav-item { padding: 6px 8px; font-size: 10px; }
            .bottom-nav-icon { font-size: 20px; }
            .toast-container { bottom: 90px; right: 12px; left: 12px; }
            .toast { min-width: auto; width: 100%; padding: 12px 14px; font-size: 13px; }
            .toast-icon { font-size: 20px; }
            .toast-title { font-size: 13px; }
            .toast-desc { font-size: 11px; }
            .back-to-top { bottom: 90px; left: 12px; width: 40px; height: 40px; font-size: 16px; }
            [dir="ltr"] .back-to-top { left: auto; right: 12px; }
            .filter-tabs::-webkit-scrollbar,
            .dashboard-tabs::-webkit-scrollbar,
            .admin-nav::-webkit-scrollbar,
            .collab-filters::-webkit-scrollbar,
            .user-dropdown-body::-webkit-scrollbar { display: none; }
        }

        /* ============================================ */
        /* ===== RESPONSIVE — SMALL MOBILE (< 400px) ===== */
        /* ============================================ */
        @media (max-width: 400px) {
            .hero-title { font-size: 26px; }
            .section-title { font-size: 20px; }
            .navbar-content { padding: 0 10px; gap: 4px; }
            .logo { font-size: 18px; }
            .icon-btn { width: 32px; height: 32px; }
            .nav-avatar { width: 32px; height: 32px; font-size: 12px; }
            .navbar .btn-sm { padding: 5px 8px; font-size: 10px; }
            .mobile-menu-btn { width: 32px; height: 32px; }
            .dashboard-stats { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: 1fr; }
            .portfolio-grid { grid-template-columns: 1fr; }
            .portfolio-manager { grid-template-columns: 1fr; }
            .specialists-grid { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; }
            .admin-visual-grid { grid-template-columns: 1fr; }
            .dashboard-tab { padding: 7px 12px; font-size: 11px; }
            .admin-tab { padding: 7px 12px; font-size: 11px; }
            .modal-content { padding: 18px 14px; }
            .modal-title { font-size: 18px; }
            .chat-message { max-width: 90%; font-size: 12px; }
            .chat-input { font-size: 13px; }
            .collab-request-body { grid-template-columns: 1fr; }
            .collab-title { font-size: 16px; }
            .profile-name { font-size: 18px; }
            .avatar.avatar-lg { width: 80px; height: 80px; font-size: 32px; }
        }

        /* ============================================ */
        /* ===== LANDSCAPE MOBILE ===== */
        /* ============================================ */
        @media (max-width: 900px) and (orientation: landscape) {
            .hero { min-height: auto; padding: 80px 16px 30px; }
            .hero-title { font-size: 28px; }
            .intro-wrapper { display: none !important; }
            .main-site { opacity: 1 !important; visibility: visible !important; }
        }

        /* ============================================ */
        /* ===== TOUCH OPTIMIZATIONS ===== */
        /* ============================================ */
        @media (hover: none) and (pointer: coarse) {
            .btn { min-height: 44px; }
            .btn-sm { min-height: 36px; }
            .icon-btn { min-width: 40px; min-height: 40px; }
            .nav-link { min-height: 40px; }
            .filter-tab { min-height: 40px; }
            .dashboard-tab { min-height: 40px; }
            .admin-tab { min-height: 40px; }
            .collab-filter-tab { min-height: 40px; }
            .bottom-nav-item { min-height: 50px; }
            .specialist-card:hover { transform: none; }
            .pricing-card:hover { transform: none; }
            .step-card:hover { transform: none; }
            .social-link:hover { transform: none; }
            .dashboard-item:hover { transform: none; }
            .info-card:hover { transform: none; }
            .stat-card:hover { transform: none; }
            .admin-visual-card:hover { transform: none; }
            .portfolio-item:hover { transform: none; }
            .portfolio-manage-item:hover { transform: none; }
            .review-card:hover { transform: none; }
            .filter-tabs,
            .dashboard-tabs,
            .admin-nav,
            .collab-filters,
            .user-dropdown-body,
            .chat-messages,
            .conversations-list,
            .modal-content,
            .profile-page,
            .dashboard-page,
            .admin-panel,
            .collab-list-page { -webkit-overflow-scrolling: touch; }
        }

        /* ============================================ */
        /* ===== SAFE AREA (iPhone notch) ===== */
        /* ============================================ */
        @supports (padding: env(safe-area-inset-bottom)) {
            .bottom-nav { padding-bottom: calc(6px + env(safe-area-inset-bottom)); }
            .chat-input-area { padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
            .modal-content { padding-bottom: calc(22px + env(safe-area-inset-bottom)); }
            .user-dropdown { padding-bottom: calc(8px + env(safe-area-inset-bottom)); }
            .toast-container { bottom: calc(90px + env(safe-area-inset-bottom)); }
            .back-to-top { bottom: calc(90px + env(safe-area-inset-bottom)); }
        }

        /* ============================================ */
        /* ===== REDUCED MOTION ===== */
        /* ============================================ */
        @media (prefers-reduced-motion: reduce) {
            * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
        }

        /* ============================================ */
        /* ===== INTRO DISABLE ON MOBILE ===== */
        /* ============================================ */
        @media (max-width: 1024px) {
            .intro-wrapper { display: none !important; }
            .main-site { opacity: 1 !important; visibility: visible !important; }
        }
