/* ── REMOVE MAIN CONTAINER CONSTRAINTS ON LITHIUM PAGE ── */
body.page-id-451 #site-content,
body.page-id-451 .index-blocks {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ── OVERRIDE THEME CONTAINER ON FCL-X PAGE ── */
.index-blocks .fclx-hero,
.index-blocks .fclx-cobrand,
.index-blocks .fclx-threat,
.index-blocks .fclx-btu-section,
.index-blocks .fclx-incidents,
.index-blocks .fclx-scenarios,
.index-blocks .fclx-fail,
.index-blocks .fclx-products,
.index-blocks .fclx-cta {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: none;
}

/* FCL-X Page Styles — paste into style.css */

/* ── FCL-X PAGE — CO-BRANDED HEIMAN + FCL-X ── */
:root {
    --fcl:        #72BF43;
    --fcl-dim:    #4e8a2e;
    --fcl-dark:   #0d1f07;
    --fcl-glow:   rgba(114,191,67,0.15);
    --red:        #e8000d;
    --dark:       #111114;
    --dark2:      #1a1a20;
    --white:      #ffffff;
    --off:        #f2f2f0;
    --gray:       #888898;
    --fd:         'Barlow Condensed', sans-serif;
    --fb:         'Barlow', sans-serif;
}
.fclx-cobrand, .fclx-hero, .fclx-fullvid, .fclx-threat, .fclx-btu-section,
.fclx-incidents, .fclx-scenarios, .fclx-fail, .fclx-products, .fclx-cta,
.fclx-cobrand *, .fclx-hero *, .fclx-fullvid *, .fclx-threat *, .fclx-btu-section *,
.fclx-incidents *, .fclx-scenarios *, .fclx-fail *, .fclx-products *, .fclx-cta * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.fclx-cobrand a, .fclx-hero a, .fclx-fullvid a, .fclx-threat a,
.fclx-btu-section a, .fclx-incidents a, .fclx-scenarios a,
.fclx-fail a, .fclx-products a, .fclx-cta a {
    text-decoration: none;
    color: inherit;
}


/* ── CO-BRAND LOCKUP ── */
.fclx-cobrand {
    background: var(--dark);
    border-bottom: 3px solid var(--fcl);
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.fclx-cobrand-label {
    font-family: var(--fd);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.fclx-cobrand-hei {
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}
.fclx-cobrand-hei span { color: var(--red); }
.fclx-cobrand-x {
    color: rgba(255,255,255,0.2);
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 300;
}
.fclx-cobrand-fcl {
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fcl);
}
.fclx-cobrand-tag {
    font-family: var(--fd);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fcl);
    background: rgba(114,191,67,0.1);
    border: 1px solid rgba(114,191,67,0.3);
    padding: 3px 10px;
}

/* ── DANGER HERO ── */
.fclx-hero {
    background: var(--dark);
    position: relative;
    padding: 80px 30px 0;
    overflow: visible;
}
.fclx-hero-stripes {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent 0px,
        transparent 58px,
        rgba(114,191,67,0.025) 58px,
        rgba(114,191,67,0.025) 60px
    );
    pointer-events: none;
}
.fclx-hero-glow {
    position: absolute;
    top: -150px; right: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(114,191,67,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.fclx-hero-glow2 {
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,0,13,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.fclx-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    padding: 0 30px;
}


.fclx-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.fclx-eyebrow-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--fcl);
    animation: fclPulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes fclPulse {
    0%,100% { opacity:1; transform:scale(1); box-shadow:0 0 0 0 rgba(114,191,67,0.5); }
    50% { opacity:0.6; transform:scale(0.75); box-shadow:0 0 0 10px rgba(114,191,67,0); }
}
.fclx-eyebrow span {
    font-family: var(--fd);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fcl);
}
.fclx-hero h1 {
    font-family: var(--fd);
    font-size: clamp(50px, 7vw, 90px);
    font-weight: 900;
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 28px;
}
.fclx-hero h1 em { font-style: italic; color: var(--fcl); }
.fclx-hero h1 .red { color: var(--red); }
.fclx-hero-sub {
    font-family: var(--fb);
    font-size: 19px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 36px;
}
.fclx-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.fclx-btn-green {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--fcl);
    color: #0d1f07;
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 28px;
    transition: background 0.2s, transform 0.2s;
}
.fclx-btn-green:hover { background: #5aa832; transform: translateY(-2px); }
.fclx-btn-red {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: #fff;
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 28px;
    transition: background 0.2s;
}
.fclx-btn-red:hover { background: #c0000b; }

/* Hero stat cards */
.fclx-hero-right { display: flex; flex-direction: column; gap: 16px; }
.fclx-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fclx-stat-card {
    background: rgba(255,255,255,0.04);
    border-left: 4px solid var(--fcl);
    padding: 18px 22px;
    position: relative;
    overflow: hidden;
}
.fclx-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(114,191,67,0.06) 0%, transparent 60%);
}
.fclx-stat-num {
    font-family: var(--fd);
    font-size: 48px;
    font-weight: 900;
    color: var(--fcl);
    line-height: 1;
    position: relative;
}
.fclx-stat-num.danger { color: var(--red); }
.fclx-stat-label {
    font-family: var(--fb);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    position: relative;
}

