/* Patek Philippe Refined Style - Auto-themed */
:root {
    --mhok-primary: #1a1a0d;
    --mhok-accent: #f5ad4f;
    --mhok-gold: #f5b256;
    --mhok-gold-light: #9fa3a6;
    --mhok-gold-dark: #67777c;
    --mhok-bg: #FAFAFA;
    --mhok-bg-dark: #16101f;
    --mhok-bg-gradient: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
    --mhok-text: #131b16;
    --mhok-text-light: #f5ad44;
    --mhok-border: #cdd4d8;
    --mhok-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --mhok-shadow-hover: rgba(0, 0, 0, 0.15);
    --mhok-shadow-gold: rgba(205,162,101,0.25);
    --mhok-success: #2e835a;
    --mhok-danger: #c04d43;
    --mhok-overlay: rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: var(--mhok-text);
    background: var(--mhok-bg);
    background-image: 
        radial-gradient(circle at 15% 40%, rgba(203,173,104,0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(213,163,114,0.02) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    background-attachment: fixed;
    font-size: 17px;
    position: relative;
}

.mhok-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 27px;
}

/* Price Ticker */
.mhok-ticker {
    background: linear-gradient(135deg, #191621 0%, #322824 50%, #181d18 100%);
    color: #ffffff;
    padding: 21px 0;
    border-bottom: 2px solid rgba(201,176,103,0.25);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.mhok-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
    padding: 0 25px;
}

.mhok-ticker-item {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    padding: 9px 21px;
    border-radius: 11px;
    transition: all 0.35s;
}

.mhok-ticker-metal {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

.mhok-ticker-price {
    font-size: 19px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--mhok-gold), var(--mhok-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mhok-ticker-change {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mhok-ticker-change--up {
    color: var(--mhok-success);
}

.mhok-ticker-change--down {
    color: var(--mhok-danger);
}

/* Header */
.mhok-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 100%);
    border-bottom: 1px solid var(--mhok-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(28px) saturate(190%);
    box-shadow: 0 3px 23px rgba(0, 0, 0, 0.06);
}

.mhok-header-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mhok-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--mhok-primary);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.4px;
}

.mhok-logo-icon {
    width: 45px;
    height: 44px;
    background: linear-gradient(135deg, var(--mhok-gold) 0%, var(--mhok-gold-light) 50%, var(--mhok-gold-dark) 100%);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mhok-primary);
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 3px 18px var(--mhok-shadow-gold);
}

.mhok-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.mhok-nav-link {
    color: var(--mhok-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.35s;
    position: relative;
    padding: 11px 16px;
    border-radius: 13px;
}

.mhok-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--mhok-gold), transparent);
    transition: transform 0.35s;
}

.mhok-nav-link:hover {
    color: var(--mhok-gold);
}

.mhok-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.mhok-nav-link--active {
    color: var(--mhok-gold);
    background: linear-gradient(135deg, rgba(195,162,100,0.12), rgba(205,168,110,0.08));
}

.mhok-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
}

.mhok-menu-line {
    width: 25px;
    height: 2px;
    background: var(--mhok-primary);
    transition: all 0.3s ease;
}

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

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

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

.mhok-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 21px 30px;
    background: var(--mhok-bg);
    border-top: 1px solid var(--mhok-border);
}

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

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

/* Hero Section */
.mhok-hero {
    background: linear-gradient(135deg, #16111f 0%, #302620 30%, #1a1d1a 50%, #2f2e2a 70%, #141f20 100%);
    color: #ffffff;
    padding: 130px 0 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mhok-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(193,174,99,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(219,164,121,0.08) 0%, transparent 50%);
    animation: mhok-hero-pulse 6s ease-in-out infinite;
}

@keyframes mhok-hero-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.mhok-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(207,169,94,0.02) 100px,
        rgba(206,163,101,0.02) 200px
    );
    animation: mhok-hero-drift 25s linear infinite;
}

@keyframes mhok-hero-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.mhok-hero-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 26px;
    position: relative;
    z-index: 2;
    animation: mhok-fade-in-up 1s ease-out;
}

@keyframes mhok-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mhok-hero-badge {
    display: inline-block;
    padding: 14px 29px;
    background: linear-gradient(135deg, rgba(205,165,93,0.18) 0%, rgba(215,170,123,0.12) 100%);
    border: 1px solid rgba(203,168,95,0.35);
    border-radius: 49px;
    font-size: 17px;
    font-weight: 700;
    color: var(--mhok-gold);
    text-transform: uppercase;
    letter-spacing: 2.3px;
    margin-bottom: 34px;
    box-shadow: 0 4px 18px rgba(202,170,103,0.18);
}

