.abmahn-shield-wrap {
    max-width: 960px;
    margin: 0;
    padding: 0;
}

.abmahn-shield-wrap h1 {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
}

.as-header {
    margin: 20px 0 24px;
}

.as-header-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.as-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.as-subtitle {
    color: #637381;
    font-size: 14px;
    margin: 2px 0 0;
}

.as-settings-link {
    margin-left: auto;
    font-size: 13px;
    text-decoration: none;
    color: #2E7D32;
    font-weight: 600;
}

.as-settings-link:hover {
    color: #1B5E20;
}

/* Cards */

.as-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Notice */

.as-notice {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.as-notice-warning {
    background: #FFF8E1;
    border: 1px solid #FFE082;
    color: #5D4037;
}

.as-notice a {
    color: #2E7D32;
    font-weight: 600;
}

/* Buttons */

.as-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.15s;
    line-height: 1;
}

.as-btn-primary {
    background: #2E7D32;
    color: #fff;
}

.as-btn-primary:hover {
    background: #1B5E20;
    color: #fff;
}

.as-btn-primary:disabled {
    background: #a5d6a7;
    cursor: not-allowed;
}

.as-btn-secondary {
    background: #e8e8e8;
    color: #1a1a2e;
}

.as-btn-secondary:hover {
    background: #d0d0d0;
}

/* Empty State */

.as-empty-state {
    text-align: center;
    padding: 48px 24px;
}

.as-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.as-empty-state h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.as-empty-state p {
    color: #637381;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Scanning */

.as-scanning {
    text-align: center;
    padding: 48px 24px;
}

.as-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e8e8e8;
    border-top-color: #2E7D32;
    border-radius: 50%;
    animation: as-spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes as-spin {
    to { transform: rotate(360deg); }
}

.as-scanning p {
    color: #637381;
    font-size: 15px;
}

/* Status Grid */

.as-status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.as-stat-card {
    background: #f9fafb;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.as-stat-value {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.as-stat-label {
    font-size: 12px;
    color: #637381;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.as-stat-critical { color: #D32F2F; }
.as-stat-warning { color: #F9A825; }
.as-stat-passed { color: #2E7D32; }
.as-stat-neutral { color: #637381; }

/* Findings */

.as-findings-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.as-finding-item {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.as-finding-item:last-child {
    border-bottom: none;
}

.as-finding-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.as-finding-dot.critical { background: #D32F2F; }
.as-finding-dot.warning { background: #F9A825; }

.as-finding-name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
}

.as-finding-explanation {
    font-size: 13px;
    color: #637381;
    margin-top: 4px;
    line-height: 1.5;
}

.as-finding-fix {
    font-size: 13px;
    color: #2E7D32;
    margin-top: 6px;
    font-weight: 500;
}

/* Passed */

.as-passed-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.as-passed-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2E7D32;
    padding: 8px 12px;
    background: #E8F5E9;
    border-radius: 6px;
}

/* Upsell */

.as-upsell {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.as-upsell.no-risks {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.as-upsell h2 {
    color: #D32F2F;
    font-size: 20px;
    margin: 0 0 6px;
}

.as-upsell.no-risks h2 {
    color: #1a1a2e;
}

.as-upsell-sub {
    color: #637381;
    font-size: 15px;
    margin-bottom: 24px;
}

.as-upsell-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 48px;
    text-align: left;
    margin: 0 auto 28px;
    max-width: 600px;
}

.as-upsell-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1a1a2e;
}

.as-upsell-feature span {
    color: #2E7D32;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.as-upsell-price {
    font-size: 36px;
    font-weight: 800;
    color: #2E7D32;
    line-height: 1;
    margin-bottom: 8px;
}

.as-upsell-price-sub {
    font-size: 14px;
    color: #374151;
    font-weight: 600;
    margin: 0 0 20px;
}

.as-btn-upsell {
    background: #2E7D32;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.as-btn-upsell:hover {
    background: #1B5E20;
    color: #fff;
}

/* Deep Scan Success */

.as-deep-success {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.as-deep-success h2 {
    color: #2E7D32;
    margin-top: 0;
}

/* Actions */

.as-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

/* Scan Info */

.as-last-scan {
    font-size: 13px;
    color: #919eab;
    margin-top: 8px;
    text-align: center;
}

/* Error */

.as-error {
    background: #FFEBEE;
    border: 1px solid #EF9A9A;
    border-radius: 8px;
    padding: 16px;
    color: #C62828;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Disclaimer */

.as-disclaimer {
    background: #FFF8E1;
    border: 1px solid #FFE082;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 12px;
    color: #5D4037;
    line-height: 1.5;
    margin-top: 24px;
}

/* Responsive */

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

    .as-passed-list,
    .as-upsell-features {
        grid-template-columns: 1fr;
    }

    .as-header-inner {
        flex-wrap: wrap;
    }
}
