.cta-button {
    position: fixed;
    right: 0;
    top: 80%;
    transform: translateY(-50%);
    z-index: 100;
}

.cta-button__link {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 182px;
    height: 64px;
    padding: 0 18px;
    border-radius: 18px 0 0 18px;
    background: linear-gradient(180deg, #C05FC2 0%, #8D2A8F 100%);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.cta-button__text {
    display: flex;
    flex-direction: column;
    font-family: Manrope, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    white-space: nowrap;
}

.cta-button__link:hover {
    transform: translateX(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.cta-button__icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

/* ── TABLET (577px – 1024px) ─────────────────────────────────────── */
@media (min-width: 577px) and (max-width: 1024px) {
    .cta-button {
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .cta-button__link {
        width: 152px;
        height: 54px;
        padding: 10px 16px;
        gap: 10px;
        border-radius: 10px 0 0 10px;
        justify-content: center;
        font-size: 14px;
    }

    .cta-button__icon {
        width: 28px;
        height: 28px;
    }

    .cta-button__text {
        font-size: 14px;
        line-height: 17px;
    }
}

/* ── MOBILE (≤ 576px) ────────────────────────────────────────────── */
@media (max-width: 576px) {
    .cta-button {
        top: 88%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
    }

    .cta-button__link {
        width: 152px;
        height: 54px;
        padding: 10px 16px;
        gap: 10px;
        border-radius: 10px 0 0 10px;
        justify-content: center;
        font-size: 14px;
    }

    .cta-button__icon {
        width: 28px;
        height: 28px;
    }

    .cta-button__text {
        font-size: 14px;
        line-height: 17px;
    }
}