.mhok-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 30px 0;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, var(--mhok-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mhok-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin: 0 0 47px 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

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

.mhok-btn {
    display: inline-flex;
    align-items: center;
    padding: 21px 36px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.35s ease;
    border: none;
    cursor: pointer;
}

.mhok-btn-primary {
    background: linear-gradient(135deg, var(--mhok-gold) 0%, var(--mhok-gold-light) 50%, var(--mhok-gold-dark) 100%);
    color: var(--mhok-primary);
    box-shadow: 0 5px 22px rgba(200,165,98,0.35);
    position: relative;
    overflow: hidden;
}

.mhok-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(199,175,89,0.45);
}

.mhok-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.mhok-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Main Content */
.mhok-main {
    padding: 67px 0;
}

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

.mhok-intro {
    margin-bottom: 54px;
    padding: 38px;
    background: linear-gradient(135deg, rgba(195,166,91,0.06) 0%, rgba(205,171,118,0.04) 100%);
    border-radius: 19px;
    border-left: 4px solid var(--mhok-gold);
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.mhok-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(208,171,94,0.05) 0%, transparent 70%);
    animation: mhok-float 8s ease-in-out infinite;
}

@keyframes mhok-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

.mhok-lead {
    font-size: 23px;
    line-height: 1.85;
    color: var(--mhok-text);
    margin-bottom: 31px;
    font-weight: 500;
}

.mhok-article h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--mhok-primary) 0%, var(--mhok-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 63px 0 35px 0;
    line-height: 1.35;
    padding-bottom: 22px;
    position: relative;
}

.mhok-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 85px;
    height: 4px;
    background: linear-gradient(90deg, var(--mhok-gold), var(--mhok-gold-light), transparent);
    border-radius: 1px;
}

.mhok-article p {
    margin-bottom: 29px;
    line-height: 1.95;
    color: var(--mhok-text);
}

.mhok-list,
.mhok-list-ordered {
    margin: 33px 0;
    padding-left: 34px;
}

.mhok-list li,
.mhok-list-ordered li {
    margin-bottom: 21px;
    line-height: 1.85;
    color: var(--mhok-text);
}

.mhok-image-wrapper {
    margin: 55px 0;
    border-radius: 19px;
    overflow: hidden;
    box-shadow: 0 14px 44px var(--mhok-shadow), 0 4px 20px rgba(207,164,101,0.15);
    border: 2px solid rgba(206,166,93,0.18);
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mhok-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--mhok-gold), var(--mhok-gold-light), var(--mhok-gold-dark), var(--mhok-gold));
    border-radius: 21px;
    z-index: -1;
    opacity: 0.2;
    animation: mhok-border-pulse 3s ease-in-out infinite;
}

@keyframes mhok-border-pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.35; }
}

.mhok-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s, filter 0.6s;
    opacity: 0;
    transform: scale(0.98);
    filter: blur(6px);
}

.mhok-article-image.loaded {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.mhok-image-wrapper:hover .mhok-article-image {
    transform: scale(1.03);
}

.mhok-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
    border-radius: 23px;
}

/* Pros Cons List Component */
.mhok-pros-cons {
    margin: 68px 0;
    padding: 63px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 30%, #f8f9fa 70%, #ffffff 100%);
    border-radius: 24px;
    box-shadow: 0 5px 37px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(203,171,103,0.12);
}

.mhok-pros-cons-header {
    text-align: center;
    margin-bottom: 58px;
    padding-bottom: 31px;
    position: relative;
}

.mhok-pros-cons-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--mhok-gold), var(--mhok-gold-light), var(--mhok-gold), transparent);
    border-radius: 2px;
}

.mhok-pros-cons-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--mhok-primary);
    margin-bottom: 16px;
}

.mhok-pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 38px;
    padding: 0 36px;
}

.mhok-pros-box,
.mhok-cons-box {
    background: linear-gradient(135deg, var(--mhok-bg) 0%, #fafafa 100%);
    padding: 40px 41px;
    border-radius: 18px;
    box-shadow: 0 5px 30px var(--mhok-shadow);
    border: 2px solid rgba(202,173,95,0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.mhok-pros-box::before,
.mhok-cons-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: width 0.4s;
}

.mhok-pros-box {
    border-left: 5px solid var(--mhok-success);
}

.mhok-pros-box::before {
    background: linear-gradient(180deg, var(--mhok-success), #337f4f);
}

.mhok-cons-box {
    border-left: 5px solid var(--mhok-danger);
}

.mhok-cons-box::before {
    background: linear-gradient(180deg, var(--mhok-danger), #c54845);
}

.mhok-pros-box:hover,
.mhok-cons-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--mhok-shadow-hover);
}

.mhok-pros-box:hover::before,
.mhok-cons-box:hover::before {
    width: 8px;
}

.mhok-pros-title,
.mhok-cons-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    gap: 13px;
}

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

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

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

.mhok-pros-list li,
.mhok-cons-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    line-height: 1.75;
    color: var(--mhok-text);
}

