/* Nvidia Splendid Style - Auto-themed */
:root {
    --fe-emerald: #0a7e59;
    --fe-emerald-light: #0a9b6e;
    --fe-emerald-dark: #0a6f4c;
    --fe-emerald-deep: #0a4d2c;
    --fe-mint: #e8f5e9;
    --fe-mint-light: #f1f8f2;
    --fe-forest: #133f30;
    --fe-forest-deep: #0f300f;
    --fe-gold: #5ca5f5;
    --fe-gold-light: #f5ba62;
    --fe-bg: #FFFFFF;
    --fe-bg-alt: #FFF8ED;
    --fe-bg-cream: #fefdfb;
    --fe-text-primary: #240c38;
    --fe-text-secondary: #5a677a;
    --fe-text-muted: #63697f;
    --fe-border: #f5d8af;
    --fe-border-light: #e8f0eb;
    --fe-shadow-xs: 0 1px 3px rgba(10,139,96,0.04);
    --fe-shadow-sm: 0 2px 8px rgba(10,133,89,0.08);
    --fe-shadow-md: 0 8px 24px rgba(10,135,97,0.12);
    --fe-shadow-lg: 0 16px 48px rgba(10,130,86,0.15);
    --fe-shadow-xl: 0 24px 64px rgba(10,132,94,0.18);
    --fe-shadow-glow: 0 0 40px rgba(10,170,105,0.25);
    --fe-success: #2e7d2b;
    --fe-warning: #eb780a;
    --fe-danger: #ca2529;
    --fe-info: #0a82d7;
    --fe-radius-xs: 5px;
    --fe-radius-sm: 6px;
    --fe-radius-md: 7px;
    --fe-radius-lg: 18px;
    --fe-radius-xl: 27px;
    --fe-radius-full: 9999px;
    --fe-transition-fast: 0.15s ease;
    --fe-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --fe-transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    --fe-font-display: 'Inter', sans-serif;
    --fe-font-body: 'Inter', sans-serif;
    --fe-font-mono: 'Roboto Mono', 'SF Mono', Consolas, monospace;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--fe-font-body);
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--fe-text-primary);
    background: var(--fe-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Subtle Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(10,161,113,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(10,135,84,0.02) 0%, transparent 50%),
        linear-gradient(180deg, var(--fe-bg) 0%, var(--fe-mint-light) 100%);
    pointer-events: none;
    z-index: -1;
}

::selection {
    background: var(--fe-emerald);
    color: white;
}

.fe-wrapper {
    max-width:100%;
    margin: 0 auto;
    padding: 0 30px;
}

/* Skip Link for Accessibility */
.fe-skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fe-emerald);
    color: white;
    padding: 15px 24px;
    border-radius: var(--fe-radius-sm);
    z-index: 10000;
    transition: top var(--fe-transition);
}

.fe-skip-link:focus {
    top: 10px;
}

/* Progress Bar */
.fe-progress-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, var(--fe-emerald), var(--fe-emerald-light), var(--fe-gold));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(10,157,110,0.6);
}

/* ========================================
   PRICE TICKER COMPONENT
======================================== */
.fe-market-ticker {
    background: linear-gradient(135deg, var(--fe-forest-deep) 0%, var(--fe-forest) 50%, var(--fe-forest-deep) 100%);
    padding: 23px 0;
    border-bottom: 4px solid var(--fe-emerald);
    position: relative;
    overflow: hidden;
}

.fe-market-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10,160,103,0.08), transparent);
    animation: fe-ticker-sweep 6s linear infinite;
}

.fe-market-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fe-emerald-light), transparent);
}

@keyframes fe-ticker-sweep {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.fe-ticker-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 43px;
    flex-wrap: wrap;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.fe-ticker-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 23px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: var(--fe-radius-md);
    border: 2px solid rgba(10,163,108,0.25);
    transition: var(--fe-transition);
    position: relative;
    overflow: hidden;
}

.fe-ticker-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--fe-emerald-light), transparent);
    opacity: 0;
    transition: opacity var(--fe-transition);
}

.fe-ticker-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(10,156,106,0.4);
}

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

.fe-ticker-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.10px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}

.fe-ticker-value {
    font-size: 22px;
    font-weight: 700;
    color: white;
    font-family: var(--fe-font-mono);
    text-shadow: 0 0 20px rgba(10,168,107,0.5);
}

.fe-ticker-delta {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 5px 10px;
    border-radius: var(--fe-radius-full);
}

