/* Tiffany Satin Style - Auto-themed */
:root {
    --lohh-primary: #17151f;
    --lohh-accent: #af8bf5;
    --lohh-gold: #a387f5;
    --lohh-gold-light: #7a7ec6;
    --lohh-gold-dark: #444e91;
    --lohh-rose: #f5e9df;
    --lohh-rose-light: #faf6f2;
    --lohh-bg: #F8F9FE;
    --lohh-bg-dark: #1c1827;
    --lohh-text: #130a31;
    --lohh-text-light: #a890f5;
    --lohh-border: #bccbdf;
    --lohh-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --lohh-shadow-hover: rgba(10,26,43,0.15);
    --lohh-shadow-gold: rgba(198,170,90,0.25);
    --lohh-success: #28a94a;
    --lohh-danger: #d23345;
    --lohh-overlay: rgba(10,21,44,0.7);
}

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

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.75;
    color: var(--lohh-text);
    background: var(--lohh-bg);
    background-image: 
        radial-gradient(circle at 15% 40%, rgba(239,224,209,0.4) 0%, transparent 50%),
        radial-gradient(circle at 85% 60%, rgba(224,186,163,0.3) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #faf6f2 100%);
    background-attachment: fixed;
    font-size: 17px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(194,168,92,0.015) 3px, rgba(207,170,101,0.015) 6px),
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(239,175,156,0.01) 3px, rgba(236,176,165,0.01) 6px);
    pointer-events: none;
    z-index: 0;
    animation: lohh-pattern-drift 20s linear infinite;
}

@keyframes lohh-pattern-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(206,175,94,0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(234,172,166,0.025) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: lohh-glow-pulse 8s ease-in-out infinite;
}

@keyframes lohh-glow-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

body > * {
    position: relative;
    z-index: 1;
}

.lohh-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 31px;
}

/* Price Ticker */
.lohh-ticker {
    background: linear-gradient(135deg, #141c30 0%, #181c2f 50%, #131927 100%);
    color: #ffffff;
    padding: 17px 0;
    border-bottom: 1px solid rgba(204,170,95,0.25);
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 2px 15px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(202,166,96,0.1);
    background-image: 
        linear-gradient(135deg, #122032 0%, #151b31 50%, #0a1e28 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(199,176,89,0.03) 2px,
            rgba(200,161,97,0.03) 4px
        );
}

.lohh-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lohh-gold-light), transparent);
    animation: lohh-shimmer 4s infinite;
}

@keyframes lohh-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.lohh-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 43px;
    flex-wrap: wrap;
    padding: 0 29px;
}

.lohh-ticker-item {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
    padding: 13px 20px;
    border-radius: 7px;
    transition: all 0.35s;
    position: relative;
}

.lohh-ticker-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(197,171,90,0.12);
    border-radius: 13px;
    opacity: 0;
    transition: opacity 0.35s;
}

.lohh-ticker-item:hover::before {
    opacity: 1;
}

.lohh-ticker-item:hover {
    transform: translateY(-1px);
}

.lohh-ticker-metal {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.lohh-ticker-price {
    font-size: 19px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--lohh-gold-light), var(--lohh-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
}

.lohh-ticker-change {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
}

.lohh-ticker-change svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

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

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

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

.lohh-ticker-update {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    font-family: 'Inter', sans-serif;
}

.lohh-ticker-live {
    width: 9px;
    height: 9px;
    background: var(--lohh-success);
    border-radius: 50%;
    display: inline-block;
    animation: lohh-pulse 2.5s infinite;
}

@keyframes lohh-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Header */
.lohh-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 246, 242, 0.96) 100%);
    border-bottom: 1px solid var(--lohh-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(24px) saturate(190%);
    box-shadow: 0 1px 26px rgba(0, 0, 0, 0.06);
    position: relative;
}

.lohh-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lohh-gold-light), var(--lohh-gold), var(--lohh-gold-light), transparent);
}

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

.lohh-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--lohh-primary);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.4px;
    font-family: 'Cormorant Garamond', serif;
}

.lohh-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--lohh-gold) 0%, var(--lohh-gold-light) 50%, var(--lohh-gold-dark) 100%);
    background-size: 200% 100%;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lohh-primary);
    font-size: 22px;
    font-weight: 700;
    box-shadow: 
        0 3px 12px var(--lohh-shadow-gold),
        0 1px 4px rgba(208,167,102,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: lohh-logo-gradient 4s ease infinite;
    border: 1px solid rgba(206,162,103,0.3);
}

@keyframes lohh-logo-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.lohh-logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: lohh-rotate 4s infinite;
}

@keyframes lohh-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lohh-logo-text {
    font-weight: 600;
}

.lohh-nav {
    display: flex;
    gap: 39px;
    align-items: center;
}

.lohh-nav-link {
    color: var(--lohh-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 7px 21px;
    border-radius: 9px;
    font-family: 'Inter', sans-serif;
}

.lohh-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245,233,222,0.3), rgba(232,178,159,0.2));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.lohh-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(--lohh-gold), transparent);
    border-radius: 1px;
    transition: transform 0.4s;
}

.lohh-nav-link:hover {
    color: var(--lohh-gold-dark);
    transform: translateY(-1px);
}

.lohh-nav-link:hover::before {
    opacity: 1;
}

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

.lohh-nav-link--active {
    color: var(--lohh-gold-dark);
    background: linear-gradient(135deg, rgba(245,228,207,0.25), rgba(230,174,160,0.15));
}

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

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

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

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

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