.mhok-pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mhok-success);
    font-weight: 700;
    font-size: 20px;
}

.mhok-cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--mhok-danger);
    font-weight: 700;
    font-size: 20px;
}

/* Criteria Box Component */
.mhok-criteria-box {
    margin: 62px 0;
    background: linear-gradient(135deg, var(--mhok-bg) 0%, #fafafa 100%);
    border: 3px solid var(--mhok-gold);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 11px 36px var(--mhok-shadow), 0 4px 20px rgba(201,166,98,0.15);
    position: relative;
}

.mhok-criteria-box::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--mhok-gold), var(--mhok-gold-light), var(--mhok-gold-dark), var(--mhok-gold));
    border-radius: 23px;
    z-index: -1;
    opacity: 0.3;
    animation: mhok-border-pulse 3s ease-in-out infinite;
}

.mhok-criteria-item {
    transition: all 0.3s ease;
    position: relative;
}

.mhok-criteria-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(200,176,90,0.1), transparent);
    transition: width 0.3s;
}

.mhok-criteria-item:hover::before {
    width: 100%;
}

.mhok-criteria-item:hover {
    background: linear-gradient(90deg, rgba(199,162,97,0.05) 0%, transparent 100%);
    padding-left: 38px;
}

.mhok-criteria-header {
    background: linear-gradient(135deg, var(--mhok-gold) 0%, var(--mhok-gold-light) 50%, var(--mhok-gold-dark) 100%);
    padding: 35px 38px;
    display: flex;
    align-items: center;
    gap: 17px;
}

.mhok-criteria-icon {
    width: 58px;
    height: 56px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mhok-primary);
}

.mhok-criteria-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--mhok-primary);
    margin: 0;
}

.mhok-criteria-body {
    padding: 0;
}

.mhok-criteria-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 38px;
    border-bottom: 1px solid var(--mhok-border);
    position: relative;
}

.mhok-criteria-item:last-child {
    border-bottom: none;
}

.mhok-criteria-label {
    font-size: 16px;
    color: var(--mhok-text-light);
    font-weight: 500;
}

.mhok-criteria-value {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--mhok-primary), var(--mhok-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Testimonial Slider Component */
.mhok-testimonial-section {
    margin: 79px 0;
    padding: 73px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 30%, #f8f9fa 70%, #ffffff 100%);
    border-radius: 25px;
    box-shadow: 0 6px 38px rgba(0, 0, 0, 0.06);
}

.mhok-testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.mhok-testimonial-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--mhok-primary);
    margin-bottom: 16px;
}

.mhok-testimonial-slider {
    display: flex;
    gap: 29px;
    overflow-x: auto;
    padding: 23px 36px;
    scroll-snap-type: x mandatory;
}

.mhok-testimonial-card {
    min-width: 380px;
    background: linear-gradient(135deg, var(--mhok-bg) 0%, #fafafa 100%);
    padding: 43px 36px;
    border-radius: 15px;
    box-shadow: 0 7px 27px var(--mhok-shadow);
    border: 2px solid rgba(196,167,91,0.1);
    scroll-snap-align: start;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.mhok-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    color: rgba(195,169,99,0.08);
    line-height: 1;
    z-index: 0;
}

.mhok-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--mhok-shadow-hover);
    border-color: rgba(194,162,102,0.25);
}

.mhok-testimonial-text {
    position: relative;
    z-index: 1;
}

.mhok-testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--mhok-text);
    margin-bottom: 27px;
    font-style: italic;
}

.mhok-testimonial-author {
    display: flex;
    align-items: center;
    gap: 17px;
}

.mhok-testimonial-avatar {
    width: 50px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mhok-gold), var(--mhok-gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mhok-primary);
    font-weight: 700;
    font-size: 20px;
}

.mhok-testimonial-info {
    flex: 1;
}

.mhok-testimonial-name {
    font-weight: 700;
    color: var(--mhok-primary);
    margin-bottom: 3px;
}

.mhok-testimonial-role {
    font-size: 14px;
    color: var(--mhok-text-light);
}

