/* Sharp Silk Style - Auto-themed */
:root {
    --hbjf-primary: #125b26;
    --hbjf-accent: #67be6b;
    --hbjf-gold: #5cbc66;
    --hbjf-gold-light: #7cca76;
    --hbjf-gold-muted: #a28b65;
    --hbjf-surface: #F1F8E9;
    --hbjf-surface-alt: #E8F5E9;
    --hbjf-dark: #1d5f19;
    --hbjf-text: #176328;
    --hbjf-text-muted: #5b8533;
    --hbjf-border: #c3e4c6;
    --hbjf-border-subtle: #f0eeea;
    --hbjf-shadow-sm: 0 2px 8px rgba(22,23,34,0.06);
    --hbjf-shadow-md: 0 8px 24px rgba(21,29,43,0.08);
    --hbjf-shadow-lg: 0 16px 48px rgba(20,27,35,0.12);
    --hbjf-shadow-gold: 0 8px 32px rgba(195,167,90,0.15);
    --hbjf-radius-sm: 3px;
    --hbjf-radius-md: 4px;
    --hbjf-radius-lg: 5px;
    --hbjf-transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: var(--hbjf-text);
    background: var(--hbjf-surface);
    -webkit-font-smoothing: antialiased;
}

.hbjf-wrapper { max-width: 1180px; margin: 0 auto; padding: 0 31px; }

/* Navigation Bar */
.hbjf-navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(254,253,251,0.92);
    backdrop-filter: blur(17px) saturate(180%);
    border-bottom: 1px solid var(--hbjf-border);
    transition: box-shadow 0.4s var(--hbjf-transition);
}

.hbjf-navbar.scrolled { box-shadow: var(--hbjf-shadow-md); }

.hbjf-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 0;
}

.hbjf-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--hbjf-primary);
}

.hbjf-brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(145deg, var(--hbjf-gold), var(--hbjf-gold-muted));
    border-radius: var(--hbjf-radius-sm);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--hbjf-dark);
    font-size: 18px;
    box-shadow: var(--hbjf-shadow-gold);
}

.hbjf-brand-name {
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.4px;
}

.hbjf-menu { display: flex; gap: 6px; }

.hbjf-menu-item {
    color: var(--hbjf-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
    border-radius: var(--hbjf-radius-sm);
    transition: all 0.3s var(--hbjf-transition);
}

.hbjf-menu-item:hover,
.hbjf-menu-item.current {
    background: var(--hbjf-surface-alt);
    color: var(--hbjf-gold-muted);
}

.hbjf-burger {
    display: none;
    flex-direction: column;
    gap: 7px;
    width: 27px;
    height: 31px;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hbjf-burger-line {
    height: 1px;
    background: var(--hbjf-primary);
    border-radius: 3px;
    transition: all 0.3s var(--hbjf-transition);
}

.hbjf-burger.open .hbjf-burger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hbjf-burger.open .hbjf-burger-line:nth-child(2) { opacity: 0; }
.hbjf-burger.open .hbjf-burger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.hbjf-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 19px 29px 22px;
    background: var(--hbjf-surface);
    border-top: 1px solid var(--hbjf-border);
}

.hbjf-mobile-menu.visible { display: flex; }

.hbjf-mobile-link {
    padding: 14px 0;
    color: var(--hbjf-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--hbjf-border-subtle);
}

.hbjf-mobile-link:last-child { border-bottom: none; }

/* Hero Banner */
.hbjf-hero {
    background: linear-gradient(165deg, var(--hbjf-dark) 0%, #24253a 45%, var(--hbjf-primary) 100%);
    color: #fff;
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

.hbjf-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 35%, rgba(193,155,91,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 65%, rgba(135,116,78,0.08) 0%, transparent 50%);
}

.hbjf-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hbjf-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 25px;
    background: rgba(199,162,96,0.15);
    border: 1px solid rgba(198,168,88,0.35);
    border-radius: 47px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--hbjf-gold-light);
    margin-bottom: 31px;
}

.hbjf-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(38px, 6vw, 54px);
    font-weight: 600;
    line-height: 1.18;
    margin-bottom: 25px;
    color: #fff;
}

.hbjf-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    margin-bottom: 33px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hbjf-hero-btns { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

.hbjf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 33px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--hbjf-radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--hbjf-transition);
}

