/* Caterpillar Sapphire Style - Auto-themed */
:root {
    --ctr-primary: #0C200E;
    --ctr-accent: #22c158;
    --ctr-gold: #19bb5d;
    --ctr-gold-light: #3976cb;
    --ctr-gold-dark: #0d57a0;
    --ctr-burgundy: #7a3030;
    --ctr-bg: #F5F9FF;
    --ctr-bg-dark: #0f0f0f;
    --ctr-bg-gradient: linear-gradient(135deg, #151411 0%, #0f0f0f 50%, #161b1a 100%);
    --ctr-text: #0C200E;
    --ctr-text-light: #44a3eb;
    --ctr-border: #89c2f4;
    --ctr-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --ctr-shadow-hover: rgba(0, 0, 0, 0.2);
    --ctr-shadow-gold: rgba(200,172,100,0.25);
    --ctr-success: #305819;
    --ctr-danger: #85273d;
    --ctr-overlay: rgba(0, 0, 0, 0.65);
}

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

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.75;
    color: var(--ctr-text);
    background: var(--ctr-bg);
    background-image: 
        radial-gradient(circle at 15% 40%, rgba(194,167,97,0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(108,51,48,0.03) 0%, transparent 50%),
        linear-gradient(180deg, #fafafa 0%, #f5f5f5 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(196,166,98,0.015) 3px, rgba(205,172,95,0.015) 6px);
    pointer-events: none;
    z-index: 0;
}

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

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

/* Price Ticker */
.ctr-ticker {
    background: linear-gradient(135deg, #0f0f0f 0%, #112021 50%, #0f0f0f 100%);
    color: #ffffff;
    padding: 18px 0;
    border-bottom: 4px solid rgba(206,162,103,0.25);
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.35);
}

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

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

.ctr-ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
    padding: 0 30px;
}

.ctr-ticker-item {
    display: flex;
    align-items: center;
    gap: 11px;
    white-space: nowrap;
    padding: 10px 21px;
    border-radius: 8px;
    transition: all 0.35s;
    position: relative;
}

.ctr-ticker-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(208,173,104,0.12);
    border-radius: 11px;
    opacity: 0;
    transition: opacity 0.35s;
}

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

.ctr-ticker-item:hover {
    transform: translateY(-3px);
}

.ctr-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;
}

.ctr-ticker-price {
    font-size: 19px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ctr-gold), var(--ctr-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 25px rgba(202,172,101,0.6);
    position: relative;
    font-family: 'Inter', sans-serif;
}

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

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

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

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

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

.ctr-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;
}

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

@keyframes ctr-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

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

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

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

.ctr-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: var(--ctr-primary);
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.2px;
}

.ctr-logo-icon {
    width: 46px;
    height: 44px;
    background: linear-gradient(135deg, var(--ctr-gold) 0%, var(--ctr-gold-light) 50%, var(--ctr-gold-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ctr-primary);
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 5px 18px var(--ctr-shadow-gold);
    position: relative;
    overflow: hidden;
}

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

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

.ctr-logo-text {
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
}

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

.ctr-nav-link {
    color: var(--ctr-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 12px 15px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
}

.ctr-nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--ctr-gold), var(--ctr-gold-light));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ctr-nav-link:hover::after,
.ctr-nav-link--active::after {
    transform: scaleX(1);
}

.ctr-nav-link:hover {
    color: var(--ctr-gold-dark);
    background: rgba(193,168,97,0.08);
}

.ctr-nav-link--active {
    color: var(--ctr-gold-dark);
    font-weight: 600;
}

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

.ctr-menu-line {
    width: 28px;
    height: 3px;
    background: var(--ctr-primary);
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

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

.ctr-mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(27px);
    border-bottom: 2px solid var(--ctr-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 18px 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s;
}

.ctr-mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
}

.ctr-mobile-link {
    display: block;
    padding: 17px 31px;
    color: var(--ctr-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    border-left: 4px solid transparent;
    font-family: 'Inter', sans-serif;
}

.ctr-mobile-link:hover {
    background: rgba(196,169,95,0.1);
    border-left-color: var(--ctr-gold);
    color: var(--ctr-gold-dark);
}

@media (max-width: 768px) {
    .ctr-nav {
        display: none;
    }
    
    .ctr-menu-toggle {
        display: flex;
    }
    
    .ctr-mobile-nav {
        display: block;
    }
}

/* Scroll Progress */
.ctr-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ctr-gold), var(--ctr-gold-light));
    z-index: 9999;
    transition: width 0.1s;
    box-shadow: 0 0 15px rgba(205,175,103,0.5);
}

