.survey-popup {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 280px;
    padding: 18px;
    background: rgba(252, 252, 253, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    display: none;
    z-index: 5;
    animation: popupIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: #1d1d1f;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #8e8e93;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.popup-close:hover {
    background: #f2f2f2;
    color: #1d1d1f;
}

.popup-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6e6e73;
    margin-bottom: 14px;
}

.survey-popup h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.survey-popup p {
    margin: 8px 0 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #6e6e73;
}

.survey-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #007aff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: 0.2s;
}

.survey-link span {
    transition: 0.2s;
}

.survey-link:hover {
    color: #0066d6;
}

.survey-link:hover span {
    transform: translateX(3px);
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@media all and (max-width: 768px) {
    .survey-popup {
        bottom: 70px;
    }
}