/* ==========================================================================
   FAQ Page — EloBoostLeague
   Page top uses the parent theme's .banner__page + .arrow-page-down.
   These styles cover the body sections below it.
   All selectors scoped to .ebl-faq-page (or unique #eblfaq* IDs for the
   fixed-position UI) so nothing leaks onto other pages.
   League display font capped at 500. Body in Roboto.
   ========================================================================== */

.ebl-faq-page *,
.ebl-faq-page *::before,
.ebl-faq-page *::after { box-sizing: border-box; margin: 0; padding: 0; }

.ebl-faq-page {
    --navy:        #1a3556;
    --navy-mid:    #234670;
    --navy-deep:   #122845;
    --blue:        #0364a9;
    --blue-deep:   #024b80;
    --blue-light:  #4a8bc7;
    --blue-pale:   #e6f0f9;
    --orange:      #f25c2a;
    --orange-deep: #d94a1c;
    --orange-light:#ff7a4a;
    --cream:       #f5efde;
    --cream-deep:  #ebe1c5;
    --red:         #dc2626;
    --green:       #16a34a;
    --border:      #e5e7eb;
    --text:        #1f2937;
    --muted:       #6b7280;
    --light-bg:    #f9fafb;
    --white:       #ffffff;
    --font-display:'League','Helvetica Neue',Arial,sans-serif;
    --gold:        var(--orange);
    --gold-light:  var(--cream);

    background: var(--light-bg);
    color: var(--text);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

/* SCROLL REVEAL */
.ebl-faq-page .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.ebl-faq-page .reveal.visible { opacity: 1; transform: translateY(0); }

/* SHARED ANIMATION KEYFRAMES */
@keyframes ebl-drift {
    0%, 100% { transform: translate(0, 0); }
    33%      { transform: translate(22px, -14px); }
    66%      { transform: translate(-18px, 12px); }
}
@keyframes ebl-drift-rev {
    0%, 100% { transform: translate(0, 0); }
    33%      { transform: translate(-20px, 16px); }
    66%      { transform: translate(16px, -10px); }
}
@keyframes ebl-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}
@keyframes ebl-breath {
    0%, 100% { box-shadow: 0 6px 18px rgba(255,110,58,.32), inset 0 1px 0 rgba(255,255,255,.18); }
    50%      { box-shadow: 0 10px 26px rgba(255,110,58,.5),  inset 0 1px 0 rgba(255,255,255,.24); }
}
@keyframes ebl-shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes ebl-rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes eblfaq-pulse {
    0%   { transform: scale(.8); opacity: .6; }
    100% { transform: scale(2.2); opacity: 0; }
}
@keyframes eblfaq-spin { to { transform: rotate(405deg); } }

.ebl-faq-page .article-body {
    max-width: 1000px;
    margin: 0 auto;
    padding: 32px 20px 48px;
    background: var(--white);
}
.ebl-faq-page .article-body p { margin-bottom: 1.4em; color: var(--text); }
.ebl-faq-page .article-body p:last-child { margin-bottom: 0; }
.ebl-faq-page .article-body a {
    color: var(--blue-deep);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .2s;
}
.ebl-faq-page .article-body a:hover { color: var(--blue); }
.ebl-faq-page .article-body .lead {
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 720px;
}
.ebl-faq-page .article-body strong { color: var(--navy); font-weight: 700; }

/* UPDATE BADGE WITH PULSE */
.ebl-faq-page .update-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: #fff;
    padding: 9px 16px;
    font-size: 11px;
    letter-spacing: .7px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 24px;
    border-radius: 100px;
}
.ebl-faq-page .update-badge .pulse-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--gold);
    position: relative;
}
.ebl-faq-page .update-badge .pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .5;
    animation: eblfaq-pulse 2s ease-out infinite;
}

