/* Bloomberg Mighty Style - Auto-themed */
/* Unique prefix: hcoe- for all classes */

:root {
    --hcoe-navy: #240e1d;
    --hcoe-ocean: #172134;
    --hcoe-slate: #46517f;
    --hcoe-steel: #7285ac;
    --hcoe-cloud: #e9e9da;
    --hcoe-white: #ffffff;
    --hcoe-accent: #cc193b;
    --hcoe-accent-dark: #980a1a;
    --hcoe-success: #0ac14a;
    --hcoe-danger: #f55a58;
    --hcoe-text: #140a1e;
    --hcoe-text-muted: #475164;
    --hcoe-border: #b9d2f4;
    --hcoe-radius-sm: 1px;
    --hcoe-radius-md: 5px;
    --hcoe-radius-lg: 7px;
    --hcoe-shadow-sm: 0 3px 9px rgba(10,32,37,0.08);
    --hcoe-shadow-md: 0 8px 24px rgba(10,26,44,0.12);
    --hcoe-shadow-lg: 0 16px 48px rgba(10,28,36,0.18);
    --hcoe-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.75;
    color: var(--hcoe-text);
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

.hcoe-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 31px;
}

/* Header Navigation */
.hcoe-masthead {
    background: var(--hcoe-navy);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: var(--hcoe-shadow-md);
}

.hcoe-masthead-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 26px;
    max-width: 1320px;
    margin: 0 auto;
}

.hcoe-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--hcoe-white);
}

.hcoe-brand-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, var(--hcoe-accent), var(--hcoe-accent-dark));
    border-radius: var(--hcoe-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    color: var(--hcoe-navy);
    box-shadow: 0 4px 12px rgba(245,189,10,0.35);
}

.hcoe-brand-name {
    font-weight: 700;
    font-size: 21px;
    letter-spacing: -0.6px;
}

.hcoe-brand-name span {
    color: var(--hcoe-accent);
}

.hcoe-navigation {
    display: flex;
    gap: 36px;
}

.hcoe-nav-item {
    color: var(--hcoe-cloud);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 3px;
    position: relative;
    transition: var(--hcoe-transition);
}

.hcoe-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--hcoe-accent);
    transition: var(--hcoe-transition);
}

.hcoe-nav-item:hover,
.hcoe-nav-item--current {
    color: var(--hcoe-accent);
}

.hcoe-nav-item:hover::after,
.hcoe-nav-item--current::after {
    width: 100%;
}

.hcoe-cta-header {
    background: var(--hcoe-accent);
    color: var(--hcoe-navy);
    padding: 13px 24px;
    border-radius: var(--hcoe-radius-sm);
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: var(--hcoe-transition);
    box-shadow: 0 4px 16px rgba(245,191,10,0.3);
}

.hcoe-cta-header:hover {
    background: var(--hcoe-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,201,10,0.4);
}

/* Mobile Menu Toggle */
.hcoe-hamburger {
    display: none;
    flex-direction: column;
    gap: 7px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hcoe-hamburger-line {
    width: 31px;
    height: 3px;
    background: var(--hcoe-cloud);
    border-radius: 1px;
    transition: var(--hcoe-transition);
}

.hcoe-hamburger.active .hcoe-hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hcoe-hamburger.active .hcoe-hamburger-line:nth-child(2) {
    opacity: 0;
}

.hcoe-hamburger.active .hcoe-hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hcoe-mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--hcoe-ocean);
    padding: 18px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}

.hcoe-mobile-menu.active {
    display: flex;
}

.hcoe-mobile-link {
    color: var(--hcoe-cloud);
    text-decoration: none;
    padding: 17px 0;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--hcoe-transition);
}

.hcoe-mobile-link:hover {
    color: var(--hcoe-accent);
    padding-left: 9px;
}

/* Hero Section */
.hcoe-hero {
    background: linear-gradient(135deg, var(--hcoe-navy) 0%, var(--hcoe-ocean) 50%, var(--hcoe-slate) 100%);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}

