 :root {
        --radius: 28px;
    }

.honda-service-page {
    background: #050505;
    color: #fff;
}

.honda-hero {
    padding: clamp(3rem, 6vw, 6rem) 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(220, 0, 0, 0.18), transparent 35%),
        linear-gradient(180deg, #000 0%, #070707 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.honda-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.honda-hero .lead {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 640px;
}

.eyebrow {
    display: inline-block;
    color: #e52521;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.btn-honda {
    background: #e52521;
    color: #fff;
    border: 0;
    padding: 0.8rem 1.4rem;
    font-weight: 700;
    border-radius: 999px;
}

.btn-honda:hover {
    background: #c91d1a;
    color: #fff;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.7));
}

.content-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
}

.content-card h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 1rem;
}

.content-card p,
.content-card li {
    color: rgba(255, 255, 255, 0.86);
}

.service-image,
.range-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.service-image {
    height: 420px;
}

.range-image {
    margin-top: 1.5rem;
    border-radius: 0.85rem;
}

.why-card {
    padding: 2rem;
}

.honda-logo {
    display: block;
    max-width: 150px;
    margin: 0 auto 1rem;
}

.why-card h2 {
    text-align: center;
}

    .why-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 12px;
    }

    .why-list li {
        display: grid;
        grid-template-columns: 24px 1fr;
        gap: 10px;
        color: rgba(255,255,255,.86);
        font-weight: 650;
    }

    .why-list li::before {
        content: "✓";
        display: inline-grid;
        place-items: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: rgba(229,37,33,.16);
        color: #ff6b67;
        font-size: .86rem;
        font-weight: 900;
    }


    .cta-band {
        margin-top: 26px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 18px;
        align-items: center;
        padding: 26px 30px;
        border-radius: var(--radius);
        border: 1px solid rgba(229,37,33,.34);
        background: linear-gradient(90deg, rgba(229,37,33,.2), rgba(255,255,255,.035));
    }

    .cta-band strong {
        display: block;
        margin-bottom: 4px;
        font-size: 1.2rem;
    }

    .cta-band span { color: var(--muted); }




 @media (max-width: 980px) {
               .cta-band {
            grid-template-columns: 1fr;

        }

            }

    @media (max-width: 620px) {
               .cta-band { padding: 22px; }
    }


@media (max-width: 991.98px) {
    .honda-hero {
        text-align: center;
    }

    .hero-image img {
        max-width: 80%;
    }

    .service-image {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .why-card {
        padding: 1.25rem;
    }

    .service-image {
        height: 240px;
    }
}