/* Bvlgari Apex Style - Auto-themed */
:root {
    --cmle-primary: #142612;
    --cmle-accent: #7ace0e;
    --cmle-gold: #85cb1d;
    --cmle-gold-light: #1dbad9;
    --cmle-gold-dark: #0a87a3;
    --cmle-bg: #FFFFFF;
    --cmle-bg-dark: #33211b;
    --cmle-bg-gradient: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 50%, #faf8f5 100%);
    --cmle-text: #1a2818;
    --cmle-text-light: #56666f;
    --cmle-border: #c3eef1;
    --cmle-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --cmle-shadow-hover: rgba(26, 10, 10, 0.15);
    --cmle-shadow-gold: rgba(199,173,91,0.25);
    --cmle-success: #2f8161;
    --cmle-danger: #c3414d;
    --cmle-overlay: rgba(26, 10, 10, 0.5);
}

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

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    line-height: 1.8;
    color: var(--cmle-text);
    background: var(--cmle-bg);
    background-image: 
        radial-gradient(circle at 15% 40%, rgba(212,13,53,0.02) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(196,172,97,0.03) 0%, transparent 50%),
        linear-gradient(180deg, #faf8f5 0%, #f5f1eb 100%);
    background-attachment: fixed;
    font-size: 18px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(195,163,89,0.008) 3px, rgba(206,173,104,0.008) 6px),
        repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(224,18,59,0.005) 3px, rgba(227,13,66,0.005) 6px);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(226,23,58,0.015) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(202,166,102,0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: cmle-background-pulse 8s ease-in-out infinite;
}

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

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

.cmle-container {
    max-width:100%;
    margin: 0 auto;
    padding: 0 29px;
}

/* Price Ticker */
.cmle-ticker {
    background: linear-gradient(135deg, #2a1f21 0%, #1a0a0a 50%, #2b1611 100%);
    color: #faf8f5;
    padding: 16px 0;
    border-bottom: 1px solid rgba(220,24,57,0.3);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

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

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

.cmle-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 0 28px;
}

.cmle-ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    padding: 8px 17px;
    border-radius: 7px;
    transition: all 0.3s;
    position: relative;
}

.cmle-ticker-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(222,12,56,0.08);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

.cmle-ticker-metal {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(250, 248, 245, 0.7);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.cmle-ticker-price {
    font-size: 19px;
    font-weight: 700;
    color: var(--cmle-gold-light);
    text-shadow: 0 0 15px rgba(197,166,100,0.4);
    position: relative;
    font-family: 'Inter', sans-serif;
}

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

.cmle-ticker-change svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

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

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

.cmle-ticker-separator {
    width: 1px;
    height: 26px;
    background: rgba(250, 248, 245, 0.15);
}

.cmle-ticker-update {
    text-align: center;
    font-size: 11px;
    color: rgba(250, 248, 245, 0.5);
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: 'Inter', sans-serif;
}

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

@keyframes cmle-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Header */
.cmle-header {
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.98) 0%, rgba(250, 248, 245, 0.95) 100%);
    border-bottom: 1px solid var(--cmle-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 
        0 2px 21px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(214,27,67,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

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

.cmle-header-container {
    max-width:100%;
    margin: 0 auto;
    padding: 22px 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cmle-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--cmle-primary);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.2px;
    font-family: 'Crimson Text', serif;
}

.cmle-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--cmle-accent) 0%, #b71331 50%, var(--cmle-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #faf8f5;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 
        0 3px 12px rgba(224,15,66,0.3),
        0 1px 4px rgba(227,22,58,0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cmle-logo:hover .cmle-logo-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 
        0 5px 18px rgba(220,20,64,0.4),
        0 2px 6px rgba(223,15,56,0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

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

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

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

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

.cmle-nav-link {
    color: var(--cmle-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 21px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.cmle-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(216,26,54,0.08);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.cmle-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(--cmle-accent), transparent);
    border-radius: 1px;
    transition: transform 0.3s;
}

.cmle-nav-link:hover {
    color: var(--cmle-accent);
    transform: translateY(-1px);
}

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

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

.cmle-nav-link--active {
    color: var(--cmle-accent);
    background: rgba(219,20,62,0.1);
}

.cmle-nav-link--active::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, transparent, var(--cmle-accent), var(--cmle-accent), transparent);
}

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

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

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

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

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

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

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

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

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