.hcoe-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(245,196,10,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hcoe-hero-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 29px;
}

.hcoe-hero-label {
    display: inline-block;
    background: rgba(245,190,10,0.15);
    color: var(--hcoe-accent);
    padding: 8px 27px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 27px;
    border: 2px solid rgba(245,191,10,0.3);
}

.hcoe-hero-heading {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--hcoe-white);
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -2px;
}

.hcoe-hero-subheading {
    font-size: 19px;
    color: var(--hcoe-steel);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

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

.hcoe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 19px 35px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-radius: var(--hcoe-radius-sm);
    transition: var(--hcoe-transition);
    cursor: pointer;
    border: none;
}

.hcoe-btn-primary {
    background: var(--hcoe-accent);
    color: var(--hcoe-navy);
    box-shadow: 0 6px 20px rgba(245,201,10,0.35);
}

.hcoe-btn-primary:hover {
    background: var(--hcoe-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(245,187,10,0.45);
}

.hcoe-btn-outline {
    background: transparent;
    color: var(--hcoe-white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

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

/* Winner Section Component */
.hcoe-winner-section {
    background: linear-gradient(135deg, var(--hcoe-navy) 0%, var(--hcoe-ocean) 100%);
    padding: 51px;
    border-radius: var(--hcoe-radius-lg);
    margin: 48px 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--hcoe-shadow-lg);
}

.hcoe-winner-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(245,192,10,0.1) 0%, transparent 70%);
}

.hcoe-winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    background: var(--hcoe-accent);
    color: var(--hcoe-navy);
    padding: 8px 17px;
    border-radius: 52px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hcoe-winner-badge::before {
    content: '\2605';
    font-size: 14px;
}

.hcoe-winner-title {
    color: var(--hcoe-white);
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hcoe-winner-description {
    color: var(--hcoe-steel);
    font-size: 17px;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 27px;
}

.hcoe-winner-cta {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: var(--hcoe-accent);
    color: var(--hcoe-navy);
    padding: 15px 28px;
    border-radius: var(--hcoe-radius-sm);
    font-weight: 700;
    text-decoration: none;
    transition: var(--hcoe-transition);
}

.hcoe-winner-cta:hover {
    background: var(--hcoe-accent-dark);
    transform: translateX(4px);
}

/* Company Card Component */
.hcoe-providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 52px 0;
}

.hcoe-company-card {
    background: var(--hcoe-white);
    border-radius: var(--hcoe-radius-md);
    padding: 31px;
    box-shadow: var(--hcoe-shadow-md);
    border: 1px solid var(--hcoe-border);
    transition: var(--hcoe-transition);
    position: relative;
}

.hcoe-company-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hcoe-shadow-lg);
    border-color: var(--hcoe-accent);
}

.hcoe-company-card--featured {
    border-color: var(--hcoe-accent);
    background: linear-gradient(180deg, #fffef5 0%, var(--hcoe-white) 100%);
}

.hcoe-company-card--featured::before {
    content: 'Top Pick';
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--hcoe-accent);
    color: var(--hcoe-navy);
    padding: 6px 13px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: 0.6px;
}

.hcoe-company-rank {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    background: var(--hcoe-navy);
    color: var(--hcoe-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.hcoe-company-logo {
    width: 140px;
    height: 56px;
    object-fit: contain;
    margin: 19px auto 21px;
    display: block;
}

.hcoe-company-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--hcoe-navy);
    text-align: center;
    margin-bottom: 11px;
}

.hcoe-company-tagline {
    font-size: 14px;
    color: var(--hcoe-text-muted);
    text-align: center;
    margin-bottom: 15px;
}

.hcoe-company-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 17px;
}

.hcoe-stars {
    color: #f19a0a;
    font-size: 16px;
    letter-spacing: 3px;
}