.lohh-menu-line {
    width: 26px;
    height: 2px;
    background: var(--lohh-primary);
    transition: all 0.35s ease;
}

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

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

.lohh-mobile-link {
    padding: 13px 0;
    color: var(--lohh-text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--lohh-border);
    font-family: 'Inter', sans-serif;
}

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

/* Hero Section */
.lohh-hero {
    background: linear-gradient(135deg, #111923 0%, #121037 25%, #10212e 50%, #111b24 75%, #0e1e2f 100%);
    color: #ffffff;
    padding: 130px 0 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lohh-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(200,172,90,0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(228,185,161,0.1) 0%, transparent 50%);
    animation: lohh-pulse 5s ease-in-out infinite;
}

.lohh-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 120px,
        rgba(198,168,91,0.025) 120px,
        rgba(195,169,99,0.025) 240px
    );
    animation: lohh-drift 25s linear infinite;
}

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

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

.lohh-hero-badge {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, rgba(196,163,92,0.18) 0%, rgba(224,176,163,0.12) 100%);
    border: 1.5px solid rgba(194,174,93,0.35);
    border-radius: 47px;
    font-size: 17px;
    font-weight: 600;
    color: var(--lohh-gold-light);
    text-transform: uppercase;
    letter-spacing: 2.4px;
    margin-bottom: 34px;
    box-shadow: 
        0 4px 18px rgba(207,168,101,0.18), 
        0 0 0 1px rgba(208,170,94,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(171,135,77,0.1);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(13px);
}

.lohh-hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: lohh-shine 4s infinite;
}

@keyframes lohh-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.lohh-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 26px 0;
    color: #ffffff;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 3px 15px rgba(201,170,89,0.25),
        0 0 30px rgba(202,164,97,0.15);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--lohh-gold-light) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: lohh-title-glow 4s ease-in-out infinite, lohh-title-gradient 6s ease infinite;
}

@keyframes lohh-title-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes lohh-title-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.08); }
}

.lohh-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin: 0 0 43px 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
}

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

.lohh-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 39px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-radius: 7px;
    transition: all 0.35s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.lohh-btn-primary {
    background: linear-gradient(135deg, var(--lohh-gold) 0%, var(--lohh-gold-light) 50%, var(--lohh-gold-dark) 100%);
    color: var(--lohh-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 5px 22px rgba(200,175,98,0.35), 
        0 2px 10px rgba(197,161,91,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(160,134,74,0.2);
    background-size: 200% 100%;
    animation: lohh-btn-gradient 3s ease infinite;
}

@keyframes lohh-btn-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

.lohh-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(193,176,93,0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.lohh-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

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

.lohh-btn-secondary:hover::before {
    left: 100%;
}

.lohh-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Rating Section */
.lohh-rating-section {
    background: linear-gradient(135deg, #faf6f2 0%, #ffffff 50%, #faf6f2 100%);
    padding: 47px 0;
    border-top: 2px solid rgba(204,172,89,0.18);
    border-bottom: 1px solid rgba(201,173,97,0.18);
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(135deg, #faf6f2 0%, #ffffff 50%, #faf6f2 100%),
        radial-gradient(circle at 20% 50%, rgba(245,226,208,0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(230,180,161,0.15) 0%, transparent 50%);
}

.lohh-rating-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 55px, rgba(200,162,91,0.018) 55px, rgba(197,172,99,0.018) 56px);
    pointer-events: none;
}

.lohh-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.85);
    padding: 22px 47px;
    border-radius: 52px;
    box-shadow: 0 5px 31px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(193,163,101,0.18);
    position: relative;
    z-index: 1;
}

.lohh-rating-label {
    font-size: 15px;
    color: var(--lohh-text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Inter', sans-serif;
}

.lohh-stars {
    display: flex;
    gap: 6px;
}

.lohh-star {
    font-size: 24px;
    color: #d7e6d3;
}

.lohh-star--filled {
    color: var(--lohh-gold);
    text-shadow: 0 0 8px rgba(194,165,94,0.4);
    animation: lohh-star-twinkle 2.5s ease-in-out infinite;
}

@keyframes lohh-star-twinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.lohh-rating-number {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--lohh-primary), var(--lohh-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding: 0 9px;
    font-family: 'Inter', sans-serif;
}

.lohh-rating-number::before,
.lohh-rating-number::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--lohh-gold), transparent);
}

.lohh-rating-number::before {
    left: -32px;
}

.lohh-rating-number::after {
    right: -32px;
}

.lohh-rating-reviews {
    font-size: 15px;
    color: var(--lohh-text-light);
    font-family: 'Inter', sans-serif;
}

/* Section Dividers */
.lohh-section-divider {
    height: 110px;
    position: relative;
    margin: 85px 0;
    overflow: hidden;
}

.lohh-section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1.5px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(207,174,102,0.18) 20%, 
        var(--lohh-gold) 50%, 
        rgba(208,168,95,0.18) 80%, 
        transparent
    );
    transform: translateY(-50%);
}

.lohh-section-divider::after {
    content: '●';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--lohh-gold) 0%, var(--lohh-gold-light) 50%, var(--lohh-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--lohh-primary);
    box-shadow: 
        0 0 28px rgba(205,170,103,0.45),
        0 0 15px rgba(206,163,96,0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.25),
        inset 0 -2px 4px rgba(169,145,79,0.2);
    border: 2.5px solid rgba(255, 255, 255, 0.25);
    animation: lohh-divider-pulse 3s ease-in-out infinite;
}

