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

body {
    font-family: 'Inter', sans-serif;
    background: #f0f2f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ─── Top Navbar (full-width) ─── */
.top-navbar {
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.top-navbar .navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.top-navbar .navbar-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    box-shadow: 0 3px 10px rgba(233, 69, 96, 0.4);
}

.top-navbar .navbar-logo-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.top-navbar .navbar-logo-text span {
    color: #e94560;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 10px;
    transition: all 0.25s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    border: none;
    background: none;
    font-family: 'Inter', sans-serif;
}

.navbar-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.navbar-link.active {
    color: #fff;
    background: rgba(233, 69, 96, 0.2);
}

.navbar-link i {
    font-size: 14px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.navbar-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 3px 12px rgba(233, 69, 96, 0.35);
    transition: all 0.25s;
}

.navbar-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(233, 69, 96, 0.45);
}

.navbar-user-pill {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 5px 14px 5px 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-user-pill:hover {
    background: rgba(255, 255, 255, 0.12);
}

.navbar-user-pill .pill-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.navbar-user-pill .pill-name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.navbar-user-pill .pill-logout {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-left: 4px;
    transition: color 0.2s;
}

.navbar-user-pill .pill-logout:hover {
    color: #e94560;
}

.navbar-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 6px;
}

/* ─── App Wrapper ─── */
.app-wrapper {
    display: flex;
    flex: 1;
    margin-top: 64px;
    min-height: calc(100vh - 64px);
}

/* ─── Footer ─── */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    margin-left: 280px;
    padding: 0;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 56px 48px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    line-height: 1.8;
    margin-top: 14px;
    max-width: 320px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.footer-brand .footer-logo-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.footer-brand .footer-logo-text span {
    color: #e94560;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s;
}

.footer-socials a:hover {
    background: #e94560;
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    padding: 5px 0;
    transition: all 0.2s;
}

.footer-col a:hover {
    color: #e94560;
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #e94560;
}