.hcoe-rating-value {
    font-weight: 700;
    color: var(--hcoe-navy);
    font-size: 15px;
}

.hcoe-company-stats {
    display: flex;
    justify-content: space-around;
    padding: 19px 0;
    border-top: 1px solid var(--hcoe-border);
    border-bottom: 1px solid var(--hcoe-border);
    margin-bottom: 22px;
}

.hcoe-stat-label {
    font-size: 11px;
    color: var(--hcoe-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hcoe-stat-value {
    font-weight: 700;
    color: var(--hcoe-navy);
    font-size: 14px;
}

.hcoe-company-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hcoe-btn-card {
    width: 100%;
    padding: 16px 20px;
    text-align: center;
    border-radius: var(--hcoe-radius-sm);
    font-weight: 600;
    font-size: 11px;
    text-decoration: none;
    transition: var(--hcoe-transition);
}

.hcoe-btn-card-primary {
    background: var(--hcoe-accent);
    color: var(--hcoe-navy);
}

.hcoe-btn-card-primary:hover {
    background: var(--hcoe-accent-dark);
}

.hcoe-btn-card-secondary {
    background: transparent;
    color: var(--hcoe-navy);
    border: 2px solid var(--hcoe-border);
}

.hcoe-btn-card-secondary:hover {
    border-color: var(--hcoe-navy);
    background: rgba(10,34,37,0.03);
}

/* Social Share Component */
.hcoe-social-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 27px 0;
    border-top: 2px solid var(--hcoe-border);
    margin-top: 38px;
}

.hcoe-social-label {
    font-size: 17px;
    font-weight: 600;
    color: var(--hcoe-text-muted);
}

.hcoe-social-links {
    display: flex;
    gap: 12px;
}

.hcoe-social-btn {
    width: 39px;
    height: 42px;
    border-radius: 50%;
    background: var(--hcoe-cloud);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hcoe-navy);
    text-decoration: none;
    font-size: 18px;
    transition: var(--hcoe-transition);
}

.hcoe-social-btn:hover {
    background: var(--hcoe-accent);
    color: var(--hcoe-navy);
    transform: translateY(-3px);
}

/* Main Content Area */
.hcoe-content-section {
    padding: 71px 0;
}

.hcoe-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.hcoe-section-tag {
    display: inline-block;
    background: rgba(245,187,10,0.12);
    color: var(--hcoe-accent-dark);
    padding: 11px 20px;
    border-radius: 47px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 21px;
}

.hcoe-section-title {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--hcoe-navy);
    margin-bottom: 12px;
    letter-spacing: -0.6px;
}

.hcoe-section-subtitle {
    font-size: 17px;
    color: var(--hcoe-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Article Content */
.hcoe-article {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 27px;
}

.hcoe-article h2 {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--hcoe-navy);
    margin: 51px 0 22px;
    padding-bottom: 17px;
    border-bottom: 3px solid var(--hcoe-accent);
    display: inline-block;
}

.hcoe-article h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--hcoe-ocean);
    margin: 38px 0 17px;
}

.hcoe-article p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.85;
    color: var(--hcoe-text);
}

.hcoe-article ul,
.hcoe-article ol {
    margin: 22px 0;
    padding-left: 31px;
}

.hcoe-article li {
    margin-bottom: 14px;
    line-height: 1.75;
    color: var(--hcoe-text);
}

.hcoe-article strong {
    color: var(--hcoe-navy);
    font-weight: 700;
}

.hcoe-article a {
    color: var(--hcoe-slate);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--hcoe-transition);
}

.hcoe-article a:hover {
    color: var(--hcoe-accent-dark);
}

.hcoe-lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--hcoe-ocean);
    margin-bottom: 31px;
    padding: 31px;
    background: linear-gradient(135deg, rgba(245,197,10,0.06) 0%, rgba(57,94,121,0.04) 100%);
    border-left: 5px solid var(--hcoe-accent);
    border-radius: 0 var(--hcoe-radius-md) var(--hcoe-radius-md) 0;
}