@keyframes lohh-divider-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 28px rgba(202,170,98,0.45),
            0 0 15px rgba(199,164,90,0.3),
            inset 0 2px 4px rgba(255, 255, 255, 0.25);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 
            0 0 35px rgba(197,175,92,0.55),
            0 0 20px rgba(198,161,100,0.4),
            inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
}

/* Main Content */
.lohh-main {
    padding: 65px 0;
    position: relative;
}

.lohh-article {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.lohh-article::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent, 
        var(--lohh-gold) 10%, 
        var(--lohh-gold-light) 50%, 
        var(--lohh-gold) 90%, 
        transparent
    );
    border-radius: 1.6px;
    opacity: 0.25;
}

@media (max-width: 768px) {
    .lohh-article::before {
        display: none;
    }
}

.lohh-intro {
    margin-bottom: 53px;
    padding: 33px;
    background: linear-gradient(135deg, rgba(239,223,219,0.4) 0%, rgba(224,177,157,0.25) 100%);
    border-radius: 18px;
    border-left: 5px solid var(--lohh-gold);
    box-shadow: 
        0 3px 18px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(207,161,95,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset -1px 0 0 rgba(205,173,96,0.2);
    position: relative;
    overflow: hidden;
}

.lohh-intro::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(206,166,104,0.1) 0%, transparent 70%);
    animation: lohh-float-glow 6s ease-in-out infinite;
}

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

.lohh-intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(203,176,97,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.lohh-lead {
    font-size: 20px;
    line-height: 1.85;
    color: var(--lohh-text);
    margin-bottom: 29px;
    font-weight: 500;
    position: relative;
    padding-left: 23px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    letter-spacing: 0.2px;
}

.lohh-lead::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -12px;
    font-size: 65px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--lohh-gold);
    opacity: 0.25;
    line-height: 1;
}

.lohh-article h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--lohh-primary) 0%, var(--lohh-gold-dark) 50%, var(--lohh-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: lohh-gradient-shift 5s ease infinite;
    margin: 68px 0 31px 0;
    line-height: 1.25;
    position: relative;
    padding-bottom: 20px;
    text-shadow: 0 3px 4px rgba(201,171,98,0.1);
}

@keyframes lohh-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.lohh-article h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--lohh-primary);
    margin: 41px 0 20px 0;
    position: relative;
    padding-left: 21px;
}

.lohh-article h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--lohh-gold), var(--lohh-gold-light));
    border-radius: 3px;
    box-shadow: 0 1px 7px rgba(202,173,90,0.3);
}

.lohh-article p {
    margin-bottom: 25px;
    line-height: 1.95;
    color: var(--lohh-text);
    position: relative;
    padding-left: 22px;
    text-align: justify;
    hyphens: auto;
    word-spacing: 0.05em;
}

.lohh-article p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 7px;
    height: 7px;
    background: radial-gradient(circle, var(--lohh-gold) 0%, var(--lohh-gold-dark) 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(199,167,99,0.4),
        0 0 4px rgba(200,169,91,0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    opacity: 0.6;
    animation: lohh-dot-pulse 3s ease-in-out infinite;
}

@keyframes lohh-dot-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.lohh-article p:first-of-type::before {
    display: none;
}

.lohh-list,
.lohh-list-ordered {
    margin: 30px 0;
    padding-left: 37px;
    position: relative;
}

.lohh-list::before,
.lohh-list-ordered::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2.5px;
    background: linear-gradient(180deg, var(--lohh-gold), var(--lohh-gold-light), var(--lohh-gold-dark));
    border-radius: 1.6px;
}

.lohh-list li,
.lohh-list-ordered li {
    margin-bottom: 20px;
    line-height: 1.85;
    color: var(--lohh-text);
    padding-left: 11px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lohh-list li::before,
.lohh-list-ordered li::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 12px;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, var(--lohh-gold) 0%, var(--lohh-gold-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(198,172,92,0.4);
    opacity: 0.7;
    transition: all 0.35s ease;
}

.lohh-list li:hover::before,
.lohh-list-ordered li:hover::before {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 10px rgba(195,174,101,0.6);
}

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

.lohh-list li:hover,
.lohh-list-ordered li:hover {
    color: var(--lohh-primary);
    transform: translateX(6px);
}

.lohh-list-ordered {
    list-style: decimal;
}

.lohh-image-wrapper {
    margin: 52px 0;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 12px 45px var(--lohh-shadow),
        0 6px 28px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(193,169,102,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    border: 2.5px solid rgba(207,172,103,0.18);
    background: linear-gradient(135deg, rgba(245,233,214,0.2) 0%, rgba(236,179,167,0.15) 100%);
    padding: 5px;
}

.lohh-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 22px;
    background: linear-gradient(180deg, transparent 0%, rgba(18,27,42,0.85) 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    font-family: 'Inter', sans-serif;
    z-index: 2;
}

.lohh-image-wrapper:hover .lohh-image-caption {
    opacity: 1;
}

.lohh-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(203,163,89,0.05) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(235,176,161,0.05) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lohh-image-wrapper:hover::after {
    opacity: 1;
}

.lohh-image-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--lohh-gold), var(--lohh-gold-light), var(--lohh-gold-dark), var(--lohh-gold));
    background-size: 400% 400%;
    border-radius: 21px;
    z-index: -1;
    opacity: 0.25;
    animation: lohh-border-glow 3.5s ease-in-out infinite, lohh-border-gradient 4s ease infinite;
}

