/* плавающая кнопка CTA на услугах. Перенесено из инлайна шаблона buhgalter.ftp.md. */

#floating-cta-wrap {
        position: fixed;
        bottom: 32px;
        right: 28px;
        z-index: 9999;
    }

    #floating-cta-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        background: var(--theme-color, #196164);
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 13px 22px 13px 18px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
        transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
        white-space: nowrap;
        font-family: inherit;
    }

    #floating-cta-btn:hover {
        background: var(--title-color, #0c2858);
        transform: translateY(-3px);
        box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
    }

    #floating-cta-btn .float-cta-icon {
        font-size: 18px;
        line-height: 1;
        flex-shrink: 0;
    }

    /* On small screens — show only icon */
    @media (max-width: 480px) {
        #floating-cta-btn .float-cta-text {
            display: none;
        }
        #floating-cta-btn {
            padding: 14px;
            border-radius: 50%;
            width: 52px;
            height: 52px;
            justify-content: center;
        }
    }
