.service-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    background: #fff;
    border-top: 1px solid #d3d4d6;
    box-shadow: 0 -8px 24px -12px rgba(15, 23, 42, 0.08);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .45s cubic-bezier(.16,1,.3,1), opacity .35s ease, visibility .35s ease;
    pointer-events: none;
}
.service-sticky-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.service-sticky-bar__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 28px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.service-sticky-bar__left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex-shrink: 1;
}
.service-sticky-bar__icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service-sticky-bar__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-sticky-bar__text {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.service-sticky-bar__text strong {
    font-weight: 600;
    color: #0a0a0a;
}
.service-sticky-bar__divider {
    display: inline-block;
    width: 1px;
    height: 15px;
    background: #d3d4d6;
    flex-shrink: 0;
}
.service-sticky-bar__right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.service-sticky-bar__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 150px;
    padding: 11px 22px;
    border-radius: 6px;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .18s ease, opacity .18s ease, background .18s ease, color .18s ease;
    white-space: nowrap;
}
.service-sticky-bar__btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.service-sticky-bar__btn--primary {
    color: #1a1a1a;
    background-color: #f1f3f5;
    border-color: #e5e7eb;
}
.service-sticky-bar__btn--primary:hover {
    color: #0a0a0a;
    background-color: #e7eaee;
    border-color: #d3d4d6;
}
.service-sticky-bar__btn--dark {
    color: #fff;
    background-color: #0a0a0a;
}
.service-sticky-bar__btn--dark:hover {
    color: #fff;
    background-color: #1a1a1a;
}

@media (max-width: 1023px) {
    .service-sticky-bar__container { padding-right: 96px; }
}
@media (max-width: 820px) {
    .service-sticky-bar__container {
        padding: 12px 18px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        padding-right: 84px;
        gap: 12px;
    }
    .service-sticky-bar__icon { display: none; }
    .service-sticky-bar__text { font-size: 13.5px; }
    .service-sticky-bar__btn {
        min-width: auto;
        padding: 9px 16px;
        font-size: 13.5px;
    }
    /* Drop the second text + divider so the service name has room */
    .service-sticky-bar__divider,
    .service-sticky-bar__left .service-sticky-bar__text + .service-sticky-bar__text { display: none; }
    /* Drop the secondary CTA, keep only the strong dark "Book a demo" */
    .service-sticky-bar__btn--primary { display: none; }
    .service-sticky-bar__container { gap: 10px; }
}
@media (max-width: 480px) {
    /* Hide everything except the dark CTA on very small screens */
    .service-sticky-bar__left { display: none; }
    .service-sticky-bar__container {
        justify-content: flex-end;
        padding-right: 80px;
    }
}

@media print { .service-sticky-bar { display: none !important; } }

body.service-sticky-bar-active { padding-bottom: 88px; }
@media (max-width: 768px) { body.service-sticky-bar-active { padding-bottom: 72px; } }