/* Hero Section */
.cmle-hero {
    background: linear-gradient(135deg, #321b10 0%, #1a0a0a 30%, #2f261a 50%, #1a0a0a 70%, #301f14 100%);
    color: #faf8f5;
    padding: 140px 0 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 -50px 100px rgba(0, 0, 0, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.2);
}

.cmle-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(212,19,52,0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(196,162,97,0.08) 0%, transparent 50%);
    animation: cmle-pulse 5s ease-in-out infinite;
}

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

.cmle-hero-badge {
    display: inline-block;
    padding: 12px 31px;
    background: linear-gradient(135deg, rgba(214,20,59,0.15) 0%, rgba(206,163,104,0.1) 100%);
    border: 1px solid rgba(224,24,58,0.3);
    border-radius: 27px;
    font-size: 15px;
    font-weight: 600;
    color: var(--cmle-gold-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 36px;
    box-shadow: 
        0 4px 13px rgba(227,18,65,0.15),
        0 1px 5px rgba(226,13,57,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    animation: cmle-badge-glow 3s ease-in-out infinite;
}

@keyframes cmle-badge-glow {
    0%, 100% { 
        box-shadow: 
            0 3px 15px rgba(223,24,55,0.15),
            0 1px 5px rgba(222,18,63,0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 
            0 5px 20px rgba(216,23,62,0.25),
            0 2px 8px rgba(219,17,53,0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.cmle-hero-title {
    font-family: 'Crimson Text', serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 26px 0;
    color: #faf8f5;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.4),
        0 4px 15px rgba(212,12,60,0.2);
    position: relative;
}

.cmle-hero-subtitle {
    font-size: 20px;
    color: rgba(250, 248, 245, 0.85);
    line-height: 1.7;
    margin: 0 0 44px 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.cmle-btn-primary {
    background: linear-gradient(135deg, var(--cmle-accent) 0%, #b4192e 50%, var(--cmle-accent) 100%);
    color: #faf8f5;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 5px 20px rgba(214,16,67,0.35), 
        0 2px 8px rgba(225,27,58,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.cmle-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.cmle-btn-primary:hover::after {
    opacity: 1;
}

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

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

.cmle-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(223,21,63,0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cmle-btn-secondary {
    background: transparent;
    color: #faf8f5;
    border: 1px solid rgba(250, 248, 245, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.cmle-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(250, 248, 245, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Rating Section */
.cmle-rating-section {
    background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 50%, #f5f1eb 100%);
    padding: 48px 0;
    border-top: 1px solid rgba(212,25,59,0.15);
    border-bottom: 1px solid rgba(215,19,67,0.15);
    position: relative;
    overflow: hidden;
}

.cmle-rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    flex-wrap: wrap;
    background: rgba(250, 248, 245, 0.9);
    padding: 22px 46px;
    border-radius: 38px;
    box-shadow: 
        0 5px 28px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(224,14,57,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(221,13,64,0.15);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
}

.cmle-rating-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--cmle-accent), var(--cmle-gold), var(--cmle-accent));
    border-radius: 43px;
    z-index: -1;
    opacity: 0.1;
    animation: cmle-rating-border 4s ease-in-out infinite;
}

@keyframes cmle-rating-border {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

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

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

.cmle-star {
    font-size: 21px;
    color: #dad8e2;
}

.cmle-star--filled {
    color: var(--cmle-gold);
    text-shadow: 0 0 8px rgba(201,172,100,0.4);
    animation: cmle-star-twinkle 2.5s ease-in-out infinite;
}

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

.cmle-rating-number {
    font-size: 26px;
    font-weight: 700;
    color: var(--cmle-primary);
    position: relative;
    padding: 0 12px;
    font-family: 'Inter', sans-serif;
}

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

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

.cmle-article {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.cmle-intro {
    margin-bottom: 53px;
    padding: 34px;
    background: linear-gradient(135deg, rgba(223,14,55,0.04) 0%, rgba(203,173,99,0.02) 100%);
    border-radius: 15px;
    border-left: 3px solid var(--cmle-accent);
    box-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(216,12,61,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.cmle-intro::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 120px;
    background: radial-gradient(circle, rgba(213,27,59,0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.cmle-lead {
    font-size: 24px;
    line-height: 1.85;
    color: var(--cmle-text);
    margin-bottom: 31px;
    font-weight: 500;
    position: relative;
    padding-left: 24px;
}

.cmle-lead::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -15px;
    font-size: 70px;
    font-family: 'Crimson Text', serif;
    color: var(--cmle-accent);
    opacity: 0.25;
    line-height: 1;
}

.cmle-article h2 {
    font-family: 'Crimson Text', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--cmle-primary);
    margin: 73px 0 29px 0;
    line-height: 1.25;
    position: relative;
    padding-bottom: 24px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.6px;
}

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

.cmle-article h3 {
    font-family: 'Crimson Text', serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--cmle-primary);
    margin: 47px 0 25px 0;
}

.cmle-article p {
    margin-bottom: 28px;
    line-height: 1.9;
    color: var(--cmle-text);
    position: relative;
    padding-left: 25px;
}

.cmle-article p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, var(--cmle-accent), var(--cmle-gold));
    border-radius: 50%;
    box-shadow: 
        0 0 5px rgba(215,12,58,0.4),
        0 0 4px rgba(195,171,103,0.3);
    opacity: 0.7;
    animation: cmle-dot-pulse 2s ease-in-out infinite;
}

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

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

.cmle-list,
.cmle-list-ordered {
    margin: 35px 0;
    padding-left: 36px;
    position: relative;
}

.cmle-list::before,
.cmle-list-ordered::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        var(--cmle-accent) 0%, 
        rgba(225,17,57,0.8) 25%,
        var(--cmle-gold) 50%,
        rgba(205,176,102,0.8) 75%,
        var(--cmle-accent) 100%);
    border-radius: 1px;
    box-shadow: 
        0 0 7px rgba(227,21,56,0.3),
        inset 0 0 4px rgba(207,161,101,0.2);
}

.cmle-list li,
.cmle-list-ordered li {
    margin-bottom: 15px;
    line-height: 1.85;
    color: var(--cmle-text);
    padding-left: 16px;
    position: relative;
    transition: all 0.3s;
}

.cmle-list li::marker {
    color: var(--cmle-accent);
    font-weight: 600;
}

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

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

.cmle-image-wrapper {
    margin: 55px 0;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 
        0 12px 45px var(--cmle-shadow),
        0 6px 25px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(220,16,55,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    border: 2px solid rgba(217,15,61,0.15);
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
}

.cmle-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(216,25,53,0.02) 0%, transparent 50%, rgba(200,165,97,0.02) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
}

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

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

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

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

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

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

.cmle-image-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(218,26,52,0.2);
    border-top-color: var(--cmle-accent);
    border-right-color: var(--cmle-gold);
    border-radius: 50%;
    animation: cmle-spin 1s linear infinite;
    z-index: 2;
    box-shadow: 
        0 0 15px rgba(213,20,67,0.3),
        inset 0 0 10px rgba(193,164,96,0.2);
}

@keyframes cmle-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.cmle-image-wrapper img[loading="lazy"] {
    background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 100%);
    min-height: 200px;
}

/* Testimonial Slider */
.cmle-testimonial-section {
    margin: 83px 0;
    padding: 75px 0;
    background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 30%, #f5f1eb 70%, #faf8f5 100%);
    border-radius: 21px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 35px rgba(0, 0, 0, 0.06),
        0 3px 15px rgba(214,19,57,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(227,14,64,0.1);
}

.cmle-testimonial-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(226,25,63,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: cmle-float 8s ease-in-out infinite;
}

.cmle-testimonial-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(202,168,92,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: cmle-float 10s ease-in-out infinite reverse;
}

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

.cmle-testimonial-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    padding-bottom: 35px;
}

.cmle-testimonial-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cmle-accent), var(--cmle-gold), var(--cmle-accent), transparent);
    border-radius: 3px;
}

.cmle-testimonial-title {
    font-family: 'Crimson Text', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--cmle-primary);
    margin-bottom: 15px;
}

.cmle-testimonial-subtitle {
    font-size: 18px;
    color: var(--cmle-text-light);
}

.cmle-testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 33px;
}

.cmle-testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.cmle-testimonial-item {
    min-width: 100%;
    padding: 0 17px;
    box-sizing: border-box;
}

.cmle-testimonial-card {
    background: linear-gradient(135deg, var(--cmle-bg) 0%, #f5f1eb 100%);
    padding: 47px 43px;
    border-radius: 14px;
    box-shadow: 
        0 7px 20px var(--cmle-shadow),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(223,23,54,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(216,18,60,0.1);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.cmle-testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(219,13,52,0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.cmle-testimonial-card:hover::after {
    opacity: 1;
}

.cmle-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 35px var(--cmle-shadow-hover),
        0 4px 15px rgba(218,23,67,0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.cmle-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    font-family: 'Crimson Text', serif;
    color: var(--cmle-accent);
    opacity: 0.15;
    line-height: 1;
}

.cmle-testimonial-text {
    font-size: 17px;
    line-height: 1.85;
    color: var(--cmle-text);
    margin-bottom: 31px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.cmle-testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.cmle-testimonial-avatar {
    width: 58px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cmle-accent), var(--cmle-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #faf8f5;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212,24,66,0.3);
}

.cmle-testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--cmle-primary);
    margin-bottom: 5px;
    font-family: 'Crimson Text', serif;
}

.cmle-testimonial-info p {
    font-size: 14px;
    color: var(--cmle-text-light);
    margin: 0;
    padding: 0;
}

.cmle-testimonial-info p::before {
    display: none;
}

.cmle-testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 38px;
}

.cmle-testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(215,18,58,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.cmle-testimonial-dot.active {
    background: var(--cmle-accent);
    width: 32px;
    border-radius: 5px;
}

/* Comparison Table */
.cmle-comparison-section {
    margin: 73px 0;
}

.cmle-comparison-table {
    overflow-x: auto;
    margin-top: 32px;
}

.cmle-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: linear-gradient(135deg, var(--cmle-bg) 0%, #f5f1eb 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 35px var(--cmle-shadow),
        0 3px 15px rgba(0, 0, 0, 0.04),
        0 1px 4px rgba(225,23,57,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226,21,55,0.1);
}

.cmle-table thead {
    background: linear-gradient(135deg, #2d2021 0%, #1a0a0a 50%, #2a1911 100%);
    color: #faf8f5;
    position: relative;
}

.cmle-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cmle-accent), transparent);
}

.cmle-table th {
    padding: 23px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.cmle-table tbody tr {
    border-bottom: 1px solid var(--cmle-border);
    transition: all 0.3s ease;
    position: relative;
}

.cmle-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--cmle-accent), var(--cmle-gold));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.cmle-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(221,12,62,0.04) 0%, #f8f6f2 10%, #f8f6f2 90%, rgba(220,22,54,0.04) 100%);
    box-shadow: inset 0 0 15px rgba(223,16,61,0.04);
}

.cmle-table tbody tr:hover::before {
    transform: scaleX(1);
}

.cmle-table tbody tr:last-child {
    border-bottom: none;
}

.cmle-table td {
    padding: 22px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--cmle-text);
}

.cmle-table td small {
    display: block;
    color: var(--cmle-text-light);
    font-size: 13px;
    margin-top: 5px;
}

.cmle-badge {
    display: inline-block;
    padding: 6px 11px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: 'Inter', sans-serif;
}

.cmle-badge--yes {
    background: linear-gradient(135deg, rgba(47,141,82,0.12), rgba(42,135,89,0.08));
    color: var(--cmle-success);
    border: 1px solid rgba(41,129,81,0.25);
    box-shadow: 0 2px 6px rgba(44,136,96,0.15);
}

.cmle-badge--no {
    background: linear-gradient(135deg, rgba(199,70,73,0.12), rgba(194,80,80,0.08));
    color: var(--cmle-danger);
    border: 1px solid rgba(193,75,72,0.25);
    box-shadow: 0 2px 6px rgba(196,69,79,0.15);
}

/* Winner Section */
.cmle-winner-section {
    margin: 83px 0;
    padding: 75px 0;
    background: linear-gradient(135deg, #f5f1eb 0%, #faf8f5 30%, #f5f1eb 70%, #faf8f5 100%);
    border-radius: 21px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 35px rgba(0, 0, 0, 0.06),
        0 3px 15px rgba(225,19,64,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226,14,63,0.1);
}

.cmle-winner-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(221,25,54,0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: cmle-float 12s ease-in-out infinite;
}

.cmle-winner-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201,168,99,0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: cmle-float 14s ease-in-out infinite reverse;
}

.cmle-winner-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    padding-bottom: 30px;
}

