
    :root {
        --enterprise-blue: #0052cc; /* Darker, professional blue */
        --slate-900: #1a202c;
        --slate-600: #4a5568;
        --bg-light: #f8fafc;
    }
    body { 
        background-color: var(--bg-light); 
        color: var(--slate-900);
        font-family: 'Inter', sans-serif; 
    }
    .hero-section { background: #ffffff; border-bottom: 1px solid #e2e8f0; }
    .card { border: 1px solid #e2e8f0; border-radius: 12px; transition: transform 0.2s; }
    .card:hover { transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }


/* Optional: If you want to apply it only to the home page hero */
.hero-section {
    padding-top: 100px !important;
}
/* New VA Card Styles */
.stat-pill {
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.1);
    padding: 10px;
    border-radius: 12px;
}

.status-pulse {
    position: absolute;
    top: 5px;
    right: 15px;
    width: 10px;
    height: 10px;
    background: #00f2ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2ff;
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0% { transform: scale(0.95); opacity: 0.7; }
    70% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

.extra-small {
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.fw-black { font-weight: 900; }

.shadow-inner {
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}