/*
Theme Name:  Brilliant Fuel Labs
Description: Thème WordPress autonome pour Brilliant Fuel Labs Inc. — Rocket Fuel Conditioner. AUCUN thème parent requis.
Author:      Brilliant Fuel Labs Inc.
Author URI:  https://brilliantfuellabs.com
Version:     5.0.0
License:     GNU General Public License v2 or later
Text Domain: brilliantfuel
*/

:root {
    --steel: #1C1C1C;
    --orange: #E8500A;
    --teal: #2BAF80;
    --white: #FFFFFF;
    --gray: #F4F4F4;
    --dark: #2D2D2D;
    --steel2: #242424;
    --steel3: #2e2e2e;
    --font-title: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius: 6px;
    --radius-lg: 10px;
    --trans: all 0.22s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body,
div,
header,
nav,
main,
section,
article,
aside,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
pre,
form,
fieldset,
legend,
table,
caption,
th,
td,
address {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--orange);
    text-decoration: none;
}

a:hover {
    color: #c94108;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
}

input,
select,
textarea,
button {
    font-family: var(--font-body);
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-title);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--steel);
}


/* ── UTILS ── */

.bfl-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 7%;
}

#bfl-header .bfl-header-inner a img {
    width: 100px;
}


/* ── NAV ── */

#bfl-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--steel);
    border-bottom: 2px solid var(--orange);
    height: 72px;
    display: flex;
    align-items: center;
}

.bfl-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4.8%;
    height: 72px;
}

.bfl-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.bfl-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bfl-logo-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.bfl-logo-text {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bfl-logo-text span {
    color: var(--orange);
}

#bfl-nav {
    display: flex;
    align-items: center;
}

#bfl-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

#bfl-menu li a {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 14px;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

#bfl-menu li a:hover {
    color: var(--orange);
    background: rgba(232, 80, 10, 0.10);
}

#bfl-menu li.bfl-cta a {
    background: var(--orange);
    color: var(--white)!important;
    padding: 9px 20px;
}

#bfl-menu li.bfl-cta a:hover {
    background: #c94108;
}

#bfl-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

#bfl-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.25s;
}

#bfl-header.scrolled {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}


/*
#bfl-main {
    padding-top: 72px;
}
*/


/* ── HERO ── */

#bfl-hero {
    background: var(--steel);
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
}

.bfl-hero-content {
    padding: 70px 6% 70px 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bfl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 80, 10, 0.12);
    border: 1px solid var(--orange);
    color: var(--orange);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 2px;
    margin-bottom: 28px;
    width: fit-content;
}

.bfl-hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: .4;
        transform: scale(1.6);
    }
}

.bfl-hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.8rem, 4.5vw, 4.4rem);
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.02;
    margin-bottom: 22px;
}

.bfl-hero-title em {
    font-style: normal;
    color: var(--orange);
    display: block;
}

.bfl-hero-sub {
    color: white;
    font-size: 16px;
    line-height: 1.72;
    max-width: 500px;
    margin-bottom: 40px;
}

.bfl-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.bfl-btn-primary {
    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);
}

.bfl-btn-primary:hover {
    background: #c94108;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 80, 10, 0.35);
}

.bfl-btn-ghost {
    display: inline-block;
    background: transparent;
    color: #ccc;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    border: 1.5px solid #444;
    transition: var(--trans);
}

.bfl-btn-ghost:hover {
    color: var(--teal);
    border-color: var(--teal);
}

.bfl-hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 32px;
    border-top: 1px solid #2e2e2e;
    flex-wrap: wrap;
}

.bfl-stat-num {
    display: block;
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.bfl-stat-label {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

.bfl-hero-img {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.bfl-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.6);
}

.bfl-hero-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: linear-gradient(160deg, #1a1a1a 0%, #252525 50%, #1c1c1c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #383838;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bfl-hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--steel) 0%, transparent 40%), linear-gradient(to top, var(--steel) 0%, transparent 25%);
    pointer-events: none;
}

.bfl-hero-tag {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 3px;
}


/* ── SECTION DEFAULTS ── */

.bfl-section {
    padding: 100px 7%;
}

.bfl-section-tag {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 14px;
}

.bfl-section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.07;
    margin-bottom: 16px;
    color: var(--steel);
}

.bfl-title-white {
    color: var(--white)!important;
}

