/* Bosch Platinum Style - Auto-themed */
:root {
    --gbhi-primary: #242839;
    --gbhi-secondary: #2e373e;
    --gbhi-platinum: #e5ecde;
    --gbhi-silver: #c6bebb;
    --gbhi-steel: #748c9c;
    --gbhi-accent: #959ab3;
    --gbhi-accent-light: #9bb9b9;
    --gbhi-white: #ffffff;
    --gbhi-bg: #FAFAFA;
    --gbhi-bg-alt: #ECEFF1;
    --gbhi-text-dark: #23171f;
    --gbhi-text-mid: #4b767d;
    --gbhi-text-light: #617f92;
    --gbhi-border: #a6bfbd;
    --gbhi-shadow-sm: 0 2px 8px rgba(36,53,63,0.08);
    --gbhi-shadow-md: 0 4px 16px rgba(35,43,54,0.12);
    --gbhi-shadow-lg: 0 8px 32px rgba(34,57,62,0.16);
    --gbhi-success: #2e792e;
    --gbhi-error: #c51e29;
    --gbhi-radius-sm: 3px;
    --gbhi-radius-md: 10px;
    --gbhi-radius-lg: 11px;
    --gbhi-transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--gbhi-text-dark);
    background: var(--gbhi-bg);
}

.gbhi-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px;
}

/* === HEADER === */
.gbhi-site-header {
    background: linear-gradient(180deg, var(--gbhi-white) 0%, var(--gbhi-bg) 100%);
    border-bottom: 3px solid var(--gbhi-primary);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--gbhi-shadow-sm);
}

.gbhi-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 17px;
    max-width: 1180px;
    margin: 0 auto;
}

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

.gbhi-brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gbhi-primary) 0%, var(--gbhi-accent) 100%);
    border-radius: var(--gbhi-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--gbhi-white);
}

.gbhi-brand-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.gbhi-nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.gbhi-nav-item {
    color: var(--gbhi-text-mid);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 7px 5px;
    border-bottom: 3px solid transparent;
    transition: var(--gbhi-transition);
}

.gbhi-nav-item:hover,
.gbhi-nav-item--current {
    color: var(--gbhi-primary);
    border-bottom-color: var(--gbhi-primary);
}

.gbhi-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 35px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 3px;
}

.gbhi-burger-line {
    width: 100%;
    height: 2px;
    background: var(--gbhi-secondary);
    transition: var(--gbhi-transition);
    border-radius: 1px;
}

.gbhi-burger.is-open .gbhi-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.gbhi-burger.is-open .gbhi-burger-line:nth-child(2) {
    opacity: 0;
}

.gbhi-burger.is-open .gbhi-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.gbhi-nav-mobile {
    display: none;
    background: var(--gbhi-white);
    border-top: 1px solid var(--gbhi-border);
    padding: 13px 22px;
}

.gbhi-nav-mobile.is-visible {
    display: block;
}

.gbhi-mobile-link {
    display: block;
    padding: 11px 0;
    color: var(--gbhi-text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--gbhi-border);
}

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

/* === HERO === */
.gbhi-hero-section {
    background: linear-gradient(135deg, var(--gbhi-primary) 0%, var(--gbhi-secondary) 100%);
    padding: 81px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gbhi-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.gbhi-hero-inner {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gbhi-hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 22px;
    border-radius: 49px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gbhi-white);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 22px;
}

.gbhi-hero-heading {
    font-size: 51px;
    font-weight: 800;
    color: var(--gbhi-white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gbhi-hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 31px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gbhi-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 17px;
    flex-wrap: wrap;
}

.gbhi-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 31px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--gbhi-radius-sm);
    transition: var(--gbhi-transition);
    cursor: pointer;
    border: none;
}

.gbhi-button--filled {
    background: var(--gbhi-white);
    color: var(--gbhi-primary);
}

.gbhi-button--filled:hover {
    background: var(--gbhi-platinum);
    transform: translateY(-2px);
    box-shadow: var(--gbhi-shadow-md);
}

.gbhi-button--outline {
    background: transparent;
    color: var(--gbhi-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.gbhi-button--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gbhi-white);
}