/* Hero Section */
.ctr-hero {
    background: linear-gradient(135deg, #221920 0%, #0f0f0f 50%, #1f2016 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    margin-top: -2px;
}

.ctr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(206,165,96,0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(120,52,62,0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: ctr-hero-glow 8s ease-in-out infinite;
}

.ctr-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(208,164,93,0.03) 100px, rgba(201,170,101,0.03) 200px);
    animation: ctr-hero-pattern 20s linear infinite;
    pointer-events: none;
}

@keyframes ctr-hero-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes ctr-hero-pattern {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 100px) rotate(360deg); }
}

.ctr-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 29px;
}

.ctr-hero-badge {
    display: inline-block;
    padding: 13px 23px;
    background: rgba(202,176,94,0.2);
    border: 2px solid var(--ctr-gold);
    border-radius: 47px;
    color: var(--ctr-gold-light);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 0 25px rgba(203,165,102,0.3);
}

.ctr-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 27px 0;
    color: #ffffff;
    text-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.6),
        0 5px 25px rgba(197,161,91,0.35),
        0 0 50px rgba(198,170,100,0.15);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, var(--ctr-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ctr-title-glow 3.5s ease-in-out infinite;
}

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

.ctr-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 48px 0;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.ctr-btn-primary {
    background: linear-gradient(135deg, var(--ctr-gold) 0%, var(--ctr-gold-light) 50%, var(--ctr-gold-dark) 100%);
    color: var(--ctr-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 7px 30px rgba(200,166,97,0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

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

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

.ctr-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(195,167,90,0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

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

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

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

.ctr-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Stats Counter Component */
.ctr-stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 69px 0;
    border-top: 4px solid rgba(202,163,102,0.25);
    border-bottom: 3px solid rgba(203,172,99,0.25);
    position: relative;
    overflow: hidden;
}

.ctr-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 55px, rgba(204,162,91,0.025) 55px, rgba(197,168,100,0.025) 56px);
    pointer-events: none;
}

.ctr-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 43px;
    position: relative;
    z-index: 1;
}

.ctr-stat-card {
    text-align: center;
    padding: 34px 27px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 13px;
    box-shadow: 
        0 10px 38px rgba(0, 0, 0, 0.12), 
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 0 1px rgba(193,162,98,0.1);
    border: 2px solid rgba(194,168,90,0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.ctr-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ctr-gold), var(--ctr-gold-light), var(--ctr-gold));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 15px rgba(195,174,103,0.5);
}

.ctr-stat-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(196,164,95,0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.ctr-stat-card:hover::before {
    transform: scaleX(1);
}

.ctr-stat-card:hover::after {
    width: 200px;
    height: 200px;
}

.ctr-stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.18), 
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 0 1px rgba(207,165,101,0.2),
        0 0 30px rgba(208,174,93,0.2);
    border-color: rgba(201,164,102,0.5);
}

.ctr-stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ctr-primary), var(--ctr-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

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

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

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

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

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

.ctr-intro {
    margin-bottom: 58px;
    padding: 33px;
    background: linear-gradient(135deg, rgba(202,170,99,0.06) 0%, rgba(116,53,49,0.04) 100%);
    border-radius: 19px;
    border-left: 7px solid var(--ctr-gold);
    box-shadow: 
        0 5px 25px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.ctr-lead {
    font-size: 20px;
    line-height: 1.75;
    color: var(--ctr-text);
    margin-bottom: 23px;
    font-weight: 500;
}

.ctr-article h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--ctr-primary);
    margin: 56px 0 28px 0;
    line-height: 1.3;
    font-family: 'Cormorant Garamond', serif;
}

.ctr-article h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--ctr-gold-dark);
    margin: 42px 0 17px 0;
    line-height: 1.4;
    font-family: 'Cormorant Garamond', serif;
}

.ctr-article p {
    margin-bottom: 22px;
    line-height: 1.85;
    color: var(--ctr-text);
}

.ctr-article ul,
.ctr-article ol {
    margin: 28px 0;
    padding-left: 33px;
}

.ctr-article li {
    margin-bottom: 16px;
    line-height: 1.8;
}

.ctr-article strong {
    color: var(--ctr-gold-dark);
    font-weight: 600;
}