/* ── THREAT STRIP ── */
.fclx-threat {
    background: var(--red);
    padding: 0 30px;
}
.fclx-threat-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
}
.fclx-threat-item {
    padding: 22px 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}
.fclx-threat-item:last-child { border-right: none; }
.fclx-threat-icon { font-size: 26px; margin-bottom: 8px; }
.fclx-threat-item h4 {
    font-family: var(--fd);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.fclx-threat-item p {
    font-family: var(--fb);
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

/* ── BTU COMPARISON ── */
.fclx-btu-section {
    background: var(--dark);
    padding: 80px 30px;
    position: relative;
    overflow: hidden;
}
.fclx-btu-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 120px,
        rgba(255,255,255,0.015) 120px,
        rgba(255,255,255,0.015) 121px
    );
    pointer-events: none;
}
.fclx-btu-inner { max-width: 1300px; margin: 0 auto; position: relative; z-index: 2; }
.fclx-section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}
.fclx-section-label .al { width: 40px; height: 4px; background: var(--fcl); flex-shrink: 0; }
.fclx-section-label span {
    font-family: var(--fb);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fcl);
}
.fclx-btu-section h2 {
    font-family: var(--fd);
    font-size: clamp(36px,5vw,62px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--white);
    margin: 0 0 10px;
    line-height: 0.9;
}
.fclx-btu-section h2 em { color: var(--fcl); font-style: italic; }
.fclx-btu-section h2 .red { color: var(--red); font-style: italic; }
.fclx-btu-intro {
    font-family: var(--fb);
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    max-width: 780px;
    line-height: 1.6;
    margin-bottom: 50px;
}
/* The comparison bars */
.fclx-btu-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fclx-btu-row {
    display: grid;
    grid-template-columns: 240px 1fr 140px;
    gap: 16px;
    align-items: center;
}
.fclx-btu-label {
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6);
    text-align: right;
    padding-right: 16px;
}
.fclx-btu-bar-wrap {
    background: rgba(255,255,255,0.05);
    height: 46px;
    position: relative;
    overflow: hidden;
}
.fclx-btu-bar {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 14px;
    transition: width 1s cubic-bezier(0.16,1,0.3,1);
    position: relative;
}
.fclx-btu-bar::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 3px;
    background: rgba(255,255,255,0.15);
}
.fclx-btu-bar span {
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}
.fclx-btu-val {
    font-family: var(--fd);
    font-size: 15px;
    font-weight: 900;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}