/* === TRUST BADGES === */
.gbhi-trust-section {
    background: var(--gbhi-white);
    padding: 31px 23px;
    border-bottom: 2px solid var(--gbhi-border);
}

.gbhi-trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 46px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.gbhi-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 18px;
}

.gbhi-trust-icon {
    width: 39px;
    height: 40px;
    background: var(--gbhi-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gbhi-trust-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gbhi-primary);
}

.gbhi-trust-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--gbhi-text-mid);
}

/* === STAR RATING === */
.gbhi-rating-bar {
    background: var(--gbhi-bg-alt);
    padding: 24px 17px;
    border-bottom: 2px solid var(--gbhi-border);
}

.gbhi-rating-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    flex-wrap: wrap;
}

.gbhi-rating-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gbhi-text-light);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.gbhi-stars-row {
    display: flex;
    gap: 3px;
}

.gbhi-star {
    font-size: 25px;
    color: var(--gbhi-border);
}

.gbhi-star--active {
    color: #f5ca0d;
}

.gbhi-rating-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--gbhi-primary);
}

.gbhi-rating-count {
    font-size: 14px;
    color: var(--gbhi-text-light);
}

/* === MAIN CONTENT === */
.gbhi-main-content {
    padding: 62px 19px;
}

.gbhi-article-wrap {
    max-width: 760px;
    margin: 0 auto;
}

.gbhi-intro-block {
    background: var(--gbhi-white);
    padding: 33px;
    border-radius: var(--gbhi-radius-lg);
    border-left: 3px solid var(--gbhi-primary);
    margin-bottom: 51px;
    box-shadow: var(--gbhi-shadow-sm);
}

.gbhi-intro-text {
    font-size: 19px;
    line-height: 1.75;
    color: var(--gbhi-text-dark);
    margin-bottom: 13px;
}

.gbhi-intro-text:last-child {
    margin-bottom: 0;
}

.gbhi-section-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--gbhi-primary);
    margin: 55px 0 27px 0;
    line-height: 1.3;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--gbhi-border);
}

.gbhi-section-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--gbhi-secondary);
    margin: 40px 0 13px 0;
}

.gbhi-paragraph {
    margin-bottom: 22px;
    line-height: 1.75;
    color: var(--gbhi-text-dark);
}

.gbhi-content-list {
    margin: 23px 0;
    padding-left: 31px;
}

.gbhi-content-list li {
    margin-bottom: 13px;
    line-height: 1.7;
    color: var(--gbhi-text-dark);
}

.gbhi-content-list li::marker {
    color: var(--gbhi-primary);
}

.gbhi-ordered-list {
    margin: 22px 0;
    padding-left: 31px;
}

.gbhi-ordered-list li {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--gbhi-text-dark);
    padding-left: 5px;
}

/* === IMAGES === */
.gbhi-image-container {
    margin: 42px 0;
    border-radius: var(--gbhi-radius-lg);
    overflow: hidden;
    box-shadow: var(--gbhi-shadow-md);
    border: 1px solid var(--gbhi-border);
}

.gbhi-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* === NEWSLETTER SIGNUP === */
.gbhi-newsletter-block {
    background: linear-gradient(135deg, var(--gbhi-primary) 0%, var(--gbhi-accent) 100%);
    padding: 51px 41px;
    border-radius: var(--gbhi-radius-lg);
    margin: 54px 0;
    text-align: center;
}

.gbhi-newsletter-title {
    font-size: 29px;
    font-weight: 700;
    color: var(--gbhi-white);
    margin-bottom: 12px;
}

.gbhi-newsletter-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.gbhi-newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.gbhi-newsletter-input {
    flex: 1;
    min-width: 220px;
    padding: 17px 18px;
    border: none;
    border-radius: var(--gbhi-radius-sm);
    font-size: 12px;
    background: var(--gbhi-white);
    color: var(--gbhi-text-dark);
}

.gbhi-newsletter-input::placeholder {
    color: var(--gbhi-text-light);
}