.hbjf-btn-gold {
    background: linear-gradient(145deg, var(--hbjf-gold), var(--hbjf-gold-muted));
    color: var(--hbjf-dark);
    box-shadow: var(--hbjf-shadow-gold);
}

.hbjf-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(196,155,89,0.28);
}

.hbjf-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.25);
}

.hbjf-btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.45);
}

/* Stats Counter Component */
.hbjf-stats {
    padding: 55px 0;
    background: var(--hbjf-surface-alt);
    border-bottom: 1px solid var(--hbjf-border);
}

.hbjf-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 33px;
}

.hbjf-stat-card {
    text-align: center;
    padding: 26px 23px;
    background: var(--hbjf-surface);
    border-radius: var(--hbjf-radius-md);
    border: 1px solid var(--hbjf-border);
    transition: all 0.4s var(--hbjf-transition);
}

.hbjf-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hbjf-shadow-md);
    border-color: var(--hbjf-gold);
}

.hbjf-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--hbjf-gold-muted);
    line-height: 1;
    margin-bottom: 7px;
}

.hbjf-stat-label {
    font-size: 17px;
    color: var(--hbjf-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-weight: 500;
}

/* CTA Banner Component */
.hbjf-cta-banner {
    background: linear-gradient(160deg, var(--hbjf-gold) 0%, var(--hbjf-gold-muted) 100%);
    padding: 50px 51px;
    border-radius: var(--hbjf-radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin: 57px 0;
    box-shadow: var(--hbjf-shadow-lg);
}

.hbjf-cta-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--hbjf-dark);
    margin-bottom: 7px;
}

.hbjf-cta-text p {
    color: rgba(32,31,37,0.75);
    font-size: 16px;
}

.hbjf-cta-action .hbjf-btn {
    background: var(--hbjf-dark);
    color: #fff;
    padding: 17px 34px;
}

.hbjf-cta-action .hbjf-btn:hover {
    background: var(--hbjf-primary);
    transform: translateY(-2px);
}

/* Process Steps Component */
.hbjf-process {
    padding: 80px 0;
    background: var(--hbjf-surface);
}

.hbjf-process-header {
    text-align: center;
    margin-bottom: 53px;
}

.hbjf-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--hbjf-primary);
    margin-bottom: 13px;
}

.hbjf-section-desc {
    font-size: 20px;
    color: var(--hbjf-text-muted);
    max-width: 560px;
    margin: 0 auto;
}

.hbjf-steps-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
}

.hbjf-steps-list::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--hbjf-border), var(--hbjf-gold), var(--hbjf-border));
}

.hbjf-step-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hbjf-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--hbjf-surface);
    border: 3px solid var(--hbjf-gold);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--hbjf-gold-muted);
    margin: 0 auto 19px;
    transition: all 0.35s var(--hbjf-transition);
}

.hbjf-step-item:hover .hbjf-step-num {
    background: var(--hbjf-gold);
    color: var(--hbjf-dark);
    transform: scale(1.1);
}

.hbjf-step-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--hbjf-primary);
    margin-bottom: 7px;
}

.hbjf-step-desc {
    font-size: 13px;
    color: var(--hbjf-text-muted);
    line-height: 1.5;
}

/* Main Content */
.hbjf-content { padding: 69px 0; }

.hbjf-article {
    max-width: 780px;
    margin: 0 auto;
}

.hbjf-lead {
    font-size: 19px;
    line-height: 1.8;
    color: var(--hbjf-text);
    margin-bottom: 43px;
    padding: 29px 30px;
    background: var(--hbjf-surface-alt);
    border-left: 4px solid var(--hbjf-gold);
    border-radius: 0 var(--hbjf-radius-md) var(--hbjf-radius-md) 0;
}

.hbjf-article h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--hbjf-primary);
    margin: 49px 0 24px;
    padding-bottom: 13px;
    border-bottom: 3px solid var(--hbjf-border);
    position: relative;
}

.hbjf-article h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--hbjf-gold);
}

.hbjf-article h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--hbjf-primary);
    margin: 33px 0 18px;
}

.hbjf-article p { margin-bottom: 21px; }

.hbjf-list, .hbjf-list-num {
    margin: 31px 0;
    padding-left: 29px;
}

.hbjf-list li, .hbjf-list-num li {
    margin-bottom: 12px;
    padding-left: 13px;
    line-height: 1.7;
}

.hbjf-list li::marker { color: var(--hbjf-gold); font-weight: 700; }

