.b9-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--background-color);
    color: var(--white-color);
    padding: 2rem 0 4.75rem;
}

.b9-grid-lines {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(71.875rem, calc(100% - 3rem));
    z-index: -2;
    transform: translateX(-50%);
    pointer-events: none;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 33.3% 100%;
    background-position: center top;
}

.b9-inner {
    position: relative;
    width: min(71.875rem, calc(100% - 3rem));
    margin: 0 auto;
}

.b9-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    margin-bottom: 6.875rem;
}

.b9-heading #b2-brand {
    width: 100%;
    max-width: 20.3125rem;
}

.b9-heading h2 {
    margin: 0;
    color: var(--white-color);
    font-family: var(--primary-font);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.b9-watermark {
    position: absolute;
    left: -21rem;
    top: 4.25rem;
    z-index: -1;
    margin: 0;
    color: rgba(255, 255, 255, 0.035);
    font-family: var(--primary-font);
    font-size: 10.625rem;
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    pointer-events: none;
    user-select: none;
}

.b9-content {
    display: grid;
    grid-template-columns: 19.375rem minmax(0, 40rem);
    gap: 5.75rem;
    justify-content: center;
    align-items: start;
}

.b9-info,
.b9-form-side {
    position: relative;
}

.b9-icon-placeholder {
    width: 1.375rem;
    height: 1.375rem;
    border: 0.125rem solid var(--primary-color);
    opacity: 0.9;
}

.b9-icon-building {
    margin: 0 auto 1.5rem 0rem;
}

.b9-icon-mail {
    margin: 0 0 1.5rem 0.25rem;
}

.b9-icon-phone {
    flex: 0 0 auto;
    border-radius: 50%;
}

.b9-data {
    display: grid;
    gap: 1.25rem;
    margin: 0 0 3.5rem;
    color: var(--white-color);
    font-family: var(--secondary-font);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 10%;
}

.b9-data div {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 2rem;
}

.b9-data dt,
.b9-data dd {
    margin: 0;
    font-weight: 400;
}

.b9-data dt {
    text-align: right;
}

.b9-phone-block {
    display: flex;
    align-items: flex-start;
    gap: 4.875rem;
}

.b9-phones {
    display: grid;
    gap: 1.45rem;
}

.b9-phones a {
    color: var(--white-color);
    font-family: var(--secondary-font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.b9-form {
    display: grid;
    gap: 1.5rem;
}

.b9-field {
    display: block;
    margin: 0;
}

.b9-field input,
.b9-field textarea {
    display: block;
    width: 100%;
    border: 0;
    outline: 0;
    background: #333333;
    color: var(--white-color);
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    padding: 1.25rem 1.625rem;
    box-shadow: inset 0 0 0 1px transparent;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.b9-field input {
    min-height: 4rem;
}

.b9-field textarea {
    min-height: 10.625rem;
    resize: vertical;
}

.b9-field input::placeholder,
.b9-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
    transition: color 0.2s ease;
}

.b9-field input:hover,
.b9-field textarea:hover {
    background: #383838;
}

.b9-field input:focus,
.b9-field textarea:focus,
.b9-field input:focus-visible,
.b9-field textarea:focus-visible {
    background: #3a3a3a;
    box-shadow: inset 0 0 0 1px rgba(197, 164, 126, 0.72), 0 0 0 0.25rem rgba(197, 164, 126, 0.08);
}

.b9-field input:focus::placeholder,
.b9-field textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.54);
}

.b9-honey {
    position: absolute;
    left: -9999rem;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.b9-submit-row {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.625rem;
}

.b9-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11rem;
    min-height: 2.5rem;
    border: 0;
    background: #4b4b4b;
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px transparent;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.b9-submit:hover,
.b9-submit:focus-visible {
    background: var(--primary-color);
    color: #272727;
    box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.2);
    transform: translateY(-0.125rem);
}

.b9-submit:active {
    transform: translateY(0);
    box-shadow: 0 0.35rem 0.9rem rgba(0, 0, 0, 0.18);
}

.b9-submit-icon {
    display: none;
}

.b9-submit:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

.b9-feedback {
    min-height: 3.125rem;
    display: flex;
    justify-content: flex-end;
}

.b9-feedback .wpr-form-feedback {
    position: relative;
    width: min(18rem, 100%);
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    font-family: var(--primary-font);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 0.375rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.16);
}

.b9-feedback .wpr-form-feedback::before {
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 1rem;
    height: 1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transform: translateY(-50%);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
}

.b9-feedback .wpr-success-msg {
    color: #dff5df;
    background: rgba(35, 91, 54, 0.94);
    border: 1px solid rgba(148, 216, 160, 0.34);
}

.b9-feedback .wpr-success-msg::before {
    content: "✓";
    color: #235b36;
    background: #dff5df;
}

.b9-feedback .wpr-error-msg {
    color: #ffe1e1;
    background: rgba(120, 43, 43, 0.94);
    border: 1px solid rgba(255, 143, 143, 0.35);
}

.b9-feedback .wpr-error-msg::before {
    content: "!";
    color: #782b2b;
    background: #ffe1e1;
}

.b9-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1199px) {
    .b9-inner,
    .b9-grid-lines {
        width: min(53.75rem, calc(100% - 2.5rem));
    }

    .b9-content {
        grid-template-columns: 17rem minmax(0, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    .b9-heading {
        margin-bottom: 3.5rem;
    }

    .b9-heading h2 {
        font-size: 2.5rem;
    }

    .b9-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .b9-phone-block {
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .b9-section {
        padding: 2rem 0 3.5rem;
    }

    .b9-inner,
    .b9-grid-lines {
        width: min(35rem, calc(100% - 2rem));
    }

    .b9-heading {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .b9-heading #b2-brand {
        max-width: 17rem;
    }

    .b9-heading h2 {
        font-size: 2rem;
    }

    .b9-watermark {
        left: 0rem;
        top: 6rem;
        font-size: 6rem;
    }

    .b9-data div {
        grid-template-columns: 5rem 1fr;
        gap: 3rem;
    }

    .b9-data dt {
        text-align: right;
    }

    .b9-data,
    .b9-phones a,
    .b9-field input,
    .b9-field textarea,
    .b9-submit {
        font-size: 1.25rem;
    }

    .b9-feedback .wpr-form-feedback {
        font-size: 1.15rem;
    }

    .b9-submit-row {
        justify-content: stretch;
    }

    .b9-submit {
        width: 100%;
    }
}

@media (max-width: 479px) {
    .b9-inner,
    .b9-grid-lines {
        width: calc(100% - 1.75rem);
    }

    .b9-heading h2 {
        font-size: 1.65rem;
    }

    .b9-field input,
    .b9-field textarea {
        font-size: 1.4rem;
        padding: 1rem;
    }

    .b9-data,
    .b9-phones a,
    .b9-submit {
        font-size: 1.4rem;
    }

    .b9-feedback .wpr-form-feedback {
        font-size: 1.3rem;
    }
}