.gbhi-newsletter-btn {
    padding: 16px 27px;
    background: var(--gbhi-secondary);
    color: var(--gbhi-white);
    border: none;
    border-radius: var(--gbhi-radius-sm);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--gbhi-transition);
}

.gbhi-newsletter-btn:hover {
    background: #354a45;
    transform: translateY(-2px);
}

.gbhi-newsletter-note {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 19px;
}

/* === FAQ ACCORDION === */
.gbhi-faq-section {
    margin: 64px 0;
    padding: 45px 0;
    background: var(--gbhi-white);
    border-radius: var(--gbhi-radius-lg);
    box-shadow: var(--gbhi-shadow-sm);
}

.gbhi-faq-header {
    text-align: center;
    margin-bottom: 42px;
    padding: 0 19px;
}

.gbhi-faq-title {
    font-size: 35px;
    font-weight: 700;
    color: var(--gbhi-primary);
    margin-bottom: 9px;
}

.gbhi-faq-subtitle {
    font-size: 14px;
    color: var(--gbhi-text-light);
}

.gbhi-faq-list {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.gbhi-faq-item {
    border: 1px solid var(--gbhi-border);
    border-radius: var(--gbhi-radius-md);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--gbhi-transition);
}

.gbhi-faq-item:hover {
    border-color: var(--gbhi-steel);
}

.gbhi-faq-item.is-expanded {
    border-color: var(--gbhi-primary);
    box-shadow: var(--gbhi-shadow-sm);
}

.gbhi-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 23px 25px;
    background: var(--gbhi-bg);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--gbhi-transition);
}

.gbhi-faq-item.is-expanded .gbhi-faq-trigger {
    background: var(--gbhi-primary);
}

.gbhi-faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--gbhi-text-dark);
    line-height: 1.4;
}

.gbhi-faq-item.is-expanded .gbhi-faq-question {
    color: var(--gbhi-white);
}

.gbhi-faq-chevron {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.gbhi-faq-chevron svg {
    width: 100%;
    height: 100%;
    stroke: var(--gbhi-text-mid);
}

.gbhi-faq-item.is-expanded .gbhi-faq-chevron {
    transform: rotate(180deg);
}

.gbhi-faq-item.is-expanded .gbhi-faq-chevron svg {
    stroke: var(--gbhi-white);
}

.gbhi-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

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

.gbhi-faq-answer {
    padding: 22px 23px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--gbhi-text-mid);
}

/* === FOOTER === */
.gbhi-site-footer {
    background: var(--gbhi-secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 65px 18px 35px;
    margin-top: 80px;
}

.gbhi-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 45px;
    max-width: 1180px;
    margin: 0 auto 47px;
}

.gbhi-footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 17px;
}

.gbhi-footer-brand-icon {
    width: 36px;
    height: 36px;
    background: var(--gbhi-primary);
    border-radius: var(--gbhi-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gbhi-white);
    font-weight: 700;
    font-size: 14px;
}

.gbhi-footer-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--gbhi-white);
}

.gbhi-footer-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
}

.gbhi-footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--gbhi-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.gbhi-footer-links {
    list-style: none;
}

.gbhi-footer-links li {
    margin-bottom: 15px;
}

.gbhi-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--gbhi-transition);
}

.gbhi-footer-links a:hover {
    color: var(--gbhi-white);
}

.gbhi-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 26px;
    text-align: center;
    max-width: 1180px;
    margin: 0 auto;
}

.gbhi-footer-copy {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

/* === CONTACT FORM === */
.gbhi-contact-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 46px;
    background: var(--gbhi-white);
    border-radius: var(--gbhi-radius-lg);
    box-shadow: var(--gbhi-shadow-md);
}

.gbhi-form-group {
    margin-bottom: 27px;
}

.gbhi-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gbhi-text-dark);
    margin-bottom: 5px;
}

