.repair-offer {
    --offer-blue: #173f8f;
    --offer-light-blue: #087eff;
    --offer-orange: #ff7b18;
    --offer-dark: #101a35;
    --offer-muted: #465166;
    --offer-border: #dfe5ed;

    padding: 55px 0;
    background: #fff;
}

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

.repair-offer__payment,
.repair-offer__gift {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e2e6ec;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 6px 22px rgba(22, 41, 64, .06);
}

.repair-offer__payment {
    padding: 25px 25px 22px;
}

.repair-offer__section-title {
    margin: 0 0 12px;
    color: var(--offer-dark);
    font-size: 22px;
    line-height: 1.25;
}

.repair-offer__line {
    display: block;
    width: 31px;
    height: 3px;
    margin-bottom: 17px;
    border-radius: 3px;
    background: var(--offer-orange);
}

.repair-offer__section-subtitle {
    margin: 0 0 25px;
    color: var(--offer-muted);
    font-size: 13px;
    line-height: 1.5;
}

.repair-offer__payment-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 175px;
    align-items: stretch;
    gap: 24px;
}

.repair-offer__payment-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 0;
    list-style: none;
}

.repair-offer__payment-list li {
    display: flex;
    min-height: 49px;
    padding: 8px 0;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid #e8ebef;
    color: var(--offer-muted);
    font-size: 12px;
    line-height: 1.35;
}

.repair-offer__payment-list li:last-child {
    border-bottom: 0;
}

.repair-offer__payment-list svg {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--offer-blue);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.repair-offer__payment-note {
    display: flex;
    min-height: 220px;
    padding: 21px 12px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    text-align: center;
    background: linear-gradient(145deg, #f6f9fd, #edf3fb);
}

.repair-offer__payment-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 15px;
    color: var(--offer-blue);
}

.repair-offer__payment-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.repair-offer__payment-note strong {
    margin-bottom: 11px;
    color: var(--offer-dark);
    font-size: 17px;
    line-height: 1.3;
}

.repair-offer__payment-note span {
    color: var(--offer-muted);
    font-size: 11px;
    line-height: 1.4;
}

.repair-offer__gift {
    display: grid;
    grid-template-columns: minmax(290px, 1fr) minmax(180px, .78fr);
}

.repair-offer__gift-content {
    position: relative;
    z-index: 2;
    padding: 25px 15px 22px 22px;
}

.repair-offer__label {
    display: block;
    margin-bottom: 8px;
    color: var(--offer-orange);
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
}

.repair-offer__gift-title {
    margin: 0 0 14px;
    color: var(--offer-dark);
    font-size: 23px;
    line-height: 1.2;
}

.repair-offer__gift-description {
    margin: 0 0 17px;
    color: var(--offer-muted);
    font-size: 13px;
    line-height: 1.5;
}

.repair-offer__gift-list-title {
    display: block;
    margin-bottom: 8px;
    color: var(--offer-dark);
    font-size: 12px;
    text-transform: uppercase;
}

.repair-offer__gift-list {
    display: grid;
    margin: 0 0 17px;
    padding: 0;
    gap: 8px;
    list-style: none;
}

.repair-offer__gift-list li {
    position: relative;
    padding-left: 26px;
    color: var(--offer-muted);
    font-size: 12px;
    line-height: 1.3;
}

.repair-offer__gift-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1.5px solid var(--offer-blue);
    border-radius: 50%;
    content: "";
}

.repair-offer__gift-list li::after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 3px;
    border-bottom: 1.5px solid var(--offer-blue);
    border-left: 1.5px solid var(--offer-blue);
    content: "";
    transform: rotate(-45deg);
}

.repair-offer__gift-button {
    min-height: 38px;
    padding: 9px 21px;
    border: 1px solid var(--offer-orange);
    border-radius: 5px;
    color: var(--offer-dark);
    background: transparent;
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        color .2s ease,
        background-color .2s ease;
}

.repair-offer__gift-button:hover {
    color: #fff;
    background: var(--offer-orange);
}

.repair-offer__gift-image {
    position: relative;
    min-width: 0;
}

.repair-offer__gift-image::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -40px;
    z-index: 1;
    width: 80px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
    content: "";
}

.repair-offer__gift-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 366px;
    object-fit: cover;
    object-position: center;
}

.repair-offer__consultation {
    display: grid;
    margin-top: 18px;
    padding: 27px 28px 24px;
    grid-template-columns: 315px minmax(0, 1fr);
    gap: 30px;
    border-radius: 8px;
    background: linear-gradient(120deg, #f1f6fd, #f8faff 55%, #eef5fd);
}

.repair-offer__consultation-title {
    margin: 0 0 12px;
    color: var(--offer-blue);
    font-size: 21px;
    line-height: 1.22;
}

.repair-offer__consultation-info p {
    margin: 0;
    color: var(--offer-muted);
    font-size: 11px;
    line-height: 1.5;
}

.repair-offer__form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.repair-offer__field {
    position: relative;
    display: block;
}

.repair-offer__field svg {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 1;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--offer-blue);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: translateY(-50%);
    pointer-events: none;
}