/* HERO STATS — drifting backdrop + floating numbers */
.ebl-faq-page .hero-stats {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 36px 20px;
    margin: 0 -20px 32px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.ebl-faq-page .hero-stats::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(242,92,42,.18), transparent 70%);
    pointer-events: none;
    animation: ebl-drift 14s ease-in-out infinite;
    will-change: transform;
}
.ebl-faq-page .hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.ebl-faq-page .hero-stat {
    text-align: center;
    padding: 12px 8px;
    border-radius: 8px;
    transition: background .25s, transform .25s;
    cursor: default;
}
.ebl-faq-page .hero-stat:hover {
    background: rgba(255,255,255,.04);
    transform: translateY(-3px);
}
.ebl-faq-page .hero-stat-num {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 3rem;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    letter-spacing: .005em;
    color: #fff;
    animation: ebl-float 5s ease-in-out infinite;
    will-change: transform;
}
.ebl-faq-page .hero-stat:nth-child(2) .hero-stat-num { animation-delay: .7s; }
.ebl-faq-page .hero-stat:nth-child(3) .hero-stat-num { animation-delay: 1.4s; }
.ebl-faq-page .hero-stat:nth-child(4) .hero-stat-num { animation-delay: 2.1s; }
.ebl-faq-page .hero-stat-num.gold  { color: var(--gold); }
.ebl-faq-page .hero-stat-num.blue  { color: var(--blue-light); }
.ebl-faq-page .hero-stat-num.green { color: #4ade80; }
.ebl-faq-page .hero-stat-num.amber { color: #f59e0b; }
.ebl-faq-page .hero-stat-label {
    font-size: 13px;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(255,255,255,.78);
    display: block;
    line-height: 1.45;
    font-weight: 600;
}
.ebl-faq-page .hero-stat-sub {
    font-size: 11.5px;
    letter-spacing: .3px;
    color: rgba(255,255,255,.55);
    margin-top: 8px;
    display: block;
    line-height: 1.4;
}

/* SEARCH BAR — focus glow + icon color shift */
.ebl-faq-page .search-wrap { margin: 0 0 28px; }
.ebl-faq-page .search-input-wrap { position: relative; }
.ebl-faq-page .search-input {
    width: 100%;
    padding: 16px 50px 16px 50px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    color: var(--text);
    transition: border-color .25s, box-shadow .32s cubic-bezier(.22,1,.36,1);
    -webkit-appearance: none;
}
.ebl-faq-page .search-input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(3,100,169,.12), 0 8px 24px rgba(3,100,169,.08);
}
.ebl-faq-page .search-input-wrap:focus-within .search-icon {
    color: var(--blue);
    transition: color .25s;
}
.ebl-faq-page .search-input::placeholder { color: var(--muted); }
.ebl-faq-page .search-icon {
    position: absolute;
    left: 16px; top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
    width: 20px;
    height: 20px;
    display: block;
}
.ebl-faq-page .search-clear {
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border: none;
    background: var(--light-bg);
    color: var(--muted);
    border-radius: 50%;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    transition: background .2s, color .2s;
}
.ebl-faq-page .search-clear:hover { background: var(--border); color: var(--navy); }
.ebl-faq-page .search-wrap.has-value .search-clear { display: flex; }
.ebl-faq-page .search-meta {
    margin-top: 10px;
    padding-left: 4px;
    font-size: .85rem;
    color: var(--muted);
    height: 1.4em;
    transition: color .2s;
}
.ebl-faq-page .search-meta strong { color: var(--blue-deep); font-weight: 700; }
.ebl-faq-page .search-meta.empty { color: var(--red); }

/* CATEGORY TABS — gradient slide-in for active state */
.ebl-faq-page .cat-tabs-wrap {
    margin: 0 -20px 24px;
    overflow: hidden;
    position: relative;
}
.ebl-faq-page .cat-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 20px;
}
.ebl-faq-page .cat-tabs::-webkit-scrollbar { display: none; }
.ebl-faq-page .cat-tab {
    flex-shrink: 0;
    padding: 11px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: .86rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    transition: all .32s cubic-bezier(.22,1,.36,1);
    white-space: nowrap;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}