/* FAQ Accordion */
.mhok-faq-section {
    margin: 69px 0;
}

.mhok-faq-header {
    text-align: center;
    margin-bottom: 63px;
    padding-bottom: 33px;
    position: relative;
}

.mhok-faq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--mhok-gold), var(--mhok-gold-light), var(--mhok-gold), transparent);
    border-radius: 2px;
}

.mhok-faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--mhok-primary);
    margin-bottom: 16px;
}

.mhok-faq-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.mhok-faq-item {
    background: linear-gradient(135deg, var(--mhok-bg) 0%, #fafafa 100%);
    border: 2px solid var(--mhok-border);
    border-radius: 19px;
    overflow: hidden;
    transition: all 0.35s;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.04);
}

.mhok-faq-item.active {
    border-color: var(--mhok-gold);
    box-shadow: 0 8px 30px var(--mhok-shadow-gold);
}

.mhok-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 25px 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.mhok-faq-question-text {
    font-size: 19px;
    font-weight: 600;
    color: var(--mhok-primary);
    line-height: 1.5;
}

.mhok-faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(208,174,101,0.15), rgba(218,163,112,0.1));
    border-radius: 50%;
    color: var(--mhok-gold);
    transition: all 0.35s;
}

.mhok-faq-item.active .mhok-faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--mhok-gold), var(--mhok-gold-light));
    color: var(--mhok-primary);
}

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

.mhok-faq-item.active .mhok-faq-answer {
    max-height: 1000px;
}

.mhok-faq-answer-content {
    padding: 0 29px 30px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--mhok-text);
}

/* Footer */
.mhok-footer {
    background: linear-gradient(135deg, #11211c 0%, #2a2331 50%, #101914 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 85px 0 46px;
    margin-top: 110px;
    position: relative;
    overflow: hidden;
}

.mhok-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--mhok-gold), var(--mhok-gold-light), var(--mhok-gold), transparent);
}

.mhok-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(205,163,96,0.015) 100px,
        rgba(204,172,103,0.015) 200px
    );
    animation: mhok-hero-drift 30s linear infinite;
    pointer-events: none;
}

.mhok-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 58px;
    margin-bottom: 56px;
    padding-bottom: 43px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.mhok-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.mhok-footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.mhok-footer-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 21px;
}

.mhok-footer-links {
    list-style: none;
    padding: 0;
}

.mhok-footer-links li {
    margin-bottom: 13px;
}

.mhok-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.mhok-footer-links a:hover {
    color: var(--mhok-gold);
    padding-left: 11px;
}

.mhok-footer-bottom {
    padding-top: 35px;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* Scroll Progress Indicator */
.mhok-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--mhok-gold), var(--mhok-gold-light), var(--mhok-gold));
    z-index: 9999;
    transition: width 0.1s;
    box-shadow: 0 0 10px rgba(199,165,89,0.5);
}

.mhok-ticker-separator {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.25);
}

/* Responsive */
/* Additional Detail Enhancements */
.mhok-article h2::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--mhok-gold), var(--mhok-gold-light), var(--mhok-gold));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s;
}

.mhok-article h2:hover::before {
    opacity: 1;
}

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

.mhok-list li {
    position: relative;
    padding-left: 5px;
}

.mhok-list li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--mhok-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.mhok-list li:hover::before {
    opacity: 1;
}

.mhok-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.mhok-btn-primary:hover::before {
    left: 100%;
}

.mhok-btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.mhok-btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

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

    .mhok-nav {
        display: none;
    }

    .mhok-hero-title {
        font-size: 38px;
    }

    .mhok-hero-subtitle {
        font-size: 17px;
    }

    .mhok-article h2 {
        font-size: 30px;
    }

    .mhok-pros-cons-grid {
        grid-template-columns: 1fr;
        padding: 0 28px;
    }

    .mhok-testimonial-slider {
        padding: 21px 23px;
    }

    .mhok-testimonial-card {
        min-width: 320px;
    }

    .mhok-faq-question {
        padding: 22px 22px;
    }

    .mhok-faq-answer-content {
        padding: 0 27px 23px;
    }
    
    .mhok-article h2::before {
        display: none;
    }
}



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

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

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

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

    .mhok-companies-section .mhok-companies-table tbody tr.mhok-company-row {
        background: #fff !important;
        margin-bottom: 21px !important;
        border-radius: 14px !important;
        box-shadow: 0 5px 24px rgba(86,25,52,0.1) !important;
        padding: 17px !important;
        border: 2px solid rgba(85,26,44,0.08);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

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

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

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

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


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

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

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

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

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

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

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


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

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