.bfl-section-sub {
    font-size: 1.02rem;
    color: #666;
    max-width: 600px;
    line-height: 1.72;
}

.bfl-sub-white {
    color: #aaa!important;
}


/* ── PROBLEM ── */

#bfl-problem {
    background: var(--gray);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 7%;
}

.bfl-problem-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bfl-problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.bfl-problem-list li::before {
    content: '✕';
    color: #cc2200;
    font-weight: 900;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.bfl-visual-box {
    background: var(--steel);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
}

.bfl-visual-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(232, 80, 10, 0.15);
    background: rgba(232, 80, 10, 0.05);
    pointer-events: none;
}

.bfl-dpf-big {
    display: block;
    font-family: var(--font-title);
    font-size: 4rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    text-align: center;
}

.bfl-dpf-label {
    display: block;
    color: #aaa;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 8px;
}

.bfl-divider {
    border: none;
    border-top: 1px solid #333;
    margin: 28px 0;
}

.bfl-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.bfl-vs-col {
    text-align: center;
    flex: 1;
}

.bfl-vs-num {
    display: block;
    font-family: var(--font-title);
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--teal);
}

.bfl-vs-num.orange {
    color: var(--orange);
}

.bfl-vs-label {
    display: block;
    font-size: 0.66rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.bfl-vs-sep {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 300;
}

.bfl-visual-note {
    color: #777;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.5;
    margin-top: 16px;
}


/* ── SOLUTION CARDS ── */

#bfl-solution {
    background: var(--steel);
    padding: 100px 7%;
}

.bfl-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}

.bfl-card {
    background: var(--steel2);
    border: 1px solid #2e2e2e;
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--trans);
}

.bfl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.bfl-card:hover {
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.bfl-card:hover::before {
    transform: scaleX(1);
}

.bfl-card-num {
    font-family: var(--font-title);
    font-size: 3.8rem;
    font-weight: 900;
    color: rgba(232, 80, 10, 0.15);
    line-height: 1;
    margin-bottom: 14px;
}

.bfl-card-title {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bfl-card-desc {
    color: #888;
    font-size: 16px;
    line-height: 1.65;
}


/* ── RESULTS ── */

#bfl-results {
    background: var(--white);
    padding: 100px 7%;
}

.bfl-results-grid-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.bfl-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.bfl-result-card {
    background: var(--gray);
    border-radius: var(--radius);
    padding: 28px 24px;
    border-left: 4px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
}

.bfl-result-card:hover {
    border-left-color: var(--teal);
    transform: translateX(4px);
}

.bfl-result-val {
    display: block;
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--teal);
    line-height: 1;
}

.bfl-result-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 7px;
}

.bfl-result-sub {
    display: block;
    font-size: 0.74rem;
    color: #999;
    margin-top: 4px;
}


/* ── INDUSTRIES ── */

#bfl-industries {
    background: var(--gray);
    padding: 100px 7%;
}

.bfl-ind-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.bfl-ind-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--trans);
}

.bfl-ind-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.bfl-ind-img {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--steel);
}

.bfl-ind-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(0.6);
    transition: transform 0.4s ease;
}

.bfl-ind-card:hover .bfl-ind-img img {
    transform: scale(1.07);
}

.bfl-ind-img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(28, 28, 28, .92));
    padding: 28px 16px 16px;
    color: var(--white);
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bfl-ind-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1c1c1c, #2d2d2d);
}

.bfl-ind-body {
    padding: 20px;
}

.bfl-ind-body p {
    font-size: 16px;
    color: #666;
    line-height: 1.62;
}


/* ── PRICING ── */

#bfl-pricing {
    background: var(--steel);
    padding: 100px 7%;
    text-align: center;
}

.bfl-price-box {
    max-width: 660px;
    margin: 52px auto 0;
    background: var(--steel2);
    border: 1px solid #303030;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: left;
}

.bfl-price-header {
    background: var(--orange);
    padding: 28px 40px;
}

.bfl-price-header h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bfl-price-body {
    padding: 40px;
}

.bfl-price-big {
    display: block;
    font-family: var(--font-title);
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.bfl-price-unit {
    display: block;
    color: #aaa;
    font-size: 1rem;
    margin-top: 8px;
}

.bfl-price-compare {
    display: block;
    color: var(--teal);
    font-size: 16px;
    font-weight: 600;
    margin-top: 16px;
}

.bfl-price-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bfl-price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 0.91rem;
}