.fe-ticker-delta--positive {
    color: #4de377;
    background: rgba(73,218,132,0.12);
}

.fe-ticker-delta--negative {
    color: #f0726c;
    background: rgba(245,119,110,0.12);
}

.fe-ticker-delta svg {
    width: 14px;
    height: 14px;
}

.fe-ticker-status {
    text-align: center;
    padding-top: 13px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    letter-spacing: 0.4px;
}

.fe-pulse-dot {
    width: 11px;
    height: 8px;
    background: #50da80;
    border-radius: 50%;
    animation: fe-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(70,225,122,0.6);
}

@keyframes fe-pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px rgba(77,227,130,0.6); }
    50% { opacity: 0.6; transform: scale(0.85); box-shadow: 0 0 6px rgba(76,221,123,0.3); }
}

/* ========================================
   NAVIGATION
======================================== */
.fe-navigation {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(23px) saturate(180%);
    -webkit-backdrop-filter: blur(21px) saturate(180%);
    border-bottom: 1px solid var(--fe-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--fe-shadow-sm);
    transition: box-shadow var(--fe-transition);
}

.fe-navigation.is-scrolled {
    box-shadow: var(--fe-shadow-md);
}

.fe-nav-inner {
    max-width:100%;
    margin: 0 auto;
    padding: 21px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fe-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--fe-text-primary);
    transition: var(--fe-transition);
}

.fe-brand:hover {
    transform: translateY(-1px);
}

.fe-brand-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--fe-emerald), var(--fe-emerald-dark));
    border-radius: var(--fe-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: white;
    box-shadow: 0 6px 16px rgba(10,127,82,0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.fe-brand-mark::after {
    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;
}

.fe-brand:hover .fe-brand-mark::after {
    left: 100%;
}

.fe-brand-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.6px;
    color: var(--fe-text-primary);
}

.fe-nav-menu {
    display: flex;
    gap: 5px;
    align-items: center;
}

.fe-nav-item {
    color: var(--fe-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 13px 18px;
    border-radius: var(--fe-radius-sm);
    transition: var(--fe-transition);
    position: relative;
}

.fe-nav-item::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--fe-emerald), var(--fe-emerald-light));
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform var(--fe-transition);
}

.fe-nav-item:hover {
    color: var(--fe-emerald);
    background: var(--fe-mint);
}

.fe-nav-item:hover::after {
    transform: scaleX(1);
}

.fe-nav-item--current {
    color: var(--fe-emerald);
    background: var(--fe-mint);
    font-weight: 600;
}

.fe-nav-item--current::after {
    transform: scaleX(1);
}

/* Mobile Menu */
.fe-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 13px;
    border-radius: var(--fe-radius-sm);
    transition: background var(--fe-transition);
}

.fe-burger:hover {
    background: var(--fe-mint);
}

.fe-burger span {
    width: 26px;
    height: 2px;
    background: var(--fe-text-primary);
    transition: var(--fe-transition);
    border-radius: 2px;
}

.fe-burger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.fe-burger.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.fe-burger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.fe-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 22px 35px;
    background: white;
    border-top: 1px solid var(--fe-border);
    animation: fe-slideDown 0.3s ease;
}

@keyframes fe-slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.fe-mobile-menu a {
    padding: 18px 0;
    color: var(--fe-text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid var(--fe-border-light);
    transition: var(--fe-transition);
}

.fe-mobile-menu a:hover {
    color: var(--fe-emerald);
    padding-left: 9px;
}

.fe-mobile-menu a:last-child {
    border-bottom: none;
}

/* ========================================
   HERO SECTION
======================================== */
.fe-hero-section {
    background: linear-gradient(170deg, var(--fe-forest) 0%, var(--fe-forest-deep) 50%, #050f08 100%);
    padding: 120px 0 110px;
    position: relative;
    overflow: hidden;
}

.fe-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 25% 15%, rgba(10,162,109,0.2) 0%, transparent 45%),
        radial-gradient(ellipse at 75% 85%, rgba(10,136,96,0.15) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(207,160,114,0.05) 0%, transparent 60%);
    animation: fe-hero-pulse 8s ease-in-out infinite alternate;
}

@keyframes fe-hero-pulse {
    0% { opacity: 1; }
    100% { opacity: 0.7; }
}

.fe-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--fe-bg), transparent);
    pointer-events: none;
}

