.hero-banner {
    /* Автоматически подхватывает брендовый цвет сайта */
    --hb-brand: var(--color_brand, #2563eb);
    --hb-brand-ink: #fff;
    --hb-bg: #f4f6f9;
    --hb-card: #fff;
    --hb-text: #0f172a;
    --hb-muted: #64748b;
    --hb-border: #e2e8f0;
    --hb-radius: 20px;

    width: 100%;
    padding: 24px 16px;
    box-sizing: border-box;
    color: var(--hb-text);
}

.hero-banner__inner {
    /*  max-width: 1200px;*/
    margin: 0 auto;
    background: var(--hb-bg);
    border-radius: var(--hb-radius);
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 0;
    overflow: hidden;
}

/* ================= ЛЕВАЯ КОЛОНКА ================= */
.hero-banner__content {
    padding: 48px 48px 44px;
    min-width: 0;
}

.hero-banner__title {
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}

/* --- Ценовой коридор --- */
.hero-banner__prices {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.hero-banner__prices li {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-size: 15px;
    color: var(--hb-muted);
}

.hero-banner__prices strong {
    color: var(--hb-text);
    font-weight: 700;
    font-size: 16px;
}

/* --- Блок доверия --- */
.hero-banner__trust {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-banner__trust li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.4;
    color: var(--hb-text);
}

.hero-banner__trust li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--hb-brand);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/14px no-repeat;
    /* Фолбек для браузеров без mask: */
    box-shadow: inset 0 0 0 2px var(--hb-brand);
}

/* --- Форма --- */
.hero-banner__form {
    background: var(--hb-card);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.hero-banner__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.hero-banner__select,
.hero-banner__input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    font-size: 15px;
    color: var(--hb-text);
    background: #fff;
    border: 1px solid var(--hb-border);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
}

.hero-banner__select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.hero-banner__select:focus,
.hero-banner__input:focus {
    border-color: var(--hb-brand);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--hb-brand) 18%, transparent);
}

.hero-banner__cta {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 10px;
    background: var(--hb-brand);
    color: var(--hb-brand-ink);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: filter 0.15s, transform 0.05s;
}

.hero-banner__cta:hover {
    filter: brightness(0.94);
}

.hero-banner__cta:active {
    transform: translateY(1px);
}

.hero-banner__note {
    margin: 12px 0 0;
    font-size: 12.5px;
    line-height: 1.4;
    color: var(--hb-muted);
    text-align: center;
}

/* ================= ПРАВАЯ КОЛОНКА ================= */
.hero-banner__side {
    position: relative;
    background:
        radial-gradient(120% 120% at 100% 0%,
            color-mix(in srgb, var(--hb-brand) 22%, transparent) 0%,
            color-mix(in srgb, var(--hb-brand) 8%, transparent) 45%,
            transparent 75%),
        linear-gradient(160deg,
            color-mix(in srgb, var(--hb-brand) 14%, #fff) 0%,
            color-mix(in srgb, var(--hb-brand) 6%, #fff) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
}

.hero-banner__slot {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    max-width: 280px;
    width: 100%;
}

.hero-banner__slot-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    margin: 0 auto 10px;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    animation: hbPulse 2s infinite;
}

@keyframes hbPulse {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.08);
    }
}

.hero-banner__slot-label {
    margin: 0 0 4px;
    font-size: 13px;
    color: var(--hb-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-banner__slot-time {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 800;
    color: var(--hb-text);
    line-height: 1.1;
}

.hero-banner__slot-sub {
    margin: 0;
    font-size: 13px;
    color: var(--hb-muted);
    line-height: 1.4;
}

/* ================= АДАПТИВ ================= */
@media (max-width: 960px) {
    .hero-banner__content {
        padding: 36px 32px 32px;
    }

    .hero-banner__title {
        font-size: clamp(22px, 3.2vw, 28px);
    }
}

@media (max-width: 760px) {
    .hero-banner {
        padding: 16px 12px;
    }

    .hero-banner__inner {
        grid-template-columns: 1fr;
    }

    .hero-banner__content {
        padding: 28px 22px 24px;
        order: 1;
    }

    .hero-banner__side {
        order: 2;
        padding: 24px 22px 28px;
    }

    .hero-banner__title {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .hero-banner__prices {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 18px;
    }

    .hero-banner__trust {
        margin-bottom: 20px;
    }

    .hero-banner__fields {
        grid-template-columns: 1fr;
    }

    .hero-banner__slot {
        max-width: 100%;
    }
}

@media (max-width: 420px) {
    .hero-banner__content {
        padding: 24px 18px 22px;
    }

    .hero-banner__cta {
        height: 52px;
        font-size: 15px;
    }
}