/* Rolls-Royce Magnificent Style - Auto-themed */
:root {
    --hhkm-midnight: #0d0d12;
    --hhkm-obsidian: #101d1a;
    --hhkm-burgundy: #723832;
    --hhkm-burgundy-light: #823f44;
    --hhkm-burgundy-dark: #5b1b35;
    --hhkm-silver: #bdbcc2;
    --hhkm-silver-light: #f0eaea;
    --hhkm-platinum: #e3ece5;
    --hhkm-champagne: #f5ecd6;
    --hhkm-cream: #fffef9;
    --hhkm-ivory: #faf8f5;
    --hhkm-charcoal: #292f40;
    --hhkm-slate: #505253;
    --hhkm-border: #e4edec;
    --hhkm-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --hhkm-shadow-deep: rgba(13, 13, 18, 0.35);
    --hhkm-glow: 0 4px 20px rgba(0,0,0,0.08);
    --hhkm-success: #266150;
    --hhkm-warning: #b86322;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Helvetica Neue', sans-serif;
    line-height: 1.75;
    color: var(--hhkm-charcoal);
    background: var(--hhkm-cream);
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hhkm-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 29px;
}

/* Scroll Progress */
.hhkm-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--hhkm-burgundy), var(--hhkm-burgundy-light), var(--hhkm-burgundy));
    z-index: 10000;
    box-shadow: 0 0 12px var(--hhkm-glow);
}

/* Top Bar */
.hhkm-topbar {
    background: linear-gradient(180deg, var(--hhkm-midnight) 0%, var(--hhkm-obsidian) 100%);
    padding: 16px 0;
    border-bottom: 1px solid rgba(184,199,193,0.12);
}

.hhkm-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hhkm-metal-quote {
    display: flex;
    align-items: center;
    gap: 17px;
}

.hhkm-metal-name {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--hhkm-silver);
    font-weight: 600;
}

.hhkm-metal-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--hhkm-champagne);
    letter-spacing: 0.4px;
}

.hhkm-metal-delta {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.hhkm-metal-delta--positive { color: #44e276; }
.hhkm-metal-delta--negative { color: #f5796c; }

.hhkm-topbar-divider {
    width: 1px;
    height: 28px;
    background: rgba(185,193,201,0.2);
}

/* Navigation */
.hhkm-navigation {
    background: var(--hhkm-cream);
    border-bottom: 1px solid var(--hhkm-border);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.hhkm-navigation-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}

.hhkm-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.hhkm-brand-emblem {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--hhkm-burgundy) 0%, var(--hhkm-burgundy-dark) 100%);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--hhkm-glow);
    position: relative;
    overflow: hidden;
}

.hhkm-brand-emblem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
}

.hhkm-brand-emblem svg {
    width: 26px;
    height: 26px;
    color: var(--hhkm-champagne);
    position: relative;
    z-index: 1;
}

.hhkm-brand-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--hhkm-midnight);
    letter-spacing: 2px;
}

.hhkm-menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.hhkm-menu-item {
    color: var(--hhkm-charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.4px;
    transition: all 0.3s ease;
    position: relative;
    padding: 7px 0;
}

.hhkm-menu-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hhkm-burgundy);
    transition: width 0.3s ease;
}

.hhkm-menu-item:hover {
    color: var(--hhkm-burgundy);
}

.hhkm-menu-item:hover::after {
    width: 100%;
}

.hhkm-menu-item--current {
    color: var(--hhkm-burgundy);
}

.hhkm-menu-item--current::after {
    width: 100%;
}

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

.hhkm-hamburger-line {
    width: 29px;
    height: 2px;
    background: var(--hhkm-charcoal);
    transition: all 0.3s ease;
}

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

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

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

.hhkm-mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--hhkm-cream);
    border-top: 1px solid var(--hhkm-border);
    padding: 20px 31px;
}

.hhkm-mobile-menu.is-visible {
    display: flex;
}

.hhkm-mobile-menu-item {
    padding: 12px 0;
    color: var(--hhkm-charcoal);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--hhkm-border);
}