/* Bar colors */
.bar-ebike-s  { background: rgba(232,0,13,0.5); width:18%; }
.bar-ebike-s span { color: #fff; }
.bar-ebike-m  { background: rgba(232,0,13,0.7); width:35%; }
.bar-ebike-m span { color: #fff; }
.bar-ebike-l  { background: rgba(232,0,13,0.9); width:52%; }
.bar-ebike-l span { color: #fff; }
.bar-race     { background: rgba(255,180,0,0.45); width:62%; }
.bar-race span { color: rgba(255,255,255,0.9); }
.bar-gasoline { background: rgba(255,140,0,0.5); width:70%; }
.bar-gasoline span { color: rgba(255,255,255,0.9); }
.bar-jet      { background: rgba(255,200,0,0.55); width:74%; }
.bar-jet span { color: rgba(255,255,255,0.9); }
.bar-fcl-peak {
    background: linear-gradient(90deg, var(--fcl) 0%, #a8ff68 100%);
    width: 100%;
    animation: fclxFlicker 2.5s ease-in-out infinite alternate;
}
@keyframes fclxFlicker {
    from { opacity: 0.9; }
    to   { opacity: 1; filter: brightness(1.15); }
}
.bar-fcl-peak span { color: #0d1f07; font-weight: 900; }

/* Divider row */
.fclx-btu-divider {
    display: grid;
    grid-template-columns: 240px 1fr 140px;
    gap: 16px;
    align-items: center;
    margin: 10px 0 4px;
}
.fclx-btu-divider-line {
    border-top: 1px dashed rgba(255,255,255,0.12);
    grid-column: 1 / -1;
}

.fclx-btu-callout {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.fclx-btu-fact {
    background: rgba(255,255,255,0.04);
    border-top: 3px solid var(--fcl);
    padding: 28px 24px;
}
.fclx-btu-fact.danger { border-top-color: var(--red); }
.fclx-btu-fact-num {
    font-family: var(--fd);
    font-size: 52px;
    font-weight: 900;
    color: var(--fcl);
    line-height: 1;
    margin-bottom: 6px;
}
.fclx-btu-fact.danger .fclx-btu-fact-num { color: var(--red); }
.fclx-btu-fact h5 {
    font-family: var(--fd);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}
.fclx-btu-fact p {
    font-family: var(--fb);
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}


/* ── REAL INCIDENTS ── */
.fclx-incidents {
    background: var(--dark);
    padding: 80px 30px;
    position: relative;
    overflow: hidden;
}
.fclx-incidents::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent 0px,
        transparent 58px,
        rgba(232,0,13,0.02) 58px,
        rgba(232,0,13,0.02) 60px
    );
    pointer-events: none;
}
.fclx-incidents-inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.fclx-incidents h2 {
    font-family: var(--fd);
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--white);
    margin: 0 0 12px;
    line-height: 0.88;
}
.fclx-incidents h2 em { color: var(--white); font-style: italic; }
.fclx-inc-red { color: var(--red) !important; }
.fclx-incidents-sub {
    font-family: var(--fb);
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    max-width: 700px;
    line-height: 1.65;
    margin-bottom: 44px;
}
.fclx-inc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 24px;
}
.fclx-inc-card {
    background: rgba(255,255,255,0.03);
    border-top: 4px solid var(--red);
    padding: 26px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}
.fclx-inc-card:hover {
    background: rgba(232,0,13,0.07);
    transform: translateY(-3px);
}
.fclx-inc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}
.fclx-inc-num {
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 900;
    color: rgba(232,0,13,0.5);
    letter-spacing: 2px;
}
.fclx-inc-tag {
    font-family: var(--fd);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.3);
}
.fclx-inc-device {
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fcl);
}
.fclx-inc-card h3 {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.fclx-inc-card p {
    font-family: var(--fb);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}
.fclx-inc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: auto;
}
.fclx-inc-stat {
    font-family: var(--fd);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
}
.fclx-inc-link {
    font-family: var(--fd);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.25);
    white-space: nowrap;
    transition: color 0.2s;
}
.fclx-inc-card:hover .fclx-inc-link { color: var(--fcl); }
.fclx-inc-callout {
    background: rgba(232,0,13,0.08);
    border: 1px solid rgba(232,0,13,0.25);
    border-left: 5px solid var(--red);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 4px;
    flex-wrap: wrap;
}
.fclx-inc-callout-text {
    font-family: var(--fb);
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    flex: 1;
}
.fclx-inc-callout-text strong {
    color: var(--white);
    display: block;
    margin-bottom: 4px;
    font-size: 17px;
}
@media (max-width: 1024px) {
    .fclx-inc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .fclx-inc-grid { grid-template-columns: 1fr; }
    .fclx-inc-callout { flex-direction: column; }
}