.hbjf-img-block {
    margin: 48px 0;
    border-radius: var(--hbjf-radius-lg);
    overflow: hidden;
    box-shadow: var(--hbjf-shadow-lg);
    border: 1px solid var(--hbjf-border);
}

.hbjf-img-block img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--hbjf-transition);
}

.hbjf-img-block:hover img { transform: scale(1.03); }

/* FAQ Accordion */
.hbjf-faq {
    margin-top: 74px;
    padding-top: 59px;
    border-top: 2px solid var(--hbjf-border);
}

.hbjf-faq-header {
    text-align: center;
    margin-bottom: 45px;
}

.hbjf-faq-list { display: flex; flex-direction: column; gap: 12px; }

.hbjf-faq-item {
    background: var(--hbjf-surface);
    border: 1px solid var(--hbjf-border);
    border-radius: var(--hbjf-radius-md);
    overflow: hidden;
    transition: all 0.35s var(--hbjf-transition);
}

.hbjf-faq-item:hover { border-color: var(--hbjf-gold); }

.hbjf-faq-item.expanded {
    border-color: var(--hbjf-gold);
    box-shadow: var(--hbjf-shadow-md);
}

.hbjf-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 19px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.hbjf-faq-q {
    font-size: 17px;
    font-weight: 600;
    color: var(--hbjf-primary);
}

.hbjf-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--hbjf-surface-alt);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: all 0.35s var(--hbjf-transition);
}

.hbjf-faq-icon svg { width: 16px; height: 16px; color: var(--hbjf-gold-muted); transition: transform 0.35s; }

.hbjf-faq-item.expanded .hbjf-faq-icon {
    background: var(--hbjf-gold);
}

.hbjf-faq-item.expanded .hbjf-faq-icon svg {
    transform: rotate(180deg);
    color: var(--hbjf-dark);
}

.hbjf-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--hbjf-transition);
}

.hbjf-faq-item.expanded .hbjf-faq-body { max-height: 600px; }

.hbjf-faq-answer {
    padding: 0 23px 26px;
    color: var(--hbjf-text-muted);
    line-height: 1.75;
}

/* Footer */
.hbjf-footer {
    background: var(--hbjf-dark);
    color: rgba(255,255,255,0.75);
    padding: 71px 0 39px;
    margin-top: 81px;
}

.hbjf-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 54px;
    margin-bottom: 51px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hbjf-footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.hbjf-footer-tagline {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
}

.hbjf-footer-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hbjf-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hbjf-footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.hbjf-footer-links a:hover { color: var(--hbjf-gold-light); }

.hbjf-footer-copy {
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* Contact Form */
.hbjf-form-group { margin-bottom: 21px; }

.hbjf-form-label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: var(--hbjf-text);
    margin-bottom: 9px;
}

.hbjf-form-input,
.hbjf-form-textarea {
    width: 100%;
    padding: 12px 21px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid var(--hbjf-border);
    border-radius: var(--hbjf-radius-sm);
    background: var(--hbjf-surface);
    color: var(--hbjf-text);
    transition: all 0.3s var(--hbjf-transition);
}

.hbjf-form-input:focus,
.hbjf-form-textarea:focus {
    outline: none;
    border-color: var(--hbjf-gold);
    box-shadow: 0 0 0 3px rgba(194,156,91,0.12);
}

.hbjf-form-textarea { min-height: 140px; resize: vertical; }

/* Page Header */
.hbjf-page-header {
    background: var(--hbjf-surface-alt);
    padding: 67px 0;
    text-align: center;
    border-bottom: 2px solid var(--hbjf-border);
}

.hbjf-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--hbjf-primary);
    margin-bottom: 15px;
}

.hbjf-page-desc {
    font-size: 17px;
    color: var(--hbjf-text-muted);
    max-width: 540px;
    margin: 0 auto;
}

/* Utility */
.hbjf-text-center { text-align: center; }
.hbjf-mt-lg { margin-top: 50px; }

