.hero {
    min-height: 78vh;
    background: url('../photos/image-plomberie-1920.webp') center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(90deg, rgba(10, 18, 32, 0.82) 0%, rgba(10, 18, 32, 0.68) 45%, rgba(10, 18, 32, 0.42) 100%);
    z-index: 1;
}

.hero .container {
    z-index: 2;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-content .tag {
    background: rgba(255, 193, 7, 0.14);
    color: #ffd76a;
    border: 1px solid rgba(255, 215, 106, 0.35);
    padding: .55rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .92rem;
    backdrop-filter: blur(6px);
}

.hero-content h1 {
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.hero-content .lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,.92);
    max-width: 760px;
}

.lead-strong {
    color: #ffd76a;
    font-weight: 700;
}

.hero-points .hero-point {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    padding: .9rem 1rem;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    height: 100%;
}

.hero-points .hero-point i {
    color: #ffc107;
    font-size: 1.15rem;
    margin-top: .15rem;
}

.hero-note {
    color: rgba(255,255,255,.82);
}

.btn-hot {
    background: linear-gradient(135deg, #ff7b1c, #ff4d2d);
    border: none;
    color: #fff;
    font-weight: 700;
    border-radius: .9rem;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.25);
}

.btn-hot:hover {
    color: #fff;
    transform: translateY(-1px);
}

.hero-side-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 1.4rem;
    padding: 1.6rem;
    box-shadow: 0 18px 50px rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.45);
}

.hero-side-card .mini-badge {
    display: inline-flex;
    align-items: center;
    background: #fff3cd;
    color: #8a5a00;
    border-radius: 999px;
    padding: .45rem .85rem;
    font-size: .88rem;
    font-weight: 700;
}

.side-card-header p {
    color: #5f6773;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .95rem 1rem;
    border-radius: 1rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
}

.price-item strong {
    color: #1b2430;
}

.price-item small {
    color: #6c757d;
}

.price-item span {
    font-weight: 800;
    color: #d9480f;
    white-space: nowrap;
}

.service-zone {
    background: #fff6e8;
    color: #7a4a00;
    padding: .9rem 1rem;
    border-radius: 1rem;
    font-weight: 600;
    border: 1px solid #ffe1b0;
}

.trust-box {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    padding-top: .3rem;
}

.trust-line {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    color: #2e3440;
}

.trust-line i {
    color: #198754;
    font-size: 1.05rem;
    margin-top: .15rem;
}

@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .lead {
        font-size: 1.02rem;
    }

    .hero-side-card {
        margin-top: .5rem;
    }
}