/* ============================================================
   BENEFITS & FEATURES PAGE
   Charte: #1C1C1C | #E8500A | #2BAF80 | Plus Jakarta Sans
   Sections: banner · why-choose · comparison-table · gallery
   ============================================================ */


/* ── BANNER (identical pattern to fuels-banner) ─────────────── */

.bf-banner {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--steel);
    margin-top: 72px;
}

.bf-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.38) saturate(0.55);
}

.bf-banner-bg-ph {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1c1c1c 0%, #282828 60%, #1a1a1a 100%);
}

.bf-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(28, 28, 28, .88) 0%, rgba(28, 28, 28, .45) 70%, transparent 100%);
    z-index: 1;
}

.bf-banner-content {
    position: relative;
    z-index: 2;
    padding: 64px 7%;
}

.bf-banner-content .bfl-section-tag {
    margin-bottom: 10px;
}

.bf-banner-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.05;
    margin-bottom: 14px;
}

.bf-banner-sub {
    color: rgba(255, 255, 255, .65);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 520px;
    margin: 0;
}


/* ── WHY CHOOSE — orange background ────────────────────────── */

.bf-why {
    background: var(--orange);
    padding: 80px 7%;
}

.bf-why-inner {
    max-width: 820px;
}

.bf-why-title {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.05;
    margin-bottom: 18px;
}

.bf-why-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    margin-bottom: 22px;
}

.bf-why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 36px;
    padding: 0;
}

.bf-why-list li {
    font-size: 16px;
    color: var(--white);
    padding-left: 18px;
    position: relative;
    line-height: 1.55;
}

.bf-why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    opacity: .7;
}


/* dashed separator line (visible in screenshot) */

.bf-why-list {
    padding-bottom: 28px;
}


/* CTA button — white outline */

.bf-btn-outline {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    transition: var(--trans);
}

.bf-btn-outline:hover {
    background: var(--white);
    color: var(--orange);
}

.bf-why-cta {
    margin-top: 28px;
}


/* ── COMPARISON TABLE — orange bg ───────────────────────────── */

.bf-compare {
    background: var(--orange);
    padding: 0 7% 80px;
}

.bf-compare-inner {
    max-width: 100%;
}

.bf-compare-title {
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.bf-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.bf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    min-width: 580px;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.benefit-col-result {
    font-size: 16px;
    color: var(--orange);
    font-weight: 700;
    line-height: 1.6;
    padding: 16px 20px;
    border-left: 3px solid var(--teal);
    background: rgba(232, 80, 10, 0.08);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 0;
}


/* Header row */

.bf-table thead tr {
    background: var(--steel);
}

.bf-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid grey;
}

.bf-td-area td {
    border: 1px solid grey;
}

.bf-th-area {
    width: 24%;
}

.bf-th-rfc {
    width: 40%;
    color: var(--orange) !important;
}

.bf-th-gen {
    width: 36%;
}


/* Alternating rows */

.bf-tr-odd {
    background: #ffffff;
}

.bf-tr-even {
    background: #f9f9f9;
}

.bf-table tbody tr {
    border-bottom: 1px solid #ececec;
    transition: background 0.15s;
}

.bf-table tbody tr:hover {
    background: #fff3ed;
}

.bf-table tbody tr:last-child {
    border-bottom: none;
}

.bf-td-area {
    padding: 13px 16px;
    color: var(--steel);
    font-size: 16px;
    line-height: 1.4;
    vertical-align: middle;
}

.bf-td-rfc {
    padding: 13px 16px;
    color: var(--orange);
    font-size: 16px;
    line-height: 1.45;
    vertical-align: middle;
}

.bf-td-gen {
    padding: 13px 16px;
    color: #666;
    font-size: 16px;
    line-height: 1.45;
    vertical-align: middle;
}


/* ── GALLERY — 4-col image strip ────────────────────────────── */

.bf-gallery {
    background: var(--steel);
    overflow: hidden;
    padding: 0 100px 7%;
}

.bf-gallery-grid {
    columns: 3;
    column-gap: 16px;
}

.bf-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.bf-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.8) brightness(0.92);
    transition: transform 0.45s ease, filter 0.35s;
}

.bf-gallery-item:hover .bf-gallery-img {
    transform: scale(1.05);
    filter: saturate(1) brightness(0.75);
}

.bf-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(28, 28, 28, 0.45);
    transition: opacity 0.3s;
}


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

@media (max-width: 1024px) {
    .bf-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bf-banner-content {
        padding: 52px 5%;
    }
    .bf-why,
    .bf-compare {
        padding-left: 5%;
        padding-right: 5%;
    }
    .bf-compare {
        padding-bottom: 60px;
    }
    .bf-table {
        font-size: 0.75rem;
    }
    .bf-td-area,
    .bf-td-rfc,
    .bf-td-gen {
        padding: 10px 12px;
    }
    .bf-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .bf-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}