/* ── SCENARIO SECTION ── */
.fclx-scenarios {
    background: var(--off);
    padding: 80px 30px;
}
.fclx-scenarios-inner { max-width: 1300px; margin: 0 auto; }
.fclx-scenarios h2 {
    font-family: var(--fd);
    font-size: clamp(36px,5vw,60px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--dark);
    margin: 0 0 8px;
    line-height: 0.9;
}
.fclx-scenarios h2 em { color: var(--red); font-style: italic; }
.fclx-scenarios-sub {
    font-family: var(--fb);
    font-size: 17px;
    color: var(--gray);
    margin: 0 0 44px;
    max-width: 680px;
}
.fclx-scene-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.fclx-scene-card {
    background: var(--white);
    border-top: 5px solid var(--red);
    padding: 0;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.fclx-scene-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.fclx-scene-header {
    background: var(--dark);
    padding: 20px 22px;
}
.fclx-scene-icon { font-size: 32px; margin-bottom: 8px; }
.fclx-scene-header h3 {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 3px;
}
.fclx-scene-header .tag {
    font-family: var(--fd);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--red);
}
.fclx-scene-body { padding: 22px; }
.fclx-scene-body p {
    font-family: var(--fb);
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 18px;
}
.fclx-scene-stat {
    background: #f8f8f8;
    border-left: 4px solid var(--red);
    padding: 12px 16px;
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
}

/* ── WHY STANDARD EXTINGUISHERS FAIL ── */
.fclx-fail {
    background: var(--dark2);
    padding: 80px 30px;
}
.fclx-fail-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.fclx-fail h2 {
    font-family: var(--fd);
    font-size: clamp(36px,5vw,58px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--white);
    margin: 0 0 10px;
    line-height: 0.9;
}
.fclx-fail h2 em { color: var(--red); font-style: italic; }
.fclx-fail-intro {
    font-family: var(--fb);
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin-bottom: 36px;
}
.fclx-fail-list { display: flex; flex-direction: column; gap: 0; }
.fclx-fail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.fclx-fail-item:last-child { border-bottom: none; }
.fclx-fail-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    background: rgba(232,0,13,0.15);
    border: 1px solid rgba(232,0,13,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-top: 2px;
}
.fclx-fail-item h5 {
    font-family: var(--fd);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}
.fclx-fail-item p {
    font-family: var(--fb);
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.55;
    margin: 0;
}

/* FCL-X solution side */
.fclx-solution-card {
    background: rgba(114,191,67,0.06);
    border: 1px solid rgba(114,191,67,0.2);
    border-top: 5px solid var(--fcl);
    padding: 32px;
}
.fclx-solution-card h3 {
    font-family: var(--fd);
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--fcl);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.fclx-solution-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.fclx-solution-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.fclx-solution-check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: var(--fcl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #0d1f07;
    margin-top: 1px;
    font-weight: 900;
}
.fclx-solution-item p {
    font-family: var(--fb);
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    margin: 0;
}
.fclx-solution-item p strong { color: var(--fcl); font-family: var(--fd); font-size: 15px; text-transform: uppercase; }
.fclx-pfas-badge {
    background: var(--fcl);
    color: #0d1f07;
    font-family: var(--fd);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 8px;
}
.fclx-certified-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.fclx-cert-tag {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(114,191,67,0.3);
    font-family: var(--fd);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fcl);
    padding: 5px 10px;
}


/* Product card images */
.fclx-prod-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #f8f8f8;
    padding: 14px;
    display: block;
}
.fclx-prod-card.commercial .fclx-prod-img {
    background: #1a1a20;
}