.cmle-winner-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cmle-accent), var(--cmle-gold), var(--cmle-accent), transparent);
    border-radius: 1px;
}

.cmle-winner-title {
    font-family: 'Crimson Text', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--cmle-primary);
    margin-bottom: 17px;
}

.cmle-winner-subtitle {
    font-size: 18px;
    color: var(--cmle-text-light);
}

.cmle-winner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 33px;
    padding: 0 29px;
}

.cmle-winner-card {
    background: linear-gradient(135deg, var(--cmle-bg) 0%, #f5f1eb 100%);
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 
        0 7px 22px var(--cmle-shadow),
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(222,20,60,0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(219,19,59,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cmle-winner-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(218,13,66,0.05));
    transition: height 0.4s;
}

.cmle-winner-card:hover::after {
    height: 100%;
}

.cmle-winner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cmle-accent), var(--cmle-gold), var(--cmle-accent));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.cmle-winner-card:hover::before {
    transform: scaleX(1);
}

.cmle-winner-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 15px 45px var(--cmle-shadow-hover),
        0 8px 28px var(--cmle-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(212,17,65,0.25);
}

.cmle-winner-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--cmle-accent) 0%, #ac0d38 50%, var(--cmle-accent) 100%);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #faf8f5;
    box-shadow: 
        0 6px 18px rgba(215,24,57,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.4s;
}

