/* IBM Balanced Style - Auto-themed */

:root {
    --hdgd-primary: #0a1b25;
    --hdgd-primary-hover: #0a54df;
    --hdgd-primary-light: #294f58;
    --hdgd-dark: #0c192b;
    --hdgd-gray-100: #f4f4f4;
    --hdgd-gray-90: #29211d;
    --hdgd-gray-80: #3f3a3b;
    --hdgd-gray-70: #4e594f;
    --hdgd-gray-60: #746868;
    --hdgd-gray-50: #888395;
    --hdgd-gray-30: #cec1c9;
    --hdgd-gray-20: #dfe1df;
    --hdgd-gray-10: #f4f4f4;
    --hdgd-white: #ffffff;
    --hdgd-success: #259748;
    --hdgd-warning: #e8be16;
    --hdgd-danger: #da1f1e;
    --hdgd-cyan: #0a9aee;
    --hdgd-teal: #0a979b;
    --hdgd-font-heading: 'Inter', sans-serif;
    --hdgd-font-body: 'Inter', sans-serif;
    --hdgd-radius: 3px;
    --hdgd-shadow: 0 3px 8px rgba(0,0,0,0.08);
    --hdgd-shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
}

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

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

body {
    font-family: var(--hdgd-font-body);
    background-color: var(--hdgd-gray-10);
    color: var(--hdgd-gray-90);
    line-height: 1.65;
    min-height: 100vh;
}

a {
    color: var(--hdgd-primary);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--hdgd-primary-hover);
    text-decoration: underline;
}

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

/* ============================
   LAYOUT CONTAINERS
============================ */
.hdgd-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 31px;
}

.hdgd-container-narrow {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 33px;
}

/* ============================
   TOP NAVIGATION
============================ */
.hdgd-topbar {
    background: var(--hdgd-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 48px;
}

.hdgd-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 18px;
}

.hdgd-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--hdgd-white);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.hdgd-brand:hover {
    text-decoration: none;
    color: var(--hdgd-white);
}

.hdgd-brand-symbol {
    width: 32px;
    height: 32px;
    background: var(--hdgd-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--hdgd-white);
    letter-spacing: -0.5px;
}

.hdgd-main-nav {
    display: flex;
    gap: 0;
    height: 100%;
}

.hdgd-nav-item {
    display: flex;
    align-items: center;
    padding: 0 19px;
    color: var(--hdgd-gray-30);
    font-size: 14px;
    font-weight: 400;
    height: 100%;
    border-bottom: 3px solid transparent;
    transition: all 0.15s ease;
}

.hdgd-nav-item:hover,
.hdgd-nav-item.current {
    color: var(--hdgd-white);
    background: var(--hdgd-gray-80);
    text-decoration: none;
    border-bottom-color: var(--hdgd-primary);
}

.hdgd-header-action {
    background: var(--hdgd-primary);
    color: var(--hdgd-white);
    padding: 11px 19px;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.15s ease;
}

.hdgd-header-action:hover {
    background: var(--hdgd-primary-hover);
    color: var(--hdgd-white);
    text-decoration: none;
}

.hdgd-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.hdgd-burger span {
    width: 18px;
    height: 2px;
    background: var(--hdgd-white);
    transition: all 0.2s ease;
}

.hdgd-mobile-menu {
    display: none;
    background: var(--hdgd-gray-90);
    border-bottom: 1px solid var(--hdgd-gray-80);
}

.hdgd-mobile-menu.visible {
    display: block;
}

.hdgd-mobile-menu a {
    display: block;
    padding: 19px 19px;
    color: var(--hdgd-gray-30);
    border-bottom: 1px solid var(--hdgd-gray-80);
    font-size: 14px;
}

.hdgd-mobile-menu a:hover {
    background: var(--hdgd-gray-80);
    color: var(--hdgd-white);
    text-decoration: none;
}

/* ============================
   HERO BANNER
============================ */
.hdgd-hero-banner {
    background: linear-gradient(135deg, var(--hdgd-dark) 0%, var(--hdgd-gray-90) 100%);
    padding: 64px 35px;
    text-align: center;
    border-bottom: 4px solid var(--hdgd-primary);
}