.ebl-faq-page .cat-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    opacity: 0;
    transition: opacity .32s cubic-bezier(.22,1,.36,1);
    z-index: 0;
}
.ebl-faq-page .cat-tab > * { position: relative; z-index: 1; }
.ebl-faq-page .cat-tab:hover {
    border-color: var(--blue);
    color: var(--blue-deep);
    transform: translateY(-1px);
}
.ebl-faq-page .cat-tab.active {
    border-color: var(--navy);
    color: #fff;
    box-shadow: 0 6px 18px rgba(26,53,86,.28);
    transform: translateY(-1px);
}
.ebl-faq-page .cat-tab.active::before { opacity: 1; }
.ebl-faq-page .cat-tab-num {
    font-size: .7rem;
    background: var(--light-bg);
    color: var(--muted);
    padding: 1px 7px;
    border-radius: 100px;
    font-weight: 700;
    min-width: 22px;
    text-align: center;
    transition: background .22s, color .22s;
}
.ebl-faq-page .cat-tab.active .cat-tab-num {
    background: rgba(255,255,255,.15);
    color: #fff;
}
.ebl-faq-page .cat-tab:hover .cat-tab-num {
    background: var(--blue-pale);
    color: var(--blue-deep);
}

/* FAQ — gradient header, orange-glow corner, left-edge accent bar */
.ebl-faq-page .faq {
    margin: 0 0 32px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}
.ebl-faq-page .faq-cat-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: #fff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.ebl-faq-page .faq-cat-header::after {
    content: '';
    position: absolute;
    right: -30px; top: 50%;
    transform: translateY(-50%);
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(242,92,42,.16), transparent 65%);
    pointer-events: none;
}
.ebl-faq-page .faq-cat-num {
    font-family: var(--font-display);
    font-size: .9rem;
    letter-spacing: .5px;
    color: var(--cream);
    font-weight: 500;
    background: rgba(245,239,222,.12);
    padding: 4px 10px;
    border-radius: 100px;
    position: relative;
    z-index: 1;
}
.ebl-faq-page .faq-cat-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .02em;
    position: relative;
    z-index: 1;
}
.ebl-faq-page .faq-item {
    border-bottom: 1px solid var(--border);
    transition: background .25s;
    position: relative;
}
.ebl-faq-page .faq-item::before {
    content: '';
    position: absolute;
    left: 0; top: 8px; bottom: 8px;
    width: 3px;
    background: var(--orange-light);
    border-radius: 0 3px 3px 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
}
.ebl-faq-page .faq-item:hover::before { transform: scaleY(.6); }
.ebl-faq-page .faq-item.open::before { transform: scaleY(1); background: var(--blue); }
.ebl-faq-page .faq-item:last-child { border-bottom: none; }
.ebl-faq-page .faq-item.hidden { display: none; }
.ebl-faq-page .faq-item.match { background: rgba(242,92,42,.06); }
.ebl-faq-page .faq-q {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 18px 24px;
    font-size: .98rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    transition: background .2s;
    font-family: inherit;
    line-height: 1.4;
}
.ebl-faq-page .faq-q:hover { background: var(--light-bg); }
.ebl-faq-page .faq-q-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--blue-pale);
    color: var(--blue-deep);
    position: relative;
    font-size: 0;
    transition: background .2s, color .2s;
}
.ebl-faq-page .faq-q-icon::before,
.ebl-faq-page .faq-q-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: currentColor;
    border-radius: 1px;
    transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.ebl-faq-page .faq-q-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.ebl-faq-page .faq-q-icon::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.ebl-faq-page .faq-item.open .faq-q-icon { background: var(--blue); color: #fff; }
.ebl-faq-page .faq-item.open .faq-q-icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.ebl-faq-page .faq-item.open .faq-q-icon::after  { transform: translate(-50%, -50%) rotate(45deg); }
.ebl-faq-page .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(.22,1,.36,1);
}
.ebl-faq-page .faq-item.open .faq-a { max-height: 1500px; }
.ebl-faq-page .faq-a-inner {
    padding: 10px 24px 22px;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.65;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .32s ease .05s, transform .32s cubic-bezier(.22,1,.36,1) .05s;
}
.ebl-faq-page .faq-item.open .faq-a-inner {
    opacity: 1;
    transform: translateY(0);
}
.ebl-faq-page .faq-a-inner p { margin-bottom: 1em; }
.ebl-faq-page .faq-a-inner p:last-child { margin-bottom: 0; }
.ebl-faq-page .faq-a-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ebl-faq-page .faq-a-inner ul li {
    font-size: 1rem;
    color: var(--text);
    padding-left: 18px;
    position: relative;
    line-height: 1.55;
}
.ebl-faq-page .faq-a-inner ul li::before {
    content: '\2192';
    position: absolute; left: 0;
    color: var(--blue);
    font-weight: 700;
}
.ebl-faq-page .faq-a-inner mark,
.ebl-faq-page .faq-q mark {
    background: var(--gold-light);
    color: var(--navy);
    padding: 0 3px;
    border-radius: 3px;
}