@keyframes lohh-border-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes lohh-border-glow {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.5; }
}

.lohh-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(244,234,208,0.3) 0%, rgba(233,179,162,0.2) 100%);
    position: relative;
    z-index: 0;
}

.lohh-article-image[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    background: linear-gradient(135deg, rgba(242,229,209,0.3) 0%, rgba(231,175,163,0.2) 100%);
    background-size: 200% 100%;
    min-height: 400px;
    animation: lohh-skeleton-load 1.5s ease-in-out infinite;
}

.lohh-article-image.lohh-loaded,
.lohh-article-image[loading="lazy"]:not([data-src]) {
    opacity: 1;
    animation: none;
}

.lohh-article-image[loading="lazy"].lohh-loaded {
    animation: lohh-image-fade-in 0.8s ease forwards;
}

@keyframes lohh-image-fade-in {
    0% { 
        opacity: 0;
        transform: scale(0.98);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lohh-fade-in {
    to { opacity: 1; }
}

.lohh-image-wrapper:hover .lohh-article-image {
    transform: scale(1.04);
    filter: brightness(1.05) contrast(1.02);
}

/* Trust Badges Component */
.lohh-trust-badges {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 53px 0;
    padding: 37px;
    background: linear-gradient(135deg, rgba(240,224,210,0.3) 0%, rgba(229,186,164,0.2) 100%);
    border-radius: 15px;
    border: 1.6px solid rgba(195,161,93,0.2);
}

.lohh-trust-badge {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 246, 242, 0.9) 100%);
    border: 1.5px solid rgba(194,166,103,0.25);
    border-radius: 15px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.05),
        0 2px 8px rgba(208,161,104,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.lohh-trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(206,173,89,0.1), transparent);
    transition: left 0.5s ease;
}

.lohh-trust-badge:hover::before {
    left: 100%;
}

.lohh-trust-badge:hover {
    border-color: var(--lohh-gold);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(203,166,98,0.25),
        0 4px 15px rgba(204,176,90,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 246, 242, 0.95) 100%);
}

.lohh-badge-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--lohh-gold) 0%, var(--lohh-gold-light) 50%, var(--lohh-gold-dark) 100%);
    background-size: 200% 100%;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lohh-primary);
    font-weight: 700;
    font-size: 18px;
    box-shadow: 
        0 4px 12px rgba(200,167,92,0.3),
        0 2px 6px rgba(197,176,101,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(160,142,84,0.2);
    position: relative;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: lohh-badge-gradient 3s ease infinite;
}

@keyframes lohh-badge-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.lohh-badge-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--lohh-gold-light), var(--lohh-gold-dark));
    border-radius: 9px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lohh-badge-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.lohh-trust-badge:hover .lohh-badge-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 6px 18px rgba(193,167,103,0.4),
        0 3px 10px rgba(194,169,95,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(173,142,78,0.25);
}

.lohh-trust-badge:hover .lohh-badge-icon::after {
    opacity: 0.3;
}

.lohh-trust-badge:hover .lohh-badge-icon::before {
    width: 60px;
    height: 60px;
}

.lohh-badge-content {
    display: flex;
    flex-direction: column;
}

.lohh-badge-rating {
    font-size: 22px;
    font-weight: 700;
    color: var(--lohh-primary);
    font-family: 'Inter', sans-serif;
}

.lohh-badge-label {
    font-size: 12px;
    color: var(--lohh-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

/* Social Share Component */
.lohh-social-share {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 40px 0;
    padding: 28px;
    background: linear-gradient(135deg, rgba(245,233,207,0.25) 0%, rgba(237,179,160,0.15) 100%);
    border-radius: 16px;
    border: 1.4px solid rgba(203,169,90,0.18);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.lohh-social-share::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(202,174,100,0.03) 20px,
        rgba(199,168,92,0.03) 21px
    );
    pointer-events: none;
    z-index: 0;
}

.lohh-social-share > * {
    position: relative;
    z-index: 1;
}

.lohh-social-share__label {
    font-size: 15px;
    font-weight: 600;
    color: var(--lohh-text);
    font-family: 'Inter', sans-serif;
}

.lohh-social-share__list {
    display: flex;
    gap: 7px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lohh-social-share__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-size: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lohh-social-share__link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.lohh-social-share__link:hover::before {
    width: 100%;
    height: 100%;
}

.lohh-social-share__link:hover {
    transform: translateY(-3px) scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(255, 255, 255, 0.2);
}

.lohh-social-share__link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: transform 0.35s ease;
}

.lohh-social-share__link:hover svg {
    transform: scale(1.15) rotate(5deg);
}

/* Exit Popup Component */
.lohh-exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.lohh-exit-popup.active {
    opacity: 1;
    visibility: visible;
}

.lohh-exit-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,19,48,0.85);
    backdrop-filter: blur(6px);
}