.bfl-price-features li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 900;
    flex-shrink: 0;
}

.bfl-price-cta {
    padding: 0 40px 40px;
}

.bfl-btn-full {
    display: block;
    width: 100%;
    background: var(--orange);
    color: var(--white);
    text-align: center;
    padding: 16px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.bfl-btn-full:hover {
    background: #c94108;
    color: var(--white);
    transform: translateY(-2px);
}


/* ── TESTIMONIALS ── */

#bfl-testimonials {
    background: var(--white);
    padding: 100px 7%;
}

.bfl-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.bfl-testi {
    background: var(--gray);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
}

.bfl-testi::before {
    content: '"';
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 5.5rem;
    color: var(--orange);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.25;
}

.bfl-testi-text {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.75;
    font-style: italic;
    margin-top: 24px;
}

.bfl-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.bfl-testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--steel);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 800;
    color: var(--orange);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.bfl-testi-name {
    display: block;
    font-weight: 700;
    font-size: 16px;
    color: var(--steel);
}

.bfl-testi-role {
    display: block;
    font-size: 16px;
    color: #888;
}


/* ── WHY US ── */

#bfl-why {
    background: var(--steel);
    padding: 100px 7%;
}

.bfl-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 52px;
}

.bfl-why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.bfl-why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.bfl-why-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    background: rgba(232, 80, 10, 0.10);
    border: 1px solid rgba(232, 80, 10, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bfl-why-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--orange);
}

.bfl-why-title {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.bfl-why-desc {
    font-size: 16px;
    color: #888;
    line-height: 1.65;
}

.bfl-why-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bfl-why-img img {
    width: 100%;
    display: block;
    filter: brightness(0.55) saturate(0.6);
    border-radius: var(--radius-lg);
}

.bfl-why-img-placeholder {
    width: 100%;
    height: 440px;
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #383838;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bfl-why-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--teal);
    color: var(--white);
    padding: 14px 22px;
    border-radius: var(--radius);
}

.bfl-why-badge-num {
    display: block;
    font-family: var(--font-title);
    font-size: 1.7rem;
    font-weight: 900;
}

.bfl-why-badge-text {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 2px;
}


/* ── CONTACT ── */

#bfl-contact {
    background: var(--gray);
    padding: 100px 7%;
}

.bfl-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 80px;
}

.bfl-contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bfl-contact-info p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.bfl-cdetail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.bfl-cdetail-icon {
    width: 42px;
    height: 42px;
    background: var(--steel);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bfl-cdetail-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--teal);
}

.bfl-cdetail-label {
    display: block;
    font-size: 0.65rem;
    color: #999;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.bfl-cdetail-val {
    display: block;
    font-weight: 600;
    color: var(--steel);
    font-size: 0.95rem;
}

.bfl-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow);
}

.bfl-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bfl-field {
    margin-bottom: 18px;
}

.bfl-field label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--steel);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.bfl-field input,
.bfl-field select,
.bfl-field textarea {
    display: block;
    width: 100%;
    border: 1.5px solid #e0e0e0;
    border-radius: var(--radius);
    padding: 12px 14px;
    font-size: 16px;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.bfl-field input:focus,
.bfl-field select:focus,
.bfl-field textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 80, 10, 0.09);
}

.bfl-field textarea {
    resize: vertical;
    min-height: 110px;
}

.bfl-field.error input,
.bfl-field.error select,
.bfl-field.error textarea {
    border-color: #cc2200;
}


/* ── FOOTER ── */

#bfl-footer {
    background: #111;
    color: #aaa;
    padding: 64px 85px 28px;
}

.bfl-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid #e8500a;
}

.bfl-footer-brand p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.72;
    margin-top: 16px;
    max-width: 260px;
}

.bfl-footer-col h4 {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}

.bfl-footer-col ul li {
    margin-bottom: 10px;
}

.bfl-footer-col a {
    color: #ffffff;
    font-size: 16px;
    transition: color 0.2s;
}

.bfl-footer-col a:hover {
    color: var(--orange);
}

.bfl-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 16px;
    color: #444;
    flex-wrap: wrap;
    gap: 8px;
}


/* ── WP COMPAT ── */

.alignwide {
    margin-left: -5%;
    margin-right: -5%;
    max-width: 110%;
}

.alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 16px;
    color: #888;
    text-align: center;
    margin-top: 4px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    overflow: hidden;
    position: absolute;
}


