/* ==========================================
   ForexTradeLab - Profesyonel Açık Tema
   Güven Veren, Renkli, Dönüşüm Odaklı
   ========================================== */

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f7fa;
    --bg-tertiary: #eef1f6;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --bg-input: #f5f7fa;
    --bg-dark: #0f172a;
    --bg-dark-secondary: #1e293b;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;
    --accent-primary: #059669;
    --accent-secondary: #047857;
    --accent-light: #d1fae5;
    --accent-gradient: linear-gradient(135deg, #059669 0%, #10b981 100%);
    --accent-glow: rgba(5, 150, 105, 0.25);
    --blue: #2563eb;
    --blue-light: #dbeafe;
    --blue-gradient: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    --xm-red: #dc2626;
    --xm-red-gradient: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --gold: #d97706;
    --gold-light: #fef3c7;
    --gold-gradient: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    --profit-green: #16a34a;
    --loss-red: #dc2626;
    --warning-amber: #d97706;
    --info-blue: #2563eb;
    --purple: #7c3aed;
    --purple-light: #ede9fe;
    --orange: #ea580c;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.1);
    --shadow-accent: 0 4px 14px rgba(5, 150, 105, 0.25);
    --shadow-blue: 0 4px 14px rgba(37, 99, 235, 0.25);
    --shadow-gold: 0 4px 14px rgba(217, 119, 6, 0.25);
    --shadow-red: 0 4px 14px rgba(220, 38, 38, 0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Animations ===== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(217, 119, 6, 0.2); }
    50% { box-shadow: 0 4px 24px rgba(217, 119, 6, 0.4); }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

[dir="rtl"] body,
[dir="rtl"] {
    font-family: 'Cairo', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

[dir="rtl"] .text-start { text-align: right !important; }
[dir="rtl"] .text-end { text-align: left !important; }

[dir="rtl"] .info-box-accent {
    border-left: none;
    border-right: 4px solid var(--accent-primary);
}

[dir="rtl"] .highlight-box {
    border-left: none;
    border-right: 4px solid var(--accent-primary);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

[dir="rtl"] .warning-box {
    border-left: none;
    border-right: 4px solid var(--warning-amber);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 4px;
}

[dir="rtl"] .btn-tool:hover {
    transform: translateX(-4px);
}

[dir="rtl"] .content-body ul,
[dir="rtl"] .content-body ol {
    padding-left: 0;
    padding-right: 20px;
}

[dir="rtl"] .floating-cta {
    right: auto;
    left: 24px;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-secondary);
}

.text-accent {
    color: var(--accent-primary) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.bg-accent-light {
    background-color: var(--accent-light) !important;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--bg-dark);
    padding: 6px 0;
    font-size: 0.8rem;
}

.topbar-trust {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.topbar-trust i {
    color: #34d399;
    font-size: 0.68rem;
}

.lang-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 2px;
    gap: 2px;
}

.lang-pill {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
    padding: 3px 10px;
    border-radius: 4px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    line-height: 1;
}

.lang-pill:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.lang-pill.active {
    color: #ffffff;
    background: var(--accent-primary);
}

.btn-xm-bonus {
    background: var(--xm-red-gradient);
    color: white !important;
    border: none;
    font-weight: 700;
    font-size: 0.73rem;
    padding: 4px 14px;
    border-radius: 20px;
    transition: var(--transition);
    animation: pulse 2.5s ease-in-out infinite;
    box-shadow: var(--shadow-red);
    white-space: nowrap;
}

.btn-xm-bonus:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    color: white !important;
}

@media (max-width: 767px) {
    .topbar-left { display: none !important; }
    .top-bar .container { justify-content: flex-end !important; }
}

/* ===== Navbar ===== */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    z-index: 1030;
    box-shadow: var(--shadow-sm);
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Scroll shrink */
.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98) !important;
}
.navbar.scrolled .brand-text { font-size: 1.2rem; }
.navbar.scrolled .brand-logo-icon { width: 26px !important; height: 26px !important; }

/* Logo - RTL/Arabic aware */
.brand-link,
.brand-link-footer {
    gap: 10px;
    transition: var(--transition);
}
.brand-link:hover,
.brand-link-footer:hover {
    opacity: 0.9;
}
.brand-logo-icon {
    flex-shrink: 0;
    margin-inline-end: 0;
    display: block;
    transition: width 0.3s ease, height 0.3s ease;
}
.brand-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: font-size 0.3s ease;
}
[dir="rtl"] .brand-text {
    font-family: 'Cairo', 'Inter', sans-serif;
}
.brand-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Nav links with animated underline */
.navbar .nav-link {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px !important;
    border-radius: 0;
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
    position: relative;
    background: transparent;
}


.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--accent-primary) !important;
    background: transparent;
}

/* Nav link icons (desktop) */
.navbar .nav-link .nav-icon {
    font-size: 0.78rem;
    margin-inline-end: 6px;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.navbar .nav-link:hover .nav-icon {
    opacity: 1;
    transform: scale(1.15);
    color: var(--accent-primary);
}

.navbar-toggler {
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 6px 12px;
}

/* Dropdown animation */
.dropdown-menu {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 10px;
    margin-top: 0 !important;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    pointer-events: none;
    border-top: 2px solid var(--accent-primary);
}
.dropdown-menu[data-bs-popper] {
    top: 95%;
}
.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: var(--accent-gradient);
    border-radius: 0 3px 3px 0;
    transition: width 0.25s ease;
}
[dir="rtl"] .dropdown-item::before {
    left: auto;
    right: 0;
    border-radius: 3px 0 0 3px;
}

.dropdown-item:hover {
    background: var(--accent-light);
    color: var(--accent-primary);
    padding-inline-start: 22px;
}
.dropdown-item:hover::before {
    width: 3px;
}

.dropdown-item i {
    width: 20px;
    color: var(--text-muted);
    transition: var(--transition);
}

