.social-proof-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--bg-card, #1a2a44);
    border: 1px solid var(--border-color, #233554);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 320px;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    pointer-events: auto;
}

.social-proof-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.social-proof-icon {
    width: 24px;
    height: 24px;
    background: rgba(39, 174, 96, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #27ae60;
    flex-shrink: 0;
}

.social-proof-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.social-proof-content {
    flex-grow: 1;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-secondary, #94a3b8);
}

.social-proof-name {
    font-weight: 600;
    color: var(--text-primary, #e2e8f0);
}

.social-proof-plan {
    color: var(--primary-color, #3b82f6);
    font-weight: 500;
}

.social-proof-close {
    background: none;
    border: none;
    color: var(--text-muted, #64748b);
    cursor: pointer;
    padding: 4px;
    margin: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.social-proof-close:hover {
    color: var(--text-primary, #e2e8f0);
}

.social-proof-close svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* Mobile adjustments to avoid blocking buttons */
@media (max-width: 768px) {
    .social-proof-toast {
        bottom: 80px;
        /* Above standard mobile bottom nav / CTA buttons */
        left: 12px;
        right: 12px;
        max-width: calc(100% - 24px);
        margin: 0 auto;
    }
}