/* ── RESPONSIVE TABLET ── */

@media(max-width:1024px) {
    #bfl-hero,
    #bfl-problem,
    .bfl-results-grid-wrap,
    .bfl-why-grid,
    .bfl-contact-grid {
        grid-template-columns: 1fr;
    }
    .bfl-hero-img {
        min-height: 380px;
    }
    .bfl-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bfl-ind-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bfl-testi-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bfl-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ── RESPONSIVE MOBILE ── */

@media(max-width:768px) {
    #bfl-footer {
        padding: 64px 5%;
    }
    #bfl-toggle {
        display: flex;
    }
    #bfl-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--steel);
        border-top: 1px solid #2e2e2e;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.3s;
    }
    #bfl-nav.open {
        max-height: 460px;
        padding: 14px 0 20px;
    }
    #bfl-menu {
        flex-direction: column;
        align-items: stretch;
        padding: 0 5%;
        gap: 0;
    }
    #bfl-menu li a {
        padding: 13px 0;
        font-size: 16px;
        border-radius: 0;
    }
    #bfl-menu li.bfl-cta a {
        margin-top: 8px;
        text-align: center;
        border-radius: var(--radius);
    }
    #bfl-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    #bfl-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }
    #bfl-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .bfl-section,
    #bfl-problem,
    #bfl-solution,
    #bfl-results,
    #bfl-industries,
    #bfl-pricing,
    #bfl-testimonials,
    #bfl-why,
    #bfl-contact {
        padding: 64px 5%;
    }
    .bfl-hero-content {
        padding: 60px 5%;
    }
    .bfl-hero-title {
        font-size: 2.6rem;
    }
    .bfl-cards-grid,
    .bfl-ind-grid,
    .bfl-testi-grid,
    .bfl-results-grid,
    .bfl-footer-grid,
    .bfl-form-row {
        grid-template-columns: 1fr;
    }
    .bfl-hero-stats {
        gap: 24px;
    }
    .bfl-form-wrap {
        padding: 28px 20px;
    }
    .bfl-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}


/*Dark version*/

#bfl-main section {
    background: var(--steel);
    /*  border-bottom: 1px solid var(--dark); */
}

#bfl-main .bfl-process-step-num span {
    color: var(--white);
}

#bfl-main section li span,
#bfl-main section h2 {
    color: var(--orange);
}

#bfl-contact-page .bfl-cp-card-icon svg,
#bfl-main section li,
#bfl-main section p,
#bfl-main section span {
    color: var(--white);
}

#bfl-main section .bfl-section-tag {
    color: var(--teal);
}

#bfl-contact-page .bfl-cp-card-line,
#bfl-main section .bfl-wwd-card-body p {
    color: var(--steel);
}

.current_page_item {
    color: var(--orange);
}

.current_page_item a {
    color: var(--orange) !important;
}

.bfl-process-step:hover .bfl-process-step-num span {
    background: var(--orange);
    color: var(--white) !important;
}

#bfl-main span.bfl-wwd-num,
#bfl-main span.bfl-service-num,
#bfl-main section li span svg {
    color: var(--teal);
}


/* Par défaut : ghost subtil quand image réelle */

.bfl-wwd-num {
    color: rgba(255, 255, 255, 0.18);
    transition: color 0.25s, text-shadow 0.25s;
    z-index: 2;
}


/* Placeholder (pas d'image) : fond sombre → numéro plus visible */

.bfl-wwd-card-img:has(.bfl-wwd-img-ph) .bfl-wwd-num {
    color: rgba(255, 255, 255, 0.55);
}


/* Hover dans tous les cas : numéro bien visible */

.bfl-wwd-card:hover .bfl-wwd-num {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

#bfl-main section li span svg {
    width: 16px;
    height: 16px;
}

.bfl-about-points li,
.bfl-service-name,
.bfl-process-step-content h4 {
    font-weight: 700;
}


/*
 {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    background: var(--teal);
    flex-shrink: 0;

    content: '–';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}*/

.abt-bullet-list li::before,
.abt-dash-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    background: var(--teal);
    flex-shrink: 0;
}

.bfl-process-header p {
    margin-top: 14px;
}

#bfl-footer .bfl-footer-grid a img {
    width: 100px;
}

#bfl-main section.bfl-ctab {
    background: var(--ctab-bg) center/cover no-repeat !important;
}