.dropdown-item:hover i {
    color: var(--accent-primary);
    transform: scale(1.15);
}

.dropdown-divider {
    border-color: var(--border-color);
}

/* Tools Dropdown - özel stil */
.tools-dropdown {
    min-width: 260px;
    padding: 12px !important;
}

.tools-dropdown-header {
    padding: 6px 12px 8px;
    margin-bottom: 2px;
}

.tools-dropdown-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-primary);
}

.tools-dropdown-title i {
    margin-inline-end: 6px;
    font-size: 0.65rem;
}

.tools-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    min-height: 42px;
    gap: 0;
}

.tools-dropdown .dropdown-item:hover .tools-item-icon {
    transform: none;
}

.tools-item-icon {
    width: 32px;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-inline-end: 14px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.tools-item-icon > i {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tools-item-icon.icon-gold { background: var(--gold-light); color: var(--gold); }
.tools-item-icon.icon-accent { background: var(--accent-light); color: var(--accent-primary); }
.tools-item-icon.icon-blue { background: var(--blue-light); color: var(--blue); }
.tools-item-icon.icon-green { background: #dcfce7; color: #16a34a; }
.tools-item-icon.icon-orange { background: #ffedd5; color: var(--orange); }
.tools-item-icon.icon-purple { background: var(--purple-light); color: var(--purple); }

.badge-new {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    margin-inline-start: 8px;
    background: var(--gold-gradient);
    color: #ffffff;
    border-radius: 4px;
}

/* ===== Mega Menu ===== */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    padding: 28px 0;
    border: none;
    border-top: 2px solid var(--accent-primary);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: #ffffff;
    margin-top: 0 !important;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    pointer-events: none;
}
.mega-menu[data-bs-popper] {
    top: 95%;
}
.mega-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-col {
    padding: 0 24px;
    border-right: 1px solid var(--border-light);
}

.mega-col:last-child {
    border-right: none;
}

.mega-heading {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
    padding: 0 16px 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mega-heading i {
    font-size: 0.72rem;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: 6px;
    margin-inline-end: 4px;
}

.mega-menu .dropdown-item {
    font-size: 0.85rem;
    padding: 8px 16px;
    color: var(--text-secondary);
    border-radius: 6px;
    position: relative;
    transition: var(--transition);
}

.mega-menu .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 60%;
    background: var(--accent-gradient);
    border-radius: 0 3px 3px 0;
    transition: width 0.25s ease;
}
[dir="rtl"] .mega-menu .dropdown-item::before {
    left: auto;
    right: 0;
    border-radius: 3px 0 0 3px;
}

.mega-menu .dropdown-item:hover {
    background: var(--accent-light);
    color: var(--accent-primary);
    padding-inline-start: 22px;
}
.mega-menu .dropdown-item:hover::before {
    width: 3px;
}

.mega-cta {
    padding: 0 16px;
    margin-top: 12px;
}

.mega-cta .btn {
    transition: var(--transition);
}
.mega-cta .btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-accent);
}

/* Mega Menu - Featured Promo Card */
.mega-col-featured {
    border-right: none;
}
.mega-promo {
    margin-top: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mega-promo::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.mega-promo-badge {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.1rem;
    color: #ffffff;
    animation: pulse 2.5s ease-in-out infinite;
}
.mega-promo-text {
    margin-bottom: 14px;
}
.mega-promo-text strong {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.mega-promo-text span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
}
.mega-promo-btn {
    font-size: 0.78rem !important;
    padding: 8px 18px !important;
    border-radius: 50px !important;
}

/* =====================================================
   FULLSCREEN MOBILE MENU (mm-*)
   Bootstrap'tan tamamen bağımsız.
   ===================================================== */

/* Hamburger toggle */
.navbar-toggler {
    width: 44px;
    height: 44px;
    border: none !important;
    padding: 0;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
.navbar-toggler i { font-size: 1.2rem; }

/* Fullscreen Overlay */
.mm-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                visibility 0s linear 0.4s;
}
.mm-overlay.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                visibility 0s linear 0s;
}
body.mm-open { overflow: hidden; }

/* Header */
.mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-light);
    flex-shrink: 0;
}
.mm-header .brand-text { font-size: 1.2rem; }
.mm-close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.mm-close:hover { background: #fee2e2; color: #dc2626; }

/* Scrollable Body */
.mm-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 20px 24px;
}
.mm-body::-webkit-scrollbar { width: 3px; }
.mm-body::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 3px; }

/* Nav List */
.mm-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mm-item {
    border-bottom: 1px solid var(--border-light);
}
.mm-item:last-child { border-bottom: none; }

/* Main Links */
.mm-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 8px;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}
.mm-link:hover { color: var(--accent-primary); }
.mm-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--accent-light);
    color: var(--accent-primary);
    font-size: 0.95rem;
    margin-inline-end: 14px;
    flex-shrink: 0;
}
.mm-arrow {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}
.mm-item.open .mm-arrow { transform: rotate(180deg); color: var(--accent-primary); }

/* Sub Menu (accordion) */
.mm-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 0 0 12px;
}
[dir="rtl"] .mm-sub { padding: 0 12px 0 0; }
.mm-item.open .mm-sub { max-height: 2000px; }

/* Groups inside Education mega */
.mm-group {
    margin-bottom: 16px;
}
.mm-group:last-child { margin-bottom: 8px; }
.mm-group-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--accent-primary);
    padding: 8px 12px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mm-group-title i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: 6px;
    font-size: 0.72rem;
    flex-shrink: 0;
}

/* Sub Links */
.mm-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    margin: 2px 0;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mm-sub-link:hover {
    background: var(--accent-light);
    color: var(--accent-primary);
}
.mm-sub-link i {
    width: 20px;
    text-align: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.mm-divider {
    height: 1px;
    background: var(--border-light);
    margin: 8px 16px;
}

.mm-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    margin-top: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-decoration: none;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mm-all-link:hover { background: var(--accent-primary); color: #ffffff; }

/* Footer CTA */
.mm-footer {
    flex-shrink: 0;
    padding: 16px 24px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--border-light);
    background: var(--bg-secondary);
}
.mm-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-md);
}