.lohh-exit-popup__modal {
    position: relative;
    max-width: 520px;
    width: 90%;
    background: linear-gradient(135deg, #ffffff 0%, #faf6f2 100%);
    border: 2.5px solid var(--lohh-gold);
    border-radius: 19px;
    padding: 58px 44px;
    text-align: center;
    transform: scale(0.92);
    transition: transform 0.35s ease;
    box-shadow: 0 18px 55px rgba(193,170,95,0.3);
}

.lohh-exit-popup.active .lohh-exit-popup__modal {
    transform: scale(1);
}

.lohh-exit-popup__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 2px solid var(--lohh-border);
    border-radius: 50%;
    color: var(--lohh-text-light);
    font-size: 26px;
    cursor: pointer;
    transition: all 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lohh-exit-popup__close:hover {
    border-color: var(--lohh-gold);
    color: var(--lohh-gold);
}

.lohh-exit-popup__badge {
    display: inline-block;
    padding: 8px 25px;
    background: linear-gradient(135deg, var(--lohh-gold) 0%, var(--lohh-gold-light) 50%, var(--lohh-gold-dark) 100%);
    background-size: 200% 100%;
    color: var(--lohh-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.6px;
    border-radius: 52px;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    box-shadow: 
        0 4px 15px rgba(194,164,104,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(173,145,71,0.2);
    animation: lohh-badge-gradient 3s ease infinite;
    border: 1px solid rgba(205,161,97,0.3);
}

.lohh-exit-popup__headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: var(--lohh-primary);
    margin: 0 0 20px 0;
}

.lohh-exit-popup__offer {
    font-size: 17px;
    color: var(--lohh-text);
    margin: 0 0 31px 0;
    font-family: 'Inter', sans-serif;
}

.lohh-exit-popup__cta {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--lohh-gold) 0%, var(--lohh-gold-light) 50%, var(--lohh-gold-dark) 100%);
    color: var(--lohh-primary);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    border-radius: 52px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 5px 22px rgba(206,171,90,0.35),
        0 2px 10px rgba(203,164,98,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(166,146,81,0.2);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.lohh-exit-popup__cta::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.6s ease;
}

.lohh-exit-popup__cta:hover::before {
    left: 100%;
}

.lohh-exit-popup__cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 10px 32px rgba(199,171,100,0.45),
        0 4px 15px rgba(200,173,93,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(163,146,76,0.25);
}

.lohh-exit-popup__disclaimer {
    margin-top: 24px;
    font-size: 16px;
    color: var(--lohh-text-light);
    font-family: 'Inter', sans-serif;
}

/* FAQ Section */
.lohh-faq-section {
    margin: 67px 0;
}

.lohh-faq-header {
    text-align: center;
    margin-bottom: 62px;
    position: relative;
    padding-bottom: 35px;
}

.lohh-faq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--lohh-gold), var(--lohh-gold-light), var(--lohh-gold), transparent);
    border-radius: 1.6px;
    box-shadow: 0 2px 11px rgba(195,162,103,0.4);
    animation: lohh-line-glow 2s ease-in-out infinite;
}

.lohh-faq-header::before {
    content: '❓';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 35px;
    opacity: 0.08;
    filter: blur(3px);
    animation: lohh-icon-float 4s ease-in-out infinite;
}

@keyframes lohh-icon-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.lohh-faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--lohh-primary);
    margin-bottom: 15px;
}

.lohh-faq-subtitle {
    font-size: 18px;
    color: var(--lohh-text-light);
    font-family: 'Inter', sans-serif;
}

.lohh-faq-list {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.lohh-faq-item {
    background: linear-gradient(135deg, var(--lohh-bg) 0%, #faf6f2 100%);
    border: 1.5px solid var(--lohh-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 3px 14px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(193,173,104,0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    background-image: 
        linear-gradient(135deg, var(--lohh-bg) 0%, #faf6f2 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(207,169,89,0.01) 10px,
            rgba(208,162,97,0.01) 11px
        );
}

.lohh-faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--lohh-gold), var(--lohh-gold-dark));
    transform: scaleY(0);
    transition: transform 0.4s;
}

.lohh-faq-item:hover {
    border-color: rgba(205,172,90,0.4);
    box-shadow: 
        0 6px 22px var(--lohh-shadow),
        0 0 0 1px rgba(206,174,98,0.08);
    transform: translateX(5px);
}

.lohh-faq-item:hover::before,
.lohh-faq-item.active::before {
    transform: scaleY(1);
}

.lohh-faq-item.active {
    border-color: var(--lohh-gold);
    box-shadow: 
        0 10px 32px var(--lohh-shadow),
        0 3px 18px var(--lohh-shadow-gold),
        0 0 0 2px rgba(203,167,91,0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 246, 242, 0.98) 100%);
    transform: translateX(3px);
}

.lohh-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 23px;
    padding: 26px 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.35s ease;
}

.lohh-faq-question:hover {
    background: rgba(242,233,211,0.3);
}

.lohh-faq-question-text {
    font-size: 19px;
    font-weight: 600;
    color: var(--lohh-primary);
    line-height: 1.4;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    padding-left: 21px;
}

.lohh-faq-question-text::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: var(--lohh-gold);
    font-weight: 700;
    opacity: 0.6;
}

.lohh-faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200,168,101,0.12), rgba(228,181,157,0.08));
    border-radius: 50%;
    color: var(--lohh-gold);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(198,163,102,0.18);
    border: 1.5px solid rgba(195,165,95,0.18);
}