.hdgd-hero-badge {
    display: inline-block;
    background: var(--hdgd-primary);
    color: var(--hdgd-white);
    font-size: 12px;
    font-weight: 500;
    padding: 7px 15px;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hdgd-hero-headline {
    font-family: var(--hdgd-font-heading);
    font-size: 48px;
    font-weight: 300;
    color: var(--hdgd-white);
    line-height: 1.15;
    margin-bottom: 23px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hdgd-hero-headline strong {
    font-weight: 600;
}

.hdgd-hero-desc {
    font-size: 18px;
    color: var(--hdgd-gray-50);
    max-width: 640px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

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

.hdgd-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 31px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.15s ease;
}

.hdgd-btn-fill {
    background: var(--hdgd-primary);
    color: var(--hdgd-white);
}

.hdgd-btn-fill:hover {
    background: var(--hdgd-primary-hover);
    color: var(--hdgd-white);
    text-decoration: none;
}

.hdgd-btn-ghost {
    background: transparent;
    color: var(--hdgd-primary-light);
    border: 1px solid var(--hdgd-primary-light);
}

.hdgd-btn-ghost:hover {
    background: rgba(70,134,245,0.1);
    color: var(--hdgd-primary-light);
    text-decoration: none;
}

/* ============================
   TABLE OF CONTENTS
============================ */
.hdgd-toc-panel {
    background: var(--hdgd-white);
    border-left: 4px solid var(--hdgd-primary);
    padding: 23px 26px;
    margin: 41px 0;
    box-shadow: var(--hdgd-shadow);
}

.hdgd-toc-heading {
    font-family: var(--hdgd-font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--hdgd-gray-90);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 18px;
    padding-bottom: 9px;
    border-bottom: 2px solid var(--hdgd-gray-20);
}

.hdgd-toc-items {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 22px;
}

.hdgd-toc-items li {
    padding: 7px 0;
}

.hdgd-toc-items a {
    color: var(--hdgd-gray-70);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.hdgd-toc-items a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--hdgd-primary);
    flex-shrink: 0;
}

.hdgd-toc-items a:hover {
    color: var(--hdgd-primary);
    text-decoration: none;
}

/* ============================
   MAIN CONTENT
============================ */
.hdgd-page-body {
    padding: 51px 0 63px;
    background: var(--hdgd-gray-10);
}

.hdgd-article-wrapper {
    background: var(--hdgd-white);
    padding: 46px;
    box-shadow: var(--hdgd-shadow);
}

.hdgd-article-wrapper h1 {
    font-family: var(--hdgd-font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--hdgd-dark);
    line-height: 1.25;
    margin-bottom: 28px;
}

.hdgd-article-wrapper h2 {
    font-family: var(--hdgd-font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--hdgd-dark);
    margin: 50px 0 17px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--hdgd-primary);
}

.hdgd-article-wrapper h3 {
    font-family: var(--hdgd-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--hdgd-gray-90);
    margin: 33px 0 16px;
}

.hdgd-article-wrapper p {
    margin-bottom: 23px;
    color: var(--hdgd-gray-80);
    font-size: 16px;
    line-height: 1.7;
}

.hdgd-article-wrapper ul,
.hdgd-article-wrapper ol {
    margin: 17px 0;
    padding-left: 31px;
}

.hdgd-article-wrapper li {
    margin-bottom: 11px;
    color: var(--hdgd-gray-80);
    line-height: 1.6;
}

.hdgd-article-wrapper strong {
    color: var(--hdgd-dark);
    font-weight: 600;
}

.hdgd-content-image {
    margin: 34px 0;
    border: 2px solid var(--hdgd-gray-20);
    background: var(--hdgd-gray-10);
    padding: 4px;
}

.hdgd-content-image img {
    width: 100%;
}

/* ============================
   FEATURE GRID
============================ */
.hdgd-features-section {
    background: var(--hdgd-gray-90);
    padding: 67px 0;
}