/* Desktop: hide mobile menu, show toggler only <992 */
@media (min-width: 992px) {
    .mm-overlay { display: none !important; }
}

.btn-cta-primary {
    background: var(--accent-gradient);
    color: #ffffff !important;
    border: none;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-accent);
    position: relative;
    overflow: hidden;
}

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

.btn-cta-primary:hover::after {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
    color: #ffffff !important;
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1e40af 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-section .text-accent {
    color: #34d399 !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(52, 211, 153, 0.3);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 16px;
    margin-top: 48px;
}

.hero-stat {
    text-align: center;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    flex: 1;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.hero-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #34d399;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ===== Section Styles ===== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ===== Trust Bar ===== */
.trust-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px;
}

.trust-item i {
    font-size: 1.4rem;
}

.trust-item .trust-text {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-item .trust-text strong {
    color: var(--text-primary);
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

/* ===== Tool Cards ===== */
.tool-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.tool-primary::before { background: var(--accent-gradient); }
.tool-success::before { background: linear-gradient(135deg, #16a34a, #22c55e); }
.tool-warning::before { background: var(--gold-gradient); }
.tool-info::before { background: var(--blue-gradient); }

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.tool-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.tool-card:hover .tool-card-icon {
    transform: scale(1.1);
}

.tool-primary .tool-card-icon { background: var(--accent-light); color: var(--accent-primary); }
.tool-success .tool-card-icon { background: #dcfce7; color: #16a34a; }
.tool-warning .tool-card-icon { background: var(--gold-light); color: var(--gold); }
.tool-info .tool-card-icon { background: var(--blue-light); color: var(--blue); }

.tool-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.tool-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-tool {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0;
    background: none;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-tool:hover {
    color: var(--accent-secondary);
    transform: translateX(4px);
}

/* ===== Calculator Styles ===== */
.calculator-container {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.calculator-header {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.calculator-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.calculator-header p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin: 0;
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-control,
.form-select {
    background: var(--bg-input) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12) !important;
    background: #ffffff !important;
}

.input-group-text {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-calculate {
    background: var(--accent-gradient);
    color: #ffffff;
    border: none;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
    color: #ffffff;
}

.result-panel {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 20px;
    animation: fadeInUp 0.4s ease-out;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.result-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.result-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-primary);
}

.result-highlight {
    background: var(--accent-light);
    border: 1px solid rgba(5, 150, 105, 0.2);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    margin-bottom: 16px;
}

.result-highlight .result-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.result-highlight .result-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ===== Pivot Table ===== */
.pivot-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 16px;
}

.pivot-table th {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    border-bottom: 2px solid var(--border-color);
}

.pivot-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
}

.pivot-table .resistance { color: var(--profit-green); font-weight: 600; }
.pivot-table .pivot { color: var(--blue); font-weight: 700; }
.pivot-table .support { color: var(--loss-red); font-weight: 600; }

/* ===== Article Cards ===== */
.article-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.article-card .category-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    background: var(--accent-light);
    color: var(--accent-primary);
}

.article-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.article-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.article-card .text-muted {
    color: var(--text-secondary) !important;
}
.article-card .text-muted i {
    color: inherit;
}

/* ===== XM CTA Section ===== */
.xm-cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.xm-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
}

.xm-cta-section .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.xm-feature {
    text-align: center;
    padding: 20px 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    color: #ffffff;
}

.xm-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.xm-feature .small {
    color: rgba(255, 255, 255, 0.8) !important;
}

.xm-feature i {
    display: block;
    margin-bottom: 8px;
}

/* ===== Info Box / Sidebar ===== */
.info-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.info-box-accent {
    border-left: 4px solid var(--accent-primary);
}

.info-box h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.info-box p {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.info-box ul li i {
    color: var(--accent-primary);
    margin-right: 8px;
    width: 16px;
}

/* ===== XM Promo Card (Affiliate CTA) ===== */
.xm-promo-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid #fbbf24;
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    animation: goldPulse 3s ease-in-out infinite;
}

.xm-promo-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gold);
}

.xm-promo-card .bonus-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin: 12px 0;
}

.xm-promo-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.xm-promo-card .btn-cta-primary {
    animation: pulse 2.5s ease-in-out infinite;
}

/* ===== Why XM Section ===== */
.why-xm-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.why-xm-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.why-xm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.why-xm-card:hover::after {
    transform: scaleX(1);
}

.why-xm-card i {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    transition: var(--transition);
}

.why-xm-card:hover i {
    transform: scale(1.1);
}

.col-lg-3:nth-child(1) .why-xm-card i { background: var(--gold-light); color: var(--gold); }
.col-lg-3:nth-child(2) .why-xm-card i { background: var(--accent-light); color: var(--accent-primary); }
.col-lg-3:nth-child(3) .why-xm-card i { background: var(--blue-light); color: var(--blue); }
.col-lg-3:nth-child(4) .why-xm-card i { background: var(--purple-light); color: var(--purple); }

.why-xm-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.why-xm-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin: 0;
}

/* ===== Step Cards ===== */
.step-card {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    border-color: rgba(5, 150, 105, 0.3);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: #ffffff;
    box-shadow: var(--shadow-accent);
}

.step-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    padding: 40px 0;
    color: #ffffff;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: #34d399;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

.page-header .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}
.page-header .text-muted i {
    color: inherit;
}

/* ===== Content Styles ===== */
.content-section {
    padding: 60px 0;
}

.content-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 32px 0 16px;
    padding-top: 16px;
    color: var(--text-primary);
}

.content-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--accent-primary);
}

.content-body p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.content-body ul, .content-body ol {
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 20px;
}

.content-body li {
    margin-bottom: 8px;
}

