/**
 * Bose Mighty Theme
 * Auto-generated
 */

:root {
    --lljm-primary: #0A0E17;
    --lljm-primary-light: #454056;
    --lljm-primary-dark: #070910;
    --lljm-bronze: #1c6aea;
    --lljm-bronze-light: #5185f2;
    --lljm-bronze-dark: #1149b8;
    --lljm-silver: #b0b4be;
    --lljm-silver-light: #cee2e2;
    --lljm-charcoal: #EFF6FF;
    --lljm-midnight: #FFFFFF;
    --lljm-slate: #FFFFFF;
    --lljm-text: #E8EDF2;
    --lljm-text-dim: #869fae;
    --lljm-text-dark: #0A0E17;
    --lljm-border: #badff5;
    --lljm-success: #37c771;
    --lljm-warning: #e54341;
    --lljm-highlight: #f5cf0a;
    --lljm-curve-sm: 6px;
    --lljm-curve-md: 10px;
    --lljm-curve-lg: 16px;
    --lljm-glow: 0 2px 8px rgba(0,0,0,0.08);
    --lljm-glow-bronze: 0 6px 24px rgba(38,98,229,0.25);
    --lljm-anim: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --lljm-font-heading: 'Inter', sans-serif;
    --lljm-font-text: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.lljm-page {
    font-family: var(--lljm-font-text);
    background: linear-gradient(180deg, var(--lljm-charcoal) 0%, var(--lljm-midnight) 100%);
    color: var(--lljm-text);
    line-height: 1.75;
    min-height: 100vh;
}

a {
    color: var(--lljm-bronze);
    text-decoration: none;
    transition: var(--lljm-anim);
}

a:hover {
    color: var(--lljm-bronze-light);
}

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

/* ================================================
   NAVIGATION BAR
================================================ */
.lljm-topbar {
    background: linear-gradient(180deg, var(--lljm-primary-dark) 0%, var(--lljm-charcoal) 100%);
    border-bottom: 1px solid var(--lljm-border);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(13px);
}

.lljm-topbar__wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 19px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 21px;
}

.lljm-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    margin-right: auto;
}

.lljm-brand__title {
    font-family: var(--lljm-font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--lljm-text);
    letter-spacing: 0.6px;
}

.lljm-menu {
    display: flex;
    align-items: center;
    gap: 7px;
    list-style: none;
}

.lljm-menu__link {
    display: inline-block;
    padding: 9px 25px;
    color: var(--lljm-text);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    border-radius: var(--lljm-curve-sm);
    transition: var(--lljm-anim);
}

.lljm-menu__link:hover,
.lljm-menu__link.current {
    color: var(--lljm-bronze);
    background: rgba(37,100,237,0.12);
}

.lljm-topbar__action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 29px;
    background: linear-gradient(135deg, var(--lljm-bronze) 0%, var(--lljm-bronze-dark) 100%);
    color: var(--lljm-charcoal);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    border-radius: 53px;
    transition: var(--lljm-anim);
    box-shadow: var(--lljm-glow-bronze);
}

.lljm-topbar__action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44,93,228,0.5);
    color: var(--lljm-charcoal);
}

.lljm-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background: transparent;
    border: 3px solid var(--lljm-bronze);
    border-radius: var(--lljm-curve-sm);
    cursor: pointer;
}

.lljm-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--lljm-bronze);
    transition: var(--lljm-anim);
}

.lljm-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.lljm-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.lljm-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.lljm-drawer {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: var(--lljm-primary-dark);
    transition: max-height 0.35s ease;
}

.lljm-drawer.open {
    display: block;
    max-height: 80vh; overflow-y: auto;
    padding: 27px 33px;
}

.lljm-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lljm-drawer__nav a {
    display: block;
    padding: 17px 24px;
    color: var(--lljm-text);
    font-size: 15px;
    border-radius: var(--lljm-curve-sm);
}

.lljm-drawer__nav a:hover {
    background: rgba(43,95,236,0.12);
    color: var(--lljm-bronze);
}

/* ================================================
   LAYOUT
================================================ */
.lljm-content {
    min-height: calc(100vh - 200px);
}

.lljm-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 33px;
}

/* ================================================
   HERO BANNER
================================================ */
.lljm-hero {
    text-align: center;
    padding: 0 0 14px;
    margin-bottom: 19px;
}