.hdgd-section-label {
    display: inline-block;
    background: var(--hdgd-primary);
    color: var(--hdgd-white);
    font-size: 11px;
    font-weight: 500;
    padding: 3px 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hdgd-section-headline {
    font-family: var(--hdgd-font-heading);
    font-size: 32px;
    font-weight: 300;
    color: var(--hdgd-white);
    margin-bottom: 48px;
}

.hdgd-section-headline strong {
    font-weight: 600;
}

.hdgd-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.hdgd-feature-tile {
    background: var(--hdgd-dark);
    padding: 34px;
    border-top: 3px solid transparent;
    transition: all 0.2s ease;
}

.hdgd-feature-tile:hover {
    border-top-color: var(--hdgd-primary);
    background: var(--hdgd-gray-80);
}

.hdgd-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--hdgd-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 21px;
    color: var(--hdgd-white);
}

.hdgd-feature-title {
    font-family: var(--hdgd-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--hdgd-white);
    margin-bottom: 15px;
}

.hdgd-feature-text {
    font-size: 16px;
    color: var(--hdgd-gray-50);
    line-height: 1.6;
}

/* ============================
   CTA BANNER
============================ */
.hdgd-cta-strip {
    background: var(--hdgd-primary);
    padding: 45px 35px;
    text-align: center;
}

.hdgd-cta-title {
    font-family: var(--hdgd-font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--hdgd-white);
    margin-bottom: 14px;
}

.hdgd-cta-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
}

.hdgd-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: var(--hdgd-white);
    color: var(--hdgd-primary);
    padding: 16px 29px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.15s ease;
}

.hdgd-cta-button:hover {
    background: var(--hdgd-gray-10);
    color: var(--hdgd-primary-hover);
    text-decoration: none;
}

/* ============================
   FAQ ACCORDION
============================ */
.hdgd-faq-section {
    background: var(--hdgd-white);
    padding: 63px 0;
    border-top: 1px solid var(--hdgd-gray-20);
}

.hdgd-faq-header {
    text-align: center;
    margin-bottom: 49px;
}

.hdgd-faq-title {
    font-family: var(--hdgd-font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--hdgd-dark);
}

.hdgd-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.hdgd-accordion-item {
    border-bottom: 1px solid var(--hdgd-gray-20);
}

.hdgd-accordion-trigger {
    width: 100%;
    padding: 17px 0;
    background: none;
    border: none;
    font-family: var(--hdgd-font-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--hdgd-dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.15s ease;
}

.hdgd-accordion-trigger:hover {
    color: var(--hdgd-primary);
}

.hdgd-accordion-trigger::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--hdgd-primary);
    transition: transform 0.2s ease;
}

.hdgd-accordion-trigger.open::after {
    content: '-';
}

.hdgd-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.hdgd-accordion-content {
    padding: 0 0 22px;
    font-size: 16px;
    color: var(--hdgd-gray-70);
    line-height: 1.7;
}

/* ============================
   FOOTER
============================ */
.hdgd-footer {
    background: var(--hdgd-dark);
    padding: 48px 0 0;
}

.hdgd-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 51px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--hdgd-gray-80);
}

.hdgd-footer-about {
    max-width: 300px;
}

.hdgd-footer-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--hdgd-white);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 17px;
}

.hdgd-footer-desc {
    font-size: 14px;
    color: var(--hdgd-gray-50);
    line-height: 1.6;
}

.hdgd-footer-heading {
    font-family: var(--hdgd-font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--hdgd-gray-30);
    margin-bottom: 17px;
}

.hdgd-footer-menu {
    list-style: none;
}

.hdgd-footer-menu li {
    margin-bottom: 15px;
}

.hdgd-footer-menu a {
    color: var(--hdgd-gray-50);
    font-size: 14px;
}

.hdgd-footer-menu a:hover {
    color: var(--hdgd-white);
    text-decoration: none;
}

.hdgd-footer-notice {
    padding: 22px 0;
    background: var(--hdgd-gray-90);
}

.hdgd-footer-notice p {
    font-size: 12px;
    color: var(--hdgd-gray-60);
    line-height: 1.6;
}