.cmle-winner-card:hover .cmle-winner-icon {
    transform: rotate(5deg) scale(1.08);
    box-shadow: 
        0 8px 24px rgba(225,12,56,0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cmle-winner-icon svg {
    width: 30px;
    height: 30px;
}

.cmle-winner-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--cmle-primary);
    margin-bottom: 19px;
    font-family: 'Crimson Text', serif;
    position: relative;
    padding-bottom: 9px;
}

.cmle-winner-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: linear-gradient(90deg, var(--cmle-accent), transparent);
    border-radius: 1px;
}

.cmle-winner-card p {
    font-size: 17px;
    color: var(--cmle-text-light);
    line-height: 1.75;
    margin: 0;
    padding: 0;
}

.cmle-winner-card p::before {
    display: none;
}

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

.cmle-section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(227,17,63,0.15) 20%, 
        var(--cmle-accent) 50%, 
        rgba(226,27,54,0.15) 80%, 
        transparent
    );
    transform: translateY(-50%);
}

.cmle-section-divider::after {
    content: '●';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--cmle-accent), var(--cmle-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #faf8f5;
    box-shadow: 
        0 0 25px rgba(221,18,62,0.4),
        0 0 15px rgba(201,161,90,0.3),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: cmle-divider-pulse 3s ease-in-out infinite;
}