/* CTA — drifting glows + breathing primary button */
.ebl-faq-page .eblfaq-cta {
    margin: 48px 0 0;
    padding: 44px 32px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 18px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ebl-faq-page .eblfaq-cta::before {
    content: '';
    position: absolute;
    top: -30%; left: -10%;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(255,122,74,.2), transparent 65%);
    pointer-events: none;
    animation: ebl-drift 16s ease-in-out infinite;
    will-change: transform;
}
.ebl-faq-page .eblfaq-cta::after {
    content: '';
    position: absolute;
    bottom: -40%; right: -15%;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(3,100,169,.22), transparent 65%);
    pointer-events: none;
    animation: ebl-drift-rev 18s ease-in-out infinite;
    will-change: transform;
}
.ebl-faq-page .cta-tag {
    display: inline-block;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.92);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.ebl-faq-page .eblfaq-cta h2 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 500;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: .005em;
    text-transform: uppercase;
    line-height: 1.15;
    position: relative;
}
.ebl-faq-page .eblfaq-cta p {
    color: rgba(255,255,255,.78) !important;
    margin: 0 auto 28px !important;
    font-size: .98rem !important;
    max-width: 480px;
    line-height: 1.6 !important;
    position: relative;
}
.ebl-faq-page .cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.ebl-faq-page .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform .32s cubic-bezier(.22,1,.36,1), box-shadow .32s cubic-bezier(.22,1,.36,1), background .28s ease, border-color .28s ease;
    font-family: inherit;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: .005em;
}
.ebl-faq-page .cta-btn.primary {
    background: linear-gradient(135deg, #ff8a5c 0%, #ff6e3a 100%);
    color: #fff !important;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(255,110,58,.35), inset 0 1px 0 rgba(255,255,255,.18);
    animation: ebl-breath 2.8s ease-in-out infinite;
}
.ebl-faq-page .cta-btn.primary:hover {
    background: linear-gradient(135deg, #ff9a6e 0%, #ff7a4a 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255,110,58,.45), inset 0 1px 0 rgba(255,255,255,.22);
    animation: none;
}
.ebl-faq-page .cta-btn.secondary {
    background: rgba(255,255,255,.05);
    color: #fff !important;
    border-color: rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.ebl-faq-page .cta-btn.secondary:hover {
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
}

/* NO RESULTS — with category suggestion pills */
.ebl-faq-page .no-results {
    display: none;
    text-align: center;
    padding: 48px 24px;
    background: var(--white);
    border: 1px dashed var(--border);
    border-radius: 12px;
    margin: 0 0 32px;
}
.ebl-faq-page .no-results.show { display: block; }
.ebl-faq-page .no-results-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    display: block;
    color: var(--muted);
    opacity: .5;
}
.ebl-faq-page .no-results h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .01em;
}
.ebl-faq-page .no-results p {
    color: var(--muted) !important;
    font-size: .92rem !important;
    margin: 0 !important;
}
.ebl-faq-page .no-results-suggestions {
    margin-top: 18px;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.ebl-faq-page .no-results-pill {
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--blue-deep);
    cursor: pointer;
    transition: all .25s cubic-bezier(.22,1,.36,1);
    font-family: inherit;
}
.ebl-faq-page .no-results-pill:hover {
    background: var(--blue-pale);
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3,100,169,.15);
}

