.rfq_page {
    --rfq-purple: #3e05b5;
    --rfq-purple-deep: #250074;
    --rfq-purple-soft: rgba(62, 5, 181, .12);
    --rfq-yellow: #ffb400;
    --rfq-ink: #22242a;
    --rfq-muted: #7b8088;
    --rfq-field: #ffffff;
    --rfq-line: #d8dde7;
    --rfq-error: #b42318;
    background: #f2f3f5;
    color: var(--rfq-ink);
    font-family: var(--ThemesBodyFont), "Fira Sans", "Segoe UI", sans-serif;
}

.procurement_float_btn {
    display: none !important;
}

.rfq_page *,
.rfq_page *::before,
.rfq_page *::after {
    box-sizing: border-box;
}

.rfq_banner {
    position: relative;
    min-height: 212px;
    overflow: hidden;
    background: url("/common/widgets/cusvis_mode/poster/mode_116/images/bg_default.webp") center / cover no-repeat;
}

.rfq_banner_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(66, 0, 190, .86), rgba(105, 0, 220, .74));
    mix-blend-mode: multiply;
}

.rfq_form_shell {
    padding: 0 20px 78px;
    background: #f2f3f5;
}

.rfq_form_card {
    width: min(760px, 100%);
    margin: -36px auto 0;
    padding: 34px 42px 36px;
    border: 1px solid rgba(216, 221, 231, .86);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 58px rgba(37, 0, 116, .08);
    position: relative;
    z-index: 2;
}

.rfq_form_intro {
    text-align: center;
    color: var(--rfq-purple);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.rfq_form_card h1 {
    margin: 0;
    text-align: center;
    color: var(--rfq-ink);
    font-size: 36px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: 0;
}

.rfq_form_subtitle {
    max-width: 520px;
    margin: 10px auto 24px;
    color: var(--rfq-muted);
    font-size: 15px;
    line-height: 1.55;
    text-align: center;
}

.rfq_field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
    min-width: 0;
}

.rfq_field_full {
    width: 100%;
}

.rfq_field span {
    color: #4f5663;
    font-size: 13.5px;
    font-weight: 700;
}

.rfq_field input,
.rfq_field select,
.rfq_field textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--rfq-line);
    border-radius: 7px;
    background: var(--rfq-field);
    color: var(--rfq-ink);
    font-size: 14px;
    line-height: 1.45;
    padding: 11px 14px;
    outline: none;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.rfq_field textarea {
    height: 124px;
    min-height: 112px;
    resize: vertical;
}

.rfq_field input:focus,
.rfq_field select:focus,
.rfq_field textarea:focus {
    border-color: var(--rfq-purple);
    background: #fff;
    box-shadow: 0 0 0 3px var(--rfq-purple-soft);
}

.rfq_field input:hover,
.rfq_field select:hover,
.rfq_field textarea:hover {
    border-color: #b9c0cc;
}

.rfq_contact_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.rfq_card_section {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
    margin: 8px 0 12px;
    padding-top: 2px;
}

.rfq_card_section h3 {
    margin: 0;
    color: var(--rfq-ink);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
}

.rfq_card_section p {
    margin: 6px 0 0;
    color: #8a8e96;
    font-size: 13px;
}

.rfq_consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 5px;
    color: #626873;
    font-size: 13px;
    line-height: 1.55;
}

.rfq_consent input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    flex: 0 0 auto;
}

.rfq_actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 12px;
}

.rfq_submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    height: 48px;
    padding: 0 28px;
    border: 0;
    border-radius: 24px;
    background: var(--rfq-purple);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
    transition: background .16s ease, box-shadow .16s ease, transform .16s ease;
}

.rfq_submit:hover {
    background: var(--rfq-purple-deep);
    box-shadow: 0 12px 24px rgba(62, 5, 181, .22);
    transform: translateY(-1px);
}

.rfq_submit:disabled {
    cursor: default;
    opacity: .74;
    transform: none;
    box-shadow: none;
}

.rfq_status {
    min-height: 20px;
    margin: 0;
    color: var(--rfq-muted);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.rfq_status.is_success {
    color: var(--rfq-purple);
    font-weight: 700;
}

.rfq_status.is_error {
    color: var(--rfq-error);
    font-weight: 700;
}

.rfq_field_error {
    min-height: 15px;
    color: var(--rfq-error);
    font-size: 12px;
    font-style: normal;
    line-height: 1.25;
}

.rfq_field.is_error input,
.rfq_field.is_error textarea,
.rfq_field.is_error select {
    background: #fff2f2;
    border-color: rgba(180, 35, 24, .72);
    box-shadow: 0 0 0 3px rgba(180, 35, 24, .08);
}

@media (max-width: 768px) {
    .rfq_banner {
        min-height: 184px;
    }

    .rfq_form_shell {
        padding: 0 12px 54px;
    }

    .rfq_form_card {
        margin-top: -24px;
        padding: 28px 18px 32px;
        border-radius: 22px;
    }

    .rfq_form_card h1 {
        font-size: 31px;
    }

    .rfq_form_subtitle {
        margin-bottom: 24px;
        font-size: 14px;
    }

    .rfq_contact_grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rfq_submit {
        width: 100%;
        min-height: 50px;
    }
}

@media (min-width: 1600px) {
    .rfq_banner {
        min-height: 224px;
    }

    .rfq_form_card {
        margin-top: -36px;
    }
}