/* ─── Sidebar ─── */
.sidebar {
    width: 280px;
    min-height: calc(100vh - 64px);
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 0;
    position: fixed;
    left: 0;
    top: 64px;
    bottom: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.sidebar-header .logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.sidebar-header .logo-text {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sidebar-header .logo-text span {
    color: #e94560;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 14px;
    overflow-y: auto;
}

.nav-section-label {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 14px 8px;
}

.sidebar-nav[hidden] {
    display: none !important;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 4px;
    position: relative;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.nav-item.active {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2), rgba(233, 69, 96, 0.05));
    color: #fff;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: #e94560;
    border-radius: 0 4px 4px 0;
}

.nav-item .icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.nav-item:nth-child(2) .icon-wrap  { background: rgba(99, 102, 241, 0.15); color: #818cf8; }
.nav-item:nth-child(3) .icon-wrap  { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.nav-item:nth-child(4) .icon-wrap  { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.nav-item:nth-child(5) .icon-wrap  { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.nav-item:nth-child(6) .icon-wrap  { background: rgba(236, 72, 153, 0.15); color: #f472b6; }
.nav-item:nth-child(7) .icon-wrap  { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.nav-item:nth-child(8) .icon-wrap  { background: rgba(20, 184, 166, 0.15); color: #2dd4bf; }
.nav-item:nth-child(9) .icon-wrap  { background: rgba(251, 146, 60, 0.15); color: #fb923c; }

.nav-item .badge {
    margin-left: auto;
    background: #e94560;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 22px;
    text-align: center;
}

.project-recent-list {
    margin: 8px 0 10px;
    padding-left: 14px;
}

.project-recent-empty {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    padding: 6px 10px;
}

.project-recent-link {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-recent-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.user-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.user-info {
    flex: 1;
}

.user-name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.user-role {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

.user-card .fa-ellipsis-vertical {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* ─── Main Content ─── */
.main {
    margin-left: 280px;
    flex: 1;
    min-height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
}

/* ─── Top Header ─── */
.top-header {
    background: #fff;
    padding: 18px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 50;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #1a1a2e;
    cursor: pointer;
    margin-right: 16px;
}

.search-bar {
    display: flex;
    align-items: center;
    background: #f5f6fa;
    border-radius: 12px;
    padding: 10px 18px;
    gap: 10px;
    width: 380px;
    transition: box-shadow 0.2s;
}

.search-bar:focus-within {
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.15);
}

.search-bar i {
    color: #9ca3af;
    font-size: 15px;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #333;
    width: 100%;
}

.search-bar input::placeholder {
    color: #b0b5c3;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: #f5f6fa;
    color: #6b7280;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s;
}

.header-btn:hover {
    background: #eef0f5;
    color: #1a1a2e;
}

.header-btn .notif-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: #e94560;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* ─── Page Content ─── */
.content {
    padding: 32px 36px;
    flex: 1;
}

.page-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.page-title h1 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
}

.page-title p {
    color: #6b7280;
    font-size: 14px;
    margin-top: 4px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

/* ─── Stats Cards ─── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.stat-icon.purple  { background: rgba(99, 102, 241, 0.1);  color: #6366f1; }
.stat-icon.amber   { background: rgba(245, 158, 11, 0.1);  color: #f59e0b; }
.stat-icon.emerald { background: rgba(16, 185, 129, 0.1);  color: #10b981; }
.stat-icon.rose    { background: rgba(233, 69, 96, 0.1);   color: #e94560; }

.stat-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}

.stat-info p {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

.stat-change {
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 6px;
}

.stat-change.up   { color: #10b981; background: rgba(16, 185, 129, 0.1); }
.stat-change.down { color: #ef4444; background: rgba(239, 68, 68, 0.1); }

/* ─── Service Cards ─── */
.section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.service-card:nth-child(1)::before { background: linear-gradient(90deg, #6366f1, #818cf8); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, #10b981, #34d399); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.service-card:nth-child(5)::before { background: linear-gradient(90deg, #ec4899, #f472b6); }
.service-card:nth-child(6)::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-card:nth-child(1):hover { border-color: rgba(99, 102, 241, 0.3); }
.service-card:nth-child(2):hover { border-color: rgba(245, 158, 11, 0.3); }
.service-card:nth-child(3):hover { border-color: rgba(16, 185, 129, 0.3); }
.service-card:nth-child(4):hover { border-color: rgba(59, 130, 246, 0.3); }
.service-card:nth-child(5):hover { border-color: rgba(236, 72, 153, 0.3); }
.service-card:nth-child(6):hover { border-color: rgba(139, 92, 246, 0.3); }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.service-card:nth-child(1) .service-icon { background: rgba(99, 102, 241, 0.1);  color: #6366f1; }
.service-card:nth-child(2) .service-icon { background: rgba(245, 158, 11, 0.1);  color: #f59e0b; }
.service-card:nth-child(3) .service-icon { background: rgba(16, 185, 129, 0.1);  color: #10b981; }
.service-card:nth-child(4) .service-icon { background: rgba(59, 130, 246, 0.1);  color: #3b82f6; }
.service-card:nth-child(5) .service-icon { background: rgba(236, 72, 153, 0.1);  color: #ec4899; }
.service-card:nth-child(6) .service-icon { background: rgba(139, 92, 246, 0.1);  color: #8b5cf6; }

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.service-card .arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 14px;
    transition: all 0.25s;
}

.service-card:hover .arrow {
    background: #1a1a2e;
    color: #fff;
}

/* ─── Recent Activity Table ─── */
.activity-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.activity-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid #f0f0f5;
}

.activity-header h2 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
}

.filter-tabs {
    display: flex;
    gap: 4px;
    background: #f5f6fa;
    padding: 4px;
    border-radius: 10px;
}

.filter-tab {
    padding: 7px 16px;
    border-radius: 8px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.filter-tab.active {
    background: #fff;
    color: #1a1a2e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.activity-table {
    width: 100%;
    border-collapse: collapse;
}

.activity-table th {
    text-align: left;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #fafbfc;
}

.activity-table td {
    padding: 16px 28px;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #f5f5f8;
}

.activity-table tr:last-child td {
    border-bottom: none;
}

.activity-table tr:hover td {
    background: #fafbfd;
}

.doc-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.doc-thumb {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.doc-thumb.cat  { background: rgba(99, 102, 241, 0.1);  color: #6366f1; }
.doc-thumb.broc { background: rgba(245, 158, 11, 0.1);  color: #f59e0b; }
.doc-thumb.pres { background: rgba(236, 72, 153, 0.1);  color: #ec4899; }
.doc-thumb.logo { background: rgba(16, 185, 129, 0.1);  color: #10b981; }
.doc-thumb.tran { background: rgba(59, 130, 246, 0.1);  color: #3b82f6; }

.doc-label strong {
    display: block;
    font-size: 14px;
    color: #1a1a2e;
}

.doc-label span {
    font-size: 12px;
    color: #9ca3af;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.completed  { background: rgba(16, 185, 129, 0.1);  color: #10b981; }
.status-badge.in-progress { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.status-badge.review     { background: rgba(99, 102, 241, 0.1);  color: #6366f1; }
.status-badge.pending    { background: rgba(156, 163, 175, 0.15); color: #6b7280; }

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-badge.completed .status-dot   { background: #10b981; }
.status-badge.in-progress .status-dot  { background: #f59e0b; }
.status-badge.review .status-dot       { background: #6366f1; }
.status-badge.pending .status-dot      { background: #6b7280; }

.progress-bar {
    width: 100px;
    height: 6px;
    background: #f0f0f5;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.6s ease;
}

.progress-fill.purple  { background: linear-gradient(90deg, #6366f1, #818cf8); }
.progress-fill.amber   { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.progress-fill.emerald { background: linear-gradient(90deg, #10b981, #34d399); }
.progress-fill.rose    { background: linear-gradient(90deg, #ec4899, #f472b6); }
.progress-fill.blue    { background: linear-gradient(90deg, #3b82f6, #60a5fa); }

/* ─── Overlay for mobile ─── */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 90;
}

.sidebar-overlay.show {
    display: block;
}

/* ─── Page Sections (hidden by default) ─── */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* ─── Forms ─── */
.form-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    max-width: 720px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

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

.upload-zone {
    border: 2px dashed #d1d5db;
    border-radius: 14px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    background: #fafbfc;
}

.upload-zone:hover {
    border-color: #e94560;
    background: rgba(233, 69, 96, 0.02);
}

.upload-zone i {
    font-size: 36px;
    color: #d1d5db;
    margin-bottom: 12px;
}

.upload-zone p {
    font-size: 14px;
    color: #6b7280;
}

.upload-zone p strong {
    color: #e94560;
}

.project-request-panel {
    display: none;
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.08);
    border: 1.5px solid rgba(233, 69, 96, 0.12);
}

.project-request-panel.show {
    display: block;
}

.project-request-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.project-request-header h2 {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.project-request-header p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.project-close-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: #f5f6fa;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.project-close-btn:hover {
    background: #fee2e2;
    color: #e94560;
}

.project-activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.project-activity-option--translation {
    flex-wrap: wrap;
    align-items: flex-start;
}

.project-translation-inline {
    flex: 1 1 100%;
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(229, 231, 235, 0.9);
    cursor: default;
}

.project-translation-lang-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.project-translation-lang-label .muted {
    font-weight: 500;
    color: #9ca3af;
}

.project-translation-inline select {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #fff;
    cursor: pointer;
}

.project-activity-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.project-activity-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.project-activity-option span {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(233, 69, 96, 0.08);
    color: #e94560;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.project-activity-option strong {
    font-size: 13px;
    color: #1a1a2e;
}

.project-activity-option:hover,
.project-activity-option.active {
    border-color: #e94560;
    box-shadow: 0 8px 24px rgba(233, 69, 96, 0.12);
    transform: translateY(-1px);
}

.project-upload-zone {
    display: block;
}

#newProjectFiles {
    display: none;
}

.project-file-list {
    margin-top: 10px;
    padding: 12px 14px;
    background: #f9fafb;
    border-radius: 10px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.6;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-secondary {
    padding: 12px 24px;
    background: #f5f6fa;
    color: #374151;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: #eef0f5;
}

/* ─── Language Cards for Translation ─── */
.lang-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.lang-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
}

.lang-card:hover, .lang-card.selected {
    border-color: #e94560;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.12);
}

.lang-card .flag {
    font-size: 32px;
    margin-bottom: 8px;
}

.lang-card .lang-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
}

/* ─── Profile Page ─── */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
}

.profile-aside {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
}

.profile-aside h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.profile-aside p {
    font-size: 13px;
    color: #6b7280;
}

.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.p-stat {
    background: #f5f6fa;
    border-radius: 12px;
    padding: 14px;
}

.p-stat strong {
    display: block;
    font-size: 22px;
    color: #1a1a2e;
}

.p-stat span {
    font-size: 12px;
    color: #6b7280;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .project-activity-grid { grid-template-columns: repeat(2, 1fr); }
    #homeTemplateGrid { grid-template-columns: repeat(3, 1fr) !important; }
    .lang-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    #templateGrid { grid-template-columns: repeat(4, 1fr) !important; }
}

@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main {
        margin-left: 0;
    }

    .site-footer {
        margin-left: 0;
    }

    .hamburger {
        display: block;
    }

    .search-bar {
        width: 200px;
    }

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

    .navbar-links {
        display: none;
    }

    .navbar-mobile-toggle {
        display: block;
    }

    .top-navbar {
        padding: 0 20px;
    }
}

@media (max-width: 900px) {
    #templateGrid { grid-template-columns: repeat(3, 1fr) !important; }
    #homeTemplateGrid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .project-activity-grid { grid-template-columns: 1fr; }
    .project-request-panel { padding: 22px; }
    .project-request-header { align-items: flex-start; }
    .form-grid { grid-template-columns: 1fr; }
    .lang-grid { grid-template-columns: repeat(2, 1fr); }
    .content { padding: 20px 16px; }
    .top-header { padding: 14px 16px; }
    .search-bar { width: 140px; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px 24px; }
    #templateGrid { grid-template-columns: repeat(2, 1fr) !important; }
    #homeTemplateGrid { grid-template-columns: 1fr !important; }
}

/* ─── Animations ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeUp 0.45s ease forwards;
}

.animate-in:nth-child(1) { animation-delay: 0.05s; }
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.15s; }
.animate-in:nth-child(4) { animation-delay: 0.2s; }
.animate-in:nth-child(5) { animation-delay: 0.25s; }
.animate-in:nth-child(6) { animation-delay: 0.3s; }

/* ─── Document Pipeline ─── */
.pipeline-section {
    margin-bottom: 36px;
}

.pipeline-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.pipeline-header .pipeline-subtitle {
    color: #6b7280;
    font-size: 13px;
    margin-top: 4px;
    max-width: 480px;
}

.pipeline-flow {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    overflow-x: auto;
    padding-bottom: 8px;
}

.pipeline-step {
    flex: 1;
    min-width: 140px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: default;
}

.pipeline-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.pipeline-step .step-num {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pipeline-step .step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 14px;
}

.pipeline-step h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.pipeline-step p {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.5;
}

.pipeline-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    flex-shrink: 0;
    color: #d1d5db;
    font-size: 16px;
}

.ps-1 .step-num  { background: #6366f1; }
.ps-1 .step-icon { background: rgba(99,102,241,0.1); color: #6366f1; }
.ps-1:hover      { border-color: rgba(99,102,241,0.25); }

.ps-2 .step-num  { background: #f59e0b; }
.ps-2 .step-icon { background: rgba(245,158,11,0.1); color: #f59e0b; }
.ps-2:hover      { border-color: rgba(245,158,11,0.25); }

.ps-3 .step-num  { background: #10b981; }
.ps-3 .step-icon { background: rgba(16,185,129,0.1); color: #10b981; }
.ps-3:hover      { border-color: rgba(16,185,129,0.25); }

.ps-4 .step-num  { background: #3b82f6; }
.ps-4 .step-icon { background: rgba(59,130,246,0.1); color: #3b82f6; }
.ps-4:hover      { border-color: rgba(59,130,246,0.25); }

.ps-5 .step-num  { background: #ec4899; }
.ps-5 .step-icon { background: rgba(236,72,153,0.1); color: #ec4899; }
.ps-5:hover      { border-color: rgba(236,72,153,0.25); }

.ps-6 .step-num  { background: #8b5cf6; }
.ps-6 .step-icon { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.ps-6:hover      { border-color: rgba(139,92,246,0.25); }

.ps-7 .step-num  { background: #14b8a6; }
.ps-7 .step-icon { background: rgba(20,184,166,0.1); color: #14b8a6; }
.ps-7:hover      { border-color: rgba(20,184,166,0.25); }

.ps-8 .step-num  { background: #e94560; }
.ps-8 .step-icon { background: rgba(233,69,96,0.1); color: #e94560; }
.ps-8:hover      { border-color: rgba(233,69,96,0.25); }

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.cap-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.25s;
    border: 1.5px solid transparent;
}

.cap-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.cap-card .cap-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cap-card h5 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.cap-card p {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .capability-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .pipeline-flow { flex-wrap: wrap; gap: 12px; }
    .pipeline-arrow { display: none; }
    .pipeline-step { min-width: calc(50% - 6px); }
}

@media (max-width: 600px) {
    .pipeline-step { min-width: 100%; }
    .capability-grid { grid-template-columns: 1fr; }
}

/* ─── Pipeline Progress ─── */
#pipelineProgress {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pp-step {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 8px;
    background: #f5f6fa;
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    transition: all 0.3s;
}

.pp-step.active {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.pp-step.active i { color: #6366f1; }

.pp-step.done {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.pp-step.done i { color: #10b981; }

.pp-step.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.pp-step.error i { color: #ef4444; }

/* ─── Pricing Tabs ─── */
.price-tab {
    display: none;
}

.price-tab.active {
    display: block;
    animation: fadeUp 0.4s ease forwards;
}

/* ─── Login Modal ─── */
.login-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 30, 0.7);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.login-overlay.show {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    background: #fff;
    border-radius: 24px;
    width: 420px;
    max-width: 92vw;
    padding: 44px 40px 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s ease;
    position: relative;
}

.login-overlay.show .login-modal {
    transform: translateY(0) scale(1);
}

.login-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: #f5f6fa;
    color: #6b7280;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.login-close:hover {
    background: #eef0f5;
    color: #1a1a2e;
}

.login-brand {
    text-align: center;
    margin-bottom: 32px;
}

.login-brand .login-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.35);
    margin-bottom: 16px;
}

.login-brand h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
}

.login-brand h2 span {
    color: #e94560;
}

.login-brand p {
    font-size: 14px;
    color: #6b7280;
    margin-top: 6px;
}

.login-form .login-field {
    margin-bottom: 18px;
}

.login-form .login-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.login-form .login-field .input-wrap {
    position: relative;
}

.login-form .login-field .input-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 15px;
    pointer-events: none;
}

.login-form .login-field .input-wrap .toggle-pw {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 15px;
    cursor: pointer;
    pointer-events: all;
}

.login-form .login-field .input-wrap .toggle-pw:hover {
    color: #6b7280;
}

.login-form .login-field input {
    width: 100%;
    padding: 13px 16px 13px 46px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-form .login-field input:focus {
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.login-form .login-field input::placeholder {
    color: #b0b5c3;
}

.login-extras {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.login-extras label {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.login-extras label input[type="checkbox"] {
    accent-color: #e94560;
    width: 15px;
    height: 15px;
}

.login-extras a {
    font-size: 13px;
    color: #e94560;
    text-decoration: none;
    font-weight: 500;
}

.login-extras a:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 22px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.login-divider span {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-google {
    width: 100%;
    padding: 13px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
}

.btn-google:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.btn-google svg {
    width: 20px;
    height: 20px;
}

.login-footer {
    text-align: center;
    margin-top: 22px;
    font-size: 13px;
    color: #6b7280;
}

.login-footer a {
    color: #e94560;
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

.login-error {
    background: rgba(239, 68, 68, 0.08);
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    display: none;
    align-items: center;
    gap: 8px;
}

.login-error.show {
    display: flex;
}

.login-success {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    display: none;
    align-items: center;
    gap: 8px;
}

.login-success.show {
    display: flex;
}

/* Sidebar footer states */
.sidebar-footer .login-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
    border: 1.5px dashed rgba(255, 255, 255, 0.15);
}

.sidebar-footer .login-trigger:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(233, 69, 96, 0.4);
}

.sidebar-footer .login-trigger .login-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(233, 69, 96, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e94560;
    font-size: 16px;
}

.sidebar-footer .login-trigger .login-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
}

.sidebar-footer .login-trigger .login-sublabel {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
}

.user-card .logout-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.2s;
}

.user-card .logout-btn:hover {
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
}
