.business-health-score {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px;
    border-radius: 22px;
    margin-bottom: 24px;
    color: #ffffff;
}

.business-health-score span {
    display: block;
    font-size: 14px;
    font-weight: 800;
    opacity: 0.9;
    margin-bottom: 8px;
}

.business-health-score strong {
    font-size: 42px;
    font-weight: 900;
}

.business-health-score.healthy {
    background: linear-gradient(135deg, #067647, #00bf63);
}

.business-health-score.warning {
    background: linear-gradient(135deg, #b54708, #f59e0b);
}

.business-health-score.critical {
    background: linear-gradient(135deg, #991b1b, #dc2626);
}

.health-label {
    font-size: 20px;
    font-weight: 900;
    background: rgba(255,255,255,0.18);
    padding: 12px 18px;
    border-radius: 999px;
}

.business-health-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.business-health-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    border: 1px solid #e2e8f0;
}

.business-health-card span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
}

.business-health-card strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
}

.business-health-card.danger {
    border-left: 5px solid #dc2626;
}

.business-health-card.warning {
    border-left: 5px solid #f59e0b;
}

.health-notes {
    display: grid;
    gap: 12px;
}

.health-note {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
}

.health-note.danger {
    background: #fee2e2;
    color: #991b1b;
}

.health-note.warning {
    background: #fef3c7;
    color: #92400e;
}

.health-note.healthy {
    background: #dcfce7;
    color: #166534;
}

@media (max-width: 1000px) {
    .business-health-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .business-health-score {
        align-items: flex-start;
        gap: 18px;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .business-health-grid {
        grid-template-columns: 1fr;
    }
}
.health-smart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.health-smart-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.health-smart-card span {
    display: block;
    font-size: 12px;
    font-weight: 900;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.health-smart-card strong {
    display: block;
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
}

.health-smart-card p {
    margin: 0 0 12px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.health-smart-card a,
.health-note a {
    display: inline-flex;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 900;
    color: #00609f;
    text-decoration: none;
}

.health-smart-card.warning {
    border-left: 5px solid #f59e0b;
}

.health-smart-card.danger {
    border-left: 5px solid #dc2626;
}

.health-smart-card.healthy {
    border-left: 5px solid #00bf63;
}

@media (max-width: 800px) {
    .health-smart-grid {
        grid-template-columns: 1fr;
    }
}