/**
 * Caterpillar Timeless Theme
 * Auto-generated
 */

:root {
    --bkce-primary: #30345d;
    --bkce-primary-light: #5b6582;
    --bkce-primary-dark: #231f38;
    --bkce-bronze: #6c6bcc;
    --bkce-bronze-light: #9284e3;
    --bkce-bronze-dark: #515ca1;
    --bkce-silver: #b8c3c2;
    --bkce-silver-light: #d2dddc;
    --bkce-charcoal: #F0F0FA;
    --bkce-midnight: #FAFAFE;
    --bkce-slate: #FFFFFF;
    --bkce-text: #E8EDF2;
    --bkce-text-dim: #819aa8;
    --bkce-text-dark: #2e294f;
    --bkce-border: #cccbf5;
    --bkce-success: #31c276;
    --bkce-warning: #e15140;
    --bkce-highlight: #f5d80a;
    --bkce-curve-sm: 4px;
    --bkce-curve-md: 8px;
    --bkce-curve-lg: 12px;
    --bkce-glow: 0 4px 12px rgba(0,0,0,0.1);
    --bkce-glow-bronze: 0 6px 24px rgba(106,106,213,0.25);
    --bkce-anim: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --bkce-font-heading: 'Inter', sans-serif;
    --bkce-font-text: 'Inter', sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bkce-menu__link:hover,
.bkce-menu__link.current {
    color: var(--bkce-bronze);
    background: rgba(107,116,205,0.12);
}

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

.bkce-topbar__action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108,109,212,0.5);
    color: var(--bkce-charcoal);
}

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

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

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

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

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

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

.bkce-drawer.open {
    display: block;
    max-height: 420px;
    padding: 23px 34px;
}

.bkce-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

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

.bkce-drawer__nav a:hover {
    background: rgba(109,103,204,0.12);
    color: var(--bkce-bronze);
}

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

.bkce-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 11px 34px;
}

/* ================================================
   HERO BANNER
================================================ */
.bkce-hero {
    text-align: center;
    padding: 0 0 13px;
    margin-bottom: 16px;
}

.bkce-hero__tag {
    display: inline-block;
    padding: 13px 22px;
    background: rgba(110,113,211,0.18);
    color: var(--bkce-bronze);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    border-radius: 49px;
    margin-bottom: 26px;
}

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

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

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

.bkce-section-intro__label {
    display: inline-block;
    padding: 10px 15px;
    background: rgba(111,106,203,0.18);
    color: var(--bkce-bronze);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 48px;
    margin-bottom: 17px;
}

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

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

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

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

.bkce-providers__head {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 27px;
    padding: 14px 33px;
    background: #272a4d;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    text-align: center;
    align-items: center;
}

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

.bkce-providers__row {
    display: grid;
    grid-template-columns: 1.6fr 2fr 0.9fr 0.9fr 1.2fr;
    gap: 26px;
    padding: 19px 32px;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #e6dae8;
    background: #ffffff;
    transition: background 0.2s ease;
}

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

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

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

.bkce-providers__row.top-pick {
    background: #fef9e7;
    border-left: 4px solid #5852a4;
}

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

.bkce-company-cell__logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    min-height: 60px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 9px 16px;
    border: 2px solid #eee;
}

.bkce-company-cell__tagline {
    font-size: 12px;
    color: #4f4e9f;
    text-align: center;
    font-weight: 500;
}

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

.bkce-perk {
    display: block;
    padding: 6px 13px;
    background: #eaf2e8;
    color: #126020;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    text-align: center;
    width: fit-content;
    border: 1px solid #c9e4c4;
}

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

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

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

.bkce-stars__star.lit {
    color: #ed980a;
}

.bkce-stars__star.dim {
    color: #d4cbe0;
}

.bkce-score__num {
    font-weight: 700;
    color: #254454;
    font-size: 17px;
}

.bkce-score__bbb {
    font-size: 11px;
    color: #1f611f;
    font-weight: 700;
    background: #e8f5e9;
    padding: 3px 5px;
    border-radius: 4px;
}

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

.bkce-invest__amount {
    font-weight: 700;
    color: #313958;
    font-size: 17px;
}

.bkce-invest__label {
    font-size: 11px;
    color: #7b8390;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

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

.bkce-cta-cell__main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    background: linear-gradient(135deg, #5f5ea6 0%, #8287d1 100%);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 11px;
    transition: var(--bkce-anim);
}

.bkce-cta-cell__main:hover {
    color: #fff;
    box-shadow: 0 4px 12px rgba(112,116,218,0.3);
}

.bkce-cta-cell__alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 17px;
    color: #4b534b;
    border: 2px solid #ccc6d1;
    font-size: 11px;
    border-radius: 8px;
    transition: var(--bkce-anim);
}