.lohh-faq-item.active .lohh-faq-icon {
    transform: rotate(180deg) scale(1.1);
    background: linear-gradient(135deg, var(--lohh-gold), var(--lohh-gold-light));
    color: var(--lohh-primary);
    box-shadow: 
        0 4px 14px var(--lohh-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

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

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

.lohh-faq-answer-content {
    padding: 0 30px 27px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--lohh-text);
    position: relative;
    padding-left: 51px;
}

.lohh-faq-answer-content::before {
    content: 'A:';
    position: absolute;
    left: 32px;
    top: 0;
    font-size: 16px;
    color: var(--lohh-gold);
    font-weight: 700;
    opacity: 0.6;
    font-family: 'Cormorant Garamond', serif;
}

.lohh-faq-answer-content p {
    margin-bottom: 17px;
    position: relative;
}

/* Footer */
.lohh-footer {
    background: linear-gradient(135deg, #0d1225 0%, #102025 50%, #152330 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 85px 0 43px;
    margin-top: 110px;
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(135deg, #0c1f2b 0%, #21152a 50%, #0b1222 100%),
        radial-gradient(circle at 30% 40%, rgba(194,170,89,0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(238,175,160,0.06) 0%, transparent 50%);
}

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

.lohh-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 110px, rgba(208,165,90,0.018) 110px, rgba(205,175,98,0.018) 111px);
    animation: lohh-drift 35s linear infinite;
}

.lohh-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 54px;
    margin-bottom: 53px;
    position: relative;
    z-index: 1;
    padding-bottom: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lohh-footer-grid::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lohh-gold), transparent);
}

.lohh-footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 21px;
}

.lohh-footer-tagline {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Inter', sans-serif;
}

.lohh-footer-title {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 19px;
    font-family: 'Cormorant Garamond', serif;
}

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

.lohh-footer-links li {
    margin-bottom: 12px;
}

.lohh-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.35s ease;
    position: relative;
    padding-left: 24px;
    display: inline-block;
    font-family: 'Inter', sans-serif;
}

.lohh-footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-12px);
    transition: all 0.35s;
    color: var(--lohh-gold);
}

.lohh-footer-links a:hover {
    color: var(--lohh-gold-light);
    transform: translateX(6px);
}

.lohh-footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.lohh-footer-bottom {
    padding-top: 31px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Inter', sans-serif;
}

/* Scroll Progress Indicator */
.lohh-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--lohh-gold), var(--lohh-gold-light), var(--lohh-gold));
    background-size: 200% 100%;
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 
        0 0 10px rgba(199,161,101,0.5),
        0 0 20px rgba(200,171,94,0.3);
    animation: lohh-progress-shine 2s ease-in-out infinite;
}

@keyframes lohh-progress-shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Additional Visual Enhancements */
.lohh-article::after {
    content: '';
    position: absolute;
    right: -45px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        transparent, 
        var(--lohh-gold) 10%, 
        var(--lohh-gold-light) 50%, 
        var(--lohh-gold) 90%, 
        transparent
    );
    border-radius: 1.4px;
    opacity: 0.25;
    box-shadow: 0 0 6px rgba(197,173,102,0.2);
    animation: lohh-sidebar-glow 3s ease-in-out infinite;
}

@keyframes lohh-sidebar-glow {
    0%, 100% { 
        opacity: 0.25;
        box-shadow: 0 0 8px rgba(198,166,95,0.2);
    }
    50% { 
        opacity: 0.35;
        box-shadow: 0 0 12px rgba(195,176,103,0.3);
    }
}

/* Decorative Elements */
.lohh-article::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 100px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(196,162,96,0.08) 0%, transparent 70%);
    border-radius: 50%;
    border: 1px solid rgba(193,171,104,0.1);
    animation: lohh-decorative-float 8s ease-in-out infinite;
    z-index: 0;
}

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

@media (max-width: 768px) {
    .lohh-article::after,
    .lohh-article::before {
        display: none;
    }
}

/* Loading States */
.lohh-article-image[loading="lazy"]:not(.lohh-loaded) {
    background: linear-gradient(135deg, 
        rgba(237,232,215,0.4) 0%, 
        rgba(238,178,152,0.3) 50%,
        rgba(245,235,216,0.4) 100%);
    background-size: 200% 100%;
    animation: lohh-skeleton-load 1.5s ease-in-out infinite;
}

@keyframes lohh-skeleton-load {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced Hover Effects */
.lohh-nav-link,
.lohh-mobile-link {
    position: relative;
}

.lohh-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lohh-gold), var(--lohh-gold-light));
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Enhanced Button Effects */
.lohh-btn-primary,
.lohh-btn-secondary {
    position: relative;
    overflow: hidden;
}