.gbhi-form-input,
.gbhi-form-textarea {
    width: 100%;
    padding: 16px 15px;
    border: 2px solid var(--gbhi-border);
    border-radius: var(--gbhi-radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: var(--gbhi-transition);
    background: var(--gbhi-bg);
}

.gbhi-form-input:focus,
.gbhi-form-textarea:focus {
    outline: none;
    border-color: var(--gbhi-primary);
    box-shadow: 0 0 0 3px rgba(25,36,133,0.1);
}

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

.gbhi-form-submit {
    width: 100%;
    padding: 16px;
    background: var(--gbhi-primary);
    color: var(--gbhi-white);
    border: none;
    border-radius: var(--gbhi-radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--gbhi-transition);
}

.gbhi-form-submit:hover {
    background: var(--gbhi-accent);
    transform: translateY(-2px);
    box-shadow: var(--gbhi-shadow-md);
}

/* === PAGE HEADER === */
.gbhi-page-header {
    background: var(--gbhi-primary);
    padding: 59px 23px;
    text-align: center;
}

.gbhi-page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--gbhi-white);
    margin-bottom: 10px;
}

.gbhi-page-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
}

/* === LEGAL PAGES === */
.gbhi-legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 45px 22px;
}

.gbhi-legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gbhi-primary);
    margin: 43px 0 17px 0;
}

.gbhi-legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gbhi-secondary);
    margin: 35px 0 12px 0;
}

.gbhi-legal-content p {
    margin-bottom: 13px;
    line-height: 1.75;
    color: var(--gbhi-text-dark);
}

.gbhi-legal-content ul,
.gbhi-legal-content ol {
    margin: 18px 0;
    padding-left: 23px;
}

.gbhi-legal-content li {
    margin-bottom: 11px;
    line-height: 1.7;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .gbhi-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .gbhi-burger {
        display: flex;
    }

    .gbhi-nav-desktop {
        display: none;
    }

    .gbhi-hero-heading {
        font-size: 32px;
    }

    .gbhi-hero-desc {
        font-size: 16px;
    }

    .gbhi-hero-section {
        padding: 53px 22px;
    }

    .gbhi-trust-grid {
        gap: 23px;
    }

    .gbhi-section-title {
        font-size: 26px;
    }

    .gbhi-section-subtitle {
        font-size: 20px;
    }

    .gbhi-newsletter-block {
        padding: 34px 27px;
    }

    .gbhi-newsletter-title {
        font-size: 22px;
    }

    .gbhi-footer-grid {
        grid-template-columns: 1fr;
        gap: 29px;
    }

    .gbhi-contact-section {
        padding: 34px 23px;
    }

    .gbhi-page-title {
        font-size: 28px;
    }

    .gbhi-intro-block {
        padding: 25px;
    }

    .gbhi-faq-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .gbhi-hero-buttons {
        flex-direction: column;
    }

    .gbhi-button {
        width: 100%;
    }

    .gbhi-trust-grid {
        flex-direction: column;
        gap: 16px;
    }

    .gbhi-newsletter-form {
        flex-direction: column;
    }

    .gbhi-newsletter-input,
    .gbhi-newsletter-btn {
        width: 100%;
    }
}

/* ============================================ */
/* Companies Table Styles */
/* ============================================ */

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

.gbhi-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--gbhi-white);
}

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

.gbhi-companies-table th {
    padding: 18px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--gbhi-white);
    border-bottom: 3px solid var(--gbhi-accent-light);
}

.gbhi-companies-table td {
    padding: 18px 19px;
    vertical-align: middle;
    border-bottom: 1px solid var(--gbhi-border);
}

.gbhi-company-row { transition: var(--gbhi-transition); }
.gbhi-company-row:hover { background: var(--gbhi-bg-alt); }

.gbhi-rank-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gbhi-accent) 0%, var(--gbhi-primary) 100%);
    color: var(--gbhi-white);
    border-radius: var(--gbhi-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.gbhi-company-info { display: flex; flex-direction: column; gap: 7px; }
.gbhi-company-name { font-weight: 600; font-size: 16px; color: var(--gbhi-text-dark); }
.gbhi-company-badge {
    display: inline-block;
    padding: 3px 13px;
    background: var(--gbhi-bg-alt);
    color: var(--gbhi-accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--gbhi-radius-sm);
    border: 1px solid var(--gbhi-border);
}

.gbhi-rating-box { display: flex; flex-direction: column; gap: 5px; align-items: center; }
.gbhi-stars { display: flex; gap: 1px; }
.gbhi-star { font-size: 19px; }
.gbhi-star-full { color: var(--gbhi-accent); }
.gbhi-star-half { color: var(--gbhi-accent); opacity: 0.5; }
.gbhi-star-empty { color: var(--gbhi-silver); }
.gbhi-rating-value { font-size: 13px; font-weight: 600; color: var(--gbhi-text-mid); }

.gbhi-bbb-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gbhi-success);
    color: var(--gbhi-white);
    font-weight: 600;
    font-size: 13px;
    border-radius: var(--gbhi-radius-sm);
}