.repair-offer__field input,
.repair-offer__field textarea {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #d9e1ec;
    border-radius: 4px;
    outline: 0;
    color: var(--offer-dark);
    background: rgba(255, 255, 255, .9);
    font-size: 12px;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.repair-offer__field input {
    height: 43px;
    padding: 0 13px 0 43px;
}

.repair-offer__field textarea {
    min-height: 70px;
    padding: 14px 13px 12px 43px;
    resize: vertical;
}

.repair-offer__field--message {
    grid-column: 1 / -1;
}

.repair-offer__field--message svg {
    top: 15px;
    transform: none;
}

.repair-offer__field input:focus,
.repair-offer__field textarea:focus {
    border-color: var(--offer-light-blue);
    box-shadow: 0 0 0 3px rgba(8, 126, 255, .1);
}

.repair-offer__form-bottom {
    display: flex;
    margin-top: 15px;
    align-items: center;
    gap: 28px;
}

.repair-offer__submit {
    min-height: 47px;
    padding: 13px 27px;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background: var(--offer-orange);
    box-shadow: 0 8px 20px rgba(255, 123, 24, .18);
    font-size: 11px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background-color .2s ease,
        transform .2s ease;
}

.repair-offer__submit:hover {
    background: #ed6808;
    transform: translateY(-2px);
}

.repair-offer__guarantee {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--offer-dark);
    font-size: 10px;
    line-height: 1.4;
}

.repair-offer__guarantee svg {
    flex: 0 0 29px;
    width: 29px;
    height: 29px;
    fill: none;
    stroke: var(--offer-blue);
    stroke-width: 1.7;
    stroke-linejoin: round;
}

@media (max-width: 1199px) {
    .repair-offer__payment-content {
        grid-template-columns: 1fr 150px;
        gap: 15px;
    }

    .repair-offer__gift {
        grid-template-columns: minmax(270px, 1fr) 160px;
    }

    .repair-offer__consultation {
        grid-template-columns: 270px minmax(0, 1fr);
    }
}

@media (max-width: 991px) {
    .repair-offer__top {
        grid-template-columns: 1fr;
    }

    .repair-offer__gift {
        grid-template-columns: minmax(310px, 1fr) minmax(220px, .7fr);
    }

    .repair-offer__consultation {
        grid-template-columns: 1fr;
    }

    .repair-offer__consultation-info p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .repair-offer {
        padding: 35px 0;
    }

    .repair-offer__payment {
        padding: 23px 20px;
    }

    .repair-offer__payment-content {
        grid-template-columns: 1fr;
    }

    .repair-offer__payment-note {
        min-height: 180px;
    }

    .repair-offer__gift {
        display: flex;
        flex-direction: column-reverse;
    }

    .repair-offer__gift-image {
        height: 280px;
    }

    .repair-offer__gift-image::before {
        top: auto;
        right: 0;
        bottom: -1px;
        left: 0;
        width: auto;
        height: 65px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
    }

    .repair-offer__gift-image img {
        min-height: 280px;
    }

    .repair-offer__gift-content {
        padding: 22px;
    }

    .repair-offer__gift-button {
        width: 100%;
    }

    .repair-offer__consultation {
        padding: 24px 20px;
    }

    .repair-offer__form-grid {
        grid-template-columns: 1fr;
    }

    .repair-offer__field--message {
        grid-column: auto;
    }

    .repair-offer__form-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .repair-offer__submit {
        width: 100%;
    }
}

.repair-offer__website {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.repair-offer__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.repair-offer__submit:disabled {
    cursor: wait;
    opacity: .75;
}

.repair-offer__submit-loader {
    display: none;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: repair-offer-loading .7s linear infinite;
}

.repair-offer__submit.is-loading .repair-offer__submit-loader {
    display: block;
}

.repair-offer__notice {
    position: relative;
    margin-top: 16px;
    padding: 13px 16px 13px 45px;
    border: 1px solid;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.45;
}

.repair-offer__notice::before {
    position: absolute;
    top: 50%;
    left: 16px;
    display: flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
    transform: translateY(-50%);
}

.repair-offer__notice--success {
    border-color: rgba(8, 126, 255, .25);
    color: #075db7;
    background: rgba(8, 126, 255, .07);
}

.repair-offer__notice--success::before {
    content: "✓";
}

.repair-offer__notice--error {
    border-color: rgba(201, 49, 49, .25);
    color: #b42318;
    background: rgba(201, 49, 49, .07);
}

.repair-offer__notice--error::before {
    content: "!";
}

@keyframes repair-offer-loading {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 767px) {
    .repair-offer__notice {
        padding: 12px 14px 12px 42px;
        font-size: 12px;
    }

    .repair-offer__notice::before {
        left: 13px;
    }
}