.contact-contact form[data-contact-feedback] .agentstep-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 16px 20px !important;
    font-family: inherit;
    font-size: 16px !important;
    line-height: 24px !important;
    letter-spacing: 0 !important;
    font-weight: 600 !important;
    opacity: 1;
    transition: background-color 160ms ease, box-shadow 160ms ease, transform 100ms ease;
    -webkit-appearance: none;
}
.contact-contact form[data-contact-feedback] .agentstep-submit-button:hover:not(:disabled) {
    background: #1b189b !important;
}
.contact-contact form[data-contact-feedback] .agentstep-submit-button:active:not(:disabled) {
    transform: translateY(1px);
}
.contact-contact form[data-contact-feedback] .agentstep-submit-button:focus-visible {
    outline: 3px solid #2320bf !important;
    outline-offset: 4px;
}
.contact-contact form[data-contact-state="sending"] .agentstep-submit-button {
    background: #343194 !important;
    cursor: wait;
}
.contact-contact form[data-contact-state="sent"] .agentstep-submit-button {
    background: #167347 !important;
    cursor: default;
}
.agentstep-submit-icon {
    display: none;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
}
form[data-contact-state="sending"] .agentstep-submit-icon {
    display: block;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: agentstep-contact-spin 800ms linear infinite;
}
form[data-contact-state="sent"] .agentstep-submit-icon {
    display: block;
    background: currentColor;
    -webkit-mask: url('circle-check.svg') center / contain no-repeat;
    mask: url('circle-check.svg') center / contain no-repeat;
}
.contact-contact form[data-contact-feedback] .wpcf7-response-output {
    display: none !important;
}
.contact-contact .agentstep-contact-feedback {
    margin-top: 16px;
    padding: 16px 18px;
    border: 1px solid #d8d9e4;
    border-radius: 8px;
    background: #f0f0fa;
    color: #33304f;
    overflow-wrap: anywhere;
    scroll-margin: 100px 0 24px;
    letter-spacing: 0;
}
.contact-contact .agentstep-contact-feedback[hidden] { display: none; }
.contact-contact .agentstep-contact-feedback strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0;
}
.contact-contact .agentstep-contact-feedback p {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0;
    color: inherit;
}
.contact-contact .agentstep-contact-feedback[data-state="sent"] {
    background: #edf8f1;
    border-color: #b6d9c4;
    color: #165c39;
}
.contact-contact .agentstep-contact-feedback[data-state="error"] {
    background: #fff2f2;
    border-color: #e9bcbc;
    color: #852929;
}
.contact-contact .agentstep-contact-feedback[data-state="waiting"] {
    background: #fff9ed;
    border-color: #e4cf9d;
    color: #695318;
}
@keyframes agentstep-contact-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
    .contact-contact form[data-contact-feedback] .agentstep-submit-button { transition: none; }
    form[data-contact-state="sending"] .agentstep-submit-icon { animation: none; }
}