.highlight-box {
    background: var(--accent-light);
    border-left: 4px solid var(--accent-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.highlight-box p {
    color: var(--text-primary);
    margin: 0;
}

.warning-box {
    background: #fef3c7;
    border-left: 4px solid var(--warning-amber);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 24px 0;
}

.warning-box p {
    color: var(--text-primary);
    margin: 0;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 48px 0 24px;
}

.site-footer .brand-text {
    color: #ffffff;
}
.site-footer .brand-accent {
    background: linear-gradient(135deg, #34d399 0%, #6ee7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.site-footer .brand-link-footer {
    color: inherit;
}
.site-footer .brand-link-footer:hover {
    color: inherit;
}

.site-footer .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-heading {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: #34d399;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #34d399;
    padding-left: 4px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6) !important;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-link:hover {
    background: #34d399;
    border-color: #34d399;
    color: #0f172a !important;
    transform: translateY(-3px);
}

.site-footer hr {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ===== Floating CTA ===== */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050;
    animation: float 3s ease-in-out infinite;
}

.floating-cta .btn {
    background: var(--xm-red-gradient);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.35);
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-cta .btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 35px rgba(220, 38, 38, 0.5);
}

/* ===== Utility ===== */
.btn-outline-accent {
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    background: transparent;
    border-radius: var(--radius-sm);
    font-weight: 600;
    padding: 10px 24px;
    transition: var(--transition);
}

.btn-outline-accent:hover {
    background: var(--accent-primary);
    color: #ffffff;
}

.btn-xm-red {
    background: var(--xm-red-gradient);
    color: white !important;
    border: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
}

.btn-xm-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.4);
    color: white !important;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #ffffff !important;
    border: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(217, 119, 6, 0.4);
    color: #ffffff !important;
}

.divider-line {
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    margin: 16px auto 0;
}

.gradient-text {
    color: var(--accent-primary);
}

.gold-text {
    color: var(--gold) !important;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 8px; flex-wrap: wrap; }
    .hero-stat { flex: 1; min-width: 70px; padding: 10px 12px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 1.8rem; }
    .floating-cta { bottom: 16px; right: 16px; }
    .floating-cta .btn { padding: 12px 20px; font-size: 0.85rem; }
}

@media (max-width: 767px) {
    .hero-section { padding: 48px 0 40px; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { gap: 6px; }
    .hero-stat { padding: 8px 8px; }
    .hero-stat-value { font-size: 1.4rem; }
    .hero-stat-label { font-size: 0.72rem; }
    .section { padding: 48px 0; }
    .section-title { font-size: 1.5rem; }
    .calculator-container { padding: 20px; }
    .topbar-left { display: none !important; }
    .xm-cta-section { padding: 48px 0; }
}

@media (max-width: 575px) {
    .hero-title { font-size: 1.6rem; }
    .btn-cta-primary { padding: 8px 18px; font-size: 0.85rem; }
    .floating-cta .btn { padding: 10px 16px; font-size: 0.8rem; }
}

/* =====================================================
   BROKER COMPARISON – REFERENCE DESIGN
   ===================================================== */

/* Hero */
.bc-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 48px 0 40px;
    color: #fff;
}

.bc-hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.bc-hero-title span {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bc-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
    max-width: 640px;
}

.bc-hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

.bc-hero-list li {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
}

.bc-hero-list li i {
    color: #22c55e;
    margin-right: 6px;
    font-size: 0.82rem;
}

