.msp-support-box {
    margin: 30px 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.msp-box-header {
    background: #dc2626;
    padding: 28px 24px;
    text-align: center;
}

.msp-header-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msp-header-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.msp-header-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px 0;
}

.msp-header-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.95);
    margin: 0;
}

.msp-box-body {
    padding: 0;
}

.msp-social-proof {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: #fef2f2;
    border-bottom: 1px solid #fee2e2;
}

.msp-proof-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.msp-proof-number {
    font-size: 28px;
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
}

.msp-proof-text {
    font-size: 12px;
    color: #6b7280;
    max-width: 70px;
    line-height: 1.3;
}

.msp-proof-trust {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #059669;
    font-weight: 600;
}

.msp-proof-trust svg {
    width: 16px;
    height: 16px;
}

.msp-form-section {
    padding: 24px;
}

.msp-input-group {
    margin-bottom: 12px;
}

.msp-form-input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #fafafa;
    color: #1f2937;
    direction: rtl;
    font-weight: 500;
}

.msp-form-input:focus {
    outline: none;
    border-color: #dc2626;
    background: #fff;
}

.msp-form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.msp-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(220,38,38,0.3);
}

.msp-submit-btn:hover {
    background: #b91c1c;
}

.msp-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.msp-submit-btn svg {
    width: 20px;
    height: 20px;
}

.msp-loader {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.msp-message {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.msp-message.success {
    background: #f0fdf4;
    color: #166534;
    border: 2px solid #86efac;
}

.msp-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 2px solid #fca5a5;
}

@media (max-width: 768px) {
    .msp-box-header {
        padding: 24px 20px;
    }
    
    .msp-header-title {
        font-size: 22px;
    }
    
    .msp-social-proof {
        flex-direction: column;
        gap: 10px;
        padding: 14px 20px;
    }
    
    .msp-proof-badge {
        width: 100%;
        justify-content: center;
    }
    
    .msp-form-section {
        padding: 20px;
    }
}

.msp-widget {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
}

.msp-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}
