/* ============================================================
   BLOC: THE ROCKET FUEL CONDITIONER ADVANTAGE
   ============================================================ */

.bfl-advantage-section {
    background: var(--steel);
    padding: 100px 7%;
    position: relative;
    overflow: hidden;
}


/* Subtle background accent */

.bfl-advantage-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(232, 80, 10, 0.07);
    background: rgba(232, 80, 10, 0.03);
    pointer-events: none;
}


/* ── HEADER ──────────────────────────────────────── */

.bfl-adv-header {
    text-align: center;
    margin-bottom: 64px;
}

.bfl-adv-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: 16px;
}

.bfl-adv-results-label {
    display: inline-block;
    color: var(--teal);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--teal);
    padding-bottom: 4px;
}


/* ── BODY 2-COL GRID ────────────────────────────── */

.bfl-adv-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}


/* ── INTRO TEXT ─────────────────────────────────── */

.bfl-adv-intro {
    font-size: 0.97rem;
    color: #bbb;
    line-height: 1.75;
    margin-bottom: 36px;
    border-left: 3px solid var(--orange);
    padding-left: 20px;
}


/* ── LISTS ──────────────────────────────────────── */

.bfl-adv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.bfl-adv-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ddd;
    line-height: 1.45;
}

.bfl-adv-list-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* List 1 — checkmark circles — teal */

.bfl-adv-list--check .bfl-adv-list-icon {
    color: var(--teal);
}

.bfl-adv-list--check .bfl-adv-list-icon svg {
    width: 22px;
    height: 22px;
}

.bfl-adv-list--check li:hover {
    color: var(--white);
}


/* List 2 — pill tags */

.bfl-adv-pills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding: 0;
}

.bfl-adv-pills li {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 40px;
    padding: 8px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #e0e0e0;
    letter-spacing: 0.2px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    cursor: default;
}

.bfl-adv-pills li:hover {
    background: rgba(232, 80, 10, 0.12);
    border-color: rgba(232, 80, 10, 0.35);
    color: #ffffff;
}


/* ── IMPACT PHRASE ──────────────────────────────── */

.bfl-adv-impact {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-title);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(232, 80, 10, 0.14), rgba(232, 80, 10, 0.06));
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius) var(--radius) 0;
    position: relative;
    overflow: hidden;
}

.bfl-adv-impact::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(232, 80, 10, 0.1);
    pointer-events: none;
}

.bfl-adv-impact-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    animation: bfl-glow 2s infinite;
}

@keyframes bfl-glow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 80, 10, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(232, 80, 10, 0);
    }
}


/* ── STRATEGY MESSAGE ───────────────────────────── */

.bfl-adv-strategy {
    margin-bottom: 40px;
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.bfl-adv-strategy-bar {
    width: 48px;
    height: 3px;
    background: linear-gradient(to right, var(--orange), var(--teal));
    border-radius: 2px;
    margin: 0 auto 20px;
}

.bfl-adv-strategy-text {
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 12px;
}

.bfl-adv-strategy-normal {
    color: #aaa;
    font-weight: 400;
}

.bfl-adv-strategy-hl {
    color: var(--orange);
    font-weight: 700;
}

.bfl-adv-strategy-suffix {
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    margin-bottom: 0;
}


/* ── IMAGE ──────────────────────────────────────── */

.bfl-adv-figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.bfl-adv-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    filter: brightness(0.85) saturate(0.8);
    transition: filter 0.3s, transform 0.4s;
}

.bfl-adv-figure:hover .bfl-adv-img {
    filter: brightness(0.95) saturate(1);
    transform: scale(1.02);
}

.bfl-adv-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(28, 28, 28, 0.85));
    color: #ccc;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 24px 16px 14px;
    text-align: center;
}

.bfl-adv-img-placeholder {
    background: rgba(255, 255, 255, 0.04);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 44px;
    text-align: center;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    letter-spacing: 0.5px;
}


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

@media (max-width: 1024px) {
    .bfl-adv-body {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .bfl-advantage-section {
        padding: 64px 5%;
    }
    .bfl-adv-header {
        margin-bottom: 40px;
    }
    .bfl-adv-impact {
        font-size: 1.1rem;
        padding: 18px 20px;
    }
    .bfl-adv-strategy {
        padding: 22px 18px;
    }
}