/* ==========================================================================
   COMPONENT: floating-cta
   --------------------------------------------------------------------------
   Sticky CTA button that appears in the bottom-right after the user scrolls
   past the hero. Visibility is toggled by adding/removing .e-floating-cta--visible.
   ========================================================================== */

/* Mirror of legacy `.floating-cta-wrapper` + `.floating-cta` (style.css
   389-424). bottom/right 25px constant, no responsive shift. */

.e-floating-cta-wrap {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, bottom 0.35s ease;
}

.e-floating-cta-wrap::before {
    content: "";
    position: absolute;
    inset: -25px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
}

.e-floating-cta-wrap--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.e-floating-cta {
    position: relative;
    z-index: 1;
}
