/* SEO Analyzer Pro — Sidebar Widget */
.sa-widget {
    background: linear-gradient(160deg, #0f2340 0%, #14305a 60%, #1a3a6e 100%);
    border-radius: 14px;
    padding: 1.6rem 1.4rem;
    color: #E8F0F8;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(92,184,92,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.sa-widget::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(92,184,92,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.sa-widget__badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(92,184,92,0.12);
    border: 1px solid rgba(92,184,92,0.3);
    color: #7ed17e;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px; border-radius: 100px;
    margin-bottom: 1rem;
}

.sa-widget__badge-dot {
    width: 6px; height: 6px;
    background: #5cb85c; border-radius: 50%;
    animation: sawdot 2s ease-in-out infinite;
}
@keyframes sawdot { 0%,100%{opacity:1} 50%{opacity:.4} }

.sa-widget__icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, #5cb85c, #3da83d);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(92,184,92,0.35);
}

.sa-widget__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 0.6rem;
}

.sa-widget__title span {
    background: linear-gradient(135deg, #5cb85c, #7ed17e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sa-widget__desc {
    font-size: 0.83rem;
    color: #a8c0d8;
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.sa-widget__stats {
    display: flex;
    gap: 0;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 0.7rem 0;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255,255,255,0.06);
}

.sa-widget__stat {
    flex: 1;
    text-align: center;
    padding: 0 0.5rem;
}

.sa-widget__stat + .sa-widget__stat {
    border-left: 1px solid rgba(255,255,255,0.08);
}

.sa-widget__stat-num {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #5cb85c;
    line-height: 1;
    margin-bottom: 3px;
}

.sa-widget__stat-lbl {
    display: block;
    font-size: 0.65rem;
    color: #7a96b8;
    font-weight: 500;
}

.sa-widget__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: linear-gradient(135deg, #5cb85c 0%, #3da83d 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(92,184,92,0.4);
    font-family: inherit;
}

.sa-widget__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(92,184,92,0.5);
    color: #fff;
    text-decoration: none;
}

.sa-widget__btn i {
    font-size: 0.95rem;
}

.sa-widget__note {
    text-align: center;
    font-size: 0.72rem;
    color: #7a96b8;
    margin-top: 0.75rem;
}

.sa-widget__note i {
    color: #5cb85c;
    margin-right: 3px;
}

.sa-widget__features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.sa-widget__feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #a8c0d8;
}

.sa-widget__feature i {
    color: #5cb85c;
    font-size: 0.75rem;
    flex-shrink: 0;
    width: 14px;
}
