/* /Components/Account/ModernLogin.razor.rz.scp.css */
.modern-auth-container[b-axo0i8maez] {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.auth-card[b-axo0i8maez] {
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideUp-b-axo0i8maez 0.4s ease;
}

@keyframes slideUp-b-axo0i8maez {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header[b-axo0i8maez] {
    padding: 40px 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.auth-logo[b-axo0i8maez] {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    backdrop-filter: blur(10px);
}

.auth-header h1[b-axo0i8maez] {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.auth-header p[b-axo0i8maez] {
    font-size: 15px;
    margin: 0;
    opacity: 0.95;
}

.auth-body[b-axo0i8maez] {
    padding: 40px;
}

.form-group[b-axo0i8maez] {
    margin-bottom: 24px;
}

.form-group label[b-axo0i8maez] {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.input-with-icon[b-axo0i8maez] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i[b-axo0i8maez] {
    position: absolute;
    left: 16px;
    font-size: 18px;
    color: #64748b;
    pointer-events: none;
}

.form-input[b-axo0i8maez] {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus[b-axo0i8maez] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-input[b-axo0i8maez]::placeholder {
    color: #94a3b8;
}

.validation-message[b-axo0i8maez] {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #dc2626;
}

.form-actions[b-axo0i8maez] {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.link-primary[b-axo0i8maez] {
    font-size: 14px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.link-primary:hover[b-axo0i8maez] {
    color: #764ba2;
}

.btn-auth-primary[b-axo0i8maez] {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-auth-primary:hover:not(:disabled)[b-axo0i8maez] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-auth-primary:disabled[b-axo0i8maez] {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner[b-axo0i8maez] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-axo0i8maez 0.8s linear infinite;
}

@keyframes spin-b-axo0i8maez {
    to {
        transform: rotate(360deg);
    }
}

.alert-box[b-axo0i8maez] {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    animation: shake-b-axo0i8maez 0.4s ease;
}

@keyframes shake-b-axo0i8maez {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.alert-danger[b-axo0i8maez] {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.alert-box i[b-axo0i8maez] {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-content[b-axo0i8maez] {
    flex: 1;
}

.alert-message[b-axo0i8maez] {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.alert-action-btn[b-axo0i8maez] {
    padding: 6px 12px;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.alert-action-btn:hover[b-axo0i8maez] {
    background: #b91c1c;
}

.auth-footer[b-axo0i8maez] {
    padding: 24px 40px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.auth-footer p[b-axo0i8maez] {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-auth-container[b-axo0i8maez] {
        padding: 20px;
    }

    .auth-card[b-axo0i8maez] {
        border-radius: 16px;
    }

    .auth-header[b-axo0i8maez] {
        padding: 30px 24px 24px;
    }

    .auth-header h1[b-axo0i8maez] {
        font-size: 24px;
    }

    .auth-body[b-axo0i8maez] {
        padding: 30px 24px;
    }

    .auth-footer[b-axo0i8maez] {
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .auth-header[b-axo0i8maez] {
        padding: 24px 20px 20px;
    }

    .auth-header h1[b-axo0i8maez] {
        font-size: 22px;
    }

    .auth-body[b-axo0i8maez] {
        padding: 24px 20px;
    }

    .auth-logo[b-axo0i8maez] {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}
/* /Components/Account/ModernRegister.razor.rz.scp.css */
/* Base Auth Styles (same as ModernLogin) */
.modern-auth-container[b-smiybanpyd] {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.auth-card[b-smiybanpyd] {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideUp-b-smiybanpyd 0.4s ease;
}

@keyframes slideUp-b-smiybanpyd {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header[b-smiybanpyd] {
    padding: 40px 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.auth-logo[b-smiybanpyd] {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    backdrop-filter: blur(10px);
}

.auth-header h1[b-smiybanpyd] {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.auth-header p[b-smiybanpyd] {
    font-size: 15px;
    margin: 0;
    opacity: 0.95;
}

.auth-body[b-smiybanpyd] {
    padding: 40px;
}

.form-group[b-smiybanpyd] {
    margin-bottom: 24px;
}

.form-group label[b-smiybanpyd] {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.input-with-icon[b-smiybanpyd] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i[b-smiybanpyd] {
    position: absolute;
    left: 16px;
    font-size: 18px;
    color: #64748b;
    pointer-events: none;
}

.form-input[b-smiybanpyd] {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus[b-smiybanpyd] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-input[b-smiybanpyd]::placeholder {
    color: #94a3b8;
}

.validation-message[b-smiybanpyd] {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #dc2626;
}

.link-primary[b-smiybanpyd] {
    font-size: 14px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.link-primary:hover[b-smiybanpyd] {
    color: #764ba2;
}

.btn-auth-primary[b-smiybanpyd] {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-auth-primary:hover:not(:disabled)[b-smiybanpyd] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-auth-primary:disabled[b-smiybanpyd] {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner[b-smiybanpyd] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-b-smiybanpyd 0.8s linear infinite;
}

@keyframes spin-b-smiybanpyd {
    to {
        transform: rotate(360deg);
    }
}

.auth-footer[b-smiybanpyd] {
    padding: 24px 40px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.auth-footer p[b-smiybanpyd] {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

/* Registration-specific styles */
.form-row[b-smiybanpyd] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row .form-group[b-smiybanpyd] {
    margin-bottom: 0;
}

.password-requirements[b-smiybanpyd] {
    margin-top: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.requirement-item[b-smiybanpyd] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    transition: color 0.2s ease;
}

.requirement-item i[b-smiybanpyd] {
    font-size: 16px;
    color: #cbd5e1;
    transition: color 0.2s ease;
}

.requirement-item.valid[b-smiybanpyd] {
    color: #059669;
}

.requirement-item.valid i[b-smiybanpyd] {
    color: #059669;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-auth-container[b-smiybanpyd] {
        padding: 20px;
    }

    .auth-card[b-smiybanpyd] {
        border-radius: 16px;
        max-width: 100%;
    }

    .auth-header[b-smiybanpyd] {
        padding: 30px 24px 24px;
    }

    .auth-header h1[b-smiybanpyd] {
        font-size: 24px;
    }

    .auth-body[b-smiybanpyd] {
        padding: 30px 24px;
    }

    .auth-footer[b-smiybanpyd] {
        padding: 20px 24px;
    }

    .form-row[b-smiybanpyd] {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .auth-header[b-smiybanpyd] {
        padding: 24px 20px 20px;
    }

    .auth-header h1[b-smiybanpyd] {
        font-size: 22px;
    }

    .auth-body[b-smiybanpyd] {
        padding: 24px 20px;
    }

    .auth-logo[b-smiybanpyd] {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}
/* /Components/Layout/AccountingLayout.razor.rz.scp.css */
.modern-layout[b-jiwke8nibf] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8fafc;
}

.main-content[b-jiwke8nibf] {
    flex: 1;
    padding: 2rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content[b-jiwke8nibf] {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-content[b-jiwke8nibf] {
        padding: 0.75rem;
    }
}
/* /Components/Layout/CompLawLayout.razor.rz.scp.css */
.main-content[b-gtuqroraaa] {
    flex: 1;
    padding: 2rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .main-content[b-gtuqroraaa] {
        padding: 1rem;
    }
}
/* /Components/Layout/CustomsLayout.razor.rz.scp.css */
.modern-layout[b-xlvlpyw9gd] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8fafc;
}

.main-content[b-xlvlpyw9gd] {
    flex: 1;
    padding: 2rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content[b-xlvlpyw9gd] {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-content[b-xlvlpyw9gd] {
        padding: 0.75rem;
    }
}
/* /Components/Layout/DirectTaxLayout.razor.rz.scp.css */
.modern-layout[b-k2m3gwcqfd] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8fafc;
}

.main-content[b-k2m3gwcqfd] {
    flex: 1;
    padding: 2rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content[b-k2m3gwcqfd] {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-content[b-k2m3gwcqfd] {
        padding: 0.75rem;
    }
}
/* /Components/Layout/GSTLayout.razor.rz.scp.css */
.modern-layout[b-jxzbbsmyxw] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8fafc;
}

.main-content[b-jxzbbsmyxw] {
    flex: 1;
    padding: 2rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content[b-jxzbbsmyxw] {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-content[b-jxzbbsmyxw] {
        padding: 0.75rem;
    }
}
/* /Components/Layout/INTLLayout.razor.rz.scp.css */
.modern-layout[b-5187xo0djr] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8fafc;
}

.main-content[b-5187xo0djr] {
    flex: 1;
    padding: 2rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content[b-5187xo0djr] {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-content[b-5187xo0djr] {
        padding: 0.75rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Modern Layout without sidebar */
.modern-layout-content[b-c2ev5p59sa] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8fafc;
}

.modern-main[b-c2ev5p59sa] {
    flex: 1;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modern-main[b-c2ev5p59sa] {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .modern-main[b-c2ev5p59sa] {
        padding: 16px 12px;
    }
}
/* /Components/Layout/ModernMainLayout.razor.rz.scp.css */
/* Modern Layout without sidebar */
.modern-layout-content[b-e88b66isbq] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #f8fafc;
}

.modern-main[b-e88b66isbq] {
    flex: 1;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modern-main[b-e88b66isbq] {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .modern-main[b-e88b66isbq] {
        padding: 16px 12px;
    }
}
/* /Components/Layout/SharedLayout/CommandPalette.razor.rz.scp.css */
.command-palette-overlay[b-oke2qu3ibj] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 15vh;
    z-index: 9999;
    animation: fadeIn-b-oke2qu3ibj 0.15s ease;
}

.command-palette-overlay.active[b-oke2qu3ibj] {
    display: flex;
}

@keyframes fadeIn-b-oke2qu3ibj {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.command-palette[b-oke2qu3ibj] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 640px;
    max-height: 500px;
    overflow: hidden;
    animation: slideDown-b-oke2qu3ibj 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown-b-oke2qu3ibj {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.command-search[b-oke2qu3ibj] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.command-search i[b-oke2qu3ibj] {
    font-size: 20px;
    color: #64748b;
}

.command-search input[b-oke2qu3ibj] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #0f172a;
    background: transparent;
}

.command-search input[b-oke2qu3ibj]::placeholder {
    color: #94a3b8;
}

.command-search kbd[b-oke2qu3ibj] {
    padding: 4px 8px;
    background: #f1f5f9;
    border-radius: 4px;
    font-size: 11px;
    color: #64748b;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.command-results[b-oke2qu3ibj] {
    max-height: 380px;
    overflow-y: auto;
    padding: 8px;
}

.command-results[b-oke2qu3ibj]::-webkit-scrollbar {
    width: 8px;
}

.command-results[b-oke2qu3ibj]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.command-results[b-oke2qu3ibj]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.command-results[b-oke2qu3ibj]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.command-item[b-oke2qu3ibj] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.command-item:hover[b-oke2qu3ibj],
.command-item.selected[b-oke2qu3ibj] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.command-item i[b-oke2qu3ibj] {
    font-size: 20px;
    min-width: 20px;
}

.command-item:not(:hover):not(.selected) i[b-oke2qu3ibj] {
    color: #667eea;
}

.command-content[b-oke2qu3ibj] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.command-title[b-oke2qu3ibj] {
    font-weight: 600;
    font-size: 14px;
}

.command-description[b-oke2qu3ibj] {
    font-size: 12px;
    opacity: 0.8;
}

.command-item:not(:hover):not(.selected) .command-description[b-oke2qu3ibj] {
    color: #64748b;
}

.command-shortcut[b-oke2qu3ibj] {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 11px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

.command-item:not(:hover):not(.selected) .command-shortcut[b-oke2qu3ibj] {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.command-empty[b-oke2qu3ibj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    color: #94a3b8;
}

.command-empty i[b-oke2qu3ibj] {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.5;
}

.command-empty p[b-oke2qu3ibj] {
    margin: 0;
    font-size: 14px;
}

.command-footer[b-oke2qu3ibj] {
    border-top: 1px solid #f1f5f9;
    padding: 12px 20px;
    background: #fafafa;
}

.command-hint[b-oke2qu3ibj] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
}

.command-hint kbd[b-oke2qu3ibj] {
    padding: 3px 6px;
    background: white;
    border-radius: 3px;
    font-size: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    min-width: 20px;
    text-align: center;
}
/* /Components/Layout/SharedLayout/DomainBreadcrumb.razor.rz.scp.css */
.breadcrumb-container[b-p2jdmlvg3n] {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.875rem 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.breadcrumb-list[b-p2jdmlvg3n] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    list-style: none;
    max-width: 1600px;
}

.breadcrumb-item[b-p2jdmlvg3n] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item:first-child .separator[b-p2jdmlvg3n] {
    display: none;
}

.separator[b-p2jdmlvg3n] {
    font-size: 0.75rem;
    color: #a0aec0;
}

.breadcrumb-link[b-p2jdmlvg3n] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.625rem;
    border-radius: 0.5rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.breadcrumb-link:hover[b-p2jdmlvg3n] {
    background: #f1f5f9;
    color: #667eea;
}

.breadcrumb-link i[b-p2jdmlvg3n] {
    font-size: 1rem;
}

.breadcrumb-current[b-p2jdmlvg3n] {
    padding: 0.375rem 0.625rem;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.875rem;
}

.breadcrumb-item.active[b-p2jdmlvg3n] {
    color: #667eea;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .breadcrumb-container[b-p2jdmlvg3n] {
        padding: 0.5rem 1rem;
    }

    .breadcrumb-list[b-p2jdmlvg3n] {
        gap: 0.25rem;
    }

    .breadcrumb-link[b-p2jdmlvg3n],
    .breadcrumb-current[b-p2jdmlvg3n] {
        font-size: 0.8125rem;
        padding: 0.25rem;
    }

    .separator[b-p2jdmlvg3n] {
        font-size: 0.625rem;
    }
}

@media (max-width: 480px) {
    .breadcrumb-link span:not(:first-child)[b-p2jdmlvg3n] {
        display: none;
    }

    .breadcrumb-item:not(:first-child):not(:last-child)[b-p2jdmlvg3n] {
        display: none;
    }
}
/* /Components/Layout/SharedLayout/DomainMegaMenu.razor.rz.scp.css */
.mega-menu-container[b-885rg4byp7] {
    position: fixed;
    top: 4.5rem; /* Below navbar */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1041;
    animation: slideDown-b-885rg4byp7 0.3s ease;
}

@keyframes slideDown-b-885rg4byp7 {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mega-menu-content[b-885rg4byp7] {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* Header */
.mega-menu-header[b-885rg4byp7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.domain-info[b-885rg4byp7] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.domain-icon[b-885rg4byp7] {
    font-size: 2rem;
    opacity: 0.9;
}

.domain-title[b-885rg4byp7] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.domain-description[b-885rg4byp7] {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

.close-btn[b-885rg4byp7] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-btn:hover[b-885rg4byp7] {
    background: rgba(255, 255, 255, 0.3);
}

/* Menu Grid */
.mega-menu-grid[b-885rg4byp7] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.menu-column[b-885rg4byp7] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-header[b-885rg4byp7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    color: #2d3748;
}

.category-header i[b-885rg4byp7] {
    font-size: 1.125rem;
    color: #667eea;
}

.category-header h4[b-885rg4byp7] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.category-items[b-885rg4byp7] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu-item[b-885rg4byp7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.menu-item:hover[b-885rg4byp7] {
    background: #f7fafc;
    color: #667eea;
    transform: translateX(4px);
}

.menu-item i[b-885rg4byp7] {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Domain Switcher */
.domain-switcher[b-885rg4byp7] {
    padding: 1.5rem 2rem;
    background: #f7fafc;
    border-top: 1px solid #e2e8f0;
}

.switcher-label[b-885rg4byp7] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

.domain-chips[b-885rg4byp7] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.domain-chip[b-885rg4byp7] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8125rem;
}

.domain-chip:hover[b-885rg4byp7] {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.domain-chip.active[b-885rg4byp7] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
}

.domain-chip i[b-885rg4byp7] {
    font-size: 0.875rem;
}

/* Scrollbar Styling */
.mega-menu-grid[b-885rg4byp7]::-webkit-scrollbar {
    width: 8px;
}

.mega-menu-grid[b-885rg4byp7]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.mega-menu-grid[b-885rg4byp7]::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

.mega-menu-grid[b-885rg4byp7]::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mega-menu-container[b-885rg4byp7] {
        width: 95%;
        top: 3.5rem;
    }

    .mega-menu-grid[b-885rg4byp7] {
        grid-template-columns: 1fr;
        padding: 1rem;
        max-height: 70vh;
    }

    .mega-menu-header[b-885rg4byp7] {
        padding: 1rem;
    }

    .domain-title[b-885rg4byp7] {
        font-size: 1.25rem;
    }

    .domain-description[b-885rg4byp7] {
        font-size: 0.75rem;
    }

    .domain-switcher[b-885rg4byp7] {
        padding: 1rem;
    }

    .domain-chips[b-885rg4byp7] {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .domain-info[b-885rg4byp7] {
        gap: 0.5rem;
    }

    .domain-icon[b-885rg4byp7] {
        font-size: 1.5rem;
    }

    .domain-chip span[b-885rg4byp7] {
        display: none;
    }
}
/* /Components/Layout/SharedLayout/DomainSelector.razor.rz.scp.css */
.domain-selector[b-juqnij3bhm] {
    position: relative;
    display: inline-block;
}

.domain-selector-btn[b-juqnij3bhm] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 0.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.domain-selector-btn:hover[b-juqnij3bhm] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.domain-selector-btn:active[b-juqnij3bhm] {
    transform: scale(0.98);
}

.domain-name[b-juqnij3bhm] {
    font-weight: 500;
}

.chevron[b-juqnij3bhm] {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.chevron.rotated[b-juqnij3bhm] {
    transform: rotate(180deg);
}

/* Backdrop for mega menu */
.mega-menu-backdrop[b-juqnij3bhm] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 1040;
    animation: fadeIn-b-juqnij3bhm 0.2s ease;
}

@keyframes fadeIn-b-juqnij3bhm {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .domain-selector-btn[b-juqnij3bhm] {
        padding: 0.375rem 0.75rem;
        font-size: 0.8125rem;
    }

    .domain-name[b-juqnij3bhm] {
        display: none;
    }
}
/* /Components/Layout/SharedLayout/HomeMegaMenu.razor.rz.scp.css */
.home-mega-menu-container[b-uxa98dxeso] {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    max-height: 85vh;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 1041;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: slideDown-b-uxa98dxeso 0.3s ease;
}

@keyframes slideDown-b-uxa98dxeso {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Header */
.mega-menu-header[b-uxa98dxeso] {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content[b-uxa98dxeso] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.header-title[b-uxa98dxeso] {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-subtitle[b-uxa98dxeso] {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

.close-btn[b-uxa98dxeso] {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.close-btn:hover[b-uxa98dxeso] {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Domains Grid */
.domains-grid[b-uxa98dxeso] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.domain-card[b-uxa98dxeso] {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.domain-card[b-uxa98dxeso]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.domain-card:hover[b-uxa98dxeso]::before {
    transform: scaleX(1);
}

.domain-card:hover[b-uxa98dxeso] {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #667eea;
}

/* Domain Header */
.domain-header[b-uxa98dxeso] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.domain-icon-wrapper[b-uxa98dxeso] {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(102, 126, 234, 0.3);
}

.domain-icon[b-uxa98dxeso] {
    font-size: 1.75rem;
    color: white;
}

.domain-info[b-uxa98dxeso] {
    flex: 1;
}

.domain-name[b-uxa98dxeso] {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: #1e293b;
}

.domain-description[b-uxa98dxeso] {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Categories Preview */
.categories-preview[b-uxa98dxeso] {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

.preview-title[b-uxa98dxeso] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin: 0 0 0.75rem 0;
}

.category-list[b-uxa98dxeso] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item[b-uxa98dxeso] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.category-item:hover[b-uxa98dxeso] {
    background: #f8fafc;
}

.category-item.more[b-uxa98dxeso] {
    color: #667eea;
    font-weight: 500;
}

.category-icon[b-uxa98dxeso] {
    font-size: 0.875rem;
    color: #667eea;
    width: 20px;
    text-align: center;
}

.category-name[b-uxa98dxeso] {
    font-size: 0.875rem;
    color: #334155;
    font-weight: 500;
    flex: 1;
}

.item-count[b-uxa98dxeso] {
    font-size: 0.75rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
}

/* Statistics */
.domain-stats[b-uxa98dxeso] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.stat-item[b-uxa98dxeso] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

.stat-item i[b-uxa98dxeso] {
    font-size: 1.25rem;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.stat-value[b-uxa98dxeso] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.stat-label[b-uxa98dxeso] {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Explore Button */
.explore-btn-wrapper[b-uxa98dxeso] {
    margin-top: auto;
}

.explore-btn[b-uxa98dxeso] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.explore-btn:hover[b-uxa98dxeso] {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(102, 126, 234, 0.3);
}

.explore-btn i[b-uxa98dxeso] {
    transition: transform 0.2s ease;
}

.explore-btn:hover i[b-uxa98dxeso] {
    transform: translateX(4px);
}

/* Footer */
.mega-menu-footer[b-uxa98dxeso] {
    padding: 1rem 2rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.footer-content[b-uxa98dxeso] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info[b-uxa98dxeso] {
    display: flex;
    align-items: center;
    color: #64748b;
    font-size: 0.875rem;
}

.footer-info i[b-uxa98dxeso] {
    color: #f59e0b;
}

.footer-info kbd[b-uxa98dxeso] {
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #cbd5e1;
    font-size: 0.75rem;
    font-family: monospace;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.footer-actions[b-uxa98dxeso] {
    display: flex;
    gap: 1.5rem;
}

.footer-link[b-uxa98dxeso] {
    color: #667eea;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.footer-link:hover[b-uxa98dxeso] {
    color: #764ba2;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .home-mega-menu-container[b-uxa98dxeso] {
        width: 100%;
        max-width: 100%;
        top: 60px;
        height: calc(100vh - 60px);
        max-height: calc(100vh - 60px);
        border-radius: 0;
    }

    .domains-grid[b-uxa98dxeso] {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .mega-menu-header[b-uxa98dxeso] {
        padding: 1rem;
    }

    .header-title[b-uxa98dxeso] {
        font-size: 1.25rem;
    }

    .footer-content[b-uxa98dxeso] {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-actions[b-uxa98dxeso] {
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .domains-grid[b-uxa98dxeso] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Scrollbar Styling */
.domains-grid[b-uxa98dxeso]::-webkit-scrollbar {
    width: 8px;
}

.domains-grid[b-uxa98dxeso]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.domains-grid[b-uxa98dxeso]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.domains-grid[b-uxa98dxeso]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
/* /Components/Layout/SharedLayout/ModernNavBar.razor.rz.scp.css */
/* Top Navigation Bar */
.top-navbar[b-rspbujy167] {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1060;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.navbar-container[b-rspbujy167] {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar-brand[b-rspbujy167] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: #0f172a;
    text-decoration: none;
}

.navbar-logo[b-rspbujy167] {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.brand-name[b-rspbujy167] {
    display: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Command Palette Trigger */
.navbar-search[b-rspbujy167] {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #64748b;
    font-size: 14px;
}

.navbar-search:hover[b-rspbujy167] {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.navbar-search i[b-rspbujy167] {
    font-size: 16px;
}

.navbar-search span[b-rspbujy167] {
    flex: 1;
}

.navbar-search kbd[b-rspbujy167] {
    padding: 4px 8px;
    background: white;
    border-radius: 4px;
    font-size: 11px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Navbar Actions */
.navbar-actions[b-rspbujy167] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-link[b-rspbujy167] {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    cursor: pointer;
}

.navbar-link:hover[b-rspbujy167] {
    background: #f1f5f9;
    color: #667eea;
}

/* Navbar Divider */
.navbar-divider[b-rspbujy167] {
    width: 1px;
    height: 32px;
    background: #e2e8f0;
    margin: 0 4px;
}

/* Login Button */
.btn-login[b-rspbujy167] {
    padding: 8px 16px;
    background: white;
    color: #667eea;
    border-radius: 8px;
    border: 2px solid #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
}

.btn-login:hover[b-rspbujy167] {
    background: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    color: #667eea;
}

/* Register/Sign Up Button */
.btn-register[b-rspbujy167] {
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
    cursor: pointer;
}

.btn-register:hover[b-rspbujy167] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    color: white;
}

/* Responsive Design */
@media (min-width: 768px) {
    .brand-name[b-rspbujy167] {
        display: inline;
    }

    .navbar-search span[b-rspbujy167] {
        display: block;
    }
}

@media (max-width: 767px) {
    .navbar-container[b-rspbujy167] {
        padding: 0 16px;
        gap: 8px;
    }

    .navbar-search[b-rspbujy167] {
        max-width: none;
        flex: 1;
    }

    .navbar-search span[b-rspbujy167] {
        display: none;
    }

    .navbar-actions a.navbar-link:not(:last-child)[b-rspbujy167] {
        display: none;
    }

    .btn-login[b-rspbujy167] {
        padding: 6px 12px;
        font-size: 13px;
    }

    .btn-register[b-rspbujy167] {
        padding: 6px 12px;
        font-size: 13px;
    }

    .navbar-divider[b-rspbujy167] {
        display: none;
    }
}
/* /Components/Layout/SharedLayout/NavCard.razor.rz.scp.css */
.nav-card[b-wwl79elwmw] {
    position: relative;
    border-radius: 16px;
    padding: 32px;
    color: white;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-card[b-wwl79elwmw]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-card[b-wwl79elwmw]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-card:hover[b-wwl79elwmw] {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}

.nav-card:hover[b-wwl79elwmw]::before,
.nav-card:hover[b-wwl79elwmw]::after {
    opacity: 1;
}

.nav-card-content[b-wwl79elwmw] {
    position: relative;
    z-index: 1;
}

.nav-card-icon[b-wwl79elwmw] {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.95;
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-card-title[b-wwl79elwmw] {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-card-description[b-wwl79elwmw] {
    font-size: 14px;
    opacity: 0.95;
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-card-arrow[b-wwl79elwmw] {
    position: relative;
    z-index: 1;
    font-size: 24px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-end;
}

.nav-card:hover .nav-card-arrow[b-wwl79elwmw] {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-card[b-wwl79elwmw] {
        min-height: 180px;
        padding: 24px;
    }

    .nav-card-icon[b-wwl79elwmw] {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .nav-card-title[b-wwl79elwmw] {
        font-size: 20px;
    }

    .nav-card-description[b-wwl79elwmw] {
        font-size: 13px;
    }
}
/* /Components/Layout/SharedLayout/TabsContainer.razor.rz.scp.css */
/* Tabs Container */
.tabs-container[b-1ch4bcql9k] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Tab Headers */
.tabs-header[b-1ch4bcql9k] {
    display: flex;
    gap: 4px;
    padding: 8px;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f8fafc;
}

.tabs-header[b-1ch4bcql9k]::-webkit-scrollbar {
    height: 6px;
}

.tabs-header[b-1ch4bcql9k]::-webkit-scrollbar-track {
    background: #f8fafc;
}

.tabs-header[b-1ch4bcql9k]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.tabs-header[b-1ch4bcql9k]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Tab Button */
.tab-button[b-1ch4bcql9k] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.tab-button:hover[b-1ch4bcql9k] {
    background: #f1f5f9;
    color: #0f172a;
}

.tab-button.active[b-1ch4bcql9k] {
    background: white;
    color: #667eea;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tab-button i[b-1ch4bcql9k] {
    font-size: 16px;
}

/* Tab Badge */
.tab-badge[b-1ch4bcql9k] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 10px;
    line-height: 1;
}

.tab-button.active .tab-badge[b-1ch4bcql9k] {
    background: #667eea;
}

/* Tab Content */
.tabs-content[b-1ch4bcql9k] {
    padding: 24px;
    background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tabs-header[b-1ch4bcql9k] {
        gap: 2px;
        padding: 6px;
    }

    .tab-button[b-1ch4bcql9k] {
        padding: 10px 16px;
        font-size: 13px;
    }

    .tab-button i[b-1ch4bcql9k] {
        font-size: 14px;
    }

    .tabs-content[b-1ch4bcql9k] {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .tab-button[b-1ch4bcql9k] {
        padding: 8px 12px;
        font-size: 12px;
    }

    .tab-button span[b-1ch4bcql9k] {
        display: none;
    }

    .tab-button i[b-1ch4bcql9k] {
        display: block;
        margin: 0;
    }

    .tabs-content[b-1ch4bcql9k] {
        padding: 12px;
    }
}

/* Alternative Pill Style Tabs */
.tabs-container.tabs-pills .tabs-header[b-1ch4bcql9k] {
    background: transparent;
    border-bottom: none;
    gap: 8px;
    padding: 16px;
}

.tabs-container.tabs-pills .tab-button[b-1ch4bcql9k] {
    border-radius: 20px;
    padding: 10px 20px;
    border: 2px solid #e2e8f0;
}

.tabs-container.tabs-pills .tab-button.active[b-1ch4bcql9k] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.tabs-container.tabs-pills .tab-button.active .tab-badge[b-1ch4bcql9k] {
    background: rgba(255, 255, 255, 0.3);
}

/* Alternative Underline Style Tabs */
.tabs-container.tabs-underline .tabs-header[b-1ch4bcql9k] {
    background: transparent;
    border-bottom: 2px solid #e2e8f0;
    gap: 24px;
    padding: 0 16px;
}

.tabs-container.tabs-underline .tab-button[b-1ch4bcql9k] {
    border-radius: 0;
    padding: 16px 4px;
    position: relative;
}

.tabs-container.tabs-underline .tab-button[b-1ch4bcql9k]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.2s ease;
}

.tabs-container.tabs-underline .tab-button.active[b-1ch4bcql9k]::after {
    background: #667eea;
}

.tabs-container.tabs-underline .tab-button:hover[b-1ch4bcql9k] {
    background: transparent;
}

.tabs-container.tabs-underline .tab-button.active[b-1ch4bcql9k] {
    background: transparent;
    box-shadow: none;
}
/* /Components/Layout/SharedLayout/UserProfileMenu.razor.rz.scp.css */
/* Wrapper - MUST be position: relative for absolute positioning to work */
.user-profile-wrapper[b-qan1c2wbv9] {
    position: relative;
}

/* User Profile Trigger Button */
.user-profile-trigger[b-qan1c2wbv9] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #0f172a;
    background: white;
}

.user-profile-trigger:hover[b-qan1c2wbv9] {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.user-avatar[b-qan1c2wbv9] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.user-avatar-image[b-qan1c2wbv9] {
    padding: 0;
    background: none;
    overflow: hidden;
}

.user-avatar-image img[b-qan1c2wbv9] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-name[b-qan1c2wbv9] {
    font-weight: 500;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Overlay */
.dropdown-overlay[b-qan1c2wbv9] {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: transparent;
}

/* Dropdown Menu - ABSOLUTE positioning relative to wrapper */
.user-dropdown-menu[b-qan1c2wbv9] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 320px;
    max-width: 360px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    padding: 8px;
    z-index: 1051;
    animation: slideDown-b-qan1c2wbv9 0.2s ease;
}

@keyframes slideDown-b-qan1c2wbv9 {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Header */
.profile-header[b-qan1c2wbv9] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 8px;
    margin-bottom: 4px;
}

.user-avatar-large[b-qan1c2wbv9] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.user-avatar-large.user-avatar-image[b-qan1c2wbv9] {
    padding: 0;
    background: none;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.user-avatar-large.user-avatar-image img[b-qan1c2wbv9] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-info[b-qan1c2wbv9] {
    flex: 1;
    min-width: 0;
}

.user-display-name[b-qan1c2wbv9] {
    font-weight: 600;
    font-size: 15px;
    color: #0f172a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-email[b-qan1c2wbv9] {
    font-size: 13px;
    color: #64748b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Subscriptions Section */
.subscriptions-section[b-qan1c2wbv9] {
    padding: 4px 0;
}

.section-label[b-qan1c2wbv9] {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    padding: 8px 12px 4px 12px;
}

.subscription-item[b-qan1c2wbv9] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin: 2px 0;
}

.subscription-item.active[b-qan1c2wbv9] {
    color: #059669;
    background: #f0fdf4;
}

.subscription-item.inactive[b-qan1c2wbv9] {
    color: #94a3b8;
}

.subscription-item i[b-qan1c2wbv9] {
    font-size: 16px;
}

.subscription-item span:first-of-type[b-qan1c2wbv9] {
    flex: 1;
    font-weight: 500;
}

.subscription-badge[b-qan1c2wbv9] {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    background: #059669;
    color: white;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Divider */
.dropdown-divider[b-qan1c2wbv9] {
    height: 1px;
    background: #e2e8f0;
    margin: 8px 0;
}

/* Dropdown Items */
.dropdown-item[b-qan1c2wbv9] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.15s ease;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

.dropdown-item:hover[b-qan1c2wbv9] {
    background: #f1f5f9;
}

.dropdown-item i[b-qan1c2wbv9] {
    font-size: 16px;
    width: 20px;
    color: #64748b;
    flex-shrink: 0;
}

.dropdown-item span[b-qan1c2wbv9] {
    flex: 1;
}

.dropdown-item-danger[b-qan1c2wbv9] {
    color: #dc2626;
}

.dropdown-item-danger:hover[b-qan1c2wbv9] {
    background: #fee2e2;
}

.dropdown-item-danger i[b-qan1c2wbv9] {
    color: #dc2626;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .user-name[b-qan1c2wbv9] {
        display: none;
    }

    .user-profile-trigger[b-qan1c2wbv9] {
        padding: 6px;
    }

    .user-dropdown-menu[b-qan1c2wbv9] {
        right: -8px;
        min-width: 300px;
    }
}

@media (max-width: 480px) {
    .user-dropdown-menu[b-qan1c2wbv9] {
        right: -16px;
        left: auto;
        min-width: 280px;
        max-width: calc(100vw - 32px);
    }
}
/* /Components/Pages/AILegalAssistantHome.razor.rz.scp.css */
/* ===== AI Hero Section ===== */
.hero-section-ai[b-05m5nrm1vf] {
    position: relative;
    padding: 5rem 0;
    margin-bottom: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background-ai[b-05m5nrm1vf] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
}

.hero-content-ai[b-05m5nrm1vf] {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    color: white;
}

.hero-badge-ai[b-05m5nrm1vf] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: fadeInUp-b-05m5nrm1vf 0.6s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-title-ai[b-05m5nrm1vf] {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp-b-05m5nrm1vf 0.6s ease 0.1s backwards;
    letter-spacing: -0.02em;
}

.hero-subtitle-ai[b-05m5nrm1vf] {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    animation: fadeInUp-b-05m5nrm1vf 0.6s ease 0.2s backwards;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Key Features Pills */
.key-features[b-05m5nrm1vf] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp-b-05m5nrm1vf 0.6s ease 0.3s backwards;
}

.feature-pill[b-05m5nrm1vf] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-pill:hover[b-05m5nrm1vf] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-actions-ai[b-05m5nrm1vf] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp-b-05m5nrm1vf 0.6s ease 0.4s backwards;
}

.btn-primary-ai[b-05m5nrm1vf] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2.5rem;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-primary-ai:hover[b-05m5nrm1vf] {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.25);
    color: #667eea;
}

.btn-secondary-ai[b-05m5nrm1vf] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-ai:hover[b-05m5nrm1vf] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    color: white;
}

/* ===== Technology Highlights ===== */
.tech-highlights[b-05m5nrm1vf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item[b-05m5nrm1vf] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.highlight-item:hover[b-05m5nrm1vf] {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(102, 126, 234, 0.2);
}

.highlight-icon[b-05m5nrm1vf] {
    width: 56px;
    height: 56px;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.highlight-content h4[b-05m5nrm1vf] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.375rem;
}

.highlight-content p[b-05m5nrm1vf] {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ===== Section Headers ===== */
.section-header-ai[b-05m5nrm1vf] {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge[b-05m5nrm1vf] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title-ai[b-05m5nrm1vf] {
    font-size: 2.75rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle-ai[b-05m5nrm1vf] {
    font-size: 1.1875rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Notice Builders Grid ===== */
.notice-builders-grid[b-05m5nrm1vf] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.notice-card-link[b-05m5nrm1vf] {
    text-decoration: none;
    color: inherit;
    display: block;
}

.notice-card[b-05m5nrm1vf] {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.notice-card[b-05m5nrm1vf]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: all 0.4s ease;
}

.notice-card:hover[b-05m5nrm1vf] {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

/* Domain-Specific Colors for Notice Cards */
.general-notice[b-05m5nrm1vf]::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gst-notice[b-05m5nrm1vf]::before {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.indirect-tax-notice[b-05m5nrm1vf]::before {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.company-law-notice[b-05m5nrm1vf]::before {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.ibc-notice[b-05m5nrm1vf]::before {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.fema-notice[b-05m5nrm1vf]::before {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.intl-tax-notice[b-05m5nrm1vf]::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.tp-notice[b-05m5nrm1vf]::before {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.labour-notice[b-05m5nrm1vf]::before {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.notice-card:hover[b-05m5nrm1vf]::before {
    height: 100%;
    opacity: 0.05;
}

/* Card Badges */
.card-badge-featured[b-05m5nrm1vf] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
    animation: pulse-b-05m5nrm1vf 2s infinite;
}

.card-badge-new[b-05m5nrm1vf] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

@keyframes pulse-b-05m5nrm1vf {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Notice Card Header */
.notice-card-header[b-05m5nrm1vf] {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.notice-icon-badge[b-05m5nrm1vf] {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.general-notice .notice-icon-badge[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gst-notice .notice-icon-badge[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.indirect-tax-notice .notice-icon-badge[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.company-law-notice .notice-icon-badge[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.ibc-notice .notice-icon-badge[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.fema-notice .notice-icon-badge[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.intl-tax-notice .notice-icon-badge[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.tp-notice .notice-icon-badge[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.labour-notice .notice-icon-badge[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.notice-card:hover .notice-icon-badge[b-05m5nrm1vf] {
    transform: scale(1.1) rotate(5deg);
}

.notice-card-title[b-05m5nrm1vf] {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.notice-card-description[b-05m5nrm1vf] {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Notice Features */
.notice-features[b-05m5nrm1vf] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: auto;
    padding-bottom: 1.5rem;
}

.notice-feature-item[b-05m5nrm1vf] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #334155;
}

.notice-feature-item i[b-05m5nrm1vf] {
    font-size: 1rem;
    flex-shrink: 0;
}

.general-notice .notice-feature-item i[b-05m5nrm1vf] { color: #667eea; }
.gst-notice .notice-feature-item i[b-05m5nrm1vf] { color: #f59e0b; }
.indirect-tax-notice .notice-feature-item i[b-05m5nrm1vf] { color: #ef4444; }
.company-law-notice .notice-feature-item i[b-05m5nrm1vf] { color: #0ea5e9; }
.ibc-notice .notice-feature-item i[b-05m5nrm1vf] { color: #8b5cf6; }
.fema-notice .notice-feature-item i[b-05m5nrm1vf] { color: #ec4899; }
.intl-tax-notice .notice-feature-item i[b-05m5nrm1vf] { color: #10b981; }
.tp-notice .notice-feature-item i[b-05m5nrm1vf] { color: #06b6d4; }
.labour-notice .notice-feature-item i[b-05m5nrm1vf] { color: #f97316; }

/* Notice Card Footer */
.notice-card-footer[b-05m5nrm1vf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.start-text[b-05m5nrm1vf] {
    font-weight: 700;
    font-size: 1rem;
}

.general-notice .start-text[b-05m5nrm1vf] { color: #667eea; }
.gst-notice .start-text[b-05m5nrm1vf] { color: #f59e0b; }
.indirect-tax-notice .start-text[b-05m5nrm1vf] { color: #ef4444; }
.company-law-notice .start-text[b-05m5nrm1vf] { color: #0ea5e9; }
.ibc-notice .start-text[b-05m5nrm1vf] { color: #8b5cf6; }
.fema-notice .start-text[b-05m5nrm1vf] { color: #ec4899; }
.intl-tax-notice .start-text[b-05m5nrm1vf] { color: #10b981; }
.tp-notice .start-text[b-05m5nrm1vf] { color: #06b6d4; }
.labour-notice .start-text[b-05m5nrm1vf] { color: #f97316; }

.notice-card-footer i[b-05m5nrm1vf] {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.notice-card:hover .notice-card-footer i[b-05m5nrm1vf] {
    transform: translateX(8px);
}

.general-notice .notice-card-footer i[b-05m5nrm1vf] { color: #667eea; }
.gst-notice .notice-card-footer i[b-05m5nrm1vf] { color: #f59e0b; }
.indirect-tax-notice .notice-card-footer i[b-05m5nrm1vf] { color: #ef4444; }
.company-law-notice .notice-card-footer i[b-05m5nrm1vf] { color: #0ea5e9; }
.ibc-notice .notice-card-footer i[b-05m5nrm1vf] { color: #8b5cf6; }
.fema-notice .notice-card-footer i[b-05m5nrm1vf] { color: #ec4899; }
.intl-tax-notice .notice-card-footer i[b-05m5nrm1vf] { color: #10b981; }
.tp-notice .notice-card-footer i[b-05m5nrm1vf] { color: #06b6d4; }
.labour-notice .notice-card-footer i[b-05m5nrm1vf] { color: #f97316; }

/* ===== AI Tools Grid ===== */
.ai-tools-grid[b-05m5nrm1vf] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.ai-tool-card-link[b-05m5nrm1vf] {
    text-decoration: none;
    color: inherit;
}

.ai-tool-card[b-05m5nrm1vf] {
    position: relative;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.ai-tool-card[b-05m5nrm1vf]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ai-tool-card:hover[b-05m5nrm1vf]::before {
    opacity: 1;
}

.ai-tool-card:hover[b-05m5nrm1vf] {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

/* Tool Badges */
.tool-badge-featured[b-05m5nrm1vf] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.tool-badge-premium[b-05m5nrm1vf] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    border-radius: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.tool-icon-wrapper[b-05m5nrm1vf] {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.ai-tool-card:hover .tool-icon-wrapper[b-05m5nrm1vf] {
    transform: scale(1.1) rotate(-5deg);
}

.tool-icon-wrapper.income-tax[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.tool-icon-wrapper.gst[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.tool-icon-wrapper.search[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.tool-icon-wrapper.document[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.tool-icon-wrapper.chat[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.tool-icon-wrapper.hub[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.tool-icon-wrapper.premium[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.tool-card-title[b-05m5nrm1vf] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.tool-card-description[b-05m5nrm1vf] {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    flex: 1;
}

/* Tool Tags */
.tool-tags[b-05m5nrm1vf] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.tool-tag[b-05m5nrm1vf] {
    padding: 0.375rem 0.75rem;
    background: #f1f5f9;
    color: #667eea;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.tool-card-footer[b-05m5nrm1vf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    position: relative;
    z-index: 1;
}

.explore-tool-text[b-05m5nrm1vf] {
    font-weight: 700;
    font-size: 0.9375rem;
    color: #667eea;
}

.tool-card-footer i[b-05m5nrm1vf] {
    font-size: 1.25rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.ai-tool-card:hover .tool-card-footer i[b-05m5nrm1vf] {
    transform: translateX(6px);
}

/* ===== Benefits Grid ===== */
.benefits-grid[b-05m5nrm1vf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-card[b-05m5nrm1vf] {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 1.5rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card:hover[b-05m5nrm1vf] {
    border-color: #667eea;
    transform: translateY(-6px);
    box-shadow: 0 15px 30px -5px rgba(102, 126, 234, 0.2);
}

.benefit-icon[b-05m5nrm1vf] {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon[b-05m5nrm1vf] {
    transform: scale(1.1) rotate(-5deg);
}

.benefit-card h4[b-05m5nrm1vf] {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.875rem;
}

.benefit-card p[b-05m5nrm1vf] {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA Section ===== */
.cta-section[b-05m5nrm1vf] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section[b-05m5nrm1vf]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content[b-05m5nrm1vf] {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-title[b-05m5nrm1vf] {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-subtitle[b-05m5nrm1vf] {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-actions[b-05m5nrm1vf] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary[b-05m5nrm1vf] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2.5rem;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover[b-05m5nrm1vf] {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.25);
    color: #667eea;
}

.btn-cta-secondary[b-05m5nrm1vf] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover[b-05m5nrm1vf] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    color: white;
}

/* ===== Animations ===== */
@keyframes fadeInUp-b-05m5nrm1vf {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .notice-builders-grid[b-05m5nrm1vf] {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .ai-tools-grid[b-05m5nrm1vf] {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title-ai[b-05m5nrm1vf] {
        font-size: 2.5rem;
    }

    .hero-subtitle-ai[b-05m5nrm1vf] {
        font-size: 1.125rem;
    }

    .key-features[b-05m5nrm1vf] {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions-ai[b-05m5nrm1vf] {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-ai[b-05m5nrm1vf],
    .btn-secondary-ai[b-05m5nrm1vf] {
        width: 100%;
        justify-content: center;
    }

    .tech-highlights[b-05m5nrm1vf] {
        grid-template-columns: 1fr;
    }

    .section-title-ai[b-05m5nrm1vf] {
        font-size: 2rem;
    }

    .section-subtitle-ai[b-05m5nrm1vf] {
        font-size: 1rem;
    }

    .notice-builders-grid[b-05m5nrm1vf] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ai-tools-grid[b-05m5nrm1vf] {
        grid-template-columns: 1fr;
    }

    .benefits-grid[b-05m5nrm1vf] {
        grid-template-columns: 1fr;
    }

    .cta-title[b-05m5nrm1vf] {
        font-size: 2rem;
    }

    .cta-subtitle[b-05m5nrm1vf] {
        font-size: 1.0625rem;
    }

    .cta-actions[b-05m5nrm1vf] {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary[b-05m5nrm1vf],
    .btn-cta-secondary[b-05m5nrm1vf] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section-ai[b-05m5nrm1vf] {
        padding: 3rem 0;
    }

    .hero-title-ai[b-05m5nrm1vf] {
        font-size: 2rem;
    }

    .notice-card[b-05m5nrm1vf] {
        padding: 1.5rem;
        min-height: auto;
    }

    .ai-tool-card[b-05m5nrm1vf] {
        padding: 1.5rem;
        min-height: auto;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    .notice-card[b-05m5nrm1vf],
    .ai-tool-card[b-05m5nrm1vf],
    .benefit-card[b-05m5nrm1vf],
    .highlight-item[b-05m5nrm1vf],
    .btn-primary-ai[b-05m5nrm1vf],
    .btn-secondary-ai[b-05m5nrm1vf] {
        transition: none;
    }

    .notice-card:hover[b-05m5nrm1vf],
    .ai-tool-card:hover[b-05m5nrm1vf],
    .benefit-card:hover[b-05m5nrm1vf],
    .highlight-item:hover[b-05m5nrm1vf] {
        transform: none;
    }

    .hero-badge-ai[b-05m5nrm1vf],
    .hero-title-ai[b-05m5nrm1vf],
    .hero-subtitle-ai[b-05m5nrm1vf],
    .key-features[b-05m5nrm1vf],
    .hero-actions-ai[b-05m5nrm1vf] {
        animation: none;
    }
}

/* Focus styles for keyboard navigation */
.notice-card-link:focus-within .notice-card[b-05m5nrm1vf],
.ai-tool-card-link:focus-within .ai-tool-card[b-05m5nrm1vf] {
    outline: 3px solid #667eea;
    outline-offset: 4px;
}

/* Smooth scrolling for anchor links */
html[b-05m5nrm1vf] {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html[b-05m5nrm1vf] {
        scroll-behavior: auto;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ===== Hero Section ===== */
.hero-section[b-79ptpowpzi] {
    position: relative;
    padding: 4rem 0;
    margin-bottom: 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-background[b-79ptpowpzi] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content[b-79ptpowpzi] {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.hero-badge[b-79ptpowpzi] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp-b-79ptpowpzi 0.6s ease;
}

.hero-title[b-79ptpowpzi] {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: fadeInUp-b-79ptpowpzi 0.6s ease 0.1s backwards;
}

.hero-subtitle[b-79ptpowpzi] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp-b-79ptpowpzi 0.6s ease 0.2s backwards;
}

.hero-actions[b-79ptpowpzi] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp-b-79ptpowpzi 0.6s ease 0.3s backwards;
}

/* Primary Hero Button */
.btn-hero-primary[b-79ptpowpzi] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover[b-79ptpowpzi] {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.25);
    color: #667eea;
}

/* Secondary Hero Button */
.btn-hero-secondary[b-79ptpowpzi] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover[b-79ptpowpzi] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    color: white;
}

.btn-hero-secondary .chevron[b-79ptpowpzi] {
    transition: transform 0.3s ease;
}

.btn-hero-secondary .chevron.rotated[b-79ptpowpzi] {
    transform: rotate(180deg);
}

/* Backdrop */
.mega-menu-backdrop[b-79ptpowpzi] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1040;
    animation: fadeIn-b-79ptpowpzi 0.2s ease;
}

@keyframes fadeIn-b-79ptpowpzi {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp-b-79ptpowpzi {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Section Headers ===== */
.section-header[b-79ptpowpzi] {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title[b-79ptpowpzi] {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.section-subtitle[b-79ptpowpzi] {
    font-size: 1.125rem;
    color: #64748b;
}

/* ===== Practice Areas Grid ===== */
.practice-areas-grid[b-79ptpowpzi] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.domain-card-link[b-79ptpowpzi] {
    text-decoration: none;
    color: inherit;
    display: block;
}

.domain-card[b-79ptpowpzi] {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.domain-card[b-79ptpowpzi]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.domain-card:hover[b-79ptpowpzi]::before {
    opacity: 1;
}

.domain-card:hover[b-79ptpowpzi] {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.card-gradient[b-79ptpowpzi] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transition: height 0.4s ease;
}

.domain-card:hover .card-gradient[b-79ptpowpzi] {
    height: 100%;
    opacity: 0.05;
}

/* Domain-specific gradients */
.direct-tax .card-gradient[b-79ptpowpzi] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gst .card-gradient[b-79ptpowpzi] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.company-law .card-gradient[b-79ptpowpzi] {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.intl-tax .card-gradient[b-79ptpowpzi] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.customs .card-gradient[b-79ptpowpzi] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.accounting .card-gradient[b-79ptpowpzi] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Card Header */
.card-header[b-79ptpowpzi] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.icon-badge[b-79ptpowpzi] {
    width: 72px;
    height: 72px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.domain-card:hover .icon-badge[b-79ptpowpzi] {
    transform: scale(1.1) rotate(5deg);
}

.direct-tax .icon-badge[b-79ptpowpzi] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gst .icon-badge[b-79ptpowpzi] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.company-law .icon-badge[b-79ptpowpzi] {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.intl-tax .icon-badge[b-79ptpowpzi] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.customs .icon-badge[b-79ptpowpzi] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.accounting .icon-badge[b-79ptpowpzi] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Badges */
.badge-new[b-79ptpowpzi],
.badge-hot[b-79ptpowpzi] {
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-new[b-79ptpowpzi] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.badge-hot[b-79ptpowpzi] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    animation: pulse-b-79ptpowpzi 2s infinite;
}

@keyframes pulse-b-79ptpowpzi {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Card Content */
.card-title[b-79ptpowpzi] {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.card-description[b-79ptpowpzi] {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Features */
.card-features[b-79ptpowpzi] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.feature-item[b-79ptpowpzi] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #334155;
}

.feature-item i[b-79ptpowpzi] {
    font-size: 1rem;
    flex-shrink: 0;
}

.direct-tax .feature-item i[b-79ptpowpzi] { color: #667eea; }
.gst .feature-item i[b-79ptpowpzi] { color: #f59e0b; }
.company-law .feature-item i[b-79ptpowpzi] { color: #0ea5e9; }
.intl-tax .feature-item i[b-79ptpowpzi] { color: #10b981; }
.customs .feature-item i[b-79ptpowpzi] { color: #ef4444; }
.accounting .feature-item i[b-79ptpowpzi] { color: #8b5cf6; }

/* Statistics */
.card-stats[b-79ptpowpzi] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    position: relative;
    z-index: 1;
}

.stat[b-79ptpowpzi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.domain-card:hover .stat[b-79ptpowpzi] {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.stat-value[b-79ptpowpzi] {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.direct-tax .stat-value[b-79ptpowpzi] { color: #667eea; }
.gst .stat-value[b-79ptpowpzi] { color: #f59e0b; }
.company-law .stat-value[b-79ptpowpzi] { color: #0ea5e9; }
.intl-tax .stat-value[b-79ptpowpzi] { color: #10b981; }
.customs .stat-value[b-79ptpowpzi] { color: #ef4444; }
.accounting .stat-value[b-79ptpowpzi] { color: #8b5cf6; }

.stat-label[b-79ptpowpzi] {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Card Footer */
.card-footer[b-79ptpowpzi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    position: relative;
    z-index: 1;
}

.explore-text[b-79ptpowpzi] {
    font-weight: 700;
    font-size: 1rem;
}

.direct-tax .explore-text[b-79ptpowpzi] { color: #667eea; }
.gst .explore-text[b-79ptpowpzi] { color: #f59e0b; }
.company-law .explore-text[b-79ptpowpzi] { color: #0ea5e9; }
.intl-tax .explore-text[b-79ptpowpzi] { color: #10b981; }
.customs .explore-text[b-79ptpowpzi] { color: #ef4444; }
.accounting .explore-text[b-79ptpowpzi] { color: #8b5cf6; }

.card-footer i[b-79ptpowpzi] {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.domain-card:hover .card-footer i[b-79ptpowpzi] {
    transform: translateX(8px);
}

.direct-tax .card-footer i[b-79ptpowpzi] { color: #667eea; }
.gst .card-footer i[b-79ptpowpzi] { color: #f59e0b; }
.company-law .card-footer i[b-79ptpowpzi] { color: #0ea5e9; }
.intl-tax .card-footer i[b-79ptpowpzi] { color: #10b981; }
.customs .card-footer i[b-79ptpowpzi] { color: #ef4444; }
.accounting .card-footer i[b-79ptpowpzi] { color: #8b5cf6; }

/* ===== AI Legal Assistant Featured Section ===== */
.ai-legal-assistant-featured[b-79ptpowpzi] {
    position: relative;
    margin: 4rem 0;
    padding: 4rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.featured-background[b-79ptpowpzi] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
}

.featured-content[b-79ptpowpzi] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Column */
.featured-left[b-79ptpowpzi] {
    color: white;
}

.featured-badge[b-79ptpowpzi] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp-b-79ptpowpzi 0.6s ease;
}

.featured-title[b-79ptpowpzi] {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp-b-79ptpowpzi 0.6s ease 0.1s backwards;
    letter-spacing: -0.02em;
}

.featured-subtitle[b-79ptpowpzi] {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp-b-79ptpowpzi 0.6s ease 0.2s backwards;
}

/* Featured Stats */
.featured-stats[b-79ptpowpzi] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp-b-79ptpowpzi 0.6s ease 0.3s backwards;
}

.stat-item-featured[b-79ptpowpzi] {
    text-align: center;
    padding: 1.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item-featured:hover[b-79ptpowpzi] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.stat-number[b-79ptpowpzi] {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label[b-79ptpowpzi] {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    color: white;
}

/* Featured Actions */
.featured-actions[b-79ptpowpzi] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp-b-79ptpowpzi 0.6s ease 0.4s backwards;
}

.btn-featured-primary[b-79ptpowpzi] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2.5rem;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.btn-featured-primary:hover[b-79ptpowpzi] {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px -5px rgba(0, 0, 0, 0.35);
    color: #667eea;
}

.btn-featured-secondary[b-79ptpowpzi] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-featured-secondary:hover[b-79ptpowpzi] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    color: white;
}

/* Right Column */
.featured-right[b-79ptpowpzi] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-highlight-cards[b-79ptpowpzi] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.highlight-card[b-79ptpowpzi] {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.highlight-card:hover[b-79ptpowpzi] {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.4);
}

.highlight-icon[b-79ptpowpzi] {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.highlight-card h4[b-79ptpowpzi] {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.highlight-card p[b-79ptpowpzi] {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.highlight-badge[b-79ptpowpzi] {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Trust Indicators */
.trust-indicators[b-79ptpowpzi] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item[b-79ptpowpzi] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
}

.trust-item i[b-79ptpowpzi] {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Tools Grid ===== */
.tools-grid[b-79ptpowpzi] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tool-card-link[b-79ptpowpzi] {
    text-decoration: none;
    color: inherit;
}

.tool-card[b-79ptpowpzi] {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tool-card[b-79ptpowpzi]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover[b-79ptpowpzi]::before {
    opacity: 1;
}

.tool-card:hover[b-79ptpowpzi] {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.tool-icon-wrapper[b-79ptpowpzi] {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon-wrapper[b-79ptpowpzi] {
    transform: scale(1.1) rotate(-5deg);
}

.ai-tool .tool-icon-wrapper[b-79ptpowpzi] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.search-tool .tool-icon-wrapper[b-79ptpowpzi] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.doc-tool .tool-icon-wrapper[b-79ptpowpzi] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.updates-tool .tool-icon-wrapper[b-79ptpowpzi] {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
}

.tool-title[b-79ptpowpzi] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.tool-description[b-79ptpowpzi] {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tool-badge[b-79ptpowpzi] {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: #f1f5f9;
    color: #667eea;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .hero-title[b-79ptpowpzi] {
        font-size: 2rem;
    }

    .hero-subtitle[b-79ptpowpzi] {
        font-size: 1rem;
    }

    .hero-actions[b-79ptpowpzi] {
        flex-direction: column;
        width: 100%;
    }

    .btn-explore-all[b-79ptpowpzi],
    .btn-hero-secondary[b-79ptpowpzi] {
        width: 100%;
        justify-content: center;
    }

    .practice-areas-grid[b-79ptpowpzi] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .domain-card[b-79ptpowpzi] {
        min-height: auto;
    }

    .section-title[b-79ptpowpzi] {
        font-size: 1.75rem;
    }

    .tools-grid[b-79ptpowpzi] {
        grid-template-columns: 1fr;
    }

    /* AI Legal Assistant Featured - Mobile */
    .ai-legal-assistant-featured[b-79ptpowpzi] {
        margin: 2rem 0;
        padding: 3rem 0;
    }

    .featured-content[b-79ptpowpzi] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .featured-title[b-79ptpowpzi] {
        font-size: 2.25rem;
    }

    .featured-subtitle[b-79ptpowpzi] {
        font-size: 1.0625rem;
    }

    .featured-stats[b-79ptpowpzi] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number[b-79ptpowpzi] {
        font-size: 2rem;
    }

    .stat-label[b-79ptpowpzi] {
        font-size: 0.75rem;
    }

    .featured-actions[b-79ptpowpzi] {
        flex-direction: column;
        width: 100%;
    }

    .btn-featured-primary[b-79ptpowpzi],
    .btn-featured-secondary[b-79ptpowpzi] {
        width: 100%;
        justify-content: center;
    }

    .highlight-card[b-79ptpowpzi] {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .highlight-card:hover[b-79ptpowpzi] {
        transform: translateY(-4px);
    }
}

@media (max-width: 480px) {
    .ai-legal-assistant-featured[b-79ptpowpzi] {
        padding: 2rem 0;
    }

    .featured-title[b-79ptpowpzi] {
        font-size: 1.875rem;
    }

    .featured-stats[b-79ptpowpzi] {
        gap: 0.75rem;
    }

    .stat-item-featured[b-79ptpowpzi] {
        padding: 1rem 0.5rem;
    }

    .stat-number[b-79ptpowpzi] {
        font-size: 1.75rem;
    }

    .btn-featured-primary[b-79ptpowpzi],
    .btn-featured-secondary[b-79ptpowpzi] {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
    .domain-card[b-79ptpowpzi],
    .tool-card[b-79ptpowpzi],
    .btn-explore-all[b-79ptpowpzi],
    .btn-hero-secondary[b-79ptpowpzi],
    .btn-featured-primary[b-79ptpowpzi],
    .btn-featured-secondary[b-79ptpowpzi],
    .highlight-card[b-79ptpowpzi],
    .stat-item-featured[b-79ptpowpzi] {
        transition: none;
        animation: none;
    }

    .domain-card:hover[b-79ptpowpzi],
    .tool-card:hover[b-79ptpowpzi],
    .highlight-card:hover[b-79ptpowpzi],
    .stat-item-featured:hover[b-79ptpowpzi] {
        transform: none;
    }

    .featured-badge[b-79ptpowpzi],
    .featured-title[b-79ptpowpzi],
    .featured-subtitle[b-79ptpowpzi],
    .featured-stats[b-79ptpowpzi],
    .featured-actions[b-79ptpowpzi] {
        animation: none;
    }
}

/* Focus styles for keyboard navigation */
.domain-card-link:focus-within .domain-card[b-79ptpowpzi],
.tool-card-link:focus-within .tool-card[b-79ptpowpzi] {
    outline: 3px solid #667eea;
    outline-offset: 4px;
}

.btn-featured-primary:focus[b-79ptpowpzi],
.btn-featured-secondary:focus[b-79ptpowpzi] {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
}

/* ===== Free Articles Section ===== */
.free-articles-section[b-79ptpowpzi] {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    border-top: 2px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
}

.section-header-with-badge[b-79ptpowpzi] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.section-header-left[b-79ptpowpzi] {
    flex: 1;
}

.free-badge-large[b-79ptpowpzi] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: pulse-free-b-79ptpowpzi 2s infinite;
    letter-spacing: 0.5px;
}

@keyframes pulse-free-b-79ptpowpzi {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
    }
}

.btn-view-all[b-79ptpowpzi] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-view-all:hover[b-79ptpowpzi] {
        background: #667eea;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
    }

.free-articles-grid[b-79ptpowpzi] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.free-article-card[b-79ptpowpzi] {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .free-article-card:hover[b-79ptpowpzi] {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        border-color: #10b981;
    }

        .free-article-card:hover .free-badge-small[b-79ptpowpzi] {
            transform: scale(1.05);
        }

        .free-article-card:hover .read-more-link[b-79ptpowpzi] {
            gap: 0.75rem;
        }

.free-badge-small[b-79ptpowpzi] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    transition: transform 0.3s ease;
    letter-spacing: 0.5px;
}

.article-type-badge[b-79ptpowpzi] {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    color: white;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.free-article-title[b-79ptpowpzi] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.free-article-excerpt[b-79ptpowpzi] {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.free-article-footer[b-79ptpowpzi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.article-date[b-79ptpowpzi] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

    .article-date i[b-79ptpowpzi] {
        font-size: 1rem;
    }

.read-more-link[b-79ptpowpzi] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #667eea;
    font-weight: 600;
    font-size: 0.875rem;
    transition: gap 0.3s ease;
}

.btn-explore-articles[b-79ptpowpzi] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

    .btn-explore-articles:hover[b-79ptpowpzi] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .section-header-with-badge[b-79ptpowpzi] {
        flex-direction: column;
        align-items: flex-start;
    }

    .free-articles-grid[b-79ptpowpzi] {
        grid-template-columns: 1fr;
    }

    .free-badge-large[b-79ptpowpzi] {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .btn-view-all[b-79ptpowpzi] {
        width: 100%;
        justify-content: center;
    }

    .btn-explore-articles[b-79ptpowpzi] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/Pages/ModernHome.razor.rz.scp.css */
/* Hero Section */
.dashboard-hero[b-ym4v2m8gwu] {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 80px 48px;
    margin-bottom: 48px;
    overflow: hidden;
    color: white;
}

.hero-content[b-ym4v2m8gwu] {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title[b-ym4v2m8gwu] {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-subtitle[b-ym4v2m8gwu] {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 32px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-button[b-ym4v2m8gwu] {
    background: white;
    color: #667eea;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-button:hover[b-ym4v2m8gwu] {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-button i[b-ym4v2m8gwu] {
    font-size: 20px;
}

.hero-hint[b-ym4v2m8gwu] {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.9;
}

.hero-hint kbd[b-ym4v2m8gwu] {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    margin: 0 2px;
}

/* Decorative circles */
.hero-circle[b-ym4v2m8gwu] {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.hero-circle-1[b-ym4v2m8gwu] {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.hero-circle-2[b-ym4v2m8gwu] {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    opacity: 0.5;
}

.hero-circle-3[b-ym4v2m8gwu] {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    opacity: 0.3;
}

/* Dashboard Grid */
.dashboard-grid[b-ym4v2m8gwu] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

/* Section Title */
.section-title[b-ym4v2m8gwu] {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #0f172a;
}

/* Features Section */
.features-section[b-ym4v2m8gwu] {
    margin-bottom: 64px;
}

.features-grid[b-ym4v2m8gwu] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card[b-ym4v2m8gwu] {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover[b-ym4v2m8gwu] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
}

.feature-icon[b-ym4v2m8gwu] {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 16px;
    display: block;
}

.feature-title[b-ym4v2m8gwu] {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.feature-description[b-ym4v2m8gwu] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Quick Start Section */
.quick-start-section[b-ym4v2m8gwu] {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    padding: 48px 32px;
}

.quick-start-grid[b-ym4v2m8gwu] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.quick-start-card[b-ym4v2m8gwu] {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.quick-start-card:hover[b-ym4v2m8gwu] {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.15);
}

.step-number[b-ym4v2m8gwu] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-title[b-ym4v2m8gwu] {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.step-description[b-ym4v2m8gwu] {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-hero[b-ym4v2m8gwu] {
        padding: 48px 24px;
        margin-bottom: 32px;
    }

    .hero-title[b-ym4v2m8gwu] {
        font-size: 32px;
    }

    .hero-subtitle[b-ym4v2m8gwu] {
        font-size: 16px;
    }

    .hero-button[b-ym4v2m8gwu] {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-circle[b-ym4v2m8gwu] {
        display: none;
    }

    .dashboard-grid[b-ym4v2m8gwu] {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 48px;
    }

    .section-title[b-ym4v2m8gwu] {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .features-grid[b-ym4v2m8gwu],
    .quick-start-grid[b-ym4v2m8gwu] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .quick-start-section[b-ym4v2m8gwu] {
        padding: 32px 20px;
    }
}

@media (max-width: 480px) {
    .dashboard-hero[b-ym4v2m8gwu] {
        padding: 32px 16px;
        border-radius: 16px;
    }

    .hero-title[b-ym4v2m8gwu] {
        font-size: 24px;
    }

    .hero-subtitle[b-ym4v2m8gwu] {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-button[b-ym4v2m8gwu] {
        width: 100%;
        justify-content: center;
    }

    .feature-card[b-ym4v2m8gwu],
    .quick-start-card[b-ym4v2m8gwu] {
        padding: 24px 16px;
    }
}
/* /Components/Pages/NoticeReplyDemo.razor.rz.scp.css */
/* Notice Reply Page */
.notice-reply-page[b-d2ywbzp3xd] {
    max-width: 1400px;
    margin: 0 auto;
}

.page-title[b-d2ywbzp3xd] {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.page-subtitle[b-d2ywbzp3xd] {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
}

/* Tab Panel */
.tab-panel[b-d2ywbzp3xd] {
    animation: fadeIn-b-d2ywbzp3xd 0.3s ease;
}

@keyframes fadeIn-b-d2ywbzp3xd {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-title[b-d2ywbzp3xd] {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

/* Notice Grid */
.notice-grid[b-d2ywbzp3xd] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

/* Notice Card */
.notice-card[b-d2ywbzp3xd] {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.notice-card:hover[b-d2ywbzp3xd] {
    border-color: #667eea;
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

/* Notice Header */
.notice-header[b-d2ywbzp3xd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.notice-type[b-d2ywbzp3xd] {
    display: inline-block;
    padding: 4px 12px;
    background: #667eea;
    color: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Notice Status */
.notice-status[b-d2ywbzp3xd] {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending[b-d2ywbzp3xd] {
    background: #fef3c7;
    color: #d97706;
}

.status-in-progress[b-d2ywbzp3xd] {
    background: #dbeafe;
    color: #2563eb;
}

.status-completed[b-d2ywbzp3xd] {
    background: #d1fae5;
    color: #059669;
}

/* Notice Title */
.notice-title[b-d2ywbzp3xd] {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

/* Notice Description */
.notice-description[b-d2ywbzp3xd] {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Notice Meta */
.notice-meta[b-d2ywbzp3xd] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #64748b;
}

.notice-meta span[b-d2ywbzp3xd] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.notice-meta i[b-d2ywbzp3xd] {
    font-size: 14px;
    color: #94a3b8;
}

/* View Notice Button */
.btn-view-notice[b-d2ywbzp3xd] {
    width: 100%;
    padding: 10px 16px;
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-view-notice:hover[b-d2ywbzp3xd] {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title[b-d2ywbzp3xd] {
        font-size: 24px;
    }

    .page-subtitle[b-d2ywbzp3xd] {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .panel-title[b-d2ywbzp3xd] {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .notice-grid[b-d2ywbzp3xd] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .notice-card[b-d2ywbzp3xd] {
        padding: 16px;
    }

    .notice-title[b-d2ywbzp3xd] {
        font-size: 16px;
    }

    .notice-description[b-d2ywbzp3xd] {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .page-title[b-d2ywbzp3xd] {
        font-size: 20px;
    }

    .notice-header[b-d2ywbzp3xd] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .notice-card[b-d2ywbzp3xd] {
        padding: 12px;
    }
}
/* /Components/Pages/Settings/UserSettings.razor.rz.scp.css */
.settings-page[b-y4366yfu61] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.settings-header[b-y4366yfu61] {
    margin-bottom: 40px;
}

.settings-header h1[b-y4366yfu61] {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.settings-header h1 i[b-y4366yfu61] {
    color: #667eea;
}

.settings-header p[b-y4366yfu61] {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.settings-grid[b-y4366yfu61] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.settings-card[b-y4366yfu61] {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.settings-card:hover[b-y4366yfu61] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-header[b-y4366yfu61] {
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header i[b-y4366yfu61] {
    font-size: 24px;
    color: #667eea;
}

.card-header h2[b-y4366yfu61] {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.card-body[b-y4366yfu61] {
    padding: 24px;
}

.setting-item[b-y4366yfu61] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.setting-info[b-y4366yfu61] {
    flex: 1;
    min-width: 0;
}

.setting-info label[b-y4366yfu61] {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.setting-description[b-y4366yfu61] {
    display: block;
    font-size: 13px;
    color: #64748b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.setting-divider[b-y4366yfu61] {
    height: 1px;
    background: #e2e8f0;
    margin: 16px 0;
}

.btn-primary[b-y4366yfu61] {
    padding: 8px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-primary:hover[b-y4366yfu61] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-y4366yfu61] {
    padding: 8px 20px;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-secondary:hover:not(:disabled)[b-y4366yfu61] {
    background: #667eea;
    color: white;
}

.btn-secondary:disabled[b-y4366yfu61] {
    opacity: 0.5;
    cursor: not-allowed;
}

.setting-select[b-y4366yfu61] {
    padding: 8px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.setting-select:hover:not(:disabled)[b-y4366yfu61] {
    border-color: #cbd5e1;
}

.setting-select:focus[b-y4366yfu61] {
    outline: none;
    border-color: #667eea;
}

.setting-select:disabled[b-y4366yfu61] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Toggle Switch */
.toggle-switch[b-y4366yfu61] {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.toggle-switch input[b-y4366yfu61] {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider[b-y4366yfu61] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 28px;
}

.toggle-slider[b-y4366yfu61]:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider[b-y4366yfu61] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

input:checked + .toggle-slider[b-y4366yfu61]:before {
    transform: translateX(22px);
}

input:disabled + .toggle-slider[b-y4366yfu61] {
    opacity: 0.5;
    cursor: not-allowed;
}

.settings-footer[b-y4366yfu61] {
    margin-top: 40px;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
}

.footer-note[b-y4366yfu61] {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-note i[b-y4366yfu61] {
    color: #667eea;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .settings-page[b-y4366yfu61] {
        padding: 20px 16px;
    }

    .settings-header h1[b-y4366yfu61] {
        font-size: 24px;
    }

    .settings-grid[b-y4366yfu61] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .setting-item[b-y4366yfu61] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .btn-primary[b-y4366yfu61],
    .btn-secondary[b-y4366yfu61] {
        width: 100%;
        text-align: center;
    }

    .setting-select[b-y4366yfu61] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .card-header[b-y4366yfu61] {
        padding: 16px;
    }

    .card-body[b-y4366yfu61] {
        padding: 16px;
    }

    .settings-header h1[b-y4366yfu61] {
        font-size: 20px;
    }

    .settings-header p[b-y4366yfu61] {
        font-size: 14px;
    }
}