/* Decorative Elements */
.fe-hero-decor {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(10,165,115,0.1), rgba(10,167,107,0.02));
    border: 1px solid rgba(10,161,112,0.15);
}

.fe-hero-decor--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: fe-float 12s ease-in-out infinite;
}

.fe-hero-decor--2 {
    width: 250px;
    height: 250px;
    bottom: 50px;
    left: -80px;
    animation: fe-float 10s ease-in-out infinite reverse;
}

@keyframes fe-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -15px) rotate(5deg); }
}

.fe-hero-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 33px;
}

.fe-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 15px 28px;
    background: linear-gradient(135deg, rgba(10,164,104,0.18), rgba(10,158,113,0.08));
    border: 1px solid rgba(10,160,105,0.4);
    border-radius: var(--fe-radius-full);
    font-size: 14px;
    font-weight: 700;
    color: var(--fe-emerald-light);
    text-transform: uppercase;
    letter-spacing: 2.4px;
    margin-bottom: 35px;
    box-shadow: 0 5px 18px rgba(10,167,110,0.15);
}

.fe-hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--fe-emerald-light);
    border-radius: 50%;
    animation: fe-pulse 2s infinite;
}

.fe-hero-heading {
    font-family: var(--fe-font-display);
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 3px 33px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.fe-hero-heading .fe-highlight {
    background: linear-gradient(135deg, var(--fe-gold-light), var(--fe-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fe-hero-desc {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.fe-hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.fe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 20px 35px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-radius: var(--fe-radius-sm);
    transition: var(--fe-transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.fe-btn--primary {
    background: linear-gradient(145deg, var(--fe-emerald), var(--fe-emerald-light));
    color: white;
    box-shadow: 0 8px 24px rgba(10,129,82,0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

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

.fe-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10,128,91,0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.fe-btn--outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(9px);
}

.fe-btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.fe-btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   STATS COUNTER COMPONENT
======================================== */
.fe-stats-panel {
    background: white;
    border-radius: var(--fe-radius-xl);
    padding: 53px 50px;
    margin: -59px 35px 71px;
    position: relative;
    z-index: 10;
    box-shadow: var(--fe-shadow-xl);
    border: 1px solid var(--fe-border-light);
    overflow: hidden;
}

.fe-stats-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fe-emerald), var(--fe-emerald-light), var(--fe-gold));
}

.fe-stats-panel::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10,166,104,0.06), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.fe-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 39px;
}

.fe-stat-block {
    text-align: center;
    padding: 27px;
    border-radius: var(--fe-radius-lg);
    transition: var(--fe-transition);
    position: relative;
}

.fe-stat-block::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--fe-border), transparent);
}

.fe-stat-block:last-child::after {
    display: none;
}

.fe-stat-block:hover {
    background: var(--fe-mint);
    transform: translateY(-4px);
}

.fe-stat-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 13px;
    background: linear-gradient(135deg, var(--fe-mint), var(--fe-bg-alt));
    border-radius: var(--fe-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fe-emerald);
}

.fe-stat-icon svg {
    width: 24px;
    height: 24px;
}

.fe-stat-number {
    font-size: 46px;
    font-weight: 800;
    color: var(--fe-emerald);
    line-height: 1;
    margin-bottom: 11px;
    font-family: var(--fe-font-body);
    letter-spacing: -0.02em;
}

.fe-stat-label {
    font-size: 11px;
    color: var(--fe-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.11px;
}

/* ========================================
   TRUST BADGES
======================================== */
.fe-trust-bar {
    background: var(--fe-bg-alt);
    padding: 24px 0;
    border-top: 1px solid var(--fe-border-light);
    border-bottom: 1px solid var(--fe-border-light);
}

.fe-trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 47px;
    flex-wrap: wrap;
}

.fe-trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--fe-text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.fe-trust-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: var(--fe-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fe-emerald);
    box-shadow: var(--fe-shadow-xs);
}

.fe-trust-icon svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   MAIN CONTENT
======================================== */
.fe-content-area {
    padding: 52px 0 100px;
}

.fe-article-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 33px;
}

/* Table of Contents */
.fe-toc {
    background: white;
    border: 1px solid var(--fe-border);
    border-radius: var(--fe-radius-lg);
    padding: 35px;
    margin-bottom: 48px;
    box-shadow: var(--fe-shadow-sm);
}