/* Image Styling */
.hcoe-article-image {
    width: 100%;
    height: auto;
    border-radius: var(--hcoe-radius-md);
    margin: 38px 0;
    box-shadow: var(--hcoe-shadow-lg);
    border: 1px solid var(--hcoe-border);
}

/* FAQ Accordion */
.hcoe-faq-section {
    background: linear-gradient(180deg, #f4f5f7 0%, var(--hcoe-white) 100%);
    padding: 80px 0;
    margin-top: 57px;
}

.hcoe-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.hcoe-faq-item {
    background: var(--hcoe-white);
    border: 1px solid var(--hcoe-border);
    border-radius: var(--hcoe-radius-md);
    margin-bottom: 19px;
    overflow: hidden;
    transition: var(--hcoe-transition);
}

.hcoe-faq-item:hover {
    border-color: var(--hcoe-slate);
}

.hcoe-faq-item.active {
    border-color: var(--hcoe-accent);
    box-shadow: var(--hcoe-shadow-md);
}

.hcoe-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.hcoe-faq-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--hcoe-navy);
    padding-right: 20px;
}

.hcoe-faq-toggle {
    width: 29px;
    height: 32px;
    background: rgba(245,192,10,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hcoe-accent-dark);
    font-size: 20px;
    transition: var(--hcoe-transition);
    flex-shrink: 0;
}

.hcoe-faq-item.active .hcoe-faq-toggle {
    background: var(--hcoe-accent);
    color: var(--hcoe-navy);
    transform: rotate(180deg);
}

.hcoe-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.hcoe-faq-item.active .hcoe-faq-content {
    max-height: 600px;
}

.hcoe-faq-answer {
    padding: 0 29px 26px;
    font-size: 19px;
    line-height: 1.8;
    color: var(--hcoe-text);
}

/* Footer */
.hcoe-footer {
    background: var(--hcoe-navy);
    color: var(--hcoe-steel);
    padding: 70px 0 32px;
    margin-top: 82px;
}

.hcoe-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 49px;
    margin-bottom: 53px;
}

.hcoe-footer-brand {
    max-width: 280px;
}

.hcoe-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hcoe-white);
    text-decoration: none;
    margin-bottom: 21px;
}

.hcoe-footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--hcoe-steel);
}

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

.hcoe-footer-nav {
    list-style: none;
}

.hcoe-footer-nav li {
    margin-bottom: 15px;
}

.hcoe-footer-nav a {
    color: var(--hcoe-steel);
    text-decoration: none;
    font-size: 14px;
    transition: var(--hcoe-transition);
}

.hcoe-footer-nav a:hover {
    color: var(--hcoe-accent);
    padding-left: 5px;
}

.hcoe-footer-disclaimer {
    padding: 31px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    line-height: 1.7;
    color: var(--hcoe-slate);
}

.hcoe-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: var(--hcoe-slate);
}

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

.hcoe-companies-section {
    padding: 61px 0;
    background: #f8f9fa;
}

.hcoe-companies-table-wrap {
    overflow-x: auto;
    margin: 0 -13px;
    padding: 0 18px;
}

.hcoe-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--hcoe-white);
    border-radius: var(--hcoe-radius-md);
    overflow: hidden;
    box-shadow: var(--hcoe-shadow-md);
    min-width: 900px;
}

.hcoe-companies-table thead {
    background: linear-gradient(135deg, var(--hcoe-navy) 0%, var(--hcoe-ocean) 100%);
    color: var(--hcoe-white);
}