.bkce-cta-cell__alt:hover {
    background: #f0f0f0;
    color: #2a2933;
}

/* ================================================
   TABLE OF CONTENTS
================================================ */
.bkce-toc {
    background: linear-gradient(135deg, rgba(113,110,210,0.12) 0%, rgba(114,103,217,0.05) 100%);
    border: 2px solid var(--bkce-bronze);
    border-radius: var(--bkce-curve-lg);
    padding: 26px 37px;
    margin: 39px 0;
}

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

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

.bkce-toc__list li a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 8px 17px;
    color: var(--bkce-text);
    font-size: 14px;
    border-radius: var(--bkce-curve-sm);
    transition: var(--bkce-anim);
}

.bkce-toc__list li a:hover {
    background: rgba(115,113,209,0.18);
    color: var(--bkce-bronze);
}

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

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

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

.bkce-block {
    margin: 44px 0;
    padding: 35px;
    background: var(--bkce-slate);
    border-radius: var(--bkce-curve-lg);
}

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

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

.bkce-block__body {
    font-size: 19px;
    line-height: 1.85;
}

.bkce-block__body p {
    margin-bottom: 17px;
}

.bkce-block__body ul,
.bkce-block__body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.bkce-block__body li {
    margin-bottom: 12px;
}

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

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

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

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

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

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

.bkce-faq-header {
    text-align: center;
    margin-bottom: 37px;
}

.bkce-faq-label {
    display: inline-block;
    background: linear-gradient(135deg, #7076d9 0%, #7b87d9 100%);
    color: white;
    padding: 6px 19px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 11px;
}

.bkce-faq-title {
    font-size: 34px;
    font-weight: 700;
    color: #1b1929;
    margin: 0;
}

.bkce-faq-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.bkce-faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

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

.bkce-faq-item.active .bkce-faq-answer {
    max-height: 500px;
    padding: 0 26px 17px;
}

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

.bkce-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 27px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #111524;
    gap: 17px;
}

.bkce-faq-question:hover {
    color: #7266d8;
}

.bkce-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #6976d7;
}

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

.bkce-faq-answer-inner {
    color: #4d4d59;
    line-height: 1.7;
    font-size: 15px;
}

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

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

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

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

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

.bkce-review-card__header {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
}

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

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

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

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

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

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

.bkce-review-card__stars {
    margin-bottom: 18px;
}

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

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

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

.bkce-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 29px;
}

.bkce-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 53px;
    padding-bottom: 38px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

.bkce-footer__links li {
    margin-bottom: 13px;
}

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

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

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

/* ================================================
   EXIT POPUP
================================================ */
.bkce-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;
}

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

/* ================================================
   STICKY FOOTER BAR
================================================ */
.bkce-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: 10px 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

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

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

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

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

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

body.bkce-page { padding-bottom: 67px !important; }