.fe-toc-title {
    font-family: var(--fe-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--fe-text-primary);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.fe-toc-title svg {
    width: 23px;
    height: 20px;
    color: var(--fe-emerald);
}

.fe-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.fe-toc-link {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 11px;
    color: var(--fe-text-secondary);
    text-decoration: none;
    font-size: 14px;
    border-radius: var(--fe-radius-sm);
    transition: var(--fe-transition);
    border: 1px solid transparent;
}

.fe-toc-link::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--fe-emerald);
    border-radius: 50%;
    flex-shrink: 0;
}

.fe-toc-link:hover {
    background: var(--fe-mint);
    color: var(--fe-emerald);
    border-color: var(--fe-border);
}

/* Introduction Block */
.fe-intro-block {
    background: linear-gradient(145deg, var(--fe-bg-alt) 0%, var(--fe-mint) 100%);
    padding: 38px 47px;
    border-radius: var(--fe-radius-xl);
    margin-bottom: 56px;
    border-left: 5px solid var(--fe-emerald);
    box-shadow: var(--fe-shadow-md);
    position: relative;
    overflow: hidden;
}

.fe-intro-block::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(10,157,113,0.08), transparent);
    border-radius: 50%;
}

.fe-intro-text {
    font-size: 19px;
    line-height: 1.85;
    color: var(--fe-text-primary);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Section Titles */
.fe-section-title {
    font-family: var(--fe-font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--fe-text-primary);
    margin: 64px 0 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--fe-border);
    position: relative;
    line-height: 1.25;
}

.fe-section-title::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--fe-emerald), var(--fe-emerald-light));
}

.fe-section-title:first-of-type {
    margin-top: 0;
}

.fe-subsection-title {
    font-family: var(--fe-font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--fe-forest);
    margin: 44px 0 17px;
    line-height: 1.3;
}

/* Content Elements */
.fe-article-container p {
    margin-bottom: 26px;
    color: var(--fe-text-primary);
    font-size: 17px;
}

.fe-content-list {
    margin: 35px 0;
    padding-left: 0;
    list-style: none;
}

.fe-content-list li {
    margin-bottom: 17px;
    line-height: 1.75;
    color: var(--fe-text-primary);
    position: relative;
    padding-left: 30px;
}

.fe-content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--fe-emerald), var(--fe-emerald-light));
    border-radius: 50%;
}

.fe-ordered-list {
    list-style: none;
    margin: 34px 0;
    padding-left: 0;
    counter-reset: item;
}

.fe-ordered-list li {
    margin-bottom: 17px;
    padding-left: 51px;
    position: relative;
    line-height: 1.75;
    counter-increment: item;
}

.fe-ordered-list li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--fe-emerald), var(--fe-emerald-light));
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(10,131,87,0.25);
}

/* Callout Box */
.fe-callout {
    background: linear-gradient(135deg, #fff8e1, #f5f1b6);
    border: 1px solid #f5d657;
    border-left: 5px solid #f59b0a;
    border-radius: var(--fe-radius-md);
    padding: 27px 29px;
    margin: 30px 0;
    display: flex;
    gap: 19px;
}

.fe-callout-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: #f57b0a;
}

.fe-callout-content {
    font-size: 15px;
    line-height: 1.7;
}

.fe-callout-title {
    font-weight: 700;
    color: #e34a0a;
    margin-bottom: 5px;
}

/* Image Component */
.fe-image-container {
    margin: 59px 0;
    border-radius: var(--fe-radius-xl);
    overflow: hidden;
    box-shadow: var(--fe-shadow-lg);
    border: 1px solid var(--fe-border);
    position: relative;
}

.fe-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.4));
    z-index: 1;
    opacity: 0;
    transition: opacity var(--fe-transition);
    pointer-events: none;
}

.fe-article-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fe-image-container:hover .fe-article-image {
    transform: scale(1.04);
}

.fe-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 27px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 14px;
    z-index: 2;
    transform: translateY(100%);
    transition: transform var(--fe-transition);
}

.fe-image-container:hover .fe-image-caption {
    transform: translateY(0);
}

/* ========================================
   PROS-CONS LIST COMPONENT
======================================== */
.fe-evaluation-section {
    margin: 61px 0;
    padding: 54px;
    background: white;
    border-radius: var(--fe-radius-xl);
    box-shadow: var(--fe-shadow-lg);
    border: 1px solid var(--fe-border);
    position: relative;
    overflow: hidden;
}

