:root {
    --main-dark: #1f2933;
    --main-blue: #0f4c81;
    --main-orange: #e85d04;
    --main-yellow: #ffba08;
    --main-soft: #fff8ec;
    --main-light: #f8fafc;
    --main-border: rgba(15, 76, 129, .14);
    --main-green: #1b7f5c;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--main-dark);
    background: #ffffff;
    padding-top: 76px;
}

a {
    text-decoration: none;
}

.section-pad {
    padding: 80px 0;
}

.section-soft {
    background: linear-gradient(180deg, #fff8ec 0%, #ffffff 100%);
}

.hero-plombier {
    position: relative;
    overflow: hidden;
    background:
            linear-gradient(120deg, rgba(15, 76, 129, .94), rgba(31, 41, 51, .88)),
            url('../photos/image-plomberie-1920.webp') center/cover no-repeat;
    color: #fff;
    padding: 95px 0 80px;
}

.hero-plombier::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255, 186, 8, .18);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255, 186, 8, .16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .28);
    padding: .55rem .9rem;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.2rem;
}

.hero-lead {
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255,255,255,.92);
    max-width: 780px;
}

.hero-highlight {
    color: var(--main-yellow);
    font-weight: 800;
}

.price-card {
    position: relative;
    z-index: 2;
    background: #fff;
    color: var(--main-dark);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 22px 55px rgba(0,0,0,.24);
    border: 1px solid rgba(255,255,255,.45);
}

.price-card h2 {
    color: var(--main-blue);
    font-weight: 800;
    font-size: 1.45rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 13px 0;
    border-bottom: 1px dashed rgba(31,41,51,.18);
    font-size: .96rem;
}

.price-line strong {
    color: var(--main-orange);
    white-space: nowrap;
}

.assurance-box {
    background: linear-gradient(135deg, rgba(27,127,92,.12), rgba(255,186,8,.12));
    border: 1px solid rgba(27,127,92,.18);
    border-radius: 18px;
    padding: 15px;
    font-size: .92rem;
}

.btn-hot {
    background: linear-gradient(135deg, var(--main-orange), #d9480f);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    padding: .85rem 1.15rem;
    box-shadow: 0 12px 26px rgba(232,93,4,.28);
}

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

.btn-soft {
    background: #fff;
    color: var(--main-blue);
    border: 1px solid rgba(15,76,129,.22);
    border-radius: 14px;
    font-weight: 700;
    padding: .85rem 1.15rem;
}

.btn-soft:hover {
    background: var(--main-soft);
    color: var(--main-orange);
}

.intro-card {
    background: #fff;
    border: 1px solid var(--main-border);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 15px 38px rgba(15,76,129,.08);
    height: 100%;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(232,93,4,.10);
    color: var(--main-orange);
    border-radius: 999px;
    padding: .45rem .85rem;
    font-weight: 700;
    font-size: .9rem;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--main-blue);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #5f6b7a;
    line-height: 1.8;
    max-width: 880px;
}

.advantage-item {
    display: flex;
    gap: 14px;
    margin-bottom: 17px;
}

.advantage-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--main-blue), #1769aa);
}

.advantage-icon.orange {
    background: linear-gradient(135deg, var(--main-orange), #ff7b00);
}

.advantage-icon.green {
    background: linear-gradient(135deg, var(--main-green), #22a06b);
}

.service-card {
    background: #fff;
    border: 1px solid var(--main-border);
    border-radius: 26px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 14px 34px rgba(15,76,129,.08);
    transition: .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(15,76,129,.14);
}

.service-img {
    height: 190px;
    overflow: hidden;
    background: #eef4f8;
    border-radius: 22px 22px 0 0;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 22px 22px 0 0;
}

.service-body {
    padding: 24px;
}

.service-body h3 {
    font-size: 1.17rem;
    font-weight: 800;
    color: var(--main-blue);
    margin-bottom: .75rem;
}

.service-body p {
    color: #5f6b7a;
    font-size: .96rem;
    line-height: 1.75;
}

.service-meta {
    background: var(--main-soft);
    border-radius: 16px;
    padding: 12px 14px;
    color: #55412a;
    font-size: .9rem;
    margin: 16px 0;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(27,127,92,.10);
    color: var(--main-green);
    border-radius: 999px;
    padding: .35rem .65rem;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: .75rem;
}

.cta-band {
    background: linear-gradient(135deg, var(--main-blue), #12324d);
    color: #fff;
    border-radius: 30px;
    padding: 36px;
    box-shadow: 0 18px 45px rgba(15,76,129,.22);
}

.faq-card {
    background: #fff;
    border: 1px solid var(--main-border);
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(15,76,129,.06);
}

.faq-card h3 {
    color: var(--main-blue);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: .85rem;
}

.faq-card p {
    color: #5f6b7a;
    line-height: 1.75;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    body {
        padding-top: 66px;
    }

    .hero-plombier {
        padding: 70px 0 55px;
    }

    .section-pad {
        padding: 55px 0;
    }

    .price-card {
        margin-top: 28px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .price-card,
    .intro-card,
    .cta-band {
        border-radius: 22px;
        padding: 22px;
    }

    .service-img {
        height: 165px;
    }

    .d-flex.mobile-stack {
        flex-direction: column;
    }

    .d-flex.mobile-stack .btn {
        width: 100%;
    }
}