/* RULE */
.ebl-faq-page .rule {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 56px 0 0;
}
.ebl-faq-page .rule-line { flex: 1; height: 1px; background: var(--border); }
.ebl-faq-page .rule-diamond {
    width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    animation: eblfaq-spin 6s linear infinite;
}

/* PROGRESS BAR + BACK TO TOP — fixed-position UI, unique IDs */
#eblfaqProgressWrap {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(26,53,86,.06);
    z-index: 1000;
    pointer-events: none;
}
#eblfaqProgress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0364a9, #f25c2a);
    transition: width .08s linear;
}
#eblfaqBackTop {
    position: fixed;
    bottom: 22px; right: 22px;
    width: 46px; height: 46px;
    background: #1a3556;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s, background .2s;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0,0,0,.18);
    font-family: inherit;
}
#eblfaqBackTop.show { opacity: 1; pointer-events: auto; }
#eblfaqBackTop:hover { background: #024b80; transform: translateY(-3px); }

/* RESPONSIVE */
@media (max-width: 760px) {
    .ebl-faq-page .article-body { padding: 24px 16px 40px; }
    .ebl-faq-page .article-body .lead { font-size: .98rem; }
    .ebl-faq-page .hero-stats { padding: 24px 16px; margin: 0 -16px 24px; border-radius: 0; }
    .ebl-faq-page .hero-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .ebl-faq-page .hero-stat-num { font-size: 2rem; }
    .ebl-faq-page .search-input { padding: 14px 44px 14px 44px; font-size: .95rem; }
    .ebl-faq-page .search-icon { left: 16px; }
    .ebl-faq-page .cat-tabs-wrap { margin: 0 -16px 20px; }
    .ebl-faq-page .cat-tabs { padding: 4px 16px; }
    .ebl-faq-page .cat-tab { font-size: .8rem; padding: 10px 13px; }
    .ebl-faq-page .faq-cat-header { padding: 14px 18px; }
    .ebl-faq-page .faq-cat-title { font-size: .95rem; }
    .ebl-faq-page .faq-q { padding: 16px 18px; font-size: .92rem; }
    .ebl-faq-page .faq-a-inner { padding: 10px 18px 18px; font-size: .88rem; }
    .ebl-faq-page .eblfaq-cta { padding: 32px 20px; border-radius: 14px; }
    .ebl-faq-page .eblfaq-cta h2 { font-size: 1.4rem; }
    .ebl-faq-page .cta-btn { padding: 12px 22px; font-size: .88rem; }
    #eblfaqBackTop { bottom: 16px; right: 16px; width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
    .ebl-faq-page .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
    #eblfaqProgress { transition: none !important; }
    .ebl-faq-page .rule-diamond,
    .ebl-faq-page .pulse-dot::after,
    .ebl-faq-page .hero-stats::before,
    .ebl-faq-page .eblfaq-cta::before,
    .ebl-faq-page .eblfaq-cta::after,
    .ebl-faq-page .hero-stat-num,
    .ebl-faq-page .cta-btn.primary,
    .ebl-faq-page .faq-item { animation: none !important; }
    .ebl-faq-page .faq-item::before { transition: none !important; }
}