.hcoe-companies-table th {
    padding: 15px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.hcoe-companies-table th:first-child {
    padding-left: 25px;
}

.hcoe-companies-table td {
    padding: 18px 19px;
    border-bottom: 1px solid var(--hcoe-border);
    vertical-align: middle;
    font-size: 14px;
    color: var(--hcoe-text);
}

.hcoe-companies-table td:first-child {
    padding-left: 26px;
}

.hcoe-companies-table tbody tr:last-child td {
    border-bottom: none;
}

.hcoe-companies-table tbody tr:hover {
    background: #f8f9fa;
}

.hcoe-table-company {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hcoe-table-rank {
    width: 35px;
    height: 32px;
    background: linear-gradient(135deg, var(--hcoe-accent) 0%, var(--hcoe-accent-dark) 100%);
    color: var(--hcoe-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.hcoe-table-logo {
    width: 100px;
    height: 45px;
    object-fit: contain;
    flex-shrink: 0;
}

.hcoe-table-name {
    font-weight: 600;
    color: var(--hcoe-navy);
    white-space: nowrap;
}

.hcoe-table-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hcoe-table-stars {
    color: var(--hcoe-accent);
    font-size: 14px;
    letter-spacing: 1px;
}

.hcoe-table-score {
    font-weight: 600;
    color: var(--hcoe-navy);
}

.hcoe-table-highlight {
    display: inline-block;
    padding: 5px 11px;
    background: #f8f9fa;
    border-radius: 3px;
    font-size: 15px;
    color: var(--hcoe-text-muted);
}

.hcoe-table-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 17px;
    background: linear-gradient(135deg, var(--hcoe-accent) 0%, var(--hcoe-accent-dark) 100%);
    color: var(--hcoe-navy);
    text-decoration: none;
    border-radius: var(--hcoe-radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: var(--hcoe-transition);
    white-space: nowrap;
}

.hcoe-table-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245,197,10,0.4);
}

/* Mobile Cards for Table */
.hcoe-companies-cards {
    display: none;
}

.hcoe-company-card-item {
    background: var(--hcoe-white);
    border-radius: var(--hcoe-radius-md);
    padding: 22px;
    margin-bottom: 23px;
    box-shadow: var(--hcoe-shadow-md);
    border: 1px solid var(--hcoe-border);
}

.hcoe-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--hcoe-border);
}

.hcoe-card-rank {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--hcoe-accent) 0%, var(--hcoe-accent-dark) 100%);
    color: var(--hcoe-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.hcoe-card-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.hcoe-card-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--hcoe-navy);
}

.hcoe-card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 19px;
}

.hcoe-card-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hcoe-card-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--hcoe-text-muted);
}

.hcoe-card-value {
    font-weight: 600;
    color: var(--hcoe-navy);
    font-size: 14px;
}

.hcoe-card-btn {
    display: block;
    width: 100%;
    padding: 14px 17px;
    background: linear-gradient(135deg, var(--hcoe-accent) 0%, var(--hcoe-accent-dark) 100%);
    color: var(--hcoe-navy);
    text-decoration: none;
    border-radius: var(--hcoe-radius-sm);
    font-weight: 600;
    font-size: 17px;
    text-align: center;
    transition: var(--hcoe-transition);
}

.hcoe-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,199,10,0.4);
}

/* ============================================
   REVIEW PAGE STYLES
   ============================================ */

.hcoe-review-hero {
    background: linear-gradient(135deg, var(--hcoe-navy) 0%, var(--hcoe-ocean) 100%);
    padding: 58px 0;
    color: var(--hcoe-white);
}

.hcoe-review-hero-content {
    display: flex;
    align-items: center;
    gap: 43px;
    max-width: 900px;
    margin: 0 auto;
}

.hcoe-review-logo {
    width: 150px;
    height: auto;
    background: var(--hcoe-white);
    padding: 22px;
    border-radius: var(--hcoe-radius-md);
    flex-shrink: 0;
}

.hcoe-review-title {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 13px 0;
}

.hcoe-review-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.hcoe-review-stats {
    display: flex;
    gap: 28px;
    margin-top: 23px;
}

.hcoe-review-stat {
    text-align: center;
}

.hcoe-review-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--hcoe-accent);
}