.lohh-btn-primary::after,
.lohh-btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.lohh-btn-primary:hover::after,
.lohh-btn-secondary:hover::after {
    width: 300px;
    height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
    .lohh-ticker-track {
        gap: 25px;
        font-size: 15px;
    }

    .lohh-ticker-item {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .lohh-ticker-separator {
        display: none;
    }

    .lohh-menu-toggle {
        display: flex;
    }

    .lohh-nav {
        display: none;
    }

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

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

    .lohh-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .lohh-btn {
        width: 100%;
        justify-content: center;
    }

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

    .lohh-trust-badges {
        flex-direction: column;
    }

    .lohh-trust-badge {
        width: 100%;
        justify-content: center;
    }

    .lohh-faq-question {
        padding: 21px;
    }

    .lohh-faq-answer-content {
        padding: 0 20px 23px;
    }

    .lohh-exit-popup__modal {
        padding: 45px 31px;
    }

    .lohh-exit-popup__headline {
        font-size: 24px;
    }

    .lohh-hero-subtitle::before,
    .lohh-hero-subtitle::after {
        display: none;
    }

    .lohh-faq-question-text {
        padding-left: 0;
    }

    .lohh-faq-question-text::before {
        display: none;
    }

    .lohh-faq-answer-content {
        padding-left: 19px;
    }

    .lohh-faq-answer-content::before {
        left: 0;
    }

    .lohh-article h3::before {
        display: none;
    }

    .lohh-article h3 {
        padding-left: 0;
    }
}

/* Print Styles */
@media print {
    .lohh-ticker,
    .lohh-header,
    .lohh-exit-popup,
    .lohh-social-share,
    .lohh-scroll-progress {
        display: none !important;
    }

    .lohh-article {
        max-width: 100%;
    }

    .lohh-image-wrapper {
        page-break-inside: avoid;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
.lohh-nav-link:focus,
.lohh-btn:focus,
.lohh-faq-question:focus,
.lohh-social-share__link:focus,
.lohh-exit-popup__close:focus {
    outline: 4px solid var(--lohh-gold);
    outline-offset: 1px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --lohh-border: #c1d2ec;
        --lohh-text: #1f1026;
        --lohh-bg: #F8F9FE;
    }
}

/* Additional Detail Enhancements */
.lohh-header-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(206,172,99,0.02) 50%, 
        transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.lohh-header-container > * {
    position: relative;
    z-index: 1;
}

.lohh-hero-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(203,174,92,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: lohh-hero-orb 10s ease-in-out infinite;
    z-index: 0;
}

.lohh-hero-content::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(235,178,163,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: lohh-hero-orb 12s ease-in-out infinite reverse;
    z-index: 0;
}

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

.lohh-hero-content > * {
    position: relative;
    z-index: 2;
}

/* Enhanced List Styling */
.lohh-list li strong,
.lohh-list-ordered li strong {
    color: var(--lohh-primary);
    font-weight: 700;
    position: relative;
}

.lohh-list li strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--lohh-gold), transparent);
    opacity: 0.5;
}

/* Enhanced Paragraph Styling */
.lohh-article p:first-of-type {
    font-size: 18px;
    font-weight: 500;
    color: var(--lohh-text);
    line-height: 1.9;
}

/* Enhanced Link Styling */
.lohh-article a {
    color: var(--lohh-gold-dark);
    text-decoration: none;
    border-bottom: 1.5px solid rgba(201,169,93,0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.lohh-article a:hover {
    color: var(--lohh-gold);
    border-bottom-color: var(--lohh-gold);
    padding-bottom: 3px;
}

/* Performance Optimizations */
.lohh-image-wrapper,
.lohh-trust-badge,
.lohh-faq-item {
    will-change: transform;
}

.lohh-article-image {
    will-change: opacity, transform;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

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

.lohh-companies-table-wrapper {
    overflow-x: auto;
    margin: 29px 0;
    border-radius: 14px;
    box-shadow: 0 9px 30px rgba(0, 0, 0, 0.08);
}

.lohh-companies-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

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

.lohh-companies-table th {
    padding: 21px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #fff;
    border-bottom: 1px solid var(--lohh-gold);
}

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

.lohh-company-row {
    transition: all 0.3s ease;
}

.lohh-company-row:hover {
    background: linear-gradient(135deg, rgba(242,231,212,0.3) 0%, rgba(231,185,165,0.15) 100%);
}

.lohh-rank-badge {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--lohh-gold) 0%, var(--lohh-gold-dark) 100%);
    color: var(--lohh-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(197,168,95,0.3);
}

.lohh-company-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lohh-company-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--lohh-primary);
}

.lohh-company-badge {
    display: inline-block;
    padding: 4px 13px;
    background: linear-gradient(135deg, rgba(198,169,103,0.15) 0%, rgba(226,174,159,0.1) 100%);
    color: var(--lohh-gold-dark);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-radius: 23px;
    border: 1px solid rgba(196,165,104,0.3);
}

.lohh-rating-box {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
}

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

.lohh-star {
    font-size: 16px;
}

.lohh-star-full {
    color: var(--lohh-gold);
    text-shadow: 0 0 6px rgba(193,174,97,0.4);
}

.lohh-star-half {
    color: var(--lohh-gold);
    opacity: 0.6;
}

.lohh-star-empty {
    color: #d4d6d4;
}

.lohh-rating-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--lohh-text);
}

.lohh-bbb-badge {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #2c9f49 0%, #188b33 100%);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(33,166,61,0.3);
}

.lohh-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.lohh-features-list li {
    padding: 4px 0;
    padding-left: 15px;
    position: relative;
    color: var(--lohh-text);
}

.lohh-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lohh-gold);
    font-weight: 700;
}

.lohh-btn-review {
    display: inline-block;
    padding: 15px 23px;
    background: linear-gradient(135deg, var(--lohh-gold) 0%, var(--lohh-gold-dark) 100%);
    color: var(--lohh-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 9px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(207,170,98,0.3);
    white-space: nowrap;
}

.lohh-btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(208,164,90,0.4);
}

/* Review Page Styles */
.lohh-review-page {
    max-width: 900px;
    margin: 0 auto;
}

.lohh-review-header {
    text-align: center;
    margin-bottom: 38px;
}