.hhkm-mobile-menu-item:last-child {
    border-bottom: none;
}

/* Hero Section */
.hhkm-hero {
    background: linear-gradient(165deg, var(--hhkm-midnight) 0%, var(--hhkm-obsidian) 40%, var(--hhkm-charcoal) 100%);
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hhkm-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(118,43,54,0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(197,198,207,0.08) 0%, transparent 50%);
}

.hhkm-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--hhkm-cream), transparent);
}

.hhkm-hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 28px;
}

.hhkm-hero-label {
    display: inline-block;
    padding: 13px 24px;
    background: rgba(120,48,53,0.25);
    border: 1px solid rgba(121,42,61,0.5);
    border-radius: 33px;
    font-size: 11px;
    font-weight: 700;
    color: var(--hhkm-champagne);
    text-transform: uppercase;
    letter-spacing: 2.6px;
    margin-bottom: 25px;
}

.hhkm-hero-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 54px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--hhkm-platinum);
    margin-bottom: 29px;
    letter-spacing: 0.4px;
}

.hhkm-hero-heading em {
    font-style: normal;
    color: var(--hhkm-champagne);
}

.hhkm-hero-description {
    font-size: 19px;
    color: var(--hhkm-silver);
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

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

.hhkm-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 16px 37px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-radius: 7px;
    transition: all 0.35s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.6px;
}

.hhkm-button--primary {
    background: linear-gradient(145deg, var(--hhkm-burgundy) 0%, var(--hhkm-burgundy-dark) 100%);
    color: var(--hhkm-champagne);
    box-shadow: 0 6px 24px var(--hhkm-glow);
}

.hhkm-button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px var(--hhkm-glow);
}

.hhkm-button--outline {
    background: transparent;
    color: var(--hhkm-silver);
    border: 1px solid rgba(192,197,197,0.35);
}

.hhkm-button--outline:hover {
    background: rgba(193,188,205,0.1);
    border-color: rgba(194,198,196,0.6);
}

/* Star Rating Component */
.hhkm-rating-strip {
    background: var(--hhkm-ivory);
    padding: 33px 0;
    border-bottom: 2px solid var(--hhkm-border);
}

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

.hhkm-rating-label {
    font-size: 13px;
    color: var(--hhkm-slate);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 600;
}

.hhkm-stars-group {
    display: flex;
    gap: 4px;
}

.hhkm-star-icon {
    font-size: 25px;
    color: #d6e0d3;
}

.hhkm-star-icon--active {
    color: var(--hhkm-burgundy);
}

.hhkm-rating-score {
    font-size: 26px;
    font-weight: 700;
    color: var(--hhkm-midnight);
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.hhkm-rating-count {
    font-size: 14px;
    color: var(--hhkm-slate);
}

/* Process Steps Component */
.hhkm-steps-section {
    padding: 83px 0;
    background: var(--hhkm-cream);
}

.hhkm-section-header {
    text-align: center;
    margin-bottom: 59px;
}

.hhkm-section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 42px;
    font-weight: 500;
    color: var(--hhkm-midnight);
    margin-bottom: 13px;
    letter-spacing: 0.5px;
}

.hhkm-section-subtitle {
    font-size: 18px;
    color: var(--hhkm-slate);
    max-width: 600px;
    margin: 0 auto;
}

.hhkm-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 31px;
}

.hhkm-step-card {
    background: var(--hhkm-ivory);
    padding: 41px 27px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--hhkm-border);
    transition: all 0.4s ease;
    position: relative;
}

.hhkm-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--hhkm-shadow);
    border-color: var(--hhkm-burgundy);
}

.hhkm-step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, var(--hhkm-burgundy), var(--hhkm-burgundy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 21px;
    font-size: 24px;
    font-weight: 700;
    color: var(--hhkm-champagne);
    font-family: 'Cormorant Garamond', Georgia, serif;
    box-shadow: 0 4px 16px var(--hhkm-glow);
}

.hhkm-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--hhkm-midnight);
    margin-bottom: 10px;
}

