/* Telegram support link — landing page */
.voltera-support-chat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99990;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.voltera-support-chat__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 18px 0 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #229ed9 0%, #0088cc 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(0, 136, 204, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.voltera-support-chat__link:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 136, 204, 0.4);
}

.voltera-support-chat__link svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
    flex-shrink: 0;
}

.voltera-support-chat__label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

@media (max-width: 767px) {
    .voltera-support-chat {
        right: 16px;
        bottom: 16px;
    }

    .voltera-support-chat__link {
        min-height: 54px;
        padding-right: 16px;
    }

    .voltera-support-chat__label {
        font-size: 0.9rem;
    }
}

@media (max-width: 420px) {
    .voltera-support-chat__label {
        display: none;
    }

    .voltera-support-chat__link {
        width: 54px;
        height: 54px;
        min-height: 54px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}