/* Responsive */
@media (max-width: 1024px) {
    .hbjf-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hbjf-steps-list {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 35px;
    }
    .hbjf-steps-list::before { display: none; }
    .hbjf-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hbjf-header { position: relative !important; }
    .hbjf-menu { display: none; }
    .hbjf-burger { display: flex; }

    .hbjf-hero { padding: 68px 0 63px; }
    .hbjf-hero-title { font-size: 32px; }
    .hbjf-hero-desc { font-size: 16px; }
    .hbjf-hero-btns { flex-direction: column; }
    .hbjf-btn { width: 100%; }

    .hbjf-stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .hbjf-stat-num { font-size: 31px; }

    .hbjf-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 39px 29px;
    }

    .hbjf-steps-list { grid-template-columns: 1fr; gap: 22px; }

    .hbjf-article h2 { font-size: 29px; }
    .hbjf-article h3 { font-size: 20px; }
    .hbjf-lead { font-size: 17px; padding: 22px 21px; }

    .hbjf-footer-grid { grid-template-columns: 1fr; gap: 39px; }
}

/* ===========================================
   COMPANIES TABLE STYLES
   =========================================== */

.hbjf-companies-table-wrapper {
    overflow-x: auto;
    margin: 31px 0;
    border-radius: var(--hbjf-radius-lg);
    box-shadow: var(--hbjf-shadow-lg);
}

.hbjf-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--hbjf-surface);
    font-size: 15px;
}

.hbjf-companies-table thead {
    background: linear-gradient(135deg, var(--hbjf-primary) 0%, var(--hbjf-dark) 100%);
}

.hbjf-companies-table thead th {
    padding: 21px 16px;
    text-align: left;
    color: var(--hbjf-surface);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hbjf-companies-table tbody tr {
    border-bottom: 1px solid var(--hbjf-border);
    transition: background 0.25s var(--hbjf-transition);
}

.hbjf-companies-table tbody tr:hover {
    background: var(--hbjf-surface-alt);
}

.hbjf-companies-table tbody td {
    padding: 19px;
    vertical-align: middle;
}

.hbjf-rank-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, var(--hbjf-gold), var(--hbjf-gold-muted));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--hbjf-dark);
    font-size: 14px;
    box-shadow: var(--hbjf-shadow-gold);
}

.hbjf-company-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--hbjf-text);
}

.hbjf-company-subtitle {
    font-size: 13px;
    color: var(--hbjf-text-muted);
    margin-top: 3px;
}

.hbjf-stars {
    display: flex;
    gap: 1px;
}

.hbjf-star-full {
    color: var(--hbjf-gold);
    font-size: 16px;
}

.hbjf-star-empty {
    color: var(--hbjf-border);
    font-size: 16px;
}

.hbjf-bbb-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #2fb663 0%, #2cc668 100%);
    color: white;
    padding: 7px 12px;
    border-radius: var(--hbjf-radius-sm);
    font-weight: 600;
    font-size: 10px;
}

.hbjf-btn-review {
    display: inline-block;
    padding: 14px 23px;
    background: linear-gradient(135deg, var(--hbjf-primary) 0%, var(--hbjf-dark) 100%);
    color: var(--hbjf-surface);
    text-decoration: none;
    border-radius: var(--hbjf-radius-md);
    font-weight: 600;
    font-size: 17px;
    transition: all 0.25s var(--hbjf-transition);
    box-shadow: var(--hbjf-shadow-md);
}

.hbjf-btn-review:hover {
    transform: translateY(-2px);
    box-shadow: var(--hbjf-shadow-lg);
}

/* Review Page Styles */
.hbjf-review-header {
    background: linear-gradient(135deg, var(--hbjf-primary) 0%, var(--hbjf-dark) 100%);
    padding: 58px 0;
    margin-bottom: 43px;
}

.hbjf-review-company-title {
    font-size: 42px;
    color: var(--hbjf-surface);
    margin-bottom: 13px;
}

.hbjf-review-rating-box {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: rgba(193,170,83,0.15);
    padding: 15px 27px;
    border-radius: var(--hbjf-radius-md);
    border: 2px solid rgba(192,159,96,0.3);
}

.hbjf-review-score {
    font-size: 36px;
    font-weight: 700;
    color: var(--hbjf-gold);
}

.hbjf-review-stars {
    display: flex;
    gap: 5px;
    font-size: 24px;
}

.hbjf-pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
    margin: 42px 0;
}

.hbjf-pros-card,
.hbjf-cons-card {
    padding: 23px;
    border-radius: var(--hbjf-radius-lg);
    background: var(--hbjf-surface);
    box-shadow: var(--hbjf-shadow-md);
}

.hbjf-pros-card {
    border-top: 4px solid #2eac66;
}

