.hero-banner {
    position: relative;
    min-height: 500px;
    background: #0f172a;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
            linear-gradient(90deg,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.38) 45%,
            rgba(0, 0, 0, 0.18) 100%);
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,244,214,0.96));
    color: #0f172a;
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    font-size: 0.88rem;
}

.hero-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.30);
}

.hero-lead {
    font-size: 1.03rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.24);
    max-width: 720px;
}

.hero-mini {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 0;
}

.btn-hero {
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.hero-banner .btn-warning {
    background: linear-gradient(90deg, #ffb703, #ffcb3d);
    border: none;
    color: #1f2937;
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.28);
}

.hero-banner .btn-warning:hover {
    color: #1f2937;
    background: linear-gradient(90deg, #f4ac00, #ffc933);
}

.hero-banner .btn-danger {
    box-shadow: 0 10px 25px rgba(220, 53, 69, 0.22);
}

.hero-banner .btn-outline-light {
    border: 1px solid rgba(255,255,255,0.82);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-banner .btn-outline-light:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.88);
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
}

.hero-price-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.10));
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1.2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
}

.hero-price-box::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255,193,7,0.35) 0%, rgba(255,193,7,0) 70%);
    pointer-events: none;
}

.hero-price-box > * {
    position: relative;
    z-index: 1;
}

.hero-box-title {
    font-size: 1.25rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.95rem;
}

.price-line strong {
    color: #ffd166;
    font-size: 0.95rem;
    text-align: right;
}

.hero-box-text {
    color: rgba(255,255,255,0.92);
    line-height: 1.55;
    font-size: 0.93rem;
}

.hero-phone-box {
    background: linear-gradient(90deg, rgba(255,123,0,0.18), rgba(255,193,7,0.14));
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 1rem;
    padding: 14px 16px;
}

@media (max-width: 991.98px) {
    .hero-overlay {
        background:
                linear-gradient(180deg,
                rgba(0, 0, 0, 0.68) 0%,
                rgba(0, 0, 0, 0.48) 48%,
                rgba(0, 0, 0, 0.30) 100%);
    }

    .hero-banner {
        min-height: auto;
    }

    .hero-media img {
        object-position: center top;
    }
    
    .hero-price-box {
        margin-top: 6px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 0.98rem;
    }
}

@media (max-width: 575.98px) {

    .hero-overlay {
        background:
                linear-gradient(180deg,
                rgba(0, 0, 0, 0.72) 0%,
                rgba(0, 0, 0, 0.54) 50%,
                rgba(0, 0, 0, 0.36) 100%);
    }

    .hero-banner {
        min-height: auto;
    }

    .hero-media img {
        object-position: center top;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.12;
    }

    .hero-lead {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .btn-hero {
        width: 100%;
    }

    .hero-trust {
        gap: 10px;
    }

    .hero-trust span {
        width: 100%;
    }

    .price-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .price-line strong {
        text-align: left;
    }
}