.hdgd-footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.hdgd-footer-bottom p {
    font-size: 13px;
    color: var(--hdgd-gray-60);
}

/* ============================
   CONTACT FORM
============================ */
.hdgd-contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-top: 37px;
}

.hdgd-contact-card {
    background: var(--hdgd-gray-10);
    border-left: 4px solid var(--hdgd-primary);
    padding: 19px 22px;
    margin-bottom: 17px;
}

.hdgd-contact-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--hdgd-dark);
    margin-bottom: 7px;
}

.hdgd-contact-card p {
    font-size: 14px;
    color: var(--hdgd-gray-70);
    margin: 0;
}

.hdgd-form-panel {
    background: var(--hdgd-white);
    border: 1px solid var(--hdgd-gray-20);
    padding: 35px;
}

.hdgd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px;
    margin-bottom: 18px;
}

.hdgd-form-field {
    margin-bottom: 21px;
}

.hdgd-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--hdgd-gray-90);
    margin-bottom: 11px;
}

.hdgd-form-field input,
.hdgd-form-field select,
.hdgd-form-field textarea {
    width: 100%;
    padding: 14px 13px;
    background: var(--hdgd-gray-10);
    border: 1px solid var(--hdgd-gray-30);
    color: var(--hdgd-dark);
    font-size: 14px;
    font-family: var(--hdgd-font-body);
    transition: border-color 0.15s ease;
}

.hdgd-form-field input:focus,
.hdgd-form-field select:focus,
.hdgd-form-field textarea:focus {
    outline: none;
    border-color: var(--hdgd-primary);
    background: var(--hdgd-white);
}

.hdgd-form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.hdgd-form-result {
    text-align: center;
    padding: 41px;
    background: var(--hdgd-gray-10);
}

.hdgd-form-result p {
    font-size: 16px;
    color: var(--hdgd-success);
    margin: 0;
}

/* ============================
   LEGAL PAGES
============================ */
.hdgd-legal-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 29px;
    background: var(--hdgd-white);
}

.hdgd-legal-wrap h1 {
    font-family: var(--hdgd-font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--hdgd-dark);
    margin-bottom: 31px;
}

.hdgd-legal-wrap h2 {
    font-family: var(--hdgd-font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--hdgd-dark);
    margin: 33px 0 16px;
}

.hdgd-legal-wrap p {
    margin-bottom: 19px;
    color: var(--hdgd-gray-80);
    line-height: 1.7;
}

.hdgd-legal-wrap ul {
    margin: 18px 0;
    padding-left: 25px;
}

.hdgd-legal-wrap li {
    margin-bottom: 13px;
    color: var(--hdgd-gray-80);
}

/* ============================
   RESPONSIVE BREAKPOINTS
============================ */
@media (max-width: 1024px) {
    .hdgd-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hdgd-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hdgd-toc-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hdgd-header { position: relative !important; }
    .hdgd-main-nav {
        display: none;
    }

    .hdgd-header-action {
        display: none;
    }

    .hdgd-burger {
        display: flex;
    }

    .hdgd-hero-headline {
        font-size: 32px;
    }

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

    .hdgd-features-grid {
        grid-template-columns: 1fr;
    }

    .hdgd-contact-layout {
        grid-template-columns: 1fr;
    }

    .hdgd-form-row {
        grid-template-columns: 1fr;
    }

    .hdgd-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hdgd-footer-about {
        max-width: none;
    }

    .hdgd-article-wrapper {
        padding: 34px 17px;
    }

    .hdgd-article-wrapper h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .hdgd-hero-banner {
        padding: 38px 21px;
    }

    .hdgd-hero-headline {
        font-size: 26px;
    }

    .hdgd-section-headline {
        font-size: 26px;
    }

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

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

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

.hdgd-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--hdgd-white);
    font-family: var(--hdgd-font-body);
}

.hdgd-companies-table thead {
    background: var(--hdgd-dark);
}

.hdgd-companies-table th {
    padding: 19px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--hdgd-white);
    border-bottom: 3px solid var(--hdgd-primary);
}

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