.hcoe-review-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.hcoe-review-content {
    padding: 59px 0;
}

.hcoe-review-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 51px;
    max-width: 1200px;
    margin: 0 auto;
}

.hcoe-review-main {
    min-width: 0;
}

.hcoe-review-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.hcoe-review-cta-box {
    background: linear-gradient(135deg, var(--hcoe-navy) 0%, var(--hcoe-ocean) 100%);
    border-radius: var(--hcoe-radius-lg);
    padding: 30px;
    color: var(--hcoe-white);
    text-align: center;
}

.hcoe-review-cta-title {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.hcoe-review-cta-text {
    font-size: 14px;
    opacity: 0.9;
    margin: 0 0 23px 0;
}

.hcoe-review-cta-btn {
    display: block;
    width: 100%;
    padding: 17px 22px;
    background: var(--hcoe-accent);
    color: var(--hcoe-navy);
    text-decoration: none;
    border-radius: var(--hcoe-radius-sm);
    font-weight: 700;
    font-size: 19px;
    transition: var(--hcoe-transition);
}

.hcoe-review-cta-btn:hover {
    background: var(--hcoe-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,193,10,0.4);
}

.hcoe-review-info-box {
    background: var(--hcoe-white);
    border-radius: var(--hcoe-radius-md);
    padding: 24px;
    margin-top: 28px;
    border: 2px solid var(--hcoe-border);
}

.hcoe-review-info-title {
    font-weight: 700;
    color: var(--hcoe-navy);
    margin: 0 0 13px 0;
    font-size: 19px;
}

.hcoe-review-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hcoe-review-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--hcoe-border);
    font-size: 14px;
}

.hcoe-review-info-list li:last-child {
    border-bottom: none;
}

.hcoe-review-info-label {
    color: var(--hcoe-text-muted);
}

.hcoe-review-info-value {
    font-weight: 600;
    color: var(--hcoe-navy);
}

.hcoe-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 33px 0;
}

.hcoe-pros-box,
.hcoe-cons-box {
    padding: 26px;
    border-radius: var(--hcoe-radius-md);
}

.hcoe-pros-box {
    background: rgba(10,207,81,0.08);
    border: 1px solid rgba(10,193,88,0.2);
}

.hcoe-cons-box {
    background: rgba(245,85,79,0.08);
    border: 1px solid rgba(245,87,86,0.2);
}

.hcoe-pros-title,
.hcoe-cons-title {
    font-weight: 700;
    font-size: 16px;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hcoe-pros-title {
    color: var(--hcoe-success);
}

.hcoe-cons-title {
    color: var(--hcoe-danger);
}

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

.hcoe-pros-list li,
.hcoe-cons-list li {
    padding: 7px 0;
    padding-left: 23px;
    position: relative;
    font-size: 15px;
    color: var(--hcoe-text);
}

.hcoe-pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hcoe-success);
    font-weight: 700;
}

.hcoe-cons-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--hcoe-danger);
    font-weight: 700;
}

/* ============================================
   CTA SECTION STYLES
   ============================================ */