.lohh-review-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: var(--lohh-primary);
    margin-bottom: 20px;
}

.lohh-review-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 23px;
    flex-wrap: wrap;
}

.lohh-review-rating-large .lohh-stars {
    font-size: 24px;
}

.lohh-review-badge {
    padding: 5px 19px;
    background: linear-gradient(135deg, #2ba74a 0%, #177e3d 100%);
    color: #fff;
    font-weight: 600;
    border-radius: 19px;
}

.lohh-quick-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 21px;
    margin: 40px 0;
    padding: 33px;
    background: linear-gradient(135deg, rgba(245,224,217,0.3) 0%, rgba(237,186,154,0.15) 100%);
    border-radius: 18px;
    border: 1px solid rgba(203,161,100,0.2);
}

.lohh-fact-item {
    text-align: center;
}

.lohh-fact-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--lohh-text-light);
    margin-bottom: 5px;
}

.lohh-fact-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--lohh-primary);
}

.lohh-review-content {
    margin-top: 40px;
}

.lohh-review-section {
    margin-bottom: 43px;
}

.lohh-review-intro .lohh-lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--lohh-text);
}

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

.lohh-pros, .lohh-cons {
    padding: 23px;
    border-radius: 10px;
}

.lohh-pros {
    background: linear-gradient(135deg, rgba(43,168,64,0.1) 0%, rgba(40,162,73,0.05) 100%);
    border: 1px solid rgba(41,164,65,0.2);
}

.lohh-cons {
    background: linear-gradient(135deg, rgba(218,59,74,0.1) 0%, rgba(219,45,67,0.05) 100%);
    border: 1px solid rgba(216,55,75,0.2);
}

.lohh-pros h3, .lohh-cons h3 {
    margin-bottom: 19px;
    font-size: 20px;
}

.lohh-pros h3 { color: #299e40; }
.lohh-cons h3 { color: #d22e3c; }

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

.lohh-pros li, .lohh-cons li {
    padding: 5px 0;
    padding-left: 27px;
    position: relative;
}

.lohh-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28af4b;
    font-weight: 700;
}

.lohh-cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #da3546;
    font-weight: 700;
}

.lohh-fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 19px 0;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

.lohh-fee-table th,
.lohh-fee-table td {
    padding: 17px 22px;
    text-align: left;
    border-bottom: 1px solid var(--lohh-border);
}

.lohh-fee-table th {
    background: var(--lohh-primary);
    color: #fff;
    font-weight: 600;
}

.lohh-verdict {
    padding: 33px;
    background: linear-gradient(135deg, rgba(195,166,104,0.15) 0%, rgba(227,187,160,0.1) 100%);
    border-radius: 15px;
    border-left: 3px solid var(--lohh-gold);
}

.lohh-verdict h2 {
    color: var(--lohh-primary);
    margin-bottom: 17px;
}

.lohh-cta-box {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--lohh-primary) 0%, #23162a 100%);
    color: #fff;
    border-radius: 19px;
    margin: 42px 0;
}

.lohh-cta-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.lohh-cta-box p {
    margin-bottom: 19px;
    opacity: 0.9;
}

.lohh-cta-box .lohh-btn-primary {
    background: linear-gradient(135deg, var(--lohh-gold) 0%, var(--lohh-gold-dark) 100%);
    color: var(--lohh-primary);
    padding: 14px 33px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 11px;
    display: inline-block;
    font-weight: 700;
    transition: all 0.3s ease;
}

.lohh-cta-box .lohh-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193,162,89,0.4);
}

.lohh-other-companies {
    margin-top: 59px;
    padding-top: 38px;
    border-top: 2px solid var(--lohh-border);
}

.lohh-other-companies h3 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 33px;
    color: var(--lohh-primary);
}

.lohh-other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 21px;
}

.lohh-other-card {
    padding: 27px;
    background: #fff;
    border-radius: 11px;
    border: 1px solid var(--lohh-border);
    transition: all 0.3s ease;
}

.lohh-other-card:hover {
    border-color: var(--lohh-gold);
    box-shadow: 0 8px 24px rgba(194,171,98,0.15);
    transform: translateY(-4px);
}

.lohh-other-card h4 {
    font-size: 18px;
    color: var(--lohh-primary);
    margin-bottom: 5px;
}

.lohh-other-card p {
    font-size: 17px;
    color: var(--lohh-text-light);
    margin-bottom: 11px;
}

.lohh-other-card a {
    color: var(--lohh-gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.lohh-other-card a:hover {
    color: var(--lohh-gold);
}

/* Responsive Tables */
@media (max-width: 768px) {
    .lohh-companies-table-wrapper {
        margin: 20px -19px;
        border-radius: 0;
    }

    .lohh-companies-table th,
    .lohh-companies-table td {
        padding: 14px 7px;
        font-size: 16px;
    }

    .lohh-th-features,
    .lohh-td-features {
        display: none;
    }

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

    .lohh-review-title {
        font-size: 28px;
    }
}


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

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

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

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

    .lohh-companies-section .lohh-companies-table tbody tr.lohh-company-row {
        background: #fff !important;
        margin-bottom: 21px !important;
        border-radius: 16px !important;
        box-shadow: 0 5px 26px rgba(98,34,40,0.1) !important;
        padding: 17px !important;
        border: 2px solid rgba(99,28,49,0.08);
    }

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

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

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

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

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


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

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

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

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

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

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

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


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

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