@keyframes cmle-divider-pulse {
    0%, 100% { 
        box-shadow: 
            0 0 25px rgba(219,15,67,0.4),
            0 0 15px rgba(199,171,95,0.3),
            0 4px 12px rgba(0, 0, 0, 0.2),
            inset 0 2px 4px rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 35px rgba(215,21,64,0.6),
            0 0 25px rgba(195,164,93,0.5),
            0 4px 12px rgba(0, 0, 0, 0.2),
            inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
}

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

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

.cmle-faq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cmle-accent), var(--cmle-gold), var(--cmle-accent), transparent);
    border-radius: 1px;
}

.cmle-faq-title {
    font-family: 'Crimson Text', serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--cmle-primary);
    margin-bottom: 17px;
}

.cmle-faq-subtitle {
    font-size: 15px;
    color: var(--cmle-text-light);
}

.cmle-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cmle-faq-item {
    background: linear-gradient(135deg, var(--cmle-bg) 0%, #f5f1eb 100%);
    border: 1px solid var(--cmle-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
    position: relative;
}

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

.cmle-faq-item:hover {
    border-color: rgba(226,20,62,0.4);
    box-shadow: 
        0 6px 20px var(--cmle-shadow),
        0 0 0 1px rgba(221,15,53,0.1);
    transform: translateX(3px);
}

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

.cmle-faq-item.active {
    border-color: var(--cmle-accent);
    box-shadow: 
        0 10px 30px var(--cmle-shadow),
        0 4px 18px var(--cmle-shadow-gold),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
}

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

.cmle-faq-question:hover {
    background: rgba(223,19,52,0.04);
}

.cmle-faq-question-text {
    font-size: 19px;
    font-weight: 600;
    color: var(--cmle-primary);
    line-height: 1.4;
    font-family: 'Crimson Text', serif;
}

.cmle-faq-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(222,26,60,0.12), rgba(198,169,96,0.08));
    border-radius: 50%;
    color: var(--cmle-accent);
    transition: all 0.4s ease;
    box-shadow: 0 2px 6px rgba(216,14,67,0.15);
    border: 1px solid rgba(219,24,58,0.15);
}