.hcoe-cta-section {
    padding: 78px 0;
    background: linear-gradient(135deg, var(--hcoe-navy) 0%, var(--hcoe-ocean) 100%);
    color: var(--hcoe-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hcoe-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(245,193,10,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(245,195,10,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hcoe-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hcoe-cta-title {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 17px 0;
}

.hcoe-cta-text {
    font-size: 20px;
    opacity: 0.9;
    margin: 0 0 34px 0;
    line-height: 1.7;
}

.hcoe-cta-buttons {
    display: flex;
    gap: 23px;
    justify-content: center;
    flex-wrap: wrap;
}

.hcoe-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 16px 39px;
    background: var(--hcoe-accent);
    color: var(--hcoe-navy);
    text-decoration: none;
    border-radius: var(--hcoe-radius-sm);
    font-weight: 700;
    font-size: 16px;
    transition: var(--hcoe-transition);
}

.hcoe-cta-btn-primary:hover {
    background: var(--hcoe-accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(245,189,10,0.4);
}

.hcoe-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 19px 34px;
    background: transparent;
    color: var(--hcoe-white);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--hcoe-radius-sm);
    font-weight: 600;
    font-size: 16px;
    transition: var(--hcoe-transition);
}

.hcoe-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.hcoe-cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    margin-top: 42px;
    padding-top: 29px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.hcoe-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    opacity: 0.85;
}

.hcoe-cta-trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--hcoe-accent);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .hcoe-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hcoe-review-grid {
        grid-template-columns: 1fr;
    }

    .hcoe-review-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .hcoe-review-info-box {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .hcoe-header { position: relative !important; }
    .hcoe-navigation,
    .hcoe-cta-header {
        display: none;
    }

    .hcoe-hamburger {
        display: flex;
    }

    .hcoe-hero {
        padding: 73px 0 61px;
    }

    .hcoe-hero-heading {
        font-size: 34px;
    }

    .hcoe-hero-subheading {
        font-size: 16px;
    }

    .hcoe-hero-actions {
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }

    .hcoe-btn {
        width: 100%;
    }

    .hcoe-section-title {
        font-size: 28px;
    }

    .hcoe-article h2 {
        font-size: 26px;
    }

    .hcoe-article h3 {
        font-size: 20px;
    }

    .hcoe-winner-section {
        padding: 35px 25px;
    }

    .hcoe-winner-title {
        font-size: 24px;
    }

    .hcoe-providers-grid {
        grid-template-columns: 1fr;
    }

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

    .hcoe-faq-question {
        font-size: 16px;
    }

    /* Table to Cards on Mobile */
    .hcoe-companies-table-wrap {
        display: none;
    }

    .hcoe-companies-cards {
        display: block;
    }

    .hcoe-review-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hcoe-review-stats {
        justify-content: center;
    }

    .hcoe-review-sidebar {
        grid-template-columns: 1fr;
    }

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

    .hcoe-cta-title {
        font-size: 30px;
    }

    .hcoe-cta-text {
        font-size: 16px;
    }

    .hcoe-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hcoe-cta-trust {
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .hcoe-wrapper {
        padding: 0 19px;
    }

    .hcoe-hero-heading {
        font-size: 28px;
    }

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

    .hcoe-review-stats {
        flex-direction: column;
        gap: 15px;
    }

    .hcoe-card-details {
        grid-template-columns: 1fr;
    }

    .hcoe-cta-title {
        font-size: 26px;
    }
}

/* Utility Classes */
.hcoe-text-center { text-align: center; }
.hcoe-text-left { text-align: left; }
.hcoe-mt-0 { margin-top: 0; }
.hcoe-mb-0 { margin-bottom: 0; }
.hcoe-hidden { display: none; }

/* Schema Markup Helper - visually hidden but accessible */
.hcoe-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -2px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


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

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

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

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

    .hcoe-companies-section .hcoe-companies-table tbody tr.hcoe-company-row {
        background: #fff !important;
        margin-bottom: 18px !important;
        border-radius: 19px !important;
        box-shadow: 0 4px 21px rgba(90,24,39,0.1) !important;
        padding: 22px !important;
        border: 1px solid rgba(89,26,47,0.08);
    }

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

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

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

    .hcoe-companies-section .hcoe-td-company {
        flex-direction: column !important;
        text-align: center !important;
        padding-bottom: 19px !important;
        border-bottom: 2px solid #f5dfca !important;
    }

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

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

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

    .hcoe-companies-section .hcoe-td-action {
        flex-direction: column !important;
        padding-top: 13px !important;
        border-top: 3px solid #f1ebd9 !important;
        border-bottom: none !important;
    }

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

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

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

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

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

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

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

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


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

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

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


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

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

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

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

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


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

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

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

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

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

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

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


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

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