.sb-contact {
    --sb-line: rgba(255, 255, 255, 0.08);
    --sb-line-2: rgba(255, 255, 255, 0.14);
    --sb-text: #e7e3df;
    --sb-text-soft: #8b857f;
    --sb-text-muted: #b8aea4;
    --sb-accent: #ff7a1a;
    --sb-max: 1180px;
    background: transparent;
    color: var(--sb-text);
    padding: 0;
    font-family: Barlow, Arial, sans-serif;
    background: #171717 !important;
}

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

.sb-contact__container {
    width: 100%;
    margin: 0 auto;
    background: #171717;
}

.sb-contact__intro {
    width: min(100%, 960px);
}

.sb-contact__group {
    width: 100%;
}

.sb-contact__group--split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.sb-contact__notice {
    margin: 0 0 24px;
    padding: 14px 16px;
    border: 1px solid var(--sb-line-2);
    font-size: 14px;
}

.sb-contact__notice--success {
    border-color: rgba(56, 142, 60, 0.45);
    color: #cfe9d1;
    background: rgba(56, 142, 60, 0.08);
}

.sb-contact__notice--error {
    border-color: rgba(220, 38, 38, 0.45);
    color: #f2c2c2;
    background: rgba(220, 38, 38, 0.08);
}

.sb-contact__form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.sb-contact__field label {
    display: block;
    margin-bottom: 12px;
    color: var(--sb-text-soft);
    font-family: "Barlow Condensed", Barlow, Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sb-contact__field {
    width: 100%;
}

.sb-contact__field input,
.sb-contact__field select,
.sb-contact__field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #2a2a31;
    background: transparent;
    color: #d8d3cf;
    padding: 16px 0 14px;
    outline: none;
    border-radius: 0;
    box-shadow: none;
    font-size: 18px;
    line-height: 1.35;
    font: inherit;
}

.sb-contact__field input::placeholder,
.sb-contact__field textarea::placeholder {
    color: #666d77;
    font-size: 16px;
}

.sb-contact__field select {
    appearance: none;
    padding-right: 28px;
}

.sb-contact__field select option {
    background: #151518;
    color: #d8d3cf;
}

.sb-contact__select-wrap {
    position: relative;
    display: block;
}

.sb-contact__select-wrap::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid var(--sb-accent);
    border-bottom: 1.5px solid var(--sb-accent);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.sb-contact__field textarea {
    min-height: 190px;
    resize: vertical;
}

.sb-contact__field input:focus,
.sb-contact__field select:focus,
.sb-contact__field textarea:focus {
    border-color: rgba(255, 122, 26, 0.7);
}

.sb-contact__consent {
    margin-top: 2px;
}

.sb-contact__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--sb-text-soft);
    font-size: 14px;
    line-height: 1.6;
    max-width: 34ch;
}

.sb-contact__checkbox input {
    margin-top: 4px;
    accent-color: var(--sb-accent);
}

.sb-contact__checkbox a {
    color: var(--sb-accent);
    text-decoration: none;
}

.sb-contact__actions {
    padding-top: 10px;
}

.sb-contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 280px;
    min-height: 60px;
    padding: 18px 20px;
    border: 0;
    background: var(--sb-accent);
    color: #241201;
    font-family: "Barlow Condensed", Barlow, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease;
}

.sb-contact__button:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.sb-contact__button-arrow {
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 767px) {
    .sb-contact {
        padding: 0;
    }

    .sb-contact__container {
        padding: 0;
    }

    .sb-contact__form {
        gap: 24px;
    }

    .sb-contact__group--split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sb-contact__field input,
    .sb-contact__field select,
    .sb-contact__field textarea {
        font-size: 16px;
    }

    .sb-contact__button {
        width: 100%;
        min-width: 0;
    }
}