/* ===== LIGHT THEME CONTENT OVERRIDES ===== */
body.bkce-page {
    background: #FAFAFE;
    color: #272357;
}
.bkce-content { color: #323452; }
.bkce-hero__heading { color: #282f4c; }
.bkce-hero__desc { color: #776fda; }
.bkce-section-intro__title { color: #2a2850; }
.bkce-section-intro__text { color: #7866ca; }
.bkce-block { background: #F0F0FA; }
.bkce-block#overview { background: transparent; }
.bkce-block h2 { color: #223055; }
.bkce-block__body { color: #2c2c4f; }
.bkce-block__body strong { color: #23284a; }
.bkce-article h1 { color: #2d2459; }
.bkce-toc { background: rgba(106,117,205,0.05); }
.bkce-toc__title { color: #243458; }
.bkce-toc__list li a { color: #2f3053; }
.bkce-review-card { background: #fff; border-color: #ccd2f5; }
.bkce-review-card__name { color: #30285c; }
.bkce-review-card__text { color: #272457; }
.bkce-review-card__location { color: #7577d1; }
.bkce-review-card__date { color: #6c74cb; }
.bkce-wrapper { color: #322c5b; }
.bkce-faq-title { color: #292850; }
.bkce-faq-question { color: #34254b; }
.bkce-faq-answer-inner { color: #6e77d9; }
.bkce-footer {
    background: linear-gradient(180deg, #353155 0%, #1a1b2d 100%);
}

/* ===== MOBILE REVIEWS FIX ===== */
@media (max-width: 768px) {
    .bkce-wrapper {
        padding-left: 19px;
        padding-right: 14px;
    }
    .bkce-reviews {
        overflow: hidden;
    }
    .bkce-reviews__carousel {
        flex-direction: column;
        align-items: stretch;
        gap: 17px;
        animation: none !important;
        overflow: hidden !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }
    .bkce-review-card {
        width: 100% !important;
        max-width: 100% !important;
        flex-shrink: 0;
        box-sizing: border-box;
        padding: 23px 23px;
    }
    .bkce-review-card:nth-child(n+7) {
        display: none;
    }
    .bkce-review-card__text {
        font-style: normal;
        padding-left: 3px;
    }
    .bkce-faq {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }
    .bkce-faq .bkce-wrapper {
        padding: 0 13px;
    }
    .bkce-providers {
        width: 100% !important;
        transform: none !important;
        margin-left: 0 !important;
    }
}


/* ===== COMPREHENSIVE FIXES v1 ===== */

/* Max content width 1500px */
.bkce-wrapper {
    max-width: 1500px !important;
}

/* Company table max width 1500px */
.bkce-providers {
    max-width: 1500px !important;
    width: 95vw !important;
}

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

/* Center button text in CTA cells */
.bkce-cta-cell {
    text-align: center !important;
}
.bkce-cta-cell__main,
.bkce-cta-cell__alt {
    text-align: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 180px !important;
}

/* Desktop images in content: 30% width with text wrap */
@media (min-width: 769px) {
    .bkce-block__body img:not([class*="logo"]):not([src*="logo"]):not([src*="kit"]) {
        max-width: 30% !important;
        height: auto !important;
        margin: 0.5rem 1.5rem 1rem 0 !important;
        float: left !important;
        border-radius: 9px !important;
    }
    .bkce-block__body img:nth-of-type(even):not([class*="logo"]):not([src*="logo"]):not([src*="kit"]) {
        float: right !important;
        margin: 0.5rem 0 1rem 1.5rem !important;
    }
    .bkce-block::after {
        content: "";
        display: table;
        clear: both;
    }
}

/* Mobile images: 100% width */
@media (max-width: 768px) {
    .bkce-block__body img {
        max-width: 100% !important;
        float: none !important;
        display: block !important;
        margin: 1rem auto !important;
    }
}

/* FAQ: compact height, no bloated margins */
.bkce-faq {
    padding: 2rem 0 !important;
    margin: 2rem 0 !important;
}
.bkce-faq .bkce-wrapper {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
}
.bkce-faq-question {
    padding: 16px 17px !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}
.bkce-faq-item {
    margin-bottom: 11px !important;
}
.bkce-faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 18px !important;
    transition: max-height 0.3s ease, padding 0.3s ease !important;
}
.bkce-faq-item.active .bkce-faq-answer {
    max-height: 600px !important;
    padding: 0 23px 15px !important;
}
/* Only one indicator - use the icon span, hide any ::after */
.bkce-faq-question::after {
    display: none !important;
}
.bkce-faq-icon {
    font-size: 18px !important;
    font-weight: bold !important;
    transition: transform 0.3s ease !important;
    flex-shrink: 0 !important;
}
.bkce-faq-item.active .bkce-faq-icon {
    transform: rotate(45deg) !important;
}

/* Breadcrumbs */
.breadcrumbs {
    max-width: 1500px;
    margin: 0 auto;
    padding: 8px 35px;
    font-size: 11px;
    color: #666cc9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.breadcrumbs ol {
    list-style: none !important;
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
}
.breadcrumbs li {
    display: inline !important;
}
.breadcrumbs a {
    color: #7168d8;
    text-decoration: none;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs span[itemprop="name"] {
    color: #233554;
}

/* Review page: company logo with semi-transparent white bg */
.bkce-review-header {
    background: linear-gradient(135deg, #1c1f2d 0%, #252d4e 100%) !important;
    padding: 2rem !important;
    border-radius: 13px !important;
    color: #fff !important;
}
.bkce-review-logo {
    background: rgba(255,255,255,0.92) !important;
    padding: 19px !important;
    border-radius: 11px !important;
    max-width: 200px !important;
}
.bkce-review-meta h1 {
    color: #fff !important;
}
.bkce-review-meta .tagline {
    color: #d0c2ca !important;
}

/* Mobile: cards layout for company table */
@media (max-width: 1024px) {
    .bkce-providers__row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 24px 19px !important;
        gap: 10px !important;
        border-radius: 13px !important;
        margin: 11px 0 !important;
        box-shadow: 0 1px 10px rgba(0,0,0,0.06) !important;
    }
    .bkce-company-cell__logo {
        width: 45% !important;
        max-width: none !important;
    }
    .bkce-cta-cell {
        width: 100% !important;
        align-items: center !important;
    }
    .bkce-cta-cell__main,
    .bkce-cta-cell__alt {
        max-width: 250px !important;
        width: 80% !important;
    }
}

/* Mobile minimal side padding */
@media (max-width: 768px) {
    .bkce-wrapper {
        padding-left: 15px !important;
        padding-right: 10px !important;
    }
    .breadcrumbs {
        padding: 9px 15px;
    }
    .bkce-company-cell__logo {
        width: 50% !important;
    }
    /* Review header responsive */
    .bkce-review-header {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }
    .bkce-review-logo {
        max-width: 160px !important;
    }
}

/* Banners centered */
.kit-banner-block {
    text-align: center !important;
    margin: 2rem auto !important;
}
.kit-banner-block img {
    max-width: 100% !important;
    margin: 0 auto !important;
}

/* Sticky footer compact */
.bkce-sticky-bar {
    padding: 10px 13px !important;
}

/* Ensure all text contrasts with bg */
.bkce-block__body,
.bkce-block__body p,
.bkce-block__body li,
.bkce-block__body strong {
    color: #2f295c !important;
}

/* Review page other company logos with white bg */
.bkce-other-card img {
    background: rgba(255,255,255,0.9) !important;
    padding: 8px !important;
    border-radius: 11px !important;
}

/* ===== V2 FIXES ===== */

/* More compact hero */
.bkce-hero {
    padding: 1rem 0 0.5rem !important;
    margin-bottom: 0 !important;
}
.bkce-hero__heading {
    font-size: clamp(22px, 3vw, 28px) !important;
    margin: 0.3rem 0 !important;
}
.bkce-hero__desc {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
}

/* Providers section tighter */
.bkce-providers {
    margin-top: 1rem !important;
    margin-bottom: 2rem !important;
}

/* Breadcrumbs inside wrapper */
.breadcrumbs {
    padding: 7px 0 !important;
    margin: 0 !important;
    max-width: none !important;
}

/* Audit styles hidden since we removed them */
.audit-disclosure, .audit-author-block {
    display: none !important;
}


/* ===== V3 FIXES ===== */

/* Hide audit blocks above header */
.audit-disclosure,
.audit-author-block {
    display: none !important;
}

/* Fix breadcrumbs - hide ol numbering */
.breadcrumbs ol {
    list-style: none !important;
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
}
.breadcrumbs ol li {
    display: inline !important;
    list-style: none !important;
}

/* Company table: reduce empty space above it */
.bkce-providers {
    padding-top: 0 !important;
}
section.bkce-providers {
    padding-top: 0 !important;
}

/* Hero desc: center properly */
.bkce-hero__desc {
    text-align: center !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Company logos: enforce min-width on desktop */
@media (min-width: 1025px) {
    .bkce-company-cell__logo {
        width: 200px !important;
        min-width: 170px !important;
        max-width: 230px !important;
        object-fit: contain !important;
    }
}

/* Kit banner image centered */
.kit-banner-block {
    text-align: center !important;
}
.kit-banner-block a {
    display: inline-block !important;
}

/* TOC tighter */
.bkce-toc {
    margin: 1.5rem 0 !important;
    padding: 18px 29px !important;
}

/* On homepage, hide the breadcrumb "Home" as it's redundant */
body.bkce-page > .bkce-wrapper:first-of-type .breadcrumbs ol li:only-child {
    color: #6a68d6;
}


/* ===== V5 FIXES ===== */

/* Review header - force white text */
.bkce-review-header h1,
.bkce-review-header .bkce-review-meta h1,
.bkce-review-header .tagline,
.bkce-review-header span,
.bkce-review-header .bkce-score__num,
.bkce-review-header .bkce-review-meta span {
    color: #fff !important;
}
.bkce-review-header .tagline {
    color: #e2dfe4 !important;
}

/* Other company cards - bigger logos */
.bkce-other-card img {
    height: 60px !important;
    max-height: 60px !important;
    object-fit: contain !important;
    background: rgba(255,255,255,0.92) !important;
    padding: 12px !important;
    border-radius: 5px !important;
}

/* Footer links as vertical list */
.bkce-footer__links {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

/* Pro/con items - better contrast */
.bkce-pros li,
.bkce-cons li {
    color: #2f312f !important;
}

/* Fees table text contrast */
.bkce-fees-table td,
.bkce-fees-table th {
    color: #313552 !important;
}

/* Review page stats - ensure contrast */
.bkce-review-stat__label {
    color: #5b504c !important;
}
.bkce-review-stat__value {
    color: #27314c !important;
}

/* Mobile review header */
@media (max-width: 768px) {
    .bkce-review-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    .bkce-review-logo {
        margin: 0 auto !important;
    }
    .bkce-review-meta {
        text-align: center !important;
    }
    .bkce-review-meta .bkce-stars {
        justify-content: center !important;
    }
    .bkce-other-companies {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* CTA box centered on review pages */
.bkce-cta-box {
    max-width: 800px !important;
    margin: 2rem auto !important;
}

/* Make description text on review page have good contrast */
.bkce-block__body p,
.bkce-block__body {
    color: #302939 !important;
}