.hbjf-cons-card {
    border-top: 4px solid #e8483d;
}

.hbjf-pros-title,
.hbjf-cons-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 19px;
}

.hbjf-pros-title {
    color: #1eae5c;
}

.hbjf-cons-title {
    color: #e75432;
}

.hbjf-pros-list,
.hbjf-cons-list {
    list-style: none;
    padding: 0;
}

.hbjf-pros-list li,
.hbjf-cons-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid var(--hbjf-border);
}

.hbjf-pros-list li:last-child,
.hbjf-cons-list li:last-child {
    border-bottom: none;
}

.hbjf-pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1da665;
    font-weight: 700;
}

.hbjf-cons-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #eb4a3c;
    font-weight: 700;
}

.hbjf-fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 23px 0;
    background: var(--hbjf-surface);
    border-radius: var(--hbjf-radius-lg);
    overflow: hidden;
    box-shadow: var(--hbjf-shadow-md);
}

.hbjf-fee-table thead {
    background: linear-gradient(135deg, var(--hbjf-primary) 0%, var(--hbjf-dark) 100%);
}

.hbjf-fee-table thead th {
    padding: 19px 21px;
    text-align: left;
    color: var(--hbjf-surface);
    font-weight: 600;
}

.hbjf-fee-table tbody td {
    padding: 12px 23px;
    border-bottom: 1px solid var(--hbjf-border);
}

.hbjf-fee-table tbody tr:last-child td {
    border-bottom: none;
}

.hbjf-cta-box {
    background: linear-gradient(145deg, var(--hbjf-gold), var(--hbjf-gold-muted));
    padding: 37px;
    border-radius: var(--hbjf-radius-lg);
    text-align: center;
    margin: 42px 0;
    box-shadow: var(--hbjf-shadow-gold);
}

.hbjf-cta-title {
    font-size: 28px;
    color: var(--hbjf-dark);
    margin-bottom: 19px;
}

.hbjf-cta-text {
    color: var(--hbjf-primary);
    margin-bottom: 25px;
    font-size: 15px;
}

.hbjf-cta-btn {
    display: inline-block;
    padding: 19px 40px;
    background: var(--hbjf-primary);
    color: var(--hbjf-surface);
    text-decoration: none;
    border-radius: var(--hbjf-radius-md);
    font-weight: 700;
    font-size: 13px;
    transition: all 0.25s var(--hbjf-transition);
    box-shadow: var(--hbjf-shadow-md);
}

.hbjf-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--hbjf-shadow-lg);
}

/* Companies Table Responsive */
@media (max-width: 768px) {
    .hbjf-companies-table {
        font-size: 14px;
    }

    .hbjf-companies-table thead th,
    .hbjf-companies-table tbody td {
        padding: 13px 8px;
    }

    .hbjf-btn-review {
        padding: 13px 16px;
        font-size: 10px;
    }

    .hbjf-pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .hbjf-review-company-title {
        font-size: 32px;
    }

    .hbjf-review-score {
        font-size: 28px;
    }
}


/* Force Mobile Table Cards */
@media screen and (max-width: 768px) {
    .hbjf-companies-section .hbjf-companies-table-wrapper {
        overflow: visible !important;
        background: transparent !important;
    }

    .hbjf-companies-section table.hbjf-companies-table {
        display: block !important;
        width: 100% !important;
    }

    .hbjf-companies-section .hbjf-companies-table thead {
        display: none !important;
    }

    .hbjf-companies-section .hbjf-companies-table tbody,
    .hbjf-companies-section .hbjf-companies-table tr {
        display: block !important;
        width: 100% !important;
    }

    .hbjf-companies-section .hbjf-companies-table tbody tr.hbjf-company-row {
        background: #fff !important;
        margin-bottom: 21px !important;
        border-radius: 14px !important;
        box-shadow: 0 5px 24px rgba(95,24,45,0.1) !important;
        padding: 17px !important;
        border: 2px solid rgba(94,30,54,0.08);
    }

    .hbjf-companies-section .hbjf-companies-table td {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 11px 0 !important;
        border: none !important;
        border-bottom: 1px solid #f5f5f5 !important;
    }

    .hbjf-companies-section .hbjf-companies-table td:last-child {
        border-bottom: none !important;
    }

    .hbjf-companies-section .hbjf-companies-table td::before {
        content: attr(data-label) !important;
        font-weight: 700 !important;
        color: #5f1e28 !important;
        flex-shrink: 0 !important;
        margin-right: 16px !important;
        font-size: 0.85rem !important;
    }

    .hbjf-companies-section .hbjf-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 14px !important;
        border-bottom: 3px solid #e8efdb !important;
    }

    .hbjf-companies-section .hbjf-td-company::before {
        display: none !important;
    }

    .hbjf-companies-section .hbjf-td-rank {
        justify-content: center !important;
        padding-top: 0 !important;
        border-bottom: none !important;
    }

    .hbjf-companies-section .hbjf-td-rank::before {
        display: none !important;
    }

    .hbjf-companies-section .hbjf-td-action {
        flex-direction: column !important;
        padding-top: 16px !important;
        border-top: 1px solid #f5ded7 !important;
        border-bottom: none !important;
    }

    .hbjf-companies-section .hbjf-td-action::before {
        display: none !important;
    }

    .hbjf-companies-section .hbjf-td-action .hbjf-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 16px 23px !important;
        font-size: 1rem !important;
    }
}