.ctr-image-wrapper {
    margin: 48px 0;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(199,170,89,0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    background: linear-gradient(135deg, rgba(193,166,90,0.05) 0%, rgba(107,49,61,0.03) 100%);
}

.ctr-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--ctr-gold);
    border-radius: 19px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s;
}

.ctr-image-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s;
    pointer-events: none;
    z-index: 2;
}

.ctr-image-wrapper:hover::before {
    opacity: 0.35;
    border-color: var(--ctr-gold-light);
}

.ctr-image-wrapper:hover::after {
    transform: rotate(45deg) translate(100%, 100%);
}

.ctr-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s;
    opacity: 0;
    filter: blur(6px);
}

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

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

.ctr-image-wrapper .ctr-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196,167,104,0.1) 0%, rgba(118,54,54,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    transition: opacity 0.3s;
}

.ctr-image-wrapper .ctr-image-placeholder::before {
    content: '';
    width: 60px;
    height: 60px;
    border: 3px solid var(--ctr-gold);
    border-top-color: transparent;
    border-radius: 50%;
    animation: ctr-spin 1s linear infinite;
}

.ctr-image-wrapper .ctr-image-placeholder[style*="display: none"] {
    opacity: 0;
    pointer-events: none;
}

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

/* Comparison Table Component */
.ctr-comparison-section {
    margin: 70px 0;
    padding: 53px 0;
    background: linear-gradient(135deg, rgba(206,166,101,0.04) 0%, rgba(120,50,51,0.02) 100%);
    border-radius: 18px;
}

.ctr-comparison-header {
    text-align: center;
    margin-bottom: 46px;
}

.ctr-comparison-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--ctr-primary);
    margin-bottom: 14px;
    font-family: 'Cormorant Garamond', serif;
}

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

.ctr-comparison-table {
    overflow-x: auto;
    border-radius: 13px;
    box-shadow: 0 8px 38px rgba(0, 0, 0, 0.1);
}

.ctr-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
}