.hhkm-step-text {
    font-size: 16px;
    color: var(--hhkm-slate);
    line-height: 1.6;
}

/* Main Content */
.hhkm-content {
    padding: 73px 0;
}

.hhkm-article {
    max-width: 820px;
    margin: 0 auto;
}

.hhkm-lead-box {
    background: linear-gradient(135deg, var(--hhkm-ivory) 0%, var(--hhkm-cream) 100%);
    border-left: 4px solid var(--hhkm-burgundy);
    padding: 29px 36px;
    margin-bottom: 53px;
    border-radius: 0 10px 13px 0;
    box-shadow: 0 5px 19px var(--hhkm-shadow);
}

.hhkm-lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--hhkm-charcoal);
    font-weight: 400;
}

.hhkm-article h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--hhkm-midnight);
    margin: 56px 0 29px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--hhkm-border);
    position: relative;
}

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

.hhkm-article h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--hhkm-charcoal);
    margin: 40px 0 21px;
}

.hhkm-article p {
    margin-bottom: 20px;
    line-height: 1.85;
    color: var(--hhkm-charcoal);
}

.hhkm-article-list {
    margin: 27px 0;
    padding-left: 0;
    list-style: none;
}

.hhkm-article-list li {
    padding: 15px 0 11px 34px;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid rgba(227,221,220,0.5);
}

.hhkm-article-list li:last-child {
    border-bottom: none;
}

.hhkm-article-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 10px;
    height: 10px;
    background: var(--hhkm-burgundy);
    border-radius: 50%;
}

.hhkm-article-list-ordered {
    margin: 27px 0;
    padding-left: 0;
    list-style: none;
    counter-reset: step-counter;
}

.hhkm-article-list-ordered li {
    padding: 17px 0 13px 50px;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid rgba(220,215,219,0.5);
    counter-increment: step-counter;
}

.hhkm-article-list-ordered li:last-child {
    border-bottom: none;
}

.hhkm-article-list-ordered li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    width: 32px;
    height: 32px;
    background: var(--hhkm-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--hhkm-champagne);
}

/* Image Wrapper */
.hhkm-image-block {
    margin: 51px 0;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 14px 45px var(--hhkm-shadow);
    border: 1px solid var(--hhkm-border);
}

.hhkm-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hhkm-image-block:hover .hhkm-article-image {
    transform: scale(1.03);
}

/* FAQ Accordion */
.hhkm-faq-section {
    margin: 73px 0;
    padding: 68px 0;
    background: var(--hhkm-ivory);
    border-radius: 17px;
}

.hhkm-faq-header {
    text-align: center;
    margin-bottom: 53px;
}

.hhkm-faq-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 38px;
    font-weight: 500;
    color: var(--hhkm-midnight);
    margin-bottom: 14px;
}

.hhkm-faq-subtitle {
    font-size: 14px;
    color: var(--hhkm-slate);
}

.hhkm-faq-list {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 31px;
}

.hhkm-faq-entry {
    background: var(--hhkm-cream);
    border: 1px solid var(--hhkm-border);
    border-radius: 11px;
    margin-bottom: 19px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hhkm-faq-entry:hover {
    border-color: var(--hhkm-burgundy);
}

.hhkm-faq-entry.is-expanded {
    border-color: var(--hhkm-burgundy);
    box-shadow: 0 8px 32px var(--hhkm-shadow);
}

.hhkm-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 17px;
    padding: 22px 31px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.hhkm-faq-question-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--hhkm-midnight);
    line-height: 1.4;
}

.hhkm-faq-chevron {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--hhkm-ivory);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hhkm-burgundy);
    transition: all 0.3s ease;
}

.hhkm-faq-entry.is-expanded .hhkm-faq-chevron {
    transform: rotate(180deg);
    background: var(--hhkm-burgundy);
    color: var(--hhkm-champagne);
}

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

.hhkm-faq-entry.is-expanded .hhkm-faq-body {
    max-height: 600px;
}

.hhkm-faq-answer {
    padding: 0 30px 21px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--hhkm-charcoal);
}