.gbhi-features-list { list-style: none; padding: 0; margin: 0; font-size: 10px; }
.gbhi-features-list li { padding: 4px 0; padding-left: 17px; position: relative; color: var(--gbhi-text-mid); }
.gbhi-features-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gbhi-success); font-weight: 700; }

.gbhi-btn-review {
    display: inline-block;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--gbhi-accent) 0%, var(--gbhi-primary) 100%);
    color: var(--gbhi-white);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: var(--gbhi-radius-md);
    transition: var(--gbhi-transition);
}

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

/* Review Page */
.gbhi-review-page { max-width: 900px; margin: 0 auto; }
.gbhi-review-header { text-align: center; margin-bottom: 37px; }
.gbhi-review-title { font-size: 44px; font-weight: 700; color: var(--gbhi-primary); margin-bottom: 19px; }
.gbhi-review-meta { display: flex; justify-content: center; align-items: center; gap: 23px; flex-wrap: wrap; }
.gbhi-review-rating-large .gbhi-stars { font-size: 24px; }
.gbhi-review-badge { padding: 6px 19px; background: var(--gbhi-success); color: var(--gbhi-white); font-weight: 600; border-radius: var(--gbhi-radius-md); }

.gbhi-quick-facts {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 17px; margin: 42px 0; padding: 29px;
    background: var(--gbhi-bg-alt);
    border-radius: var(--gbhi-radius-lg);
    border: 2px solid var(--gbhi-border);
}
.gbhi-fact-item { text-align: center; }
.gbhi-fact-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--gbhi-text-light); margin-bottom: 7px; }
.gbhi-fact-value { display: block; font-size: 20px; font-weight: 700; color: var(--gbhi-primary); }

.gbhi-review-content { margin-top: 37px; }
.gbhi-review-section { margin-bottom: 42px; }
.gbhi-review-intro .gbhi-lead { font-size: 20px; line-height: 1.8; color: var(--gbhi-text-mid); }

.gbhi-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 27px; margin: 31px 0; }
.gbhi-pros, .gbhi-cons { padding: 22px; border-radius: var(--gbhi-radius-md); }
.gbhi-pros { background: rgba(43,129,56,0.08); border: 1px solid rgba(42,127,48,0.2); }
.gbhi-cons { background: rgba(193,35,45,0.08); border: 1px solid rgba(192,41,36,0.2); }
.gbhi-pros h3, .gbhi-cons h3 { margin-bottom: 13px; font-size: 20px; }
.gbhi-pros h3 { color: var(--gbhi-success); }
.gbhi-cons h3 { color: var(--gbhi-error); }
.gbhi-pros ul, .gbhi-cons ul { list-style: none; padding: 0; margin: 0; }
.gbhi-pros li, .gbhi-cons li { padding: 7px 0; padding-left: 27px; position: relative; }
.gbhi-pros li::before { content: '✓'; position: absolute; left: 0; color: var(--gbhi-success); font-weight: 700; }
.gbhi-cons li::before { content: '✗'; position: absolute; left: 0; color: var(--gbhi-error); font-weight: 700; }

.gbhi-fee-table { width: 100%; border-collapse: collapse; margin: 21px 0; background: var(--gbhi-white); border-radius: var(--gbhi-radius-md); overflow: hidden; box-shadow: var(--gbhi-shadow-sm); }
.gbhi-fee-table th, .gbhi-fee-table td { padding: 12px 23px; text-align: left; border-bottom: 1px solid var(--gbhi-border); }
.gbhi-fee-table th { background: var(--gbhi-secondary); color: var(--gbhi-white); font-weight: 600; }