/* ── PRODUCTS SECTION ── */
.fclx-products {
    background: var(--off);
    padding: 80px 30px;
}
.fclx-products-inner { max-width: 1300px; margin: 0 auto; }
.fclx-products h2 {
    font-family: var(--fd);
    font-size: clamp(36px,5vw,60px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--dark);
    margin: 0 0 8px;
    line-height: 0.9;
}
.fclx-products h2 em { color: var(--fcl); font-style: italic; }
.fclx-products-sub {
    font-family: var(--fb);
    font-size: 17px;
    color: var(--gray);
    margin: 0 0 44px;
}
.fclx-prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.fclx-prod-grid.row2 { grid-template-columns: repeat(3, 1fr); }
.fclx-prod-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}
.fclx-prod-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.1); transform: translateY(-4px); }
.fclx-prod-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--fcl);
}
.fclx-prod-card.residential::before { background: var(--fcl); }
.fclx-prod-card.commercial::before { background: var(--red); }
.fclx-prod-badge {
    position: absolute;
    top: 12px; right: 12px;
    font-family: var(--fd);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 8px;
}
.fclx-prod-badge.res { background: var(--fcl); color: #0d1f07; }
.fclx-prod-badge.com { background: var(--red); color: #fff; }
.fclx-prod-body { padding: 22px 20px 18px; flex: 1; }
.fclx-prod-size {
    font-family: var(--fd);
    font-size: 52px;
    font-weight: 900;
    color: #e8e8e8;
    line-height: 1;
    margin-bottom: 8px;
}
.fclx-prod-card h4 {
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 4px;
}
.fclx-prod-use {
    font-family: var(--fd);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fcl);
    margin-bottom: 12px;
}
.fclx-prod-card.commercial .fclx-prod-use { color: var(--red); }
.fclx-prod-desc {
    font-family: var(--fb);
    font-size: 13px;
    color: #666;
    line-height: 1.55;
    margin-bottom: 14px;
    flex: 1;
}
.fclx-prod-apps {
    font-family: var(--fd);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}
.fclx-prod-price {
    background: var(--dark);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fclx-prod-price .price {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 900;
    color: var(--fcl);
}
.fclx-prod-price .cta {
    font-family: var(--fd);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.fclx-prod-card:hover .fclx-prod-price .cta { color: var(--fcl); }
.fclx-prod-price.contact { background: var(--dark2); }
.fclx-prod-price.contact .price { color: rgba(255,255,255,0.4); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }

.fclx-prod-note {
    background: var(--dark);
    border-left: 4px solid var(--fcl);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}
.fclx-prod-note p {
    font-family: var(--fb);
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    margin: 0;
}
.fclx-prod-note strong { color: var(--fcl); font-family: var(--fd); text-transform: uppercase; }

/* ── BOTTOM CTA ── */
.fclx-cta {
    background: var(--fcl-dark, #0d1f07);
    padding: 80px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.fclx-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(114,191,67,0.04) 40px,
        rgba(114,191,67,0.04) 42px
    );
    pointer-events: none;
}
.fclx-cta-inner { position: relative; z-index: 2; }
.fclx-cta h2 {
    font-family: var(--fd);
    font-size: clamp(40px,6vw,72px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 0.9;
}
.fclx-cta h2 em { color: var(--fcl); font-style: italic; }
.fclx-cta p {
    font-family: var(--fb);
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.fclx-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .fclx-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    padding: 0 30px;
}
    .fclx-hero-stats { grid-template-columns: repeat(3,1fr); }
    .fclx-hero-vid-header {
    max-width: 1300px;
    margin: 0 auto;
    padding: 24px 30px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
    .fclx-hero-vid-meta { text-align: left; }
    .fclx-stat-card { flex: 1 1 200px; }
    .fclx-threat-inner { grid-template-columns: repeat(2,1fr); }
    .fclx-btu-row { grid-template-columns: 160px 1fr 120px; }
    .fclx-btu-callout { grid-template-columns: 1fr; gap: 2px; }
    .fclx-scene-grid { grid-template-columns: 1fr; }
    .fclx-fail-inner { grid-template-columns: 1fr; gap: 40px; }
    .fclx-prod-grid { grid-template-columns: repeat(2,1fr); }
    .fclx-prod-grid.row2 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
    .fclx-hero, .fclx-btu-section, .fclx-scenarios, .fclx-fail, .fclx-products, .fclx-cta { padding: 60px 16px; }
    .fclx-threat { padding: 0 16px; }
    .fclx-threat-inner { grid-template-columns: 1fr; }
    .fclx-threat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .fclx-btu-row { grid-template-columns: 120px 1fr 90px; }
    .fclx-prod-grid, .fclx-prod-grid.row2 { grid-template-columns: 1fr; }
    .fclx-cobrand { flex-direction: column; gap: 8px; text-align: center; }
}


/* ── VIDEO INSIDE HERO ── */
.fclx-hero-vid-wrap {
    display: flex;
    flex-direction: column;
    background: #000;
    border: 3px solid var(--fcl);
    overflow: hidden;
    min-height: 400px;
}
.fclx-hero-vid-header {
    max-width: 1300px;
    margin: 0 auto;
    padding: 24px 30px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.fclx-hero-vid-title {
    font-family: var(--fd);
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--white);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}
.fclx-hero-vid-title em { color: var(--fcl); font-style: italic; }
.fclx-hero-vid-title .red { color: var(--red); }
.fclx-hero-vid-meta {
    font-family: var(--fb);
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    text-align: right;
    line-height: 1.5;
}
.fclx-hero-vid-meta strong {
    display: block;
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fcl);
    margin-bottom: 3px;
}
.fclx-hero-vid-frame {
    flex: 1;
    position: relative;
    min-height: 300px;
}
.fclx-hero-vid-frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.fclx-hero-vid-footer {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 30px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.fclx-hero-vid-caption {
    font-family: var(--fb);
    font-size: 13px;
    color: rgba(255,255,255,0.28);
    line-height: 1.5;
    flex: 1;
}
.fclx-hero-vid-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.fclx-hero-vid-badge {
    font-family: var(--fd);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fcl);
    border: 1px solid rgba(114,191,67,0.3);
    padding: 5px 10px;
}

/* Scroll reveal */
.fclx-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.fclx-reveal.in { opacity: 1; transform: translateY(0); }
.fclx-d1 { transition-delay: 0.1s; }
.fclx-d2 { transition-delay: 0.2s; }
.fclx-d3 { transition-delay: 0.3s; }
.fclx-d4 { transition-delay: 0.4s; }
.fclx-hero-stats-bar {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.fclx-hero-vid-label {
    background: var(--fcl);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.fclx-hero-vid-label span:last-child {
    font-family: var(--fd);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0d1f07;
}
.fclx-hero-vid-footer {
    padding: 10px 14px;
    background: rgba(0,0,0,0.4);
    flex-shrink: 0;
}
.fclx-hero-vid-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.fclx-hero-vid-badge {
    font-family: var(--fd);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--fcl);
    border: 1px solid rgba(114,191,67,0.35);
    padding: 3px 8px;
}
/* ── COBRAND RESPONSIVE ── */
@media (max-width: 768px) {
    .fclx-cobrand {
        padding: 10px 16px;
        gap: 10px;
        justify-content: center;
    }
    .fclx-cobrand-label {
        display: none;
    }
    .fclx-cobrand-hei {
        font-size: 15px;
    }
    .fclx-cobrand-fcl {
        font-size: 15px;
    }
    .fclx-cobrand-tag {
        font-size: 10px;
        padding: 2px 8px;
    }
}

@media (max-width: 480px) {
    .fclx-cobrand {
        gap: 8px;
        padding: 8px 12px;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    .fclx-cobrand-tag {
        display: none;
    }
    .fclx-cobrand-hei,
    .fclx-cobrand-fcl {
        font-size: 14px;
        letter-spacing: 1px;
    }
}
/* ── FCL BANNER ── */
.fcl-banner {
    width: 100%;
    height: 40px;
    background: #152e0e;
    border-top: 2px solid #5a9e32;
    border-bottom: 2px solid #5a9e32;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
    box-sizing: border-box;
}
.fcl-banner-pulse {
    width: 8px;
    height: 8px;
    background: #72BF43;
    border-radius: 50%;
    flex-shrink: 0;
    animation: fclPulse 1.4s ease-in-out infinite;
}
.fcl-banner-text {
    font-family: var(--fd);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
}
.fcl-banner-text strong {
    color: #72BF43;
}
.fcl-banner-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}
.fcl-banner-badge {
    font-family: var(--fd);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #152e0e;
    background: #72BF43;
    padding: 3px 10px;
    white-space: nowrap;
    flex-shrink: 0;
}
.fcl-banner-link {
    font-family: var(--fd);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #72BF43;
    text-decoration: none;
    border: 1px solid #5a9e32;
    padding: 3px 10px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.fcl-banner-link:hover {
    background: #72BF43;
    color: #152e0e;
}

@media (max-width: 768px) {
    .fcl-banner {
        height: auto;
        padding: 8px 12px;
        gap: 10px;
    }
    .fcl-banner-badge { display: none; }
    .fcl-banner-text {
        font-size: 11px;
        letter-spacing: 0.5px;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .fcl-banner {
        flex-wrap: wrap;
        padding: 8px 12px;
        gap: 6px;
    }
    .fcl-banner-divider { display: none; }
    .fcl-banner-pulse { display: none; }
    .fcl-banner-text {
        font-size: 10px;
        white-space: normal;
        text-align: center;
        flex: 1 1 100%;
        order: -1;
    }
    .fcl-banner-link {
        font-size: 11px;
        padding: 4px 12px;
    }
}
/* ── FCL-X CTA BUTTONS ── */
.fclx-prod-price .fclx-cta-btn {
    font-family: var(--fd) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    padding: 6px 14px !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin: 0 !important;
}
.fclx-prod-price .fclx-cta-btn:hover {
    background: var(--fcl) !important;
    color: #0d1f07 !important;
    border-color: var(--fcl) !important;
}