.cmle-faq-item.active .cmle-faq-icon {
    transform: rotate(180deg) scale(1.1);
    background: linear-gradient(135deg, var(--cmle-accent), var(--cmle-gold));
    color: #faf8f5;
    box-shadow: 
        0 4px 12px rgba(218,19,66,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

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

.cmle-faq-answer-content {
    padding: 0 30px 25px;
    font-size: 19px;
    line-height: 1.8;
    color: var(--cmle-text);
}

.cmle-faq-answer-content p {
    margin-bottom: 11px;
    padding: 0;
}

.cmle-faq-answer-content p::before {
    display: none;
}

/* Footer */
.cmle-footer {
    background: linear-gradient(135deg, #201520 0%, #1a0a0a 50%, #212216 100%);
    color: rgba(250, 248, 245, 0.8);
    padding: 85px 0 48px;
    margin-top: 110px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 50px 100px rgba(0, 0, 0, 0.4),
        0 -10px 40px rgba(0, 0, 0, 0.2);
}

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

.cmle-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(225,18,63,0.015) 100px, rgba(224,13,54,0.015) 101px);
    animation: cmle-drift 35s linear infinite;
}

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

.cmle-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 58px;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
    padding-bottom: 47px;
    border-bottom: 2px solid rgba(250, 248, 245, 0.1);
}

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

.cmle-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

.cmle-footer-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(250, 248, 245, 0.65);
}

.cmle-footer-title {
    font-size: 17px;
    font-weight: 600;
    color: #faf8f5;
    margin-bottom: 20px;
    font-family: 'Crimson Text', serif;
}

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

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

.cmle-footer-links a {
    color: rgba(250, 248, 245, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 23px;
    display: inline-block;
}

.cmle-footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: var(--cmle-accent);
}

.cmle-footer-links a:hover {
    color: var(--cmle-accent);
    transform: translateX(4px);
}

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

.cmle-footer-bottom {
    padding-top: 38px;
    border-top: 1px solid rgba(250, 248, 245, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(250, 248, 245, 0.5);
}

/* Scroll Progress Indicator */
.cmle-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--cmle-accent), var(--cmle-gold), var(--cmle-accent));
    z-index: 9999;
    transition: width 0.1s;
    box-shadow: 0 0 8px rgba(222,22,59,0.4);
}

/* Additional Visual Details */
.cmle-article h2::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--cmle-accent), var(--cmle-gold), var(--cmle-accent));
    border-radius: 1px;
    opacity: 0.3;
}

.cmle-article h3::before {
    content: '▸';
    position: absolute;
    left: -20px;
    color: var(--cmle-accent);
    font-size: 18px;
    opacity: 0.5;
}

.cmle-list li::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--cmle-accent), var(--cmle-gold));
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(217,17,67,0.4);
}

.cmle-list-ordered li::marker {
    color: var(--cmle-accent);
    font-weight: 700;
    font-size: 1.1em;
}

/* Enhanced hover effects */
.cmle-nav-link:hover {
    text-shadow: 0 0 8px rgba(216,27,58,0.2);
}