.hdgd-company-row { transition: all 0.15s ease; }
.hdgd-company-row:hover { background: var(--hdgd-gray-10); }

.hdgd-rank-badge {
    width: 36px;
    height: 36px;
    background: var(--hdgd-primary);
    color: var(--hdgd-white);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.hdgd-company-info { display: flex; flex-direction: column; gap: 5px; }
.hdgd-company-name { font-weight: 600; font-size: 16px; color: var(--hdgd-dark); }
.hdgd-company-badge {
    display: inline-block;
    padding: 4px 11px;
    background: var(--hdgd-gray-10);
    color: var(--hdgd-primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border: 2px solid var(--hdgd-gray-20);
}

.hdgd-rating-box { display: flex; flex-direction: column; gap: 3px; align-items: center; }
.hdgd-stars { display: flex; gap: 1px; }
.hdgd-star { font-size: 17px; }
.hdgd-star-full { color: var(--hdgd-primary); }
.hdgd-star-half { color: var(--hdgd-primary); opacity: 0.5; }
.hdgd-star-empty { color: var(--hdgd-gray-30); }
.hdgd-rating-value { font-size: 13px; font-weight: 600; color: var(--hdgd-gray-70); }

.hdgd-bbb-badge {
    display: inline-block;
    padding: 7px 14px;
    background: var(--hdgd-success);
    color: var(--hdgd-white);
    font-weight: 600;
    font-size: 13px;
}

.hdgd-features-list { list-style: none; padding: 0; margin: 0; font-size: 16px; }
.hdgd-features-list li { padding: 2px 0; padding-left: 16px; position: relative; color: var(--hdgd-gray-70); }
.hdgd-features-list li::before { content: '✓'; position: absolute; left: 0; color: var(--hdgd-success); font-weight: 700; }

.hdgd-btn-review {
    display: inline-block;
    padding: 13px 24px;
    background: var(--hdgd-primary);
    color: var(--hdgd-white);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.hdgd-btn-review:hover {
    background: var(--hdgd-primary-hover);
}

/* Review Page */
.hdgd-review-page { max-width: 900px; margin: 0 auto; }
.hdgd-review-header { text-align: center; margin-bottom: 37px; }
.hdgd-review-title { font-family: var(--hdgd-font-heading); font-size: 42px; font-weight: 600; color: var(--hdgd-dark); margin-bottom: 19px; }
.hdgd-review-meta { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
.hdgd-review-rating-large .hdgd-stars { font-size: 24px; }
.hdgd-review-badge { padding: 8px 19px; background: var(--hdgd-success); color: var(--hdgd-white); font-weight: 600; }

.hdgd-quick-facts {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 17px; margin: 43px 0; padding: 29px;
    background: var(--hdgd-gray-10);
    border: 1px solid var(--hdgd-gray-20);
}
.hdgd-fact-item { text-align: center; }
.hdgd-fact-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--hdgd-gray-60); margin-bottom: 7px; }
.hdgd-fact-value { display: block; font-size: 20px; font-weight: 600; color: var(--hdgd-dark); }

.hdgd-review-content { margin-top: 37px; }
.hdgd-review-section { margin-bottom: 43px; }
.hdgd-review-intro .hdgd-lead { font-size: 20px; line-height: 1.8; color: var(--hdgd-gray-70); }

.hdgd-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 31px 0; }
.hdgd-pros, .hdgd-cons { padding: 24px; }
.hdgd-pros { background: rgba(43,161,70,0.08); border-left: 4px solid var(--hdgd-success); }
.hdgd-cons { background: rgba(222,24,47,0.08); border-left: 4px solid var(--hdgd-danger); }
.hdgd-pros h3, .hdgd-cons h3 { margin-bottom: 13px; font-size: 21px; }
.hdgd-pros h3 { color: var(--hdgd-success); }
.hdgd-cons h3 { color: var(--hdgd-danger); }
.hdgd-pros ul, .hdgd-cons ul { list-style: none; padding: 0; margin: 0; }
.hdgd-pros li, .hdgd-cons li { padding: 7px 0; padding-left: 22px; position: relative; }
.hdgd-pros li::before { content: '✓'; position: absolute; left: 0; color: var(--hdgd-success); font-weight: 700; }
.hdgd-cons li::before { content: '✗'; position: absolute; left: 0; color: var(--hdgd-danger); font-weight: 700; }

.hdgd-fee-table { width: 100%; border-collapse: collapse; margin: 21px 0; background: var(--hdgd-white); box-shadow: var(--hdgd-shadow); }
.hdgd-fee-table th, .hdgd-fee-table td { padding: 14px 23px; text-align: left; border-bottom: 2px solid var(--hdgd-gray-20); }
.hdgd-fee-table th { background: var(--hdgd-dark); color: var(--hdgd-white); font-weight: 600; }

.hdgd-verdict { padding: 27px; background: var(--hdgd-gray-10); border-left: 4px solid var(--hdgd-primary); }
.hdgd-verdict h2 { color: var(--hdgd-dark); margin-bottom: 15px; }

.hdgd-cta-box { text-align: center; padding: 38px; background: var(--hdgd-dark); color: var(--hdgd-white); margin: 41px 0; }
.hdgd-cta-box h3 { font-size: 28px; font-weight: 600; margin-bottom: 15px; }
.hdgd-cta-box p { margin-bottom: 22px; opacity: 0.9; }
.hdgd-cta-box .hdgd-btn-primary { background: var(--hdgd-primary); color: var(--hdgd-white); padding: 13px 35px; font-size: 15px; text-decoration: none; display: inline-block; font-weight: 600; transition: all 0.15s ease; }
.hdgd-cta-box .hdgd-btn-primary:hover { background: var(--hdgd-primary-hover); }

.hdgd-other-companies { margin-top: 58px; padding-top: 41px; border-top: 1px solid var(--hdgd-gray-20); }
.hdgd-other-companies h3 { text-align: center; font-size: 28px; font-weight: 600; margin-bottom: 32px; color: var(--hdgd-dark); }
.hdgd-other-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 27px; }
.hdgd-other-card { padding: 23px; background: var(--hdgd-white); border: 1px solid var(--hdgd-gray-20); transition: all 0.15s ease; }
.hdgd-other-card:hover { border-color: var(--hdgd-primary); box-shadow: var(--hdgd-shadow-lg); }
.hdgd-other-card h4 { font-size: 18px; color: var(--hdgd-dark); margin-bottom: 8px; }
.hdgd-other-card p { font-size: 17px; color: var(--hdgd-gray-60); margin-bottom: 14px; }
.hdgd-other-card a { color: var(--hdgd-primary); text-decoration: none; font-weight: 600; font-size: 14px; }

