/* ============================================================
   LUBRICANTS PAGE — banner · why-choose section
   Matches "Why Choose RocketFuel Conditioner?" section model
   Charte: #1C1C1C | #E8500A | #2BAF80 | Plus Jakarta Sans
   ============================================================ */


/* ── WHY CHOOSE SECTION ─────────────────────────────────────── */

.lub-why {
    position: relative;
    background: var(--steel, #1c1c1c);
    padding: 100px 7%;
    overflow: hidden;
}

/* Subtle dark texture / background image support */
.lub-why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28,28,28,0.97) 0%, rgba(32,32,32,0.92) 100%);
    z-index: 0;
}

.lub-why-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.lub-why .bfl-section-tag {
    margin-bottom: 14px;
}

/* Orange headline — all caps */
.lub-why-headline {
    font-family: var(--font-title, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--orange, #E8500A);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Intro paragraph — light grey */
.lub-why-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 680px;
    margin-bottom: 28px;
}

/* Bullet list — teal dots like the screenshot model */
.lub-why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 44px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lub-why-list li {
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
}

.lub-why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal, #2BAF80);
}

/* CTA button — solid orange, matching "REQUEST A CONSULTATION" model */
.lub-why-cta {
    margin-top: 8px;
}

.lub-cta-btn {
    display: inline-block;
    background: var(--orange, #E8500A);
    color: #fff;
    padding: 15px 34px;
    border-radius: var(--radius, 6px);
    font-family: var(--font-title, 'Plus Jakarta Sans', sans-serif);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--orange, #E8500A);
    transition: background 0.22s, transform 0.2s, box-shadow 0.2s;
}

.lub-cta-btn:hover {
    background: transparent;
    color: var(--orange, #E8500A);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 80, 10, 0.3);
}


/* ── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 768px) {
    .lub-why {
        padding: 72px 5%;
    }

    .lub-why-headline {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
    }

    .lub-why-intro {
        font-size: 15px;
    }

    .lub-why-list li {
        font-size: 15px;
    }
}