.gbhi-verdict { padding: 27px; background: var(--gbhi-bg-alt); border-radius: var(--gbhi-radius-lg); border-left: 5px solid var(--gbhi-accent); }
.gbhi-verdict h2 { color: var(--gbhi-primary); margin-bottom: 15px; }

.gbhi-cta-box { text-align: center; padding: 43px; background: linear-gradient(135deg, var(--gbhi-primary) 0%, var(--gbhi-secondary) 100%); color: var(--gbhi-white); border-radius: var(--gbhi-radius-lg); margin: 41px 0; }
.gbhi-cta-box h3 { font-size: 26px; font-weight: 700; margin-bottom: 15px; }
.gbhi-cta-box p { margin-bottom: 20px; opacity: 0.9; }
.gbhi-cta-box .gbhi-btn-primary { background: var(--gbhi-accent-light); color: var(--gbhi-white); padding: 13px 34px; font-size: 15px; text-decoration: none; border-radius: var(--gbhi-radius-md); display: inline-block; font-weight: 600; transition: var(--gbhi-transition); }
.gbhi-cta-box .gbhi-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--gbhi-shadow-md); }

.gbhi-other-companies { margin-top: 61px; padding-top: 38px; border-top: 2px solid var(--gbhi-border); }
.gbhi-other-companies h3 { text-align: center; font-size: 28px; font-weight: 700; margin-bottom: 27px; color: var(--gbhi-primary); }
.gbhi-other-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 23px; }
.gbhi-other-card { padding: 27px; background: var(--gbhi-white); border-radius: var(--gbhi-radius-md); border: 2px solid var(--gbhi-border); transition: var(--gbhi-transition); }
.gbhi-other-card:hover { border-color: var(--gbhi-accent); box-shadow: var(--gbhi-shadow-md); transform: translateY(-4px); }
.gbhi-other-card h4 { font-size: 18px; color: var(--gbhi-primary); margin-bottom: 8px; }
.gbhi-other-card p { font-size: 11px; color: var(--gbhi-text-light); margin-bottom: 14px; }
.gbhi-other-card a { color: var(--gbhi-accent); text-decoration: none; font-weight: 600; font-size: 14px; }

@media (max-width: 768px) {
    .gbhi-companies-table-wrapper { margin: 21px -14px; border-radius: 0; }
    .gbhi-companies-table th, .gbhi-companies-table td { padding: 15px 10px; font-size: 10px; }
    .gbhi-th-features, .gbhi-td-features { display: none; }
    .gbhi-pros-cons { grid-template-columns: 1fr; }
    .gbhi-review-title { font-size: 28px; }
}


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

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

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

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

    .gbhi-companies-section .gbhi-companies-table tbody tr.gbhi-company-row {
        background: #fff !important;
        margin-bottom: 23px !important;
        border-radius: 17px !important;
        box-shadow: 0 3px 27px rgba(85,29,51,0.1) !important;
        padding: 20px !important;
        border: 1px solid rgba(84,34,42,0.08);
    }

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

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

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

    .gbhi-companies-section .gbhi-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 17px !important;
        border-bottom: 1px solid #f5dfd8 !important;
    }

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

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

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

    .gbhi-companies-section .gbhi-td-action {
        flex-direction: column !important;
        padding-top: 19px !important;
        border-top: 2px solid #ebefd2 !important;
        border-bottom: none !important;
    }

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

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

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

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

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


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

.gbhi-menu-line {
    width: 23px;
    height: 3px;
    background: var(--gbhi-text, #323a4c);
    border-radius: 3px;
    transition: 0.3s;
}

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

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

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

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


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

.gbhi-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) {
    .gbhi-nav {
        display: none !important;
    }

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


/* Mobile Navigation Hidden by Default */
.gbhi-mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 13px 26px;
    border-top: 1px solid #eee;
}

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

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

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

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


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

.gbhi-logo-text {
    display: none !important;
}

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

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

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

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

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

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


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

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