@media (max-width: 768px) {
    .hdgd-companies-table-wrapper { margin: 19px -14px; }
    .hdgd-companies-table th, .hdgd-companies-table td { padding: 13px 10px; font-size: 16px; }
    .hdgd-th-features, .hdgd-td-features { display: none; }
    .hdgd-pros-cons { grid-template-columns: 1fr; }
    .hdgd-review-title { font-size: 28px; }
}


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

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

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

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

    .hdgd-companies-section .hdgd-companies-table tbody tr.hdgd-company-row {
        background: #fff !important;
        margin-bottom: 23px !important;
        border-radius: 15px !important;
        box-shadow: 0 3px 25px rgba(97,33,46,0.1) !important;
        padding: 20px !important;
        border: 2px solid rgba(86,27,47,0.08);
    }

    .hdgd-companies-section .hdgd-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;
    }

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

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

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

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

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

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

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

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

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

/* Company Logo Styles */
.hdgd-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) {
    .hdgd-company-logo {
        display: block !important;
        margin: 0 auto 15px auto !important;
    }

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


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

.hdgd-menu-line {
    width: 21px;
    height: 3px;
    background: var(--hdgd-text, #333141);
    border-radius: 1px;
    transition: 0.3s;
}

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

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

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

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


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

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

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


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

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

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

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

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


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

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

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

/* Company logos 50% width on mobile portrait */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .hdgd-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) {
    .hdgd-company-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

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

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

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


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

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