.lljm-hero__tag {
    display: inline-block;
    padding: 10px 21px;
    background: rgba(42,105,227,0.18);
    color: var(--lljm-bronze);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    border-radius: 53px;
    margin-bottom: 25px;
}

.lljm-hero__heading {
    font-family: var(--lljm-font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--lljm-text);
    margin-bottom: 23px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.lljm-hero__desc {
    font-size: 19px;
    color: var(--lljm-text-dim);
    max-width: 640px;
    margin: 0 auto 35px;
}

/* ================================================
   SECTION HEADERS
================================================ */
.lljm-section-intro {
    text-align: center;
    margin-bottom: 47px;
}

.lljm-section-intro__label {
    display: inline-block;
    padding: 9px 16px;
    background: rgba(41,98,235,0.18);
    color: var(--lljm-bronze);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 47px;
    margin-bottom: 18px;
}

.lljm-section-intro__title {
    font-family: var(--lljm-font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--lljm-text);
    margin-bottom: 15px;
}

.lljm-section-intro__text {
    font-size: 16px;
    color: var(--lljm-text-dim);
}

/* ================================================
   COMPANY GRID
================================================ */
.lljm-providers {
    margin: 46px 0;
    width: 90vw;
    max-width: 1160px;
    margin-left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.lljm-providers__grid {
    background: var(--lljm-slate);
    border-radius: var(--lljm-curve-lg);
    overflow: hidden;
    box-shadow: var(--lljm-glow);
}

.lljm-providers__head {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 24px;
    padding: 13px 34px;
    background: #0A0E17;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    text-align: center;
    align-items: center;
}

.lljm-providers__head > div {
    text-align: center;
    color: #fff;
}

.lljm-providers__row {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 25px;
    padding: 20px 35px;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #e1e4e4;
    background: #ffffff;
    transition: background 0.2s ease;
}

.lljm-providers__row:nth-child(odd) {
    background: #f0f4f8;
}

.lljm-providers__row:last-child {
    border-bottom: none;
}

.lljm-providers__row:hover {
    background: #e8edf5;
}

.lljm-providers__row.top-pick {
    background: #fef9e7;
    border-left: 4px solid #164fc3;
}

.lljm-company-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lljm-company-cell__logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    min-height: 60px;
    object-fit: contain;
    border-radius: 11px;
    background: #fff;
    padding: 10px 19px;
    border: 1px solid #eee;
}

.lljm-company-cell__tagline {
    font-size: 12px;
    color: #204ab8;
    text-align: center;
    font-weight: 500;
}

.lljm-perks {
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: center;
}

.lljm-perk {
    display: block;
    padding: 4px 17px;
    background: #eaf2e8;
    color: #175726;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    text-align: center;
    width: fit-content;
    border: 1px solid #ceeec0;
}

.lljm-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lljm-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.lljm-stars__star {
    font-size: 17px;
}

.lljm-stars__star.lit {
    color: #f09e0a;
}

.lljm-stars__star.dim {
    color: #d6d1db;
}

.lljm-score__num {
    font-weight: 700;
    color: #2b3555;
    font-size: 17px;
}

.lljm-score__bbb {
    font-size: 11px;
    color: #235716;
    font-weight: 700;
    background: #e8f5e9;
    padding: 3px 6px;
    border-radius: 5px;
}

.lljm-invest {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lljm-invest__amount {
    font-weight: 700;
    color: #333e54;
    font-size: 17px;
}

.lljm-invest__label {
    font-size: 11px;
    color: #768895;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.lljm-cta-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.lljm-cta-cell__main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    background: linear-gradient(135deg, #1e4cb5 0%, #3b73ec 100%);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.11px;
    border-radius: 8px;
    transition: var(--lljm-anim);
}

.lljm-cta-cell__main:hover {
    color: #fff;
    box-shadow: 0 4px 12px rgba(32,100,234,0.3);
}

.lljm-cta-cell__alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 21px;
    color: #585d51;
    border: 2px solid #c4d0cc;
    font-size: 11px;
    border-radius: 11px;
    transition: var(--lljm-anim);
}

.lljm-cta-cell__alt:hover {
    background: #f0f0f0;
    color: #2f2e38;
}

/* ================================================
   TABLE OF CONTENTS
================================================ */
.lljm-toc {
    background: linear-gradient(135deg, rgba(31,94,242,0.12) 0%, rgba(30,95,233,0.05) 100%);
    border: 2px solid var(--lljm-bronze);
    border-radius: var(--lljm-curve-lg);
    padding: 25px 38px;
    margin: 35px 0;
}

.lljm-toc__title {
    font-family: var(--lljm-font-heading);
    font-size: 22px;
    color: var(--lljm-text);
    margin-bottom: 21px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lljm-toc__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.lljm-toc__list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    color: var(--lljm-text);
    font-size: 14px;
    border-radius: var(--lljm-curve-sm);
    transition: var(--lljm-anim);
}

.lljm-toc__list li a:hover {
    background: rgba(29,105,241,0.18);
    color: var(--lljm-bronze);
}

.lljm-toc__list li a::before {
    content: '\2192';
    color: var(--lljm-bronze);
}

/* ================================================
   ARTICLE / CONTENT BLOCKS
================================================ */
.lljm-article {
    margin: 47px 0;
}

.lljm-article h1 {
    font-family: var(--lljm-font-heading);
    font-size: 46px;
    font-weight: 700;
    color: var(--lljm-text);
    margin-bottom: 22px;
    text-align: center;
}

.lljm-block {
    margin: 47px 0;
    padding: 32px;
    background: var(--lljm-slate);
    border-radius: var(--lljm-curve-lg);
}

.lljm-block#overview {
    background: transparent;
    padding: 0;
}