/* Exit Popup */
.hhkm-exit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 18, 0.85);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.hhkm-exit-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.hhkm-exit-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--hhkm-cream);
    padding: 53px;
    border-radius: 14px;
    max-width: 520px;
    width: 90%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.hhkm-exit-popup.is-active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.hhkm-exit-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    background: var(--hhkm-ivory);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--hhkm-charcoal);
    transition: all 0.3s ease;
}

.hhkm-exit-close:hover {
    background: var(--hhkm-burgundy);
    color: var(--hhkm-champagne);
}

.hhkm-exit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, var(--hhkm-burgundy), var(--hhkm-burgundy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 23px;
    box-shadow: 0 10px 25px var(--hhkm-glow);
}

.hhkm-exit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--hhkm-champagne);
}

.hhkm-exit-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--hhkm-midnight);
    margin-bottom: 15px;
}

.hhkm-exit-message {
    font-size: 19px;
    color: var(--hhkm-slate);
    margin-bottom: 27px;
    line-height: 1.6;
}

.hhkm-exit-cta {
    display: inline-flex;
    align-items: center;
    padding: 18px 35px;
    background: linear-gradient(145deg, var(--hhkm-burgundy), var(--hhkm-burgundy-dark));
    color: var(--hhkm-champagne);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px var(--hhkm-glow);
}

.hhkm-exit-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px var(--hhkm-glow);
}

/* Footer */
.hhkm-footer {
    background: linear-gradient(165deg, var(--hhkm-midnight) 0%, var(--hhkm-obsidian) 100%);
    padding: 77px 0 40px;
    color: var(--hhkm-silver);
}

.hhkm-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 63px;
    margin-bottom: 48px;
    padding-bottom: 51px;
    border-bottom: 2px solid rgba(191,185,194,0.12);
}

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

.hhkm-footer-brand-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--hhkm-platinum);
}

.hhkm-footer-about {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(184,192,201,0.7);
}

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

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

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

.hhkm-footer-links a {
    color: rgba(185,186,192,0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.hhkm-footer-links a:hover {
    color: var(--hhkm-champagne);
}

.hhkm-footer-bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(186,196,200,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .hhkm-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hhkm-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .hhkm-menu {
        display: none;
    }

    .hhkm-hero-heading {
        font-size: 36px;
    }

    .hhkm-hero-description {
        font-size: 17px;
    }

    .hhkm-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hhkm-button {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .hhkm-steps-grid {
        grid-template-columns: 1fr;
    }

    .hhkm-article h2 {
        font-size: 28px;
    }

    .hhkm-section-title,
    .hhkm-faq-title {
        font-size: 30px;
    }

    .hhkm-footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hhkm-topbar-inner {
        gap: 17px;
    }

    .hhkm-topbar-divider {
        display: none;
    }

    .hhkm-metal-quote {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

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

.hhkm-companies-table-wrapper {
    overflow-x: auto;
    margin: 33px 0;
    border-radius: 14px;
    box-shadow: 0 13px 43px var(--hhkm-shadow);
}

.hhkm-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--hhkm-cream);
    font-family: 'Lato', sans-serif;
}

.hhkm-companies-table thead {
    background: linear-gradient(135deg, var(--hhkm-midnight) 0%, var(--hhkm-obsidian) 100%);
}

.hhkm-companies-table th {
    padding: 17px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--hhkm-platinum);
    border-bottom: 3px solid var(--hhkm-burgundy);
}

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

.hhkm-company-row { transition: all 0.3s ease; }
.hhkm-company-row:hover { background: rgba(109,46,54,0.05); }

.hhkm-rank-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--hhkm-burgundy) 0%, var(--hhkm-burgundy-dark) 100%);
    color: var(--hhkm-platinum);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 3px 10px var(--hhkm-glow);
}

.hhkm-company-info { display: flex; flex-direction: column; gap: 5px; }
.hhkm-company-name { font-weight: 600; font-size: 16px; color: var(--hhkm-midnight); }
.hhkm-company-badge {
    display: inline-block;
    padding: 5px 9px;
    background: rgba(118,40,62,0.1);
    color: var(--hhkm-burgundy);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-radius: 20px;
    border: 2px solid rgba(119,50,53,0.2);
}