/* Company Logo Styles */
.hbjf-company-logo {
    width: auto !important;
    height: 45px !important;
    max-width: 140px !important;
    max-height: 45px !important;
    object-fit: contain !important;
    margin-bottom: 13px;
}

@media screen and (max-width: 768px) {
    .hbjf-company-logo {
        display: block !important;
        margin: 0 auto 12px auto !important;
    }

    .hbjf-companies-section .hbjf-td-company .hbjf-company-info {
        text-align: center;
    }
}


/* Hamburger Menu Styles */
.hbjf-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 7px;
}

.hbjf-menu-line {
    width: 27px;
    height: 3px;
    background: var(--hbjf-text, #292e47);
    border-radius: 1px;
    transition: 0.3s;
}

.hbjf-menu-toggle.active .hbjf-menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hbjf-menu-toggle.active .hbjf-menu-line:nth-child(2) {
    opacity: 0;
}

.hbjf-menu-toggle.active .hbjf-menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hbjf-menu-toggle {
        display: flex;
    }
}


/* Header Container Fix */
.hbjf-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 17px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hbjf-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* Navigation Responsive Fix */
@media (max-width: 768px) {
    .hbjf-nav {
        display: none !important;
    }

    .hbjf-menu-toggle {
        display: flex !important;
    }
}


/* Mobile Navigation Hidden by Default */
.hbjf-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 18px 23px;
    border-top: 2px solid #eee;
}

.hbjf-mobile-nav.active {
    display: flex;
}