.lljm-block h2 {
    font-family: var(--lljm-font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--lljm-text);
    margin-bottom: 24px;
}

.lljm-block__body {
    font-size: 15px;
    line-height: 1.85;
}

.lljm-block__body p {
    margin-bottom: 21px;
}

.lljm-block__body ul,
.lljm-block__body ol {
    margin: 19px 0;
    padding-left: 26px;
}

.lljm-block__body li {
    margin-bottom: 15px;
}

.lljm-block__body strong {
    color: var(--lljm-text);
}

.lljm-block__body img {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 18px auto;
}

/* Content images */
.lljm-content-image {
    margin: 33px 0;
    border-radius: var(--lljm-curve-lg);
    overflow: hidden;
    box-shadow: var(--lljm-glow);
}

.lljm-content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================================
   FAQ SECTION
================================================ */
.lljm-faq {
    padding: 62px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--lljm-curve-lg);
    margin: 47px 0;
}

.lljm-faq .lljm-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 21px;
}

.lljm-faq-header {
    text-align: center;
    margin-bottom: 38px;
}

.lljm-faq-label {
    display: inline-block;
    background: linear-gradient(135deg, #1e60ec 0%, #4773f4 100%);
    color: white;
    padding: 7px 16px;
    border-radius: 17px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.lljm-faq-title {
    font-size: 33px;
    font-weight: 700;
    color: #201f25;
    margin: 0;
}

.lljm-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lljm-faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.lljm-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.lljm-faq-item.active .lljm-faq-answer {
    max-height: 500px;
    padding: 0 25px 18px;
}

.lljm-faq-item.active .lljm-faq-icon {
    transform: rotate(180deg);
}

.lljm-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 23px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #161a29;
    gap: 18px;
}

.lljm-faq-question:hover {
    color: #2a5feb;
}

.lljm-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #2061f0;
}

.lljm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.lljm-faq-answer-inner {
    color: #534450;
    line-height: 1.7;
    font-size: 15px;
}

/* ================================================
   TESTIMONIALS SLIDER
================================================ */
.lljm-reviews {
    margin: 67px 0;
    overflow: hidden;
}

.lljm-reviews__carousel {
    display: flex;
    gap: 28px;
    animation: slideReviews 30s linear infinite;
}

@keyframes slideReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.lljm-reviews__carousel:hover {
    animation-play-state: paused;
}

.lljm-review-card {
    flex-shrink: 0;
    width: 340px;
    background: var(--lljm-slate);
    padding: 30px;
    border-radius: var(--lljm-curve-lg);
    border: 1px solid var(--lljm-border);
}

.lljm-review-card__header {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 19px;
}

.lljm-review-card__avatar {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--lljm-bronze) 0%, var(--lljm-bronze-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: var(--lljm-charcoal);
    overflow: hidden;
}