.bc-hero-meta {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

/* Stats Bar */
.bc-stats {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 24px 0;
}

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

.bc-stat {
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid #f1f5f9;
}

.bc-stat:last-child { border-right: none; }

.bc-stat-label {
    font-size: 0.72rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
    margin-bottom: 4px;
}

.bc-stat-val {
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.1;
}

.bc-stat-val span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

.bc-stat-desc {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* Broker Cards */
.bc-card {
    display: flex;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.bc-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.bc-card-featured {
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 20px rgba(245,158,11,0.12);
}

.bc-card-featured:hover {
    box-shadow: 0 8px 30px rgba(245,158,11,0.18);
}

.bc-card-num {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 28px;
    min-width: 64px;
    font-size: 1.8rem;
    font-weight: 900;
    color: #cbd5e1;
    background: #f8fafc;
    border-right: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.bc-card-num-gold {
    color: #d97706;
    background: linear-gradient(180deg, #fffbeb, #fef3c7);
    border-right-color: #fde68a;
}

.bc-card-body {
    flex: 1;
    min-width: 0;
    padding: 24px 28px;
}

.bc-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.bc-card-identity {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.bc-card-logo {
    width: 100px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 4px;
    flex-shrink: 0;
}

.bc-card-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
}

.bc-card-desc {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.bc-card-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.bc-card-score-box {
    text-align: center;
    flex-shrink: 0;
}

.bc-card-score {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #2563eb);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    margin: 0 auto 4px;
}

.bc-card-featured .bc-card-score {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.bc-card-votes {
    font-size: 0.68rem;
    color: #94a3b8;
    white-space: nowrap;
}

/* Specs Grid */
.bc-card-specs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    background: #f8fafc;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid #f1f5f9;
}

.bc-card-spec {
    text-align: center;
    padding: 4px 6px;
}

.bc-card-spec-v {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.bc-card-spec-l {
    display: block;
    font-size: 0.65rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.bc-green { color: #16a34a !important; }

/* Middle: Features + Rating Bars */
.bc-card-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 18px;
}

.bc-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bc-card-features li {
    font-size: 0.82rem;
    color: #334155;
    padding: 4px 0 4px 20px;
    position: relative;
    line-height: 1.5;
}

.bc-card-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 6px;
    color: #22c55e;
    font-size: 0.68rem;
}

/* Rating Bars */
.bc-card-ratings {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.bc-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-rating-label {
    font-size: 0.72rem;
    color: #64748b;
    min-width: 110px;
    flex-shrink: 0;
}

.bc-rating-bar {
    flex: 1;
    height: 7px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.bc-rating-fill {
    height: 100%;
    width: 0;
    border-radius: 4px;
    background: #22c55e;
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bc-rating-fill.animated { width: var(--w); }

.bc-rating-fill.bar-green { background: #22c55e; }
.bc-rating-fill.bar-lime { background: #84cc16; }
.bc-rating-fill.bar-yellow { background: #eab308; }
.bc-rating-fill.bar-orange { background: #f97316; }
.bc-rating-fill.bar-red { background: #ef4444; }

.bc-rating-val {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 28px;
    text-align: right;
}

/* Bottom: Bonus */
.bc-card-bottom {
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.bc-card-btn {
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.82rem;
    padding: 8px 20px;
    white-space: nowrap;
}

.bc-card-bonus {
    font-size: 0.8rem;
    color: #92400e;
    background: #fffbeb;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #fde68a;
    flex: 1;
}

.bc-card-bonus-none {
    color: #94a3b8;
    background: #f8fafc;
    border-color: #f1f5f9;
}

/* Responsive */
@media (max-width: 991px) {
    .bc-card-specs { grid-template-columns: repeat(3, 1fr); }
    .bc-card-middle { grid-template-columns: 1fr; gap: 16px; }
    .bc-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .bc-stat { border-right: none; }
}

@media (max-width: 767px) {
    .bc-card { flex-direction: column; }
    .bc-card-num {
        min-width: unset;
        padding: 10px 0;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        font-size: 1.2rem;
    }
    .bc-card-num-gold { border-bottom-color: #fde68a; }
    .bc-card-body { padding: 18px 16px; }
    .bc-card-top { flex-direction: column; gap: 12px; }
    .bc-card-right { flex-direction: row; width: 100%; justify-content: space-between; }
    .bc-card-score-box { display: flex; align-items: center; gap: 10px; }
    .bc-card-score { width: 44px; height: 44px; font-size: 1.1rem; margin: 0; border-radius: 10px; }
    .bc-card-btn { flex: 1; text-align: center; }
    .bc-card-specs { grid-template-columns: repeat(3, 1fr); padding: 10px 12px; }
    .bc-card-bonus { text-align: center; }
    .bc-card-logo { width: 80px; height: 42px; }
    .bc-hero-title { font-size: 1.6rem; }
    .bc-hero-list { grid-template-columns: 1fr; }
    .bc-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .bc-card-specs { grid-template-columns: repeat(2, 1fr); }
    .bc-rating-label { min-width: 80px; font-size: 0.65rem; }
}

/* =====================================================
   PRICE TICKER
   ===================================================== */
.price-ticker {
    background: linear-gradient(135deg, #0a0f1e 0%, #111827 100%);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(52, 211, 153, 0.15);
}

.price-ticker::before,
.price-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 2;
    pointer-events: none;
}

.price-ticker::before {
    left: 0;
    background: linear-gradient(to right, #0a0f1e, transparent);
}

.price-ticker::after {
    right: 0;
    background: linear-gradient(to left, #111827, transparent);
}

.ticker-track {
    display: inline-flex;
    gap: 32px;
    animation: tickerScroll 40s linear infinite;
    padding-left: 100%;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    flex-shrink: 0;
}

.ticker-symbol {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.ticker-price {
    color: #ffffff;
    font-weight: 700;
    font-family: 'Inter', monospace;
}

.ticker-change {
    font-weight: 700;
    font-size: 0.72rem;
    padding: 1px 6px;
    border-radius: 3px;
}

.ticker-change.up {
    color: #34d399;
    background: rgba(52, 211, 153, 0.12);
}

.ticker-change.down {
    color: #f87171;
    background: rgba(248, 113, 113, 0.12);
}

@media (max-width: 767px) {
    .price-ticker { height: 32px; }
    .ticker-item { gap: 5px; font-size: 0.72rem; }
    .ticker-track { gap: 24px; animation-duration: 30s; }
}

/* =====================================================
   NEWSLETTER
   ===================================================== */
.newsletter-modal-content {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    color: #ffffff;
    position: relative;
}

.newsletter-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.newsletter-modal-body {
    padding: 48px 36px;
    text-align: center;
}

.newsletter-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #34d399;
}

.newsletter-modal-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.newsletter-modal-body p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.newsletter-benefits {
    text-align: left;
    margin: 0 auto 24px;
    max-width: 300px;
}

.newsletter-benefits div {
    padding: 6px 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

.newsletter-benefits i {
    color: #34d399;
    margin-right: 8px;
}

.newsletter-form .input-group {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
    white-space: nowrap;
}

.newsletter-privacy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 12px !important;
    margin-bottom: 0 !important;
}

.newsletter-msg {
    font-size: 0.85rem;
    min-height: 20px;
}

.newsletter-section {
    background: var(--bg-secondary);
    padding: 48px 0;
    border-top: 1px solid var(--border-color);
}

.newsletter-inline h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.newsletter-form-inline .form-control {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important;
}

.newsletter-form-inline .btn {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
}

/* =====================================================
   BROKER QUIZ
   ===================================================== */
.quiz-container {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.quiz-progress {
    height: 6px;
    background: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.quiz-progress-bar {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 3px;
    transition: width 0.4s ease;
}

.quiz-step-info {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 32px;
}

.quiz-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.quiz-step.active {
    display: block;
}

.quiz-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-option {
    cursor: pointer;
    margin: 0;
}

.quiz-option input {
    display: none;
}

.quiz-option-body {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: #ffffff;
}

.quiz-option-body i {
    font-size: 1.5rem;
    color: var(--text-muted);
    width: 40px;
    text-align: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.quiz-option-body strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
}

.quiz-option-body span {
    display: block;
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.quiz-option:hover .quiz-option-body {
    border-color: var(--accent-primary);
    background: var(--accent-light);
}

.quiz-option:hover .quiz-option-body i {
    color: var(--accent-primary);
}

.quiz-option input:checked + .quiz-option-body {
    border-color: var(--accent-primary);
    background: var(--accent-light);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.quiz-option input:checked + .quiz-option-body i {
    color: var(--accent-primary);
}

.quiz-result {
    animation: fadeInUp 0.5s ease;
}

.quiz-result-header {
    text-align: center;
    margin-bottom: 24px;
}

.quiz-result-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: #ffffff;
    animation: float 3s ease-in-out infinite;
}

.quiz-result-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
}

.quiz-result-card {
    background: var(--bg-secondary);
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.quiz-result-broker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.quiz-result-broker h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
}

.quiz-match-score {
    text-align: center;
}

.match-percent {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-primary);
    line-height: 1;
}

.match-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.quiz-reason {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.quiz-reason:last-child {
    border-bottom: none;
}

.quiz-result-features {
    margin-top: 20px;
}

.quiz-feature {
    text-align: center;
    padding: 16px 8px;
    background: #ffffff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.quiz-feature i {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 8px;
}

.quiz-feature strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.quiz-feature span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.text-blue { color: var(--blue) !important; }
.text-purple { color: var(--purple) !important; }
.bg-accent { background: var(--accent-primary) !important; }

@media (max-width: 767px) {
    .quiz-container { padding: 24px 16px; }
    .quiz-option-body { padding: 14px 16px; gap: 12px; }
    .quiz-result-card { padding: 20px; }
}

/* =====================================================
   ECONOMIC CALENDAR
   ===================================================== */
.calendar-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.calendar-filter-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    transition: var(--transition);
}

.calendar-filter-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.calendar-filter-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #ffffff;
}

.calendar-container {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.calendar-day {
    border-bottom: 1px solid var(--border-color);
}

.calendar-day:last-child {
    border-bottom: none;
}

.calendar-today {
    background: rgba(5, 150, 105, 0.03);
}

.calendar-day-header {
    background: var(--bg-secondary);
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.calendar-events {
    padding: 0;
}

.calendar-event {
    display: grid;
    grid-template-columns: 60px 40px 32px 1fr 90px 90px;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    font-size: 0.85rem;
    gap: 8px;
}

.calendar-event:last-child {
    border-bottom: none;
}

.calendar-event:hover {
    background: var(--bg-secondary);
}

.calendar-event-time {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    font-family: 'Inter', monospace;
}

.calendar-event-impact {
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.impact-high { color: var(--loss-red); }
.impact-medium { color: var(--warning-amber); }
.impact-low { color: var(--profit-green); }

.calendar-event-flag {
    font-size: 1.1rem;
}

.calendar-event-name {
    font-weight: 600;
    color: var(--text-primary);
}

.calendar-event-cat {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
}

.calendar-event-data {
    text-align: right;
}

.calendar-event-data .cal-label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@media (max-width: 767px) {
    .calendar-event {
        grid-template-columns: 50px 30px 24px 1fr;
        padding: 8px 12px;
        gap: 4px;
    }
    .calendar-event-data { display: none; }
    .calendar-event-name { font-size: 0.8rem; }
}

/* =====================================================
   BLOG
   ===================================================== */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-filter-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    transition: var(--transition);
    text-decoration: none;
}

.blog-filter-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.blog-filter-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #ffffff;
}

.blog-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.blog-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.blog-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.blog-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-left: auto;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.blog-tag {
    font-size: 0.72rem;
    color: var(--accent-primary);
    background: var(--accent-light);
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.blog-tag-link {
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}

.blog-tag-link:hover {
    opacity: 0.85;
    color: var(--accent-primary) !important;
}

.blog-tags-clickable {
    position: relative;
    z-index: 2;
}

.blog-content {
    font-size: 1rem;
    line-height: 1.85;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-share {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.social-share-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary) !important;
    transition: var(--transition);
    margin: 0 4px;
    font-size: 0.9rem;
}

.social-share-btn:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* =====================================================
   HOMEPAGE V2 - Premium Redesign
   ===================================================== */

/* --- Hero V2 --- */
.hero-v2 {
    background: linear-gradient(135deg, #0a0f1a 0%, #0f172a 30%, #1a1f3a 60%, #0f172a 100%);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

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

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 60% 50%, black 30%, transparent 70%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5,150,105,0.15) 0%, transparent 70%);
    top: -10%;
    right: 5%;
    animation: float 10s ease-in-out infinite;
}
.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
    bottom: -15%;
    left: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-v2 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(5,150,105,0.12);
    border: 1px solid rgba(5,150,105,0.25);
    color: #34d399;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(52,211,153,0.6);
}

.hero-v2 .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #34d399 0%, #10b981 40%, #6ee7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-v2 .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
    max-width: 550px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff !important;
    border: none;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(5,150,105,0.35);
    position: relative;
    overflow: hidden;
}
.btn-hero-primary::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;
}
.btn-hero-primary:hover::after {
    left: 100%;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(5,150,105,0.45);
    color: #ffffff !important;
}

.btn-hero-outline {
    background: rgba(255,255,255,0.06);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.15);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-trust-item {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.hero-trust-sep {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.15);
}

/* Hero Visual (currency cards) */
.hero-visual {
    position: relative;
    padding: 20px;
}

.hero-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 18px 22px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: rgba(52,211,153,0.3);
}

.hero-card-pair {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    animation: fadeInUp 0.6s ease-out backwards;
}
.hero-card-offset-1 { animation-delay: 0.15s; }
.hero-card-offset-2 { animation-delay: 0.3s; }

.hero-pair-symbol {
    display: flex;
    align-items: center;
    gap: 2px;
    width: 36px;
    min-width: 36px;
    height: 28px;
    background: rgba(52,211,153,0.1);
    border-radius: 7px;
    justify-content: center;
    font-size: 0.72rem;
    color: #34d399;
}

.hero-card-pair-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    min-width: 80px;
}
.hero-card-pair-price {
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    font-family: 'Inter', monospace;
    flex: 1;
    text-align: right;
}
.hero-card-pair-change {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    min-width: 75px;
    text-align: center;
}
.hero-card-pair-change.positive {
    color: #34d399;
    background: rgba(52,211,153,0.12);
}
.hero-card-pair-change.negative {
    color: #f87171;
    background: rgba(248,113,113,0.12);
}

.hero-chart-decoration {
    position: absolute;
    bottom: -10px;
    left: 10%;
    right: 10%;
    height: 60px;
    opacity: 0.5;
}
.hero-chart-decoration svg {
    width: 100%;
    height: 100%;
}

/* --- Stats Bar --- */
.stats-bar {
    background: #ffffff;
    position: relative;
    z-index: 3;
    margin-top: -40px;
}

.stats-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08), 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid var(--border-light);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent-light);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
    flex-shrink: 0;
    margin: 0 12px;
}

/* --- Section Header V2 --- */
.section-header-v2 {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: var(--accent-light);
    border-radius: 50px;
}
.section-label i { font-size: 0.78rem; }

.section-label-blue {
    background: var(--blue-light);
    color: var(--blue);
}

.section-label-light {
    background: rgba(255,255,255,0.1);
    color: #34d399;
    border: 1px solid rgba(255,255,255,0.1);
}

.section-title-v2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #059669, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc-v2 {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Guide Cards V2 --- */
.guide-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 24px 24px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-left: 3px solid var(--border-color);
}
.guide-card-accent-green { border-left-color: #059669; }
.guide-card-accent-amber { border-left-color: #d97706; }
.guide-card-accent-blue { border-left-color: #2563eb; }
.guide-card-accent-teal { border-left-color: #0d9488; }
.guide-card-accent-purple { border-left-color: #7c3aed; }
.guide-card-accent-red { border-left-color: #dc2626; }

[dir="rtl"] .guide-card {
    border-left: 1px solid var(--border-color);
    border-right: 3px solid var(--border-color);
    padding: 24px 28px 24px 24px;
}
[dir="rtl"] .guide-card-accent-green { border-right-color: #059669; }
[dir="rtl"] .guide-card-accent-amber { border-right-color: #d97706; }
[dir="rtl"] .guide-card-accent-blue { border-right-color: #2563eb; }
[dir="rtl"] .guide-card-accent-teal { border-right-color: #0d9488; }
[dir="rtl"] .guide-card-accent-purple { border-right-color: #7c3aed; }
[dir="rtl"] .guide-card-accent-red { border-right-color: #dc2626; }

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: transparent;
}
.guide-card-accent-green:hover { border-left-color: #059669; }
.guide-card-accent-amber:hover { border-left-color: #d97706; }
.guide-card-accent-blue:hover { border-left-color: #2563eb; }
.guide-card-accent-teal:hover { border-left-color: #0d9488; }
.guide-card-accent-purple:hover { border-left-color: #7c3aed; }
.guide-card-accent-red:hover { border-left-color: #dc2626; }

[dir="rtl"] .guide-card-accent-green:hover { border-right-color: #059669; }
[dir="rtl"] .guide-card-accent-amber:hover { border-right-color: #d97706; }
[dir="rtl"] .guide-card-accent-blue:hover { border-right-color: #2563eb; }
[dir="rtl"] .guide-card-accent-teal:hover { border-right-color: #0d9488; }
[dir="rtl"] .guide-card-accent-purple:hover { border-right-color: #7c3aed; }
[dir="rtl"] .guide-card-accent-red:hover { border-right-color: #dc2626; }

.guide-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.guide-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.guide-badge-green { background: rgba(5,150,105,0.1); color: #059669; }
.guide-badge-amber { background: rgba(217,119,6,0.1); color: #d97706; }
.guide-badge-blue { background: rgba(37,99,235,0.1); color: #2563eb; }
.guide-badge-teal { background: rgba(13,148,136,0.1); color: #0d9488; }
.guide-badge-purple { background: rgba(124,58,237,0.1); color: #7c3aed; }

.guide-reading {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.guide-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.guide-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
    flex: 1;
    line-height: 1.6;
}

.guide-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-primary);
    transition: all 0.3s;
}
.guide-card-link i { font-size: 0.75rem; transition: transform 0.3s; }
.guide-card-link:hover { color: var(--accent-secondary); }
.guide-card-link:hover i { transform: translateX(4px); }

[dir="rtl"] .guide-card-link:hover i { transform: translateX(-4px); }

.btn-outline-v2 {
    background: transparent;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 14px;
    transition: all 0.3s;
}
.btn-outline-v2:hover {
    background: var(--accent-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5,150,105,0.3);
}

/* --- Broker Section V2 --- */
.broker-section-v2 {
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 50%, #eff6ff 100%);
}

.broker-glass-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.broker-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 8px;
}

.broker-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.broker-check {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-primary);
    flex-shrink: 0;
}

.broker-feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 18px;
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    border-top: 2px solid var(--border-color);
}
.broker-card-blue { border-top-color: #2563eb; }
.broker-card-green { border-top-color: #059669; }
.broker-card-amber { border-top-color: #d97706; }
.broker-card-red { border-top-color: #dc2626; }

.broker-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.broker-card-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    opacity: 0.5;
}

.broker-feature-card h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.broker-feature-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* --- Categories V2 --- */
.categories-section-v2 {
    background: linear-gradient(135deg, #0a0f1a 0%, #0f172a 50%, #1a1f3a 100%);
}

.category-card-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 24px 24px 24px 26px;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid rgba(255,255,255,0.1);
}
.cat-border-green { border-left-color: #34d399; }
.cat-border-blue { border-left-color: #60a5fa; }
.cat-border-purple { border-left-color: #a78bfa; }
.cat-border-teal { border-left-color: #2dd4bf; }
.cat-border-amber { border-left-color: #fbbf24; }
.cat-border-red { border-left-color: #f87171; }

[dir="rtl"] .category-card-v2 {
    border-left: 1px solid rgba(255,255,255,0.08);
    border-right: 3px solid rgba(255,255,255,0.1);
    padding: 24px 26px 24px 24px;
}
[dir="rtl"] .cat-border-green { border-right-color: #34d399; }
[dir="rtl"] .cat-border-blue { border-right-color: #60a5fa; }
[dir="rtl"] .cat-border-purple { border-right-color: #a78bfa; }
[dir="rtl"] .cat-border-teal { border-right-color: #2dd4bf; }
[dir="rtl"] .cat-border-amber { border-right-color: #fbbf24; }
[dir="rtl"] .cat-border-red { border-right-color: #f87171; }

.category-card-v2:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-3px);
}

.category-card-v2 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.category-card-v2 p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
    flex: 1;
    line-height: 1.5;
}

.category-card-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: #34d399;
    font-size: 0.7rem;
    transition: all 0.3s;
}
.category-card-v2:hover .category-card-arrow {
    background: rgba(52,211,153,0.15);
    transform: translateX(4px);
}
[dir="rtl"] .category-card-v2:hover .category-card-arrow {
    transform: translateX(-4px);
}

/* --- Tool Cards V2 --- */
.tool-card-v2 {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--border-color);
}
.tool-card-v2.tool-primary { border-top-color: var(--accent-primary); }
.tool-card-v2.tool-success { border-top-color: #16a34a; }
.tool-card-v2.tool-warning { border-top-color: var(--gold); }
.tool-card-v2.tool-info { border-top-color: var(--blue); }

.tool-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
    border-color: transparent;
}
.tool-card-v2.tool-primary:hover { border-top-color: var(--accent-primary); }
.tool-card-v2.tool-success:hover { border-top-color: #16a34a; }
.tool-card-v2.tool-warning:hover { border-top-color: var(--gold); }
.tool-card-v2.tool-info:hover { border-top-color: var(--blue); }

.tool-card-v2 h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.tool-card-v2 p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.5;
}

/* --- Practice Section V2 --- */
.practice-section-v2 {
    background: linear-gradient(135deg, #0a0f1a 0%, #0f172a 50%, #1a1f3a 100%);
    overflow: hidden;
}

.practice-glass-wrapper {
    position: relative;
}

.practice-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.practice-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
}

.practice-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #34d399;
    flex-shrink: 0;
}

.bonus-card-v2 {
    background: linear-gradient(135deg, rgba(5,150,105,0.12) 0%, rgba(16,185,129,0.08) 100%);
    border: 1px solid rgba(52,211,153,0.2);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.bonus-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
    animation: shimmer 4s linear infinite;
}

.bonus-card-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
    margin-bottom: 8px;
}

.bonus-card-amount {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #34d399, #10b981, #6ee7b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.bonus-card-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.bonus-card-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.bonus-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

.btn-bonus-cta {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff !important;
    border: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(5,150,105,0.3);
}
.btn-bonus-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(5,150,105,0.45);
    color: #ffffff !important;
}

/* --- Timeline V2 --- */
.timeline-v2 {
    position: relative;
    padding-left: 36px;
}
[dir="rtl"] .timeline-v2 {
    padding-left: 0;
    padding-right: 36px;
}

.timeline-v2::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary), rgba(5,150,105,0.1));
    border-radius: 2px;
}
[dir="rtl"] .timeline-v2::before {
    left: auto;
    right: 15px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-number {
    position: absolute;
    left: -38px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--accent-gradient);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(5,150,105,0.2);
    flex-shrink: 0;
    z-index: 1;
}
[dir="rtl"] .timeline-number {
    left: auto;
    right: -38px;
}

.timeline-content {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px 24px;
    flex: 1;
    transition: all 0.3s;
}
.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(5,150,105,0.2);
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* --- FAQ V2 --- */
.faq-v2 .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 16px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-v2 .accordion-item:hover {
    border-color: rgba(5,150,105,0.2);
}

.faq-v2 .accordion-button {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    padding: 20px 24px;
    background: #ffffff;
    border-radius: 16px !important;
    box-shadow: none !important;
}
.faq-v2 .accordion-button:not(.collapsed) {
    color: var(--accent-primary);
    background: #ffffff;
}

.faq-v2 .accordion-body {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- V2 Responsive --- */
@media (max-width: 991px) {
    .hero-v2 { padding: 56px 0 44px; }
    .hero-v2 .hero-title { font-size: 2.4rem; }
    .broker-glass-card { padding: 32px 24px; }
    .broker-features-list { grid-template-columns: 1fr; }
    .section-title-v2 { font-size: 2rem; }
}

@media (max-width: 767px) {
    .hero-v2 { padding: 44px 0 36px; }
    .hero-v2 .hero-title { font-size: 1.9rem; }
    .hero-v2 .hero-subtitle { font-size: 0.95rem; }
    .btn-hero-primary,
    .btn-hero-outline { padding: 12px 24px; font-size: 0.92rem; }
    .hero-trust-row { gap: 12px; }
    .section-title-v2 { font-size: 1.6rem; }
    .broker-glass-card { padding: 24px 18px; border-radius: 18px; }
    .guide-card { padding: 22px; border-radius: 16px; }
    .bonus-card-v2 { padding: 30px 20px; }
    .bonus-card-amount { font-size: 3.5rem; }
    .bonus-card-features { gap: 16px; }
    .timeline-v2 { padding-left: 30px; }
    [dir="rtl"] .timeline-v2 { padding-right: 30px; }
    .timeline-number { left: -30px; width: 28px; height: 28px; font-size: 0.78rem; }
    [dir="rtl"] .timeline-number { right: -30px; }
}

@media (max-width: 575px) {
    .hero-v2 .hero-title { font-size: 1.6rem; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group .btn { width: 100%; justify-content: center; }
    .section-title-v2 { font-size: 1.4rem; }
}
