#gescb-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99999;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

#gescb-sticky-bar.gescb-position-top {
    top: 0;
}

#gescb-sticky-bar.gescb-position-bottom {
    bottom: 0;
}

#gescb-sticky-bar .gescb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(7, 11, 22, 0.96), rgba(16, 25, 46, 0.94));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#gescb-sticky-bar .gescb-content {
    flex: 1 1 auto;
    min-width: 0;
}

#gescb-sticky-bar .gescb-text {
    display: inline-block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    word-break: break-word;
}

#gescb-sticky-bar .gescb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.18));
}

#gescb-sticky-bar .gescb-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

#gescb-sticky-bar .gescb-btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    transition: all 0.2s ease;
}

#gescb-sticky-bar .gescb-btn-primary,
#gescb-sticky-bar .gescb-btn-submit {
    background: linear-gradient(135deg, #4f8cff, #7b5cff);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(79, 140, 255, 0.28);
}

#gescb-sticky-bar .gescb-btn-primary:hover,
#gescb-sticky-bar .gescb-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(79, 140, 255, 0.35);
}

#gescb-sticky-bar .gescb-close,
.gescb-lead-close {
    appearance: none;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

#gescb-sticky-bar .gescb-close:hover,
.gescb-lead-close:hover {
    background: rgba(255, 255, 255, 0.14);
}

.gescb-lead-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
}

.gescb-lead-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 16, 0.68);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.gescb-lead-box {
    position: relative;
    z-index: 2;
    width: min(92%, 460px);
    margin: 8vh auto 0;
    background: linear-gradient(135deg, #0b1220, #141d33);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
    padding: 22px;
}

.gescb-lead-box h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
    color: #ffffff;
}

.gescb-lead-box p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.5;
}

.gescb-field {
    margin-bottom: 14px;
}

.gescb-field label {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.gescb-field input {
    width: 100%;
    box-sizing: border-box;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.gescb-field input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.gescb-field input:focus {
    border-color: rgba(123, 92, 255, 0.7);
    box-shadow: 0 0 0 3px rgba(123, 92, 255, 0.16);
}

.gescb-form-response {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.gescb-form-response.gescb-success {
    color: #8ef0b0;
}

.gescb-form-response.gescb-error {
    color: #ff9d9d;
}

.gescb-icon.pulse {
    animation: gescbPulse 1.6s infinite;
}

.gescb-icon.bounce {
    animation: gescbBounce 1.5s infinite;
}

@keyframes gescbPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.14); }
    100% { transform: scale(1); }
}

@keyframes gescbBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@media (max-width: 767px) {
    #gescb-sticky-bar .gescb-inner {
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 12px 14px;
    }

    #gescb-sticky-bar .gescb-content {
        width: 100%;
        order: 1;
    }

    #gescb-sticky-bar .gescb-actions {
        width: 100%;
        order: 3;
        justify-content: space-between;
    }

    #gescb-sticky-bar .gescb-icon {
        order: 2;
    }

    #gescb-sticky-bar .gescb-btn {
        flex: 1 1 auto;
    }

    .gescb-lead-box {
        margin-top: 6vh;
        padding: 18px;
        border-radius: 16px;
    }

    .gescb-lead-box h3 {
        font-size: 21px;
    }
}




.gescb-question-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.gescb-question-options .gescb-btn {
    width: 100%;
    justify-content: center;
}

.gescb-step {
    transition: all 0.2s ease;
}

.gescb-form-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.gescb-form-buttons .gescb-btn {
    flex: 1 1 auto;
}


#gescb-step-answer {
    text-align: left;
}

#gescb-short-answer-text {
    margin-top: 10px;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
}