.hhkm-rating-box { display: flex; flex-direction: column; gap: 3px; align-items: center; }
.hhkm-stars { display: flex; gap: 3px; }
.hhkm-star { font-size: 19px; }
.hhkm-star-full { color: var(--hhkm-burgundy); text-shadow: 0 0 6px var(--hhkm-glow); }
.hhkm-star-half { color: var(--hhkm-burgundy); opacity: 0.6; }
.hhkm-star-empty { color: #e1ddd8; }
.hhkm-rating-value { font-size: 13px; font-weight: 600; color: var(--hhkm-charcoal); }

.hhkm-bbb-badge {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--hhkm-success) 0%, #14523d 100%);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 5px;
    box-shadow: 0 3px 7px rgba(51,100,85,0.3);
}

.hhkm-features-list { list-style: none; padding: 0; margin: 0; font-size: 12px; }
.hhkm-features-list li { padding: 4px 0; padding-left: 15px; position: relative; color: var(--hhkm-charcoal); }
.hhkm-features-list li::before { content: '✓'; position: absolute; left: 0; color: var(--hhkm-burgundy); font-weight: 700; }

.hhkm-btn-review {
    display: inline-block;
    padding: 12px 27px;
    background: linear-gradient(135deg, var(--hhkm-burgundy) 0%, var(--hhkm-burgundy-dark) 100%);
    color: var(--hhkm-platinum);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 9px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--hhkm-glow);
    white-space: nowrap;
}

.hhkm-btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--hhkm-glow);
}

/* Review Page */
.hhkm-review-page { max-width: 900px; margin: 0 auto; }
.hhkm-review-header { text-align: center; margin-bottom: 38px; }
.hhkm-review-title { font-size: 43px; font-weight: 700; color: var(--hhkm-midnight); margin-bottom: 23px; }
.hhkm-review-meta { display: flex; justify-content: center; align-items: center; gap: 19px; flex-wrap: wrap; }
.hhkm-review-rating-large .hhkm-stars { font-size: 24px; }
.hhkm-review-badge { padding: 5px 16px; background: linear-gradient(135deg, var(--hhkm-success) 0%, #1f4446 100%); color: #fff; font-weight: 600; border-radius: 23px; }

.hhkm-quick-facts {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 21px; margin: 43px 0; padding: 29px;
    background: var(--hhkm-ivory);
    border-radius: 18px;
    border: 1px solid var(--hhkm-border);
}
.hhkm-fact-item { text-align: center; }
.hhkm-fact-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--hhkm-slate); margin-bottom: 5px; }
.hhkm-fact-value { display: block; font-size: 20px; font-weight: 700; color: var(--hhkm-midnight); }

.hhkm-review-content { margin-top: 43px; }
.hhkm-review-section { margin-bottom: 39px; }
.hhkm-review-intro .hhkm-lead { font-size: 20px; line-height: 1.8; color: var(--hhkm-charcoal); }

.hhkm-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 21px; margin: 30px 0; }
.hhkm-pros, .hhkm-cons { padding: 27px; border-radius: 10px; }
.hhkm-pros { background: rgba(52,110,76,0.08); border: 1px solid rgba(45,104,84,0.2); }
.hhkm-cons { background: rgba(182,93,25,0.08); border: 1px solid rgba(183,104,33,0.2); }
.hhkm-pros h3, .hhkm-cons h3 { margin-bottom: 15px; font-size: 20px; }
.hhkm-pros h3 { color: var(--hhkm-success); }
.hhkm-cons h3 { color: var(--hhkm-warning); }
.hhkm-pros ul, .hhkm-cons ul { list-style: none; padding: 0; margin: 0; }
.hhkm-pros li, .hhkm-cons li { padding: 5px 0; padding-left: 24px; position: relative; }
.hhkm-pros li::before { content: '✓'; position: absolute; left: 0; color: var(--hhkm-success); font-weight: 700; }
.hhkm-cons li::before { content: '✗'; position: absolute; left: 0; color: var(--hhkm-warning); font-weight: 700; }