.lljm-review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lljm-review-card__author {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lljm-review-card__name {
    font-weight: 600;
    color: var(--lljm-text);
}

.lljm-review-card__location {
    font-size: 13px;
    color: var(--lljm-text-dim);
}

.lljm-review-card__verified {
    width: 26px;
    height: 26px;
    background: var(--lljm-success);
    color: var(--lljm-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.lljm-review-card__stars {
    margin-bottom: 17px;
}

.lljm-review-card__text {
    font-size: 15px;
    color: var(--lljm-text);
    margin-bottom: 19px;
    font-style: italic;
    line-height: 1.7;
}

.lljm-review-card__date {
    font-size: 12px;
    color: var(--lljm-text-dim);
}

/* ================================================
   FOOTER
================================================ */
.lljm-footer {
    background: linear-gradient(180deg, var(--lljm-charcoal) 0%, #050a14 100%);
    border-top: 1px solid var(--lljm-border);
    padding: 62px 0 39px;
    margin-top: 67px;
}

.lljm-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.lljm-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 63px;
    margin-bottom: 50px;
    padding-bottom: 37px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.lljm-footer__brand-name {
    font-family: var(--lljm-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--lljm-text);
    margin-bottom: 17px;
}

.lljm-footer__desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--lljm-text-dim);
    max-width: 360px;
}

.lljm-footer__heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--lljm-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.lljm-footer__links {
    list-style: none;
}

.lljm-footer__links li {
    margin-bottom: 14px;
}

.lljm-footer__links a {
    color: var(--lljm-text-dim);
    font-size: 15px;
    transition: var(--lljm-anim);
}

.lljm-footer__links a:hover {
    color: var(--lljm-bronze);
}

.lljm-footer__bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* ================================================
   EXIT POPUP
================================================ */
.lljm-exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.lljm-exit-popup-overlay.is-visible {
    display: flex;
}

/* ================================================
   STICKY FOOTER BAR
================================================ */
.lljm-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
    padding: 13px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    flex-wrap: wrap;
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1024px) {
    .lljm-providers__head {
        display: none;
    }
    .lljm-providers__row {
        grid-template-columns: 1fr;
        padding: 23px 23px;
        text-align: center;
    }
    .lljm-company-cell__logo {
        max-width: 200px;
    }
    .lljm-providers {
        width: calc(100vw - 20px);
    }
    html, body {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .lljm-menu {
        display: none;
    }
    .lljm-hamburger {
        display: flex;
        margin-left: auto;
    }
    .lljm-topbar__action {
        display: none;
    }
    .lljm-hero__heading {
        font-size: 32px;
    }
    .lljm-hero__desc {
        font-size: 16px;
    }
    .lljm-toc__list {
        grid-template-columns: 1fr;
    }
    .lljm-footer__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
    .lljm-article h1 {
        font-size: 31px;
    }
    .lljm-block h2 {
        font-size: 24px;
    }
    .lljm-sticky-bar {
        flex-direction: column;
        gap: 9px;
        padding: 6px 15px;
        text-align: center;
    }
    .lljm-sticky-bar img {
        height: 35px;
    }
}

@media (max-width: 640px) {
    .lljm-faq { padding: 42px 0; }
    .lljm-faq-title { font-size: 23px; }
    .lljm-faq-question { font-size: 15px; padding: 17px 18px; }
}

/* Animation helper */
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Overhaul */
h1 { text-align: center !important; }
.lljm-hero__tag { margin-bottom: 5px !important; margin-top: 0 !important; }
.lljm-hero__heading { margin-bottom: 4px !important; margin-top: 0 !important; }
h1 { font-size: clamp(19px, 3vw, 32px) !important; margin-bottom: 11px !important; }
.lljm-hero__desc { margin-bottom: 15px !important; }
.lljm-hero { padding-bottom: 0 !important; margin-bottom: 0 !important; padding-top: 0 !important; }
img[class*="logo"] { border-radius: 13px !important; border: none !important; }

body.lljm-page { padding-bottom: 68px !important; }


/* ===== LIGHT THEME CONTENT OVERRIDES ===== */
body.lljm-page {
    background: #FFFFFF;
    color: #0A0E17;
}
.lljm-content { color: #0A0E17; }
.lljm-hero__heading { color: #0A0E17; }
.lljm-hero__desc { color: #475a6c; }
.lljm-section-intro__title { color: #0A0E17; }
.lljm-section-intro__text { color: #4b5761; }
.lljm-block { background: #EFF6FF; }
.lljm-block#overview { background: transparent; }
.lljm-block h2 { color: #0A0E17; }
.lljm-block__body { color: #0A0E17; }
.lljm-block__body strong { color: #0A0E17; }
.lljm-article h1 { color: #0A0E17; }
.lljm-toc { background: rgba(38,101,237,0.05); }
.lljm-toc__title { color: #0A0E17; }
.lljm-toc__list li a { color: #0A0E17; }
.lljm-review-card { background: #fff; border-color: #bee1f5; }
.lljm-review-card__name { color: #0A0E17; }
.lljm-review-card__text { color: #0A0E17; }
.lljm-review-card__location { color: #4e5462; }
.lljm-review-card__date { color: #3e4b67; }
.lljm-wrapper { color: #0A0E17; }
.lljm-faq-title { color: #0A0E17; }
.lljm-faq-question { color: #0A0E17; }
.lljm-faq-answer-inner { color: #41546a; }
.lljm-footer {
    background: linear-gradient(180deg, #0A0E17 0%, #06080d 100%);
}


/* ================================================
   SITE FIXES v2 - 2026-03-18
================================================ */

/* === Desktop logo width 170-230px === */
@media (min-width: 1025px) {
    .lljm-company-cell__logo {
        width: 200px !important;
        min-width: 170px !important;
        max-width: 230px !important;
    }
}

/* === CTA button text centering === */
.lljm-cta-cell {
    text-align: center !important;
}
.lljm-cta-cell__main,
.lljm-cta-cell__alt {
    text-align: center !important;
    justify-content: center !important;
}

/* === Content wrapper max-width 1500px === */
.lljm-wrapper {
    max-width: 1500px !important;
}

/* === Company table max-width 1500px desktop === */
@media (min-width: 1025px) {
    .lljm-providers {
        max-width: 1500px !important;
        width: 95vw !important;
    }
}

/* === Desktop content images 30% floated === */
@media (min-width: 769px) {
    .lljm-block__body img:not([src*="kit"]):not([src*="banner"]):not([src*="logo"]) {
        max-width: 30% !important;
        height: auto !important;
        border-radius: 10px !important;
    }
    .lljm-block__body img.img-fl {
        float: left !important;
        margin: 0 1.5rem 1rem 0 !important;
    }
    .lljm-block__body img.img-fr {
        float: right !important;
        margin: 0 0 1rem 1.5rem !important;
    }
    .lljm-block__body img.img-fc {
        float: none !important;
        margin: 1rem auto !important;
        display: block !important;
    }
    .lljm-block::after {
        content: "";
        display: table;
        clear: both;
    }
}
@media (max-width: 768px) {
    .lljm-block__body img {
        max-width: 100% !important;
        float: none !important;
        display: block !important;
        margin: 1rem auto !important;
    }
}

/* === Mobile company cards === */
@media (max-width: 768px) {
    .lljm-providers {
        width: 100% !important;
        transform: none !important;
        margin-left: 0 !important;
        padding: 0 9px !important;
    }
    .lljm-providers__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    .lljm-providers__row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 27px 16px !important;
        gap: 9px !important;
        background: #fff !important;
        border-radius: 18px !important;
        box-shadow: 0 1px 15px rgba(0,0,0,0.08) !important;
        border: 1px solid #e7eee7 !important;
        border-bottom: 1px solid #ebeaeb !important;
    }
    .lljm-providers__row.top-pick {
        border-left: 4px solid #215ef0 !important;
    }
    .lljm-company-cell__logo {
        width: 50% !important;
        max-width: 50vw !important;
        min-width: auto !important;
        min-height: auto !important;
    }
    .lljm-cta-cell {
        width: 100% !important;
    }
    .lljm-cta-cell__main {
        width: 100% !important;
        padding: 14px 17px !important;
        font-size: 16px !important;
        border-radius: 9px !important;
    }
    .lljm-cta-cell__alt {
        width: 100% !important;
        padding: 13px 17px !important;
        border-radius: 8px !important;
    }
    .lljm-perks {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    .lljm-wrapper {
        padding: 11px 12px !important;
    }
    .lljm-score {
        width: 100% !important;
    }
    .lljm-invest {
        width: 100% !important;
    }
}

/* === Review page logo with semi-transparent white bg === */
.review-logo-wrap {
    display: inline-block !important;
    background: rgba(255,255,255,0.85) !important;
    border-radius: 13px !important;
    padding: 18px 23px !important;
    backdrop-filter: blur(5px) !important;
    margin-bottom: 17px !important;
}

/* === Breadcrumbs === */
.lljm-breadcrumbs {
    max-width: 1500px;
    margin: 0 auto;
    padding: 11px 32px;
    font-size: 10px;
    color: #4c4b5f;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lljm-breadcrumbs a {
    color: #2069e6;
    text-decoration: none;
}
.lljm-breadcrumbs a:hover {
    text-decoration: underline;
}
.lljm-breadcrumbs .lljm-bc-sep {
    margin: 0 7px;
    color: #9dabbc;
}
@media (max-width: 768px) {
    .lljm-breadcrumbs {
        padding: 7px 13px;
        font-size: 10px;
    }
}

/* === FAQ fixes === */
.lljm-faq-question {
    padding: 17px 20px !important;
}
.lljm-faq-question::after {
    content: none !important;
    display: none !important;
}
.lljm-faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 21px !important;
    transition: max-height 0.3s ease, padding 0.3s ease !important;
}
.lljm-faq-item.active .lljm-faq-answer {
    max-height: 500px !important;
    padding: 0 23px 23px !important;
}
.lljm-faq {
    margin: 2rem 0 !important;
}

/* === Banners centered === */
.kit-banner-block {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* === TOC === */
.lljm-toc {
    max-width: 1500px !important;
    margin: 22px auto !important;
}
@media (max-width: 768px) {
    .lljm-toc {
        margin: 16px 5px !important;
    }
    .lljm-toc__list {
        grid-template-columns: 1fr !important;
    }
}

/* === Mobile centering === */
@media (max-width: 768px) {
    .lljm-hero,
    .lljm-section-intro,
    .lljm-faq-header {
        text-align: center !important;
    }
    /* Review page grid fixes */
    div[style*="grid-template-columns:repeat(auto-fit"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    div[style*="grid-template-columns:repeat(auto-fill"] {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* === Hero compactness v2 === */
.lljm-hero {
    padding: 0 !important;
    margin: 0 !important;
}
.lljm-hero__heading {
    margin-bottom: 3px !important;
    font-size: clamp(23px, 2.5vw, 30px) !important;
}
.lljm-hero__tag {
    margin-bottom: 3px !important;
    padding: 7px 16px !important;
    font-size: 7px !important;
}
.lljm-section-intro {
    margin-bottom: 18px !important;
}
.lljm-section-intro__title {
    font-size: clamp(20px, 2.5vw, 28px) !important;
    margin-bottom: 5px !important;
}
.lljm-providers {
    margin-top: 14px !important;
    margin-bottom: 35px !important;
}
/* Disclosure bar more compact */
div[style*="background:#fff8e1"] {
    margin: 6px auto !important;
    padding: 5px 18px !important;
    font-size: 11px !important;
}

/* === Mobile section title size fix === */
@media (max-width: 768px) {
    .lljm-section-intro__title {
        font-size: clamp(18px, 5vw, 24px) !important;
        margin-bottom: 5px !important;
    }
    .lljm-section-intro__text {
        font-size: 13px !important;
        margin-bottom: 5px !important;
    }
    .lljm-section-intro__label {
        font-size: 9px !important;
        padding: 4px 15px !important;
        margin-bottom: 7px !important;
    }
    .lljm-section-intro {
        margin-bottom: 10px !important;
    }
    .lljm-faq-title {
        font-size: clamp(18px, 5vw, 22px) !important;
    }
    .lljm-faq-header {
        margin-bottom: 13px !important;
    }
}

/* === QA Fixes === */

/* Fix A: TOC toggle button style + max-width constraint */
.lljm-toc__toggle {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--lljm-font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--lljm-text-dark);
    padding: 11px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}
#bomToc {
    max-width: 400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Fix B: H1 visible above fold with strong contrast on light background */
.lljm-hero__heading {
    color: #0A0E17 !important;
    text-shadow: none !important;
}
h1.lljm-hero__heading,
.lljm-hero h1 {
    color: #0A0E17 !important;
}
