.ssg-card {
    background: var(--ssg-white);
    border: 1px solid var(--ssg-border);
    border-radius: var(--ssg-radius);
    box-shadow: var(--ssg-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ssg-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}

.ssg-card-body {
    padding: 20px;
}

.ssg-card-title {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ssg-dark);
}

.ssg-card-subtitle {
    margin-bottom: 0;
    font-size: 13px;
    color: var(--ssg-muted);
}

.ssg-kpi-card {
    position: relative;
    overflow: hidden;
}

.ssg-kpi-card::after {
    content: '';
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(215, 25, 32, 0.08);
}

.ssg-kpi-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ssg-muted);
}

.ssg-kpi-value {
    margin: 8px 0 0;
    font-size: 30px;
    font-weight: 800;
    color: var(--ssg-dark);
    letter-spacing: -0.03em;
}

.ssg-kpi-meta {
    margin-top: 8px;
    font-size: 12px;
    color: var(--ssg-muted);
}

.ssg-kpi-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(215, 25, 32, 0.1);
    color: var(--ssg-primary);
    font-size: 22px;
}

.ssg-action-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    color: var(--ssg-dark);
    text-decoration: none;
}

.ssg-action-card:hover {
    color: var(--ssg-dark);
}

.ssg-action-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--ssg-primary);
    color: var(--ssg-white);
    font-size: 20px;
    flex-shrink: 0;
}

.ssg-action-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.ssg-action-text {
    margin: 2px 0 0;
    font-size: 12px;
    color: var(--ssg-muted);
}

.ssg-option-card {
    min-height: 116px;
    display: flex;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--ssg-border);
    border-radius: 8px;
    background: var(--ssg-white);
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.ssg-option-card strong,
.ssg-option-card small {
    display: block;
}

.ssg-option-card small {
    margin-top: 4px;
    color: var(--ssg-muted);
    line-height: 1.45;
}

.ssg-option-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    border-radius: 8px;
    background: rgba(215, 25, 32, 0.08);
    color: var(--ssg-primary);
    font-size: 18px;
}

.btn-check:checked + .ssg-option-card {
    border-color: var(--ssg-primary);
    box-shadow: 0 0 0 0.2rem rgba(215, 25, 32, 0.12);
}

.ssg-disabled-panel {
    opacity: 0.55;
}

.ssg-disabled-panel input,
.ssg-disabled-panel textarea,
.ssg-disabled-panel select {
    pointer-events: none;
}
