.dc-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1), opacity .45s ease, visibility .45s;
}

.dc-sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dc-sticky-cta__handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: -1px;
    padding: 7px 20px;
    border: none;
    border-radius: 14px 14px 0 0;
    background: #032038;
    color: #fff;
    font: 700 12px/1 'DM Sans', sans-serif;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
}

.dc-sticky-cta__handle svg {
    width: 14px;
    height: 14px;
    transition: transform .3s ease;
}

.dc-sticky-cta.is-collapsed .dc-sticky-cta__handle svg {
    transform: rotate(180deg);
}

.dc-sticky-cta__body {
    width: 100%;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    border-top: 1px solid #e5e9ef;
    box-shadow: 0 -10px 35px rgba(3, 32, 56, .14);
    max-height: 200px;
    overflow: hidden;
    transition: max-height .4s ease, opacity .35s ease;
}

.dc-sticky-cta.is-collapsed .dc-sticky-cta__body {
    max-height: 0;
    opacity: 0;
}

.dc-sticky-cta__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 12px 30px;
}

.dc-sticky-cta__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.dc-sticky-cta__logo img {
    height: 42px;
    width: auto;
    display: block;
}

.dc-sticky-cta__contact {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.dc-sticky-cta__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #032038;
    text-decoration: none;
    font: 700 14.5px/1 'DM Sans', sans-serif;
    white-space: nowrap;
    transition: color .2s ease;
}

.dc-sticky-cta__contact-item:hover {
    color: #ef7a17;
}

.dc-sticky-cta__contact-item svg {
    width: 18px;
    height: 18px;
    color: #ef7a17;
    flex-shrink: 0;
}

.dc-sticky-cta__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.dc-sticky-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 24px;
    border-radius: 12px;
    font: 700 14.5px/1 'DM Sans', sans-serif;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.dc-sticky-cta__btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.dc-sticky-cta__btn--quote {
    color: #fff;
    background: linear-gradient(135deg, #ef7a17, #ff9a44);
    box-shadow: 0 10px 24px rgba(239, 122, 23, .35);
}

.dc-sticky-cta__btn--quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(239, 122, 23, .45);
}

.dc-sticky-cta__btn--wa {
    color: #fff;
    background: #25d366;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .32);
}

.dc-sticky-cta__btn--wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, .42);
}

@media (max-width: 1024px) {
    .dc-sticky-cta__contact-item--email {
        display: none;
    }
}

@media (max-width: 768px) {
    .dc-sticky-cta__inner {
        gap: 14px;
        padding: 10px 16px;
    }

    .dc-sticky-cta__logo,
    .dc-sticky-cta__contact {
        display: none;
    }

    .dc-sticky-cta__actions {
        width: 100%;
        margin-left: 0;
        gap: 10px;
    }

    .dc-sticky-cta__btn {
        flex: 1;
        justify-content: center;
        padding: 13px 14px;
        font-size: 14px;
    }

    .dc-sticky-cta__handle span {
        display: none;
    }

    .dc-sticky-cta__handle {
        padding: 7px 26px;
    }
}