.fe-evaluation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--fe-success), #43b457, #8cc443, #c3df37, #f5ea3c, #f58e0a, var(--fe-danger));
}

.fe-evaluation-header {
    text-align: center;
    margin-bottom: 45px;
}

.fe-evaluation-header h2 {
    font-family: var(--fe-font-display);
    font-size: 30px;
    color: var(--fe-text-primary);
    margin-bottom: 13px;
}

.fe-evaluation-header p {
    color: var(--fe-text-muted);
    margin: 0;
    font-size: 16px;
}

.fe-evaluation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 33px;
}

.fe-pros-column {
    background: linear-gradient(145deg, #e8f5e9, #c1e7c5);
    padding: 34px;
    border-radius: var(--fe-radius-lg);
    border: 1px solid #a7d8a7;
    position: relative;
    overflow: hidden;
}

.fe-pros-column::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(49,128,53,0.1), transparent);
    border-radius: 50%;
}

.fe-cons-column {
    background: linear-gradient(145deg, #ffebee, #f5c3c8);
    padding: 32px;
    border-radius: var(--fe-radius-lg);
    border: 1px solid #eaa09d;
    position: relative;
    overflow: hidden;
}

.fe-cons-column::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(200,45,35,0.08), transparent);
    border-radius: 50%;
}

.fe-column-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

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

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

.fe-column-title svg {
    width: 26px;
    height: 26px;
}

.fe-evaluation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.fe-evaluation-list li {
    padding: 13px 0 17px 37px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 15px;
    line-height: 1.6;
    transition: var(--fe-transition);
}

.fe-evaluation-list li:hover {
    padding-left: 40px;
}

.fe-evaluation-list li:last-child {
    border-bottom: none;
}

.fe-evaluation-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fe-pros-column .fe-evaluation-list li::before {
    background: var(--fe-success);
    box-shadow: 0 3px 8px rgba(46,131,42,0.35);
}

.fe-cons-column .fe-evaluation-list li::before {
    background: var(--fe-danger);
    box-shadow: 0 3px 8px rgba(205,32,41,0.35);
}

/* ========================================
   FAQ ACCORDION
======================================== */
.fe-faq-section {
    margin: 80px 0;
}

.fe-faq-header {
    text-align: center;
    margin-bottom: 49px;
}

.fe-faq-header h2 {
    font-family: var(--fe-font-display);
    font-size: 36px;
    color: var(--fe-text-primary);
    margin-bottom: 13px;
}

.fe-faq-header p {
    color: var(--fe-text-muted);
    margin: 0;
    font-size: 20px;
}

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

.fe-faq-item {
    background: white;
    border: 2px solid var(--fe-border);
    border-radius: var(--fe-radius-lg);
    overflow: hidden;
    transition: var(--fe-transition);
}

.fe-faq-item:hover {
    border-color: var(--fe-emerald);
    box-shadow: var(--fe-shadow-sm);
}

.fe-faq-item.is-open {
    border-color: var(--fe-emerald);
    box-shadow: var(--fe-shadow-md), 0 0 0 4px rgba(10,137,96,0.08);
}

.fe-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 23px 34px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background var(--fe-transition);
}

.fe-faq-trigger:hover {
    background: var(--fe-bg-alt);
}

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

.fe-faq-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fe-mint);
    border-radius: 50%;
    color: var(--fe-emerald);
    transition: var(--fe-transition);
}

.fe-faq-item.is-open .fe-faq-icon {
    background: var(--fe-emerald);
    color: white;
    transform: rotate(180deg);
}

.fe-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.fe-faq-item.is-open .fe-faq-content {
    max-height: 1000px;
}

.fe-faq-answer {
    padding: 0 35px 28px;
    font-size: 13px;
    line-height: 1.8;
    color: var(--fe-text-secondary);
    border-top: 1px solid var(--fe-border-light);
    padding-top: 23px;
    margin-top: -5px;
}

/* ========================================
   AUTHOR BOX
======================================== */
.fe-author-box {
    display: flex;
    gap: 25px;
    background: white;
    border: 1px solid var(--fe-border);
    border-radius: var(--fe-radius-lg);
    padding: 35px;
    margin: 48px 0;
    box-shadow: var(--fe-shadow-sm);
}

.fe-author-avatar {
    width: 80px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fe-emerald), var(--fe-emerald-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.fe-author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--fe-text-primary);
    margin-bottom: 5px;
}

