.cta-btn-wrapper {
    display: inline-block;
    box-sizing: border-box;
}

.cta-btn-wrapper.cta-btn-floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
}

.cta-btn-element {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s ease;
    cursor: pointer;
    line-height: 1.2;
}

.cta-btn-element:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn-element:active {
    transform: translateY(-1px) scale(0.98);
}

.cta-btn-arrow {
    transition: transform 0.2s ease;
}

.cta-btn-element:hover .cta-btn-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .cta-btn-wrapper.cta-btn-floating {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }
    
    .cta-btn-wrapper.cta-btn-floating .cta-btn-element {
        width: 100%;
        text-align: center;
    }
}