.cmle-btn-primary:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 10px rgba(219,21,66,0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cmle-btn-secondary:active {
    transform: translateY(0);
}

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

/* Focus states for accessibility */
.cmle-btn:focus,
.cmle-nav-link:focus,
.cmle-faq-question:focus {
    outline: 2px solid var(--cmle-accent);
    outline-offset: 3px;
}

/* Print styles */
@media print {
    .cmle-ticker,
    .cmle-header,
    .cmle-footer,
    .cmle-hero-actions,
    .cmle-testimonial-nav {
        display: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cmle-ticker-track {
        gap: 23px;
        font-size: 16px;
    }

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

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

    .cmle-table {
        font-size: 13px;
    }

    .cmle-table th,
    .cmle-table td {
        padding: 17px;
    }

    .cmle-winner-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .cmle-winner-header h2 {
        font-size: 30px;
    }

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

    .cmle-nav {
        display: none;
    }

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

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

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

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

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

    .cmle-testimonial-title,
    .cmle-faq-title {
        font-size: 30px;
    }

    .cmle-faq-question {
        padding: 24px;
    }

    .cmle-faq-answer-content {
        padding: 0 25px 22px;
    }
}


/* ==================
   Company Logo Styles (110px height)
   ================== */
.fb-company-logo {
    width: 240px;
    height: 165px;
    object-fit: contain;
    background: var(--fb-white);
    border-radius: var(--fb-radius-sm);
    padding: 11px;
    margin-bottom: 5px;
    border: 2px solid var(--fb-gray-200);
}

.fb-company-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ==================
   Action Buttons (Go + Review)
   ================== */
.fb-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.fb-btn-primary {
    display: inline-block;
    padding: 10px 25px;
    background: var(--fb-secondary);
    color: var(--fb-dark);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-primary:hover {
    background: var(--fb-secondary-dark);
    color: var(--fb-dark);
    transform: translateY(-1px);
}

.fb-btn-review {
    display: inline-block;
    padding: 13px 21px;
    background: transparent;
    color: var(--fb-primary);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border: 2px solid var(--fb-primary);
    border-radius: var(--fb-radius-sm);
    transition: var(--fb-transition);
    text-decoration: none;
}

.fb-btn-review:hover {
    background: var(--fb-primary);
    color: var(--fb-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fb-company-logo {
        width: 160px;
        height: 100px;
    }

    .fb-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .fb-btn-primary,
    .fb-btn-review {
        padding: 7px 19px;
        font-size: 10px;
    }
}
/* ==================
   UNIVERSAL MOBILE FIX - Company Logos & Table Adaptivity
   Applied to all sites
   ================== */
@media (max-width: 768px) {
    /* Universal logo selectors */
    [class*='company-logo'],
    [class*='CompanyLogo'],
    [class*='company_logo'],
    img[class*='logo'][class*='company'],
    .company-logo,
    .fb-company-logo,
    .catCompanyLogo,
    .tf-company-card__logo,
    .th-company-logo,
    .op-company-logo,
    .card-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 7px !important;
        margin: 0 auto 15px !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    /* Center company info/cards */
    [class*='company-info'],
    [class*='CompanyInfo'],
    [class*='company_info'],
    .fb-company-info,
    .catCompanyInfo,
    .tf-company-card__info {
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Center company name */
    [class*='company-name'],
    [class*='CompanyName'],
    .catCompanyName,
    .tf-company-card__name {
        text-align: center !important;
    }
    
    /* Center rating/stars */
    [class*='rating'],
    [class*='Rating'],
    [class*='stars'],
    [class*='Stars'],
    .catRating,
    .catStars {
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* Buttons full width */
    [class*='action-btn'],
    [class*='ActionBtn'],
    [class*='btn-cta'],
    [class*='btn-primary'],
    [class*='btn-review'],
    .catBtnCta,
    .catBtnReview,
    .fb-btn-primary,
    .fb-btn-review,
    .tf-btn-primary,
    .tf-btn-outline {
        display: block !important;
        width: 100% !important;
        padding: 9px 22px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }
    
    /* Site logo bigger */
    [class*='site-logo'] img,
    [class*='SiteLogo'] img,
    .catLogo__icon,
    .tf-logo__icon,
    .th-logo__icon,
    header [class*='logo'] img {
        min-width: 45px !important;
        min-height: 45px !important;
    }
}


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

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