.fe-author-role {
    font-size: 12px;
    color: var(--fe-emerald);
    font-weight: 600;
    margin-bottom: 15px;
}

.fe-author-bio {
    font-size: 15px;
    color: var(--fe-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   RELATED ARTICLES
======================================== */
.fe-related-section {
    margin: 61px 0;
}

.fe-related-title {
    font-family: var(--fe-font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--fe-text-primary);
    margin-bottom: 23px;
}

.fe-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 27px;
}

.fe-related-card {
    background: white;
    border: 1px solid var(--fe-border);
    border-radius: var(--fe-radius-md);
    padding: 22px;
    text-decoration: none;
    transition: var(--fe-transition);
}

.fe-related-card:hover {
    border-color: var(--fe-emerald);
    box-shadow: var(--fe-shadow-md);
    transform: translateY(-4px);
}

.fe-related-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--fe-text-primary);
    margin-bottom: 5px;
    line-height: 1.4;
}

.fe-related-card p {
    font-size: 14px;
    color: var(--fe-text-muted);
    margin: 0;
}

/* ========================================
   FOOTER
======================================== */
.fe-footer {
    background: linear-gradient(180deg, var(--fe-forest) 0%, var(--fe-forest-deep) 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 79px 0 43px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

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

.fe-footer::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10,162,115,0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.fe-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 58px;
    padding-bottom: 55px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 41px;
    position: relative;
    z-index: 1;
}

.fe-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
}

.fe-footer-brand .fe-brand-mark {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.fe-footer-brand .fe-brand-name {
    color: white;
    font-size: 20px;
}

.fe-footer-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 26px;
}

.fe-footer-social {
    display: flex;
    gap: 11px;
}

.fe-social-link {
    width: 43px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--fe-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--fe-transition);
}

.fe-social-link:hover {
    background: var(--fe-emerald);
    transform: translateY(-2px);
}

.fe-social-link svg {
    width: 18px;
    height: 18px;
}

.fe-footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.fe-footer-links li {
    margin-bottom: 17px;
}

.fe-footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 15px;
    transition: var(--fe-transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fe-footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--fe-emerald-light);
    transition: width var(--fe-transition);
}

.fe-footer-links a:hover {
    color: var(--fe-emerald-light);
}

.fe-footer-links a:hover::before {
    width: 12px;
}

.fe-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 17px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    position: relative;
    z-index: 1;
}

.fe-footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--fe-transition);
}

.fe-footer-bottom a:hover {
    color: var(--fe-emerald-light);
}

.fe-footer-legal {
    display: flex;
    gap: 23px;
}

/* ========================================
   CONTACT FORM
======================================== */
.fe-contact-form {
    background: white;
    padding: 51px;
    border-radius: var(--fe-radius-xl);
    box-shadow: var(--fe-shadow-lg);
    margin: 49px 0;
    border: 1px solid var(--fe-border-light);
}

.fe-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 27px;
}

.fe-form-group {
    margin-bottom: 28px;
}

.fe-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--fe-text-primary);
    font-size: 15px;
}

.fe-form-label span {
    color: var(--fe-danger);
}

.fe-form-input,
.fe-form-textarea,
.fe-form-select {
    width: 100%;
    padding: 15px 23px;
    border: 3px solid var(--fe-border);
    border-radius: var(--fe-radius-md);
    font-size: 14px;
    font-family: inherit;
    transition: var(--fe-transition);
    background: white;
}

.fe-form-input:focus,
.fe-form-textarea:focus,
.fe-form-select:focus {
    outline: none;
    border-color: var(--fe-emerald);
    box-shadow: 0 0 0 4px rgba(10,132,93,0.1);
}

.fe-form-input::placeholder,
.fe-form-textarea::placeholder {
    color: var(--fe-text-muted);
}

.fe-form-textarea {
    min-height: 160px;
    resize: vertical;
}

.fe-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(145deg, var(--fe-emerald), var(--fe-emerald-light));
    color: white;
    border: none;
    border-radius: var(--fe-radius-md);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--fe-transition);
    box-shadow: 0 6px 20px rgba(10,139,85,0.35);
    position: relative;
    overflow: hidden;
}

.fe-submit-btn::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;
}

.fe-submit-btn:hover::before {
    left: 100%;
}

.fe-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(10,135,82,0.45);
}

/* ========================================
   PAGE HEADERS
======================================== */
.fe-page-header {
    background: linear-gradient(165deg, var(--fe-forest) 0%, var(--fe-forest-deep) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fe-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(10,158,109,0.15), transparent 60%);
}