.ctr-table thead {
    background: linear-gradient(135deg, var(--ctr-primary) 0%, #22292b 100%);
    color: #ffffff;
}

.ctr-table th {
    padding: 21px 21px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ctr-table th:last-child {
    border-right: none;
}

.ctr-table tbody tr {
    border-bottom: 2px solid rgba(202,173,91,0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

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

.ctr-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(203,166,99,0.08) 0%, rgba(204,172,92,0.12) 100%);
    box-shadow: inset 0 0 20px rgba(197,162,100,0.1);
}

.ctr-table tbody tr:hover::before {
    transform: scaleY(1);
}

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

.ctr-table td {
    padding: 23px 21px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ctr-text);
}

.ctr-table td strong {
    color: var(--ctr-gold-dark);
    font-weight: 600;
}

.ctr-badge {
    display: inline-block;
    padding: 7px 11px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-family: 'Inter', sans-serif;
}

.ctr-badge--yes {
    background: rgba(42,79,14,0.15);
    color: var(--ctr-success);
    border: 1px solid rgba(43,84,23,0.3);
}

.ctr-badge--no {
    background: rgba(138,32,46,0.15);
    color: var(--ctr-danger);
    border: 1px solid rgba(131,38,59,0.3);
}

/* CTA Banner Component */
.ctr-cta-banner {
    background: linear-gradient(135deg, var(--ctr-primary) 0%, #233233 50%, var(--ctr-primary) 100%);
    padding: 69px 0;
    margin: 82px 0;
    border-radius: 19px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.ctr-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 50%, rgba(195,168,104,0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 50%, rgba(109,52,54,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.ctr-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 29px;
}

.ctr-cta-title {
    font-size: 47px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 19px;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

.ctr-cta-text {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 38px;
    line-height: 1.75;
}

.ctr-cta-button {
    display: inline-block;
    padding: 18px 43px;
    background: linear-gradient(135deg, var(--ctr-gold) 0%, var(--ctr-gold-light) 50%, var(--ctr-gold-dark) 100%);
    color: var(--ctr-primary);
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.35s;
    box-shadow: 0 8px 30px rgba(207,175,102,0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
}

.ctr-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 45px rgba(201,174,91,0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* FAQ Accordion */
.ctr-faq-section {
    margin: 79px 0;
    padding: 62px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    border-radius: 19px;
}

.ctr-faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.ctr-faq-title {
    font-size: 47px;
    font-weight: 700;
    color: var(--ctr-primary);
    margin-bottom: 13px;
    font-family: 'Cormorant Garamond', serif;
}

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

.ctr-faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 27px;
}

.ctr-faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 
        0 5px 28px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(197,165,89,0.2);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

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

.ctr-faq-item:hover {
    border-color: rgba(198,171,97,0.4);
    box-shadow: 
        0 8px 35px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(193,176,95,0.15);
    transform: translateX(3px);
}

.ctr-faq-item:hover::before {
    transform: scaleY(1);
}

.ctr-faq-item.active {
    border-color: var(--ctr-gold);
    box-shadow: 
        0 10px 40px rgba(194,165,103,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(196,161,101,0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(206,176,102,0.03) 100%);
}

.ctr-faq-item.active::before {
    transform: scaleY(1);
}

.ctr-faq-question {
    width: 100%;
    padding: 28px 25px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 19px;
    font-weight: 600;
    color: var(--ctr-primary);
    transition: all 0.3s;
    font-family: 'Cormorant Garamond', serif;
}

.ctr-faq-question:hover {
    color: var(--ctr-gold-dark);
}

.ctr-faq-item.active .ctr-faq-question {
    color: var(--ctr-gold-dark);
}

.ctr-faq-question-text {
    flex: 1;
    padding-right: 23px;
}

.ctr-faq-icon {
    width: 26px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ctr-gold);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.ctr-faq-item.active .ctr-faq-icon {
    transform: rotate(180deg);
}

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

.ctr-faq-answer-content {
    padding: 0 31px 27px 30px;
    color: var(--ctr-text);
    line-height: 1.85;
    font-size: 17px;
}

.ctr-faq-answer-content p {
    margin-bottom: 15px;
}

.ctr-faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* Section Divider */
.ctr-section-divider {
    height: 110px;
    position: relative;
    margin: 90px 0;
    overflow: hidden;
}

.ctr-section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(207,166,94,0.25) 20%, 
        var(--ctr-gold) 50%, 
        rgba(208,171,91,0.25) 80%, 
        transparent
    );
    transform: translateY(-50%);
}

.ctr-section-divider::after {
    content: '●';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--ctr-gold), var(--ctr-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--ctr-primary);
    box-shadow: 
        0 0 35px rgba(201,161,99,0.6),
        inset 0 2px 6px rgba(255, 255, 255, 0.35);
    border: 4px solid rgba(255, 255, 255, 0.35);
}

/* Footer */
.ctr-footer {
    background: linear-gradient(135deg, var(--ctr-primary) 0%, #0f0f0f 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 71px 0 33px;
    margin-top: 100px;
    border-top: 5px solid var(--ctr-gold);
}

.ctr-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 53px;
}

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

.ctr-footer-logo .ctr-logo-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.ctr-footer-logo .ctr-logo-text {
    font-size: 20px;
    color: #ffffff;
}

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

.ctr-footer-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--ctr-gold-light);
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

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

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

.ctr-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

.ctr-footer-links a:hover {
    color: var(--ctr-gold-light);
    padding-left: 4px;
}

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

/* Responsive */
@media (max-width: 768px) {
    .ctr-hero-title {
        font-size: 38px;
    }
    
    .ctr-hero-subtitle {
        font-size: 17px;
    }
    
    .ctr-article h2 {
        font-size: 30px;
    }
    
    .ctr-article h3 {
        font-size: 24px;
    }
    
    .ctr-stats-grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }
    
    .ctr-comparison-table {
        font-size: 14px;
    }
    
    .ctr-table th,
    .ctr-table td {
        padding: 15px 15px;
        font-size: 12px;
    }
    
    .ctr-cta-title {
        font-size: 32px;
    }
    
    .ctr-faq-title {
        font-size: 32px;
    }
    
    .ctr-footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

/* ==================
   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: 6px;
    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: 9px 26px;
    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 22px;
    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: 8px 19px;
        font-size: 11px;
    }
}
/* ==================
   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,
    .mjfn-logo,
    .review-logo {
        width: 140px !important;
        min-width: 140px !important;
        height: auto !important;
        min-height: 80px !important;
        max-height: 100px !important;
        padding: 8px !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: 10px 21px !important;
        text-align: center !important;
        font-size: 14px !important;
        margin-bottom: 7px !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 */
.ctr-wrapper, .ctr-content, .ctr-hero-inner, .ctr-companies-container, 
.ctr-article, .ctr-container, .ctr-footer-inner, .ctr-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

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