.hhkm-fee-table { width: 100%; border-collapse: collapse; margin: 23px 0; background: var(--hhkm-cream); border-radius: 6px; overflow: hidden; box-shadow: 0 3px 11px var(--hhkm-shadow); }
.hhkm-fee-table th, .hhkm-fee-table td { padding: 13px 22px; text-align: left; border-bottom: 1px solid var(--hhkm-border); }
.hhkm-fee-table th { background: var(--hhkm-midnight); color: var(--hhkm-platinum); font-weight: 600; }

.hhkm-verdict { padding: 30px; background: rgba(117,44,58,0.08); border-radius: 19px; border-left: 3px solid var(--hhkm-burgundy); }
.hhkm-verdict h2 { color: var(--hhkm-midnight); margin-bottom: 17px; }

.hhkm-cta-box { text-align: center; padding: 43px; background: linear-gradient(135deg, var(--hhkm-midnight) 0%, var(--hhkm-obsidian) 100%); color: var(--hhkm-platinum); border-radius: 15px; margin: 42px 0; }
.hhkm-cta-box h3 { font-size: 25px; font-weight: 700; margin-bottom: 12px; }
.hhkm-cta-box p { margin-bottom: 23px; opacity: 0.9; }
.hhkm-cta-box .hhkm-btn-primary { background: linear-gradient(135deg, var(--hhkm-burgundy) 0%, var(--hhkm-burgundy-dark) 100%); color: var(--hhkm-platinum); padding: 14px 33px; font-size: 19px; text-decoration: none; border-radius: 7px; display: inline-block; font-weight: 700; transition: all 0.3s ease; }
.hhkm-cta-box .hhkm-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px var(--hhkm-glow); }

.hhkm-other-companies { margin-top: 63px; padding-top: 38px; border-top: 2px solid var(--hhkm-border); }
.hhkm-other-companies h3 { text-align: center; font-size: 28px; font-weight: 700; margin-bottom: 29px; color: var(--hhkm-midnight); }
.hhkm-other-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 21px; }
.hhkm-other-card { padding: 24px; background: var(--hhkm-cream); border-radius: 15px; border: 1px solid var(--hhkm-border); transition: all 0.3s ease; }
.hhkm-other-card:hover { border-color: var(--hhkm-burgundy); box-shadow: 0 8px 24px var(--hhkm-shadow); transform: translateY(-4px); }
.hhkm-other-card h4 { font-size: 18px; color: var(--hhkm-midnight); margin-bottom: 5px; }
.hhkm-other-card p { font-size: 14px; color: var(--hhkm-slate); margin-bottom: 15px; }
.hhkm-other-card a { color: var(--hhkm-burgundy); text-decoration: none; font-weight: 600; font-size: 14px; }

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


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

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

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

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

    .hhkm-companies-section .hhkm-companies-table tbody tr.hhkm-company-row {
        background: #fff !important;
        margin-bottom: 21px !important;
        border-radius: 19px !important;
        box-shadow: 0 3px 26px rgba(88,37,42,0.1) !important;
        padding: 17px !important;
        border: 1px solid rgba(89,28,49,0.08);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


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

.hhkm-menu-line {
    width: 22px;
    height: 3px;
    background: var(--hhkm-text, #2c2e41);
    border-radius: 3px;
    transition: 0.3s;
}

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

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

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

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


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

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

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


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

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

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

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

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


/* SVG Logo & Mobile Fixes */
.hhkm-logo {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    gap: 9px;
    color: #16292e !important;
}
.hhkm-logo:hover {
    text-decoration: none !important;
}
.hhkm-logo:visited {
    color: #121c33 !important;
}
.hhkm-logo-svg {
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.hhkm-logo-text {
    display: inline-block !important;
    font-size: 18px;
    font-weight: 700;
    color: #1d2037;
    text-decoration: none;
    letter-spacing: -0.4px;
}

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

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

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

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

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


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

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