.hbjf-mobile-link {
    padding: 13px 0;
    color: var(--hbjf-text, #323240);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
}

.hbjf-mobile-link:last-child {
    border-bottom: none;
}

.hbjf-mobile-link:hover {
    color: var(--hbjf-accent, #f40a1e);
}


/* SVG Logo & Mobile Fixes */
.hbjf-logo-svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.hbjf-logo-text {
    display: inline !important;
    font-size: 15px;
    font-weight: 700;
    color: #195717;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

@media screen and (max-width: 768px) {
    .hbjf-logo-svg {
        width: 28px;
        height: 28px;
    }
}

/* Company logos 40% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .hbjf-company-logo {
        width: 40vw !important;
        max-width: 40vw !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* Center company logos on mobile */
@media screen and (max-width: 768px) {
    .hbjf-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hbjf-company-info {
        text-align: center !important;
    }

    .hbjf-company-name {
        text-align: center !important;
    }

    .hbjf-company-badge {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


/* Max width 1400px for desktop */
.hbjf-wrapper, .hbjf-content, .hbjf-hero-inner, .hbjf-companies-container, 
.hbjf-article, .hbjf-container, .hbjf-footer-inner, .hbjf-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Center buttons in company cards */
.hbjf-company-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.hbjf-td-action {
    text-align: center !important;
}
.hbjf-action-buttons {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
}

/* ============================================
   COMPREHENSIVE FIXES - March 2026
   ============================================ */

/* --- Desktop: table and content max-width 1500px --- */
@media (min-width: 769px) {
    .hbjf-wrapper, .hbjf-main, .hbjf-container,
    .hbjf-companies-section, .hbjf-companies-table-wrapper,
    [class*="companies-table-wrapper"] {
        max-width: 1500px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .hbjf-article {
        max-width: 1200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    /* Content sections inside article */
    main, [class*="-content"], [class*="-guide"], [class*="-article"],
    article, [class*="-section"], [class*="Section"] {
        max-width: 1200px !important;
    }
}

/* --- Desktop: company logos 170-230px width --- */
@media (min-width: 769px) {
    .hbjf-company-logo,
    img[class*="company-logo"] {
        width: 200px !important;
        min-width: 170px !important;
        max-width: 230px !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        object-fit: contain !important;
    }
}

/* --- FIX: Show company names (was hidden by design-overhaul) --- */
.hbjf-company-name,
div[class$="-company-name"],
span[class*="CompanyName__main"],
.fb-company-name, .gc-company-name {
    font-size: 16px !important;
    line-height: 1.4 !important;
    height: auto !important;
    overflow: visible !important;
    margin: 3px 0 !important;
    padding: 0 !important;
    color: #235526 !important;
    font-weight: 600 !important;
}

/* --- Get Free Kit + Read Review buttons --- */
.exq-cta-cell {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 11px !important;
}
.exq-btn-cta {
    display: inline-block !important;
    padding: 12px 25px !important;
    background: linear-gradient(135deg, #53995b 0%, #5dbe66 100%) !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102,194,110,0.3) !important;
    white-space: nowrap !important;
}
.exq-btn-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(109,184,102,0.4) !important;
    background: linear-gradient(135deg, #4b9844 0%, #4c975f 100%) !important;
}
.exq-btn-review {
    display: inline-block !important;
    padding: 5px 22px !important;
    background: transparent !important;
    color: #1b5520 !important;
    text-decoration: none !important;
    border: 2px solid #15591b !important;
    border-radius: 11px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}
.exq-btn-review:hover {
    background: #1e6119 !important;
    color: #fff !important;
}

/* --- FAQ: compact height, no razdutiye --- */
[class*="-faq"], #faq, [id="faq"] {
    max-width: 900px !important;
    margin: 1.5rem auto !important;
    padding: 0 1rem !important;
}
[class*="-faq-question"], .faq-question, .hbjf-faq-question {
    padding: 0.8rem 1.2rem !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    font-size: 0.95rem !important;
}
[class*="-faq-answer"], .faq-answer, .hbjf-faq-answer {
    padding: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.35s ease, padding 0.35s ease !important;
}
[class*="-faq-item"].active > [class*="-faq-answer"],
.hbjf-faq-item.active .hbjf-faq-answer {
    max-height: 500px !important;
    padding: 0.8rem 1.2rem !important;
}
/* Single indicator only */
[class*="-faq-question"]::after,
.hbjf-faq-question::after {
    content: '+' !important;
    float: right !important;
    font-weight: bold !important;
    font-size: 1.2em !important;
    transition: transform 0.3s ease !important;
    margin-left: 12px !important;
}
[class*="-faq-item"].active > [class*="-faq-question"]::after,
.hbjf-faq-item.active .hbjf-faq-question::after {
    content: '\2212' !important;
}
/* Hide any SVG arrow icons in FAQ triggers */
.hbjf-faq-trigger svg,
.hbjf-faq-icon,
[class*="-faq-question"] svg,
[class*="-faq-trigger"] svg {
    display: none !important;
}

/* --- Desktop: content images 30% width, float --- */
@media (min-width: 769px) {
    .hbjf-content-image,
    figure.hbjf-content-image {
        width: 30% !important;
        max-width: 30% !important;
        margin: 1rem !important;
    }
    .hbjf-content-image:nth-of-type(odd) {
        float: left !important;
        margin-left: 0 !important;
        margin-right: 1.5rem !important;
    }
    .hbjf-content-image:nth-of-type(even) {
        float: right !important;
        margin-right: 0 !important;
        margin-left: 1.5rem !important;
    }
    .hbjf-content-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    /* Clear floats after sections */
    .hbjf-section::after {
        content: '' !important;
        display: table !important;
        clear: both !important;
    }
}
/* Mobile: images 100% width */
@media (max-width: 768px) {
    .hbjf-content-image,
    figure.hbjf-content-image {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin: 1rem 0 !important;
    }
    .hbjf-content-image img {
        width: 100% !important;
    }
}

/* --- Banners centered --- */
.hbjf-banner-block,
[class*="-banner-block"],
.kit-banner-block,
div.kit-banner-block {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* --- Button text centering --- */
.exq-cta-cell a,
.hbjf-btn, .hbjf-btn-review, .hbjf-btn-primary,
[class*="btn-cta"], [class*="btn-review"],
.hbjf-cta-btn {
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* --- Breadcrumbs within content --- */
.hbjf-breadcrumb,
nav.hbjf-breadcrumb {
    max-width: 1500px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 15px 25px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* --- Review page: company logo with semi-transparent white bg --- */
.hbjf-review-company-logo {
    background: rgba(255, 255, 255, 0.85) !important;
    padding: 14px 27px !important;
    border-radius: 16px !important;
    display: block !important;
    max-width: 250px !important;
    max-height: 100px !important;
    margin: 0 auto 15px !important;
    object-fit: contain !important;
}

/* --- Mobile: card-style table with centered content --- */
@media (max-width: 768px) {
    .hbjf-companies-section .hbjf-companies-table-wrapper {
        overflow: visible !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .hbjf-companies-section table.hbjf-companies-table {
        display: block !important;
    }
    .hbjf-companies-section .hbjf-companies-table thead {
        display: none !important;
    }
    .hbjf-companies-section .hbjf-companies-table tbody,
    .hbjf-companies-section .hbjf-companies-table tr {
        display: block !important;
        width: 100% !important;
    }
    .hbjf-companies-section .hbjf-companies-table tbody tr.hbjf-company-row {
        background: #fff !important;
        margin-bottom: 17px !important;
        border-radius: 14px !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08) !important;
        padding: 13px !important;
        border: 2px solid #e8f5e9 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .hbjf-companies-section .hbjf-companies-table td {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 7px 0 !important;
        border: none !important;
        width: 100% !important;
    }
    .hbjf-companies-section .hbjf-companies-table td::before {
        content: none !important;
    }
    /* Hide rank on mobile */
    .hbjf-companies-section .hbjf-td-rank {
        display: none !important;
    }
    /* Company cell */
    .hbjf-companies-section .hbjf-td-company {
        padding-bottom: 15px !important;
        border-bottom: 2px solid #f0f0f0 !important;
    }
    .hbjf-companies-section .hbjf-company-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    /* Mobile logos 50% width */
    .hbjf-companies-section .hbjf-company-logo {
        width: 50vw !important;
        max-width: 50vw !important;
        min-width: auto !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
    }
    .hbjf-companies-section .hbjf-company-name {
        font-size: 15px !important;
        text-align: center !important;
    }
    /* Action buttons full width */
    .hbjf-companies-section .hbjf-td-action {
        padding-top: 15px !important;
        border-top: 1px solid #f0f0f0 !important;
    }
    .hbjf-companies-section .exq-cta-cell {
        width: 100% !important;
    }
    .hbjf-companies-section .exq-btn-cta,
    .hbjf-companies-section .exq-btn-review {
        width: 100% !important;
        padding: 11px 26px !important;
        font-size: 15px !important;
    }
    /* Hide BBB and Features on mobile cards - show only key info */
    .hbjf-companies-section .hbjf-td-bbb,
    .hbjf-companies-section .hbjf-td-features {
        display: none !important;
    }
}

/* --- Sticky footer and exit popup on review pages --- */
.hbjf-review-page ~ #stickyFoot,
#stickyFoot {
    display: flex !important;
}

/* --- Font contrast fix: dark text on light bg, light text on dark bg --- */
.hbjf-hero h1, .hbjf-hero p, .hbjf-hero--compact h1 {
    color: #fff !important;
}
.hbjf-article p, .hbjf-section-content p, .hbjf-section-content li {
    color: #363937 !important;
}
.hbjf-footer, .hbjf-footer p, .hbjf-footer-tagline {
    color: rgba(255,255,255,0.75) !important;
}

/* --- Mobile: minimal side padding --- */
@media (max-width: 768px) {
    .hbjf-container, .hbjf-main, .hbjf-wrapper {
        padding-left: 9px !important;
        padding-right: 6px !important;
    }
}

/* --- Override design-overhaul hiding company logos size --- */
.fb-company-logo, .gc-company-logo, .hbjf-company-logo,
img[class*="company-logo"], img[class*="CompanyLogo"],
[class*="catCompanyLogo"] {
    min-height: auto !important;
    max-height: none !important;
}

/* --- Clear float after image blocks --- */
.hbjf-article::after,
article::after {
    content: '' !important;
    display: table !important;
    clear: both !important;
}