.fe-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--fe-bg), transparent);
}

.fe-page-title {
    font-family: var(--fe-font-display);
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fe-page-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.fe-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 21px;
    position: relative;
    z-index: 1;
}

.fe-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--fe-transition);
}

.fe-breadcrumb a:hover {
    color: white;
}

.fe-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* Text Content Pages */
.fe-text-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 73px 33px;
}

.fe-text-content h2 {
    font-family: var(--fe-font-display);
    font-size: 28px;
    color: var(--fe-text-primary);
    margin: 55px 0 22px;
    padding-bottom: 11px;
    border-bottom: 3px solid var(--fe-border);
}

.fe-text-content h2:first-child {
    margin-top: 0;
}

.fe-text-content h3 {
    font-size: 21px;
    color: var(--fe-forest);
    margin: 39px 0 17px;
}

.fe-text-content p {
    margin-bottom: 18px;
    color: var(--fe-text-primary);
    font-size: 16px;
}

.fe-text-content ul,
.fe-text-content ol {
    margin: 24px 0;
    padding-left: 25px;
}

.fe-text-content li {
    margin-bottom: 14px;
    line-height: 1.7;
}

.fe-text-content a {
    color: var(--fe-emerald);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--fe-transition);
}

.fe-text-content a:hover {
    color: var(--fe-emerald-dark);
}

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (max-width: 1024px) {
    .fe-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fe-stat-block::after {
        display: none;
    }

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

    .fe-toc-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fe-navigation { position: relative !important; }
    .fe-wrapper {
        padding: 0 18px;
    }

    .fe-nav-menu {
        display: none;
    }

    .fe-burger {
        display: flex;
    }

    .fe-hero-heading {
        font-size: 38px;
    }

    .fe-hero-desc {
        font-size: 17px;
    }

    .fe-hero-cta {
        flex-direction: column;
    }

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

    .fe-stats-panel {
        margin: -37px 22px 49px;
        padding: 39px 29px;
    }

    .fe-stats-grid {
        gap: 22px;
    }

    .fe-stat-number {
        font-size: 39px;
    }

    .fe-section-title {
        font-size: 30px;
    }

    .fe-subsection-title {
        font-size: 22px;
    }

    .fe-evaluation-grid {
        grid-template-columns: 1fr;
    }

    .fe-evaluation-section {
        padding: 34px 23px;
    }

    .fe-ticker-content {
        gap: 19px;
    }

    .fe-ticker-item {
        flex-direction: column;
        gap: 7px;
        padding: 8px 19px;
    }

    .fe-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fe-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .fe-page-title {
        font-size: 36px;
    }

    .fe-faq-trigger {
        padding: 22px 23px;
    }

    .fe-faq-answer {
        padding: 0 27px 25px;
    }

    .fe-form-row {
        grid-template-columns: 1fr;
    }

    .fe-contact-form {
        padding: 30px 27px;
    }

    .fe-related-grid {
        grid-template-columns: 1fr;
    }

    .fe-author-box {
        flex-direction: column;
        text-align: center;
    }

    .fe-hero-decor--1,
    .fe-hero-decor--2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .fe-stats-grid {
        grid-template-columns: 1fr;
    }

    .fe-ticker-content {
        flex-direction: column;
        gap: 9px;
    }

    .fe-hero-heading {
        font-size: 34px;
    }

    .fe-section-title {
        font-size: 26px;
    }

    .fe-intro-block {
        padding: 31px 25px;
    }

    .fe-intro-text {
        font-size: 18px;
    }
}

/* Print Styles */
@media print {
    .fe-navigation,
    .fe-market-ticker,
    .fe-progress-indicator,
    .fe-footer {
        display: none;
    }

    .fe-hero-section {
        padding: 43px 0;
        background: none;
        color: black;
    }

    .fe-hero-heading {
        color: black;
        text-shadow: none;
    }

    .fe-stats-panel {
        box-shadow: none;
        border: 1px solid #d1d4d4;
    }
}

/* ==================
   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: 9px;
    border: 1px 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 21px;
    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 25px;
    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: 14px;
    }
}
/* ==================
   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: 13px 18px !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 */
.fe-wrapper, .fe-content, .fe-hero-inner, .fe-companies-container, 
.fe-article, .fe-container, .fe-footer-inner, .fe-main {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

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