.banner {
    width: 100%;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(20, 40, 160, 0.12);
    display: grid;
    grid-template-columns: 1fr 360px;
    min-height: 480px;
    position: relative;
}

/* LEFT CONTENT */
.content-banner {
    padding: 52px 52px 44px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
}

.logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo-badge {
    background: var(--color_brand);
    color: white;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 6px;
}

.logo-sep {
    color: #c8d0e8;
    font-size: 18px;
}

.logo-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

h1.title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

h1 span {
    color: var(--color_brand);
}

/* OFFERS GRID */
.offers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.offer-card {
    background: var(--bg);
    border: 1.5px solid #dce6f9;
    border-radius: 16px;
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: default;
}

.offer-card:hover {
    border-color: var(--color_brand);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--color_brand) 20%, transparent 80%);
}

.offer-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--color_brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.offer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
}

.offer-sub {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 500;
}

/* BOTTOM ROW */
.bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* FORM */
.form-wrap {
    background: linear-gradient(135deg,
            var(--color_brand) 0%,
            color-mix(in srgb, var(--color_brand) 65%, #fff 35%) 100%);
    border-radius: 16px;
    padding: 22px 24px 20px;
    position: relative;
    overflow: hidden;
}

/* CONTACTS BLOCK */
.contacts-wrap {
    background: var(--bg);
    border: 1.5px solid #dce6f9;
    border-radius: 16px;
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contacts-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--color_brand) 10%, #fff 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--color_brand);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.contact-info strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.contact-info span {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 500;
}

.contacts-sep {
    height: 1px;
    background: #dce6f9;

    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

/* .form-wrap::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: -20px;
        width: 120px;
        height: 120px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 50%;
    } */

.form-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 14px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.form-label strong {
    color: white;
    font-weight: 700;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.phone-input {
    flex: 1;
    background: white;
    border: none;
    border-radius: 10px;
    padding: 13px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
}

.phone-input::placeholder {
    color: #aab4cc;
    font-weight: 500;
}

.btn-order {
    width: 100%;
    background: white;
    color: var(--color_brand);
    border: none;
    border-radius: 10px;
    padding: 13px 22px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.01em;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn-order:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.form-note {
    font-size: 10.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

/* RIGHT — visual panel */
.visual {
    background: linear-gradient(160deg,
            color-mix(in srgb, var(--color_brand) 55%, #000 45%) 0%,
            var(--color_brand) 40%,
            color-mix(in srgb, var(--color_brand) 65%, #fff 35%) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Floating trust badges */
.trust-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.trust-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 16px 18px;
    color: white;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatIn 0.6s ease both;
}

.trust-item:nth-child(1) {
    animation-delay: 0.1s;
}

.trust-item:nth-child(2) {
    animation-delay: 0.2s;
}

.trust-item:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.trust-num {
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}

.trust-num span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.trust-text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.45;
}

.divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.visual-bottom {
    margin-top: 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 10px 18px;
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.guarantee-badge svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #7dd3fc;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ── TABLET (≤ 900px) ── */
@media (max-width: 1024px) {
    .banner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .visual {
        padding: 32px 24px;
    }

    .trust-stack {
        flex-direction: row;
        display: flex;
        gap: 12px;
    }

    .trust-item {
        flex: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .divider {
        display: none;
    }

    .trust-num {
        font-size: 22px;
    }

    .visual-bottom {
        margin-top: 16px;
    }
}

/* ── MOBILE (≤ 640px) ── */
@media (max-width: 640px) {
    /*body {
            padding: 16px 12px;
        }*/

    .banner {
        border-radius: 16px;
    }

    .content-banner {
        padding: 28px 20px 24px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .logo-row {
        margin-bottom: 14px;
    }

    /* .logo-label {
            display: none;
        }*/

    .offers {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 22px;
    }

    .offer-card {
        padding: 14px 14px 12px;
    }

    .offer-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .offer-icon svg {
        width: 17px;
        height: 17px;
    }

    .offer-title {
        font-size: 13px;
    }

    .offer-sub {
        font-size: 11px;
    }

    .bottom-row {
        grid-template-columns: 1fr;
    }

    .form-wrap {
        padding: 18px 16px 16px;
        border-radius: 12px;
    }

    .form-label {
        font-size: 12px;
    }

    .form-row {
        flex-direction: column;
        gap: 8px;
    }

    .btn-order {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }

    .phone-input {
        padding: 13px 14px;
    }

    .contacts-wrap {
        border-radius: 12px;
        padding: 16px;
    }

    .visual {
        padding: 24px 16px;
    }

    .trust-stack {
        flex-direction: column;
        gap: 10px;
    }

    .trust-item {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding: 13px 14px;
    }

    .divider {
        display: block;
        width: 1px;
        height: 30px;
    }

    .trust-num {
        font-size: 20px;
        min-width: 48px;
    }

    .trust-text {
        font-size: 11.5px;
    }

    .guarantee-badge {
        font-size: 11px;
        padding: 8px 14px;
    }
}

/* ── VERY SMALL (≤ 380px) ── */
@media (max-width: 380px) {
    h1 {
        font-size: 21px;
    }

    .offers {
        gap: 8px;
    }

    .offer-title {
        font-size: 12px;
    }
}