/* =====================================================
   Mentor Michael FOREX SIGNALS - Professional Trading Website
   Enterprise-Level Stylesheet
   ===================================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Background Colors - Dark Theme */
    /* --bg-primary: #ffffff;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #fcfcfc;
    --bg-elevated: #ffffff; */

    --bg-primary: #0f0f1a;
    --bg-secondary: #1a1a2e;
    --bg-card: #16213e;
    --bg-card-hover: #1f2b47;
    --bg-elevated: #1e2746;
    
    
    /* Primary Accent - Purple */
    --accent-primary: #8b5cf6;
    --accent-primary-light: #a78bfa;
    --accent-primary-dark: #7c3aed;
    --accent-primary-rgb: 139, 92, 246;
    
    /* Secondary Accent - Pink */
    --accent-secondary: #ec4899;
    --accent-secondary-light: #f472b6;
    --accent-secondary-dark: #db2777;
    
    /* Accent Colors */
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-blue: #3b82f6;
    --accent-amber: #f59e0b;
    
    /* Text Colors */
    /* --text-primary: #000000;
    --text-secondary: #000000;
    --text-muted: #000000;
    --text-dark: #000000; */
    

--text-primary: #f3f4f6;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --text-dark: #1f2937;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #ec4899 100%);
    --gradient-dark: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    --gradient-hero: radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                     radial-gradient(ellipse at 70% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    --gradient-card: linear-gradient(145deg, #16213e 0%, #131b30 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-purple: 0 0 40px rgba(139, 92, 246, 0.3);
    --shadow-pink: 0 0 40px rgba(236, 72, 153, 0.3);
    
    /* Borders */
    --border-color: #2d3748;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-purple: rgba(139, 92, 246, 0.3);
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1280px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.text-center { text-align: center; }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-pink {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    box-shadow: var(--shadow-purple);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

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

.btn-pink {
    background: var(--gradient-secondary);
    color: white;
    border: none;
}

.btn-pink:hover {
    box-shadow: var(--shadow-pink);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.01s ease, visibility 0.01s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-top: 20px;
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 100;
    border: none;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-purple);
}

.scroll-top i {
    color: white;
    font-size: 18px;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all var(--transition-base);
    /* background:#332D56; */
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.9);
    /* background: #332D56; */
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
}



.nav-logo-img {
    height: 45px;        /* Matches standard navbar height */
    width: auto;         /* Maintains original aspect ratio */
    border-radius: 4px;  /* Optional: adds slightly rounded corners */
    object-fit: contain;
}

/* Prevents the text from wrapping to a new line on mobile */
.logo span {
    white-space: nowrap;
}
.logo-icon {
    width: 40px;
    /* height: 40px; */
    
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.logo span {
    color: var(--accent-primary);
}

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

.nav-link {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-base);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn.telegram { background: rgba(0, 136, 204, 0.15); color: #0088cc; border-color: transparent; }
.social-btn.twitter { background: rgba(29, 161, 242, 0.15); color: #1da1f2; border-color: transparent; }
.social-btn.whatsapp { background: rgba(37, 211, 102, 0.15); color: #25d366; border-color: transparent; }
.social-btn.tradingview { background: rgba(41, 98, 255, 0.15); color: #2962ff; border-color: transparent; }
.social-btn.instagram { background: rgba(225, 48, 108, 0.15); color: #e1306c; border-color: transparent; }
.social-btn.youtube { background: rgba(255, 0, 0, 0.15); color: #ff0000; border-color: transparent; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--accent-primary);
    font-size: 12px;
}

.hero-badge span {
    color: var(--accent-primary);
    font-size: 13px;
    font-weight: 600;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-primary);
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.chart-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-pair {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chart-pair-icon {
    width: 48px;
    height: 48px;
    background: rgba(139, 92, 246, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 20px;
}

.chart-pair-name {
    font-size: 18px;
    font-weight: 700;
}

.chart-pair-type {
    font-size: 12px;
    color: var(--text-muted);
}

.signal-badge {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.signal-badge.buy {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.signal-badge.sell {
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent-red);
}

.chart-body {
    height: 180px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, transparent 100%);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    padding:20px; }

.chart-line { width: 100%; height: 100%; position: relative; }

.chart-line svg { width: 100%; height: 100%; }

.chart-levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }

.level-item { background: var(--bg-secondary); padding: 14px; border-radius: var(--radius-md); border: 1px solid var(--border-color); }

.level-item.entry { border-color: rgba(16, 185, 129, 0.3); } .level-item.stop { border-color: rgba(239, 68, 68, 0.3); } .level-item.target { border-color: rgba(139, 92, 246, 0.3); }

.level-label { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }

.level-item.entry .level-label i { color: var(--accent-green); } .level-item.stop .level-label i { color: var(--accent-red); } .level-item.target .level-label i { color: var(--accent-primary); }

.level-value { font-size: 14px; font-weight: 700; color: var(--text-primary); }

.chart-meta { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border-color); }

.meta-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }

.meta-item i { color: var(--accent-primary); }

/* ==================== SERVICES SECTION ==================== */ .services { padding: var(--section-padding) 0; background: var(--bg-secondary); }

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag { display: inline-block; color: var(--accent-primary); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }

.section-title { font-size: 42px; font-weight: 700; margin-bottom: 16px; }

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

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 32px; transition: all var(--transition-base); position: relative; overflow: hidden; }

.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient-primary); transform: scaleX(0); transition: transform var(--transition-base); }

.service-card:hover { border-color: var(--accent-primary); transform: translateY(-8px); box-shadow: var(--shadow-lg); }

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

.service-icon { width: 64px; height: 64px; background: rgba(139, 92, 246, 0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }

.service-icon i { font-size: 28px; color: var(--accent-primary); }

.service-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; }

.service-desc { font-size: 15px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }

.service-features { margin-bottom: 24px; }

.service-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border-subtle); }

.service-features li:last-child { border-bottom: none; }

.service-features li i { color: var(--accent-green); font-size: 12px; }

.service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-primary); font-size: 14px; font-weight: 600; }

.service-link:hover { gap: 12px; }
/* --- Platform Compatibility Styles --- */
.platform-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-secondary);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-primary);
}
.platform-badge i { color: var(--accent-primary); }

.platform-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.platform-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    background: rgba(139, 92, 246, 0.05);
}

/* --- Service FAQ Styles --- */
.service-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}
.service-faq-item:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-3px);
}
.service-faq-item .faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
    flex-shrink: 0;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .platforms-section > .container > div {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px !important;
    }
    .platforms-grid {
        margin-top: 20px;
    }
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
    .platform-badge {
        width: 100%; /* Full width buttons on mobile */
        justify-content: center;
    }
}

/* ==================== STATS SECTION ==================== */ .stats { padding: 80px 0; background: var(--bg-primary); }

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

.stat-box { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: all var(--transition-base); }

.stat-box:hover { border-color: var(--accent-primary); transform: translateY(-5px); }

.stat-icon { width: 56px; height: 56px; background: rgba(139, 92, 246, 0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }

.stat-icon i { font-size: 24px; color: var(--accent-primary); }

.stat-number { font-size: 36px; font-weight: 700; color: var(--accent-primary); margin-bottom: 4px; }

.stat-label { font-size: 14px; color: var(--text-muted); }

/* ==================== REVIEWS SECTION ==================== */ /* ==================== REVIEWS SECTION ==================== */ 
/* ==================== ADVANCED REVIEWS SECTION ==================== */ 
.reviews { 
    padding: var(--section-padding) 0; 
    background: var(--bg-primary); 
    overflow: hidden; 
    position: relative;
}

/* Faded Edges for the Slider */
.reviews-slider-container { 
    position: relative; 
    overflow: hidden; 
    padding: 40px 0; 
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews-track { 
    display: flex; 
    gap: 24px; 
    animation: slide 10s linear infinite; 
}

.reviews-track:hover { animation-play-state: paused; }

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

/* Advanced Premium Card Styling */
.review-card { 
    min-width: 320px; 
    max-width: 320px;
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(22, 33, 62, 0.5) 100%); 
    border: 1px solid rgba(139, 92, 246, 0.15); /* Faint purple border */
    border-radius: var(--radius-xl); 
    padding: 30px; 
    flex-shrink: 0; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy hover effect */
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Giant Background Quote Icon */
.review-card::before {
    content: '\f10d'; /* FontAwesome quote-left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    color: rgba(139, 92, 246, 0.05); /* Extremely faint purple */
    z-index: -1;
    transition: all 0.2s ease;
}

.review-card:hover { 
    border-color: var(--accent-primary); 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15); 
}

.review-card:hover::before {
    color: rgba(139, 92, 246, 0.12); /* Gets brighter on hover */
    transform: scale(1.1) rotate(-10deg);
}

.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }

/* Elegant Avatar Styling */
.reviewer-avatar { 
    width: 55px;  
    height: 55px; 
    border-radius: 50%; 
    overflow: hidden; 
    border: 2px solid var(--accent-primary); 
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3); /* Glow effect */
    flex-shrink: 0;
}

.reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; }

.reviewer-info { flex: 1; }

.reviewer-name { 
    font-size: 16px; 
    font-weight: 700; 
    margin-bottom: 4px; 
    display: flex;
    align-items: center;
}

/* Verified Badge */
.verified-badge {
    color: #10b981; /* Green */
    font-size: 13px;
    margin-left: 6px;
}

.reviewer-rating { display: flex; gap: 4px; }
.reviewer-rating i { font-size: 12px; color: var(--accent-amber); }

.review-body { margin-bottom: 20px; min-height: 80px; }

.review-body p { 
    font-size: 15px; 
    color: var(--text-secondary); 
    line-height: 1.6; 
}

.review-footer { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding-top: 16px; 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
}

.review-profit { 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    font-size: 13px; 
    font-weight: 700; 
    color: var(--accent-green); 
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.review-date { font-size: 12px; font-weight: 600; color: var(--text-muted); }

@media (max-width: 768px) {
    .review-card { min-width: 280px; max-width: 280px; padding: 24px; } 
    .reviews-slider-container { -webkit-mask-image: none; mask-image: none; } /* Remove mask on mobile for better scrolling */
}
/* ==================== PRICING SECTION ==================== */ .pricing { padding: var(--section-padding) 0; background: var(--bg-primary); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.pricing-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 36px; transition: all var(--transition-base); position: relative; }

.pricing-card:hover { border-color: var(--accent-primary); transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.pricing-card.featured { border-color: var(--accent-primary); background: linear-gradient(145deg, rgba(139, 92, 246, 0.08) 0%, var(--bg-card) 100%); transform: scale(1.05); }

.pricing-card.featured:hover { transform: scale(1.05) translateY(-8px); }

.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient-primary); color: white; padding: 6px 20px; border-radius: var(--radius-full); font-size: 12px; font-weight: 700; text-transform: uppercase; }

.pricing-header { text-align: center; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border-color); }

.pricing-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.6; } 100% { opacity: 1; } }

.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 4px; }

.pricing-currency { font-size: 20px; color: var(--accent-primary); }

.pricing-amount { font-size: 48px; font-weight: 800; color: var(--accent-primary); }

.pricing-period { font-size: 14px; color: var(--text-muted); }

.pricing-features { margin-bottom: 28px; }

.pricing-features li { display: flex; align-items: center; gap: 12px; padding: 12px 0; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border-subtle); }

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i { font-size: 14px; }

.pricing-features li i.fa-check { color: var(--accent-green); }

.pricing-features li i.fa-times { color: var(--text-muted); }

.pricing-btn { width: 100%; }

/* ==================== FAQ SECTION ==================== */ .faq { padding: var(--section-padding) 0; background: var(--bg-secondary); }

.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 16px; overflow: hidden; transition: all var(--transition-base); }

.faq-item:hover { border-color: var(--accent-primary); }

.faq-question { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }

.faq-question h4 { font-size: 16px; font-weight: 600; }

.faq-icon { width: 28px; height: 28px; background: rgba(139, 92, 246, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent-primary); transition: all var(--transition-base); }

.faq-item.active .faq-icon { transform: rotate(180deg); background: var(--accent-primary); color: white; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-base); }

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

.faq-answer p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ==================== TRADINGVIEW SECTION ==================== */ .tradingview-section { padding: var(--section-padding) 0; background: var(--bg-primary); }

.tradingview-container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.tradingview-content h2 { font-size: 40px; font-weight: 700; margin-bottom: 20px; }

.tradingview-content p { font-size: 17px; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7; }

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

.tv-stat { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 20px; text-align: center; }

.tv-stat-number { font-size: 28px; font-weight: 700; color: var(--accent-primary); margin-bottom: 4px; }

.tv-stat-label { font-size: 13px; color: var(--text-muted); }

.tradingview-chart { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 24px; }

/* ==================== ANALYSIS SECTION ==================== */ .analysis { padding: var(--section-padding) 0; background: var(--bg-secondary); }

.analysis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.analysis-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); overflow: hidden; transition: all var(--transition-base); }

.analysis-card:hover { border-color: var(--accent-primary); transform: translateY(-5px); }

.analysis-image { height: 220px; background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%); display: flex; align-items: center; justify-content: center; }

.analysis-image i { font-size: 64px; color: var(--accent-primary); opacity: 0.5; }

.analysis-content { padding: 24px; }

.analysis-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }

.analysis-content p { font-size: 15px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }

.analysis-btn { width: 100%; }

/* ==================== CONTACT SECTION ==================== */ .contact { padding: var(--section-padding) 0; background: var(--bg-primary); }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }

.contact-info h2 { font-size: 40px; font-weight: 700; margin-bottom: 20px; }

.contact-info > p { font-size: 16px; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7; }

.contact-details { margin-bottom: 32px; }

.contact-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-subtle); }

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

.contact-icon { width: 48px; height: 48px; background: rgba(139, 92, 246, 0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--accent-primary); font-size: 20px; }

.contact-text span { display: block; }

.contact-text .label { font-size: 13px; color: var(--text-muted); margin-bottom: 2px; }

.contact-text .value { font-size: 15px; font-weight: 600; }

.contact-social { display: flex; gap: 12px; }

/* Contact Form */ .contact-form { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 40px; }

.form-group { margin-bottom: 20px; }

.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text-secondary); }

.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 18px; background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-md); color: var(--text-primary); font-size: 15px; transition: var(--transition-base); }

.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent-primary); box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1); }

.form-group textarea { min-height: 140px; resize: vertical; }

.form-success { display: none; padding: 16px; background: rgba(16, 185, 129, 0.1); border: 1px solid var(--accent-green); border-radius: var(--radius-md); color: var(--accent-green); text-align: center; margin-bottom: 20px; }

.form-success.show { display: block; }

/* ==================== FOOTER ==================== */ .footer { background: var(--bg-secondary); padding: 60px 0 30px; border-top: 1px solid var(--border-color); }

.footer-cta { text-align: center; margin-bottom: 48px; }

.footer-cta h3 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }

.footer-cta p { font-size: 16px; color: var(--text-secondary); margin-bottom: 24px; }

.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border-color); margin-bottom: 30px; }

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }

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

.footer-links h4 { font-size: 16px; font-weight: 600; margin-bottom: 20px; }

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

.footer-links ul li a { font-size: 14px; color: var(--text-secondary); transition: var(--transition-base); }

.footer-links ul li a:hover { color: var(--accent-primary); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; }

.footer-bottom p { font-size: 14px; color: var(--text-muted); }

.footer-bottom-links { display: flex; gap: 24px; }

.footer-bottom-links a { font-size: 14px; color: var(--text-muted); transition: var(--transition-base); }

.footer-bottom-links a:hover { color: var(--accent-primary); }

/* ==================== PAGE HEADER ==================== */ .page-header { padding: 160px 0 80px; background: var(--bg-primary); text-align: center; position: relative; }

.page-header::before { content: ''; position: absolute; inset: 0; background: var(--gradient-hero); z-index: 0; }

.page-header .container { position: relative; z-index: 1; }

.page-header h1 { font-size: 48px; font-weight: 800; margin-bottom: 16px; }

.page-header p { font-size: 18px; color: var(--text-secondary); }

/* ==================== RESULTS SECTION ==================== */ .results { padding: var(--section-padding) 0; background: var(--bg-primary); }

.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }

.result-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: all var(--transition-base); }

.result-card:hover { border-color: var(--accent-primary); transform: translateY(-5px); }

.result-icon { width: 56px; height: 56px; background: rgba(139, 92, 246, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }

.result-icon i { font-size: 24px; color: var(--accent-primary); }

.result-icon.success i { color: var(--accent-green); } .result-icon.danger i { color: var(--accent-red); }

.result-value { font-size: 32px; font-weight: 700; color: var(--accent-primary); margin-bottom: 4px; }

.result-label { font-size: 14px; color: var(--text-muted); }

/* Trades Table */ .trades-table { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; }

.trades-table table { width: 100%; border-collapse: collapse; }

.trades-table th { background: rgba(139, 92, 246, 0.1); padding: 16px 20px; text-align: left; font-size: 13px; font-weight: 600; color: var(--accent-primary); text-transform: uppercase; letter-spacing: 0.5px; }

.trades-table td { padding: 16px 20px; border-bottom: 1px solid var(--border-color); font-size: 14px; }

.trades-table tr:last-child td { border-bottom: none; }

.trades-table tr:hover { background: rgba(139, 92, 246, 0.03); }

.trade-pair { font-weight: 600; }

.trade-type.buy { color: var(--accent-green); }

.trade-type.sell { color: var(--accent-red); }

.trade-result.win { color: var(--accent-green); font-weight: 600; }

.trade-result.loss { color: var(--accent-red); font-weight: 600; }

/* ==================== ABOUT SECTION ==================== */ .about { padding: var(--section-padding) 0; background: var(--bg-secondary); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.about-content h2 { font-size: 42px; font-weight: 700; margin-bottom: 24px; }

.about-content p { font-size: 16px; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.7; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }

.about-feature { display: flex; align-items: center; gap: 12px; }

.about-feature i { width: 40px; height: 40px; background: rgba(139, 92, 246, 0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--accent-primary); }

.about-feature span { font-size: 15px; font-weight: 500; }

.about-image { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); height: 400px; display: flex; align-items: center; justify-content: center; }

.about-image i { font-size: 100px; color: var(--accent-primary); opacity: 0.3; }
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
@media (max-width: 768px) {
    .mentor-image > div { right: 0 !important; bottom: -20px !important; }
}
/* Ticker Animation */
.ticker-scroll {
    display: inline-block;
    padding: 12px 0;
    animation: ticker 20s linear infinite;
}
.ticker-item {
    display: inline-block;
    padding: 0 20px;
    font-family: monospace;
    font-size: 13px;
    color: var(--text-secondary);
}
.ticker-item .profit { color: var(--accent-green); font-weight: bold; }
.ticker-item .loss { color: var(--accent-red); font-weight: bold; }

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

/* Progress Bars */
.progress-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: var(--accent-secondary);
    border-radius: 2px;
    animation: pulse-bar 3s infinite ease-in-out;
}

/* Feed Styling */
.feed-item {
    margin-bottom: 12px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
}
.feed-item .time { color: var(--text-muted); opacity: 0.6; }
.feed-item .sys { color: var(--accent-primary); font-weight: bold; }
.feed-item .trd { color: var(--accent-green); font-weight: bold; }
.feed-item .msg { color: var(--text-secondary); margin-left: 8px; }
.feed-item .msg.highlight { color: white; text-shadow: 0 0 5px rgba(16, 185, 129, 0.5); }

/* Animation Keyframes */
@keyframes radar-ping { 0% { width: 0; height: 0; opacity: 1; } 100% { width: 100%; height: 100%; opacity: 0; } }
@keyframes pulse-bar { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } }
@keyframes blink { 50% { opacity: 0.3; } }
@keyframes scroll-up { 0% { transform: translateY(0); } 100% { transform: translateY(-30%); } }

.radar-scan {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    border-radius: 50%; border: 1px solid rgba(139, 92, 246, 0.5);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: radar-ping 4s linear infinite; pointer-events: none;
}
.hotspot {
    position: absolute; width: 6px; height: 6px; background: #fff; border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary); animation: blink 2s infinite;
}
.feed-scroll-wrapper { animation: scroll-up 15s linear infinite; }

/* 1. Base Grid Layout */
.process-grid {
    counter-reset: step;
}

/* 2. Animated Connecting Line (Data Flow Effect) */
.process-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.1) 40%, 
        var(--accent-primary) 50%, 
        rgba(139, 92, 246, 0.1) 60%, 
        rgba(139, 92, 246, 0.1) 100%
    );
    background-size: 200% 100%;
    z-index: 0;
    display: block;
    animation: flow-line 3s linear infinite; /* Moves the light across */
}

@keyframes flow-line {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* 3. Card Styles */
.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
    height: 100%;
    display: block; /* For the link tag */
    text-decoration: none;
}

/* 4. Telegram Card Special Effects */
a.process-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-primary);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.25);
}

/* 5. Icon Styling & Pulse */
.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent-primary);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, background 0.3s;
}

/* Add Pulse to the Telegram Icon specifically */
a.process-card .process-icon {
    animation: soft-pulse 2s infinite;
}

@keyframes soft-pulse {
    0% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(139, 92, 246, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0); }
}

/* 6. "Fly Away" Animation on Hover */
a.process-card:hover .process-icon {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.1);
}

a.process-card:hover .process-icon i {
    animation: fly-away 0.6s forwards;
}

@keyframes fly-away {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-3px, 3px); } /* Wind up */
    100% { transform: translate(50px, -50px); opacity: 0; } /* Fly out */
}

/* 7. Typography */
.step-number {
    font-size: 60px;
    font-weight: 800;
    color: var(--bg-secondary);
    text-shadow: -1px -1px 0 var(--border-color), 1px -1px 0 var(--border-color), -1px 1px 0 var(--border-color), 1px 1px 0 var(--border-color);
    position: absolute;
    top: 10px;
    right: 15px;
    opacity: 0.3;
    line-height: 1;
}

.process-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.process-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* --- Process Section Styles --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Columns on Desktop */
    gap: 30px;
    margin-top: 50px;
    position: relative;
    counter-reset: step;
}

/* Connecting Line Animation */
.process-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        var(--accent-primary) 50%, 
        rgba(139, 92, 246, 0.1) 100%
    );
    z-index: 0;
    display: block;
}

/* FORCE RESPONSIVENESS FOR PROCESS SECTION */
@media (max-width: 992px) {
    .process-grid {
        /* Forces 2 columns on tablets */
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 20px !important;
    }
    .process-line {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .process-grid {
        /* Forces 1 column on mobile phones */
        grid-template-columns: 1fr !important; 
    }
}


/* Mobile Fix */
@media (max-width: 768px) {
    .dashboard-grid { grid-template-columns: 1fr !important; }
    .holo-card { min-height: 350px !important; }
}
 @media (max-width: 768px) {
        .timeline-container { padding-left: 20px; margin-left: 0; }
        .timeline-container > div:first-child { left: 20px; } /* Line */
        .timeline-item { flex-direction: column !important; padding: 0 !important; margin-bottom: 25px !important; padding-left: 40px !important; }
        .timeline-item > div:first-child { left: 20px !important; } /* Dot */
        .timeline-item > div:last-child { width: 100% !important; text-align: left !important; }
    }

/* result */

/* ==================== DETAILED MONTHLY ROW PERFORMANCE ==================== */
.detailed-performance-container {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Reduced gap between months */
    width: 100%;
    overflow: hidden; 
}

.performance-month-row {
    width: 100%;
}
.month-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    padding-left: 15px; /* Adds the perfect amount of space on the left side of the text */
}

.performance-cards-wrapper {
    display: flex;
    gap: 16px; 
    overflow-x: auto;
    padding-bottom: 20px;
    padding-left: 15px; /* Pushes the first card off the left wall */
    padding-right: 15px; /* Adds space on the right so the last card doesn't hit the wall when swiping */
    -webkit-overflow-scrolling: touch;
    
    /* Sleek Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) rgba(255,255,255,0.05);
}


.performance-cards-wrapper::-webkit-scrollbar { height: 6px; }
.performance-cards-wrapper::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
.performance-cards-wrapper::-webkit-scrollbar-thumb { background: var(--accent-primary); border-radius: 10px; }

/* The Base Card - Made much more compact */
.perf-card {
    border-radius: var(--radius-lg); /* Slightly sharper corners */
    padding: 24px; /* Tighter padding */
    min-width: 220px; /* Much narrower! */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.perf-card:hover {
    transform: translateY(-5px);
}

/* 1. Monthly Summary Card (Matches Reference Image) */
.perf-card.summary-card {
    background: linear-gradient(145deg, #a855f7 0%, #ec4899 100%);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
    border: none;
    min-width: 250px; /* Slightly wider than weekly cards so it stands out */
}

.summary-card .perf-header {
    font-size: 24px; /* Scaled down slightly */
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.summary-card .perf-stat {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px; /* Scaled down for compact size */
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-card .perf-stat strong,
.summary-card .text-success, 
.summary-card .text-danger {
    color: #ffffff !important; 
    font-size: 14px;
    font-weight: 700;
}

.summary-card .total-profit {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

/* 2. Weekly Cards (Dark Theme) */
.perf-card.weekly-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.weekly-card .perf-header {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.weekly-card .perf-stat {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 13px; /* Compact text */
    margin-bottom: 12px;
    align-items: center;
}

.weekly-card .perf-stat strong {
    color: var(--text-primary);
    font-size: 14px;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px; /* Thinner progress bar */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #10b981; 
    border-radius: 10px;
}

/* Buttons */
.perf-btn {
    margin-top: auto;
    width: 100%;
    padding: 10px; /* Thinner button */
    font-size: 13px; /* Smaller button text */
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

/* Green button for the main card */
.summary-card .perf-btn {
    background: #10b981; 
    color: #ffffff;
    border: none;
}

.summary-card .perf-btn:hover {
    background: #059669;
}

/* Transparent outline button for weekly cards */
.weekly-card .perf-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.weekly-card .perf-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

/* Empty "Coming Soon" Card */
.perf-card.weekly-card.empty {
    background: transparent;
    border: 1px dashed var(--border-color);
    justify-content: center;
    align-items: center;
}

.coming-soon {
    color: var(--text-muted);
    font-size: 13px;
}



/* ==================== BLOG SECTION ==================== */
/* ==================== PREMIUM BLOG SECTION ==================== */
.blog-section {
    position: relative;
    background: var(--bg-secondary);
    z-index: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
}

/* Image Container & Zoom Effect */
.blog-image {
    position: relative;
    width: 100%;
    height: 240px; /* Taller images look more premium */
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08); /* Smooth zoom effect on hover */
}

/* Category Badge */
.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Card Content Styling */
.blog-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(22, 33, 62, 0.6) 100%);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 16px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--accent-primary);
    font-size: 14px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.blog-title a {
    text-decoration: none;
    background: linear-gradient(to right, var(--accent-primary), var(--accent-primary)) 0% 100% / 0% 1px no-repeat;
    transition: background-size 0.3s;
    padding-bottom: 2px;
}

.blog-card:hover .blog-title a {
    color: var(--accent-primary-light);
    background-size: 100% 1px; /* Underline animation */
}

.blog-excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
    flex: 1; /* Pushes button to bottom */
    opacity: 0.9;
}

/* Read More Button */
.blog-read-more {
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: white;
    gap: 12px;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* Responsive Blog Adjustments */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-title { font-size: 20px; }
    .blog-image { height: 200px; }
}


/* ==================== RESPONSIVE ==================== */ @media (max-width: 1024px) { .hero .container { grid-template-columns: 1fr; text-align: center; }



.hero-subtitle {
    margin: 0 auto 36px;
}

.hero-buttons {
    justify-content: center;
}

.hero-stats {
    justify-content: center;
}

.hero-visual {
    display: none;
}

.services-grid,
.pricing-grid,
.results-grid {
    grid-template-columns: repeat(2, 1fr);
}

.stats-grid {
    grid-template-columns: repeat(2, 1fr);
}

.tradingview-container {
    grid-template-columns: 1fr;
}

.analysis-grid {
    grid-template-columns: 1fr;
}

.contact-wrapper {
    grid-template-columns: 1fr;
}

.footer-content {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) { :root { --section-padding: 70px; }



.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 20px;
    transition: right var(--transition-base);
    border-left: 1px solid var(--border-color);
}

.nav-menu.active {
    right: 0;
}

.hamburger {
    display: flex;
}

.hero-title {
    font-size: 40px;
}

.section-title {
    font-size: 32px;
}

.services-grid,
.pricing-grid,
.results-grid,
.stats-grid {
    grid-template-columns: 1fr;
}

.pricing-card.featured {
    transform: none;
}

.hero-buttons {
    flex-direction: column;
}

.hero-stats {
    flex-direction: column;
    gap: 24px;
}

.review-card {
    min-width: 300px;
}

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

.footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.tv-stats {
    grid-template-columns: 1fr;
}


}

/* ==================== ANIMATIONS ==================== */ .fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }

.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-left { opacity: 0; transform: translateX(-50px); transition: all 0.6s ease; }

.slide-left.visible { opacity: 1; transform: translateX(0); }

.slide-right { opacity: 0; transform: translateX(50px); transition: all 0.6s ease; }

.slide-right.visible { opacity: 1; transform: translateX(0); }



/* ==================== CALCULATOR SLIDER ==================== */
.custom-slider {
    width: 100%;
    height: 8px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-primary);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.6);
    transition: transform 0.2s;
}
.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

/* Sticky Mobile CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-top: 1px solid var(--accent-primary);
    z-index: 1000;
    text-align: center;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    /* Add padding to body so the footer doesn't get covered */
    body {
        padding-bottom: 80px; 
    }
    .scroll-top {
        bottom: 90px; /* move scroll button up above sticky bar */
    }
}


/* popstart */
/* ==================== LEAD MAGNET POPUP ==================== */
.lead-popup {
    position: fixed; inset: 0; background: rgba(15, 15, 26, 0.85); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center; z-index: 10000;
    opacity: 0; visibility: hidden; transition: all 0.3s ease; padding: 20px;
}
.lead-popup.active { opacity: 1; visibility: visible; }
.lead-popup-content {
    background: var(--bg-card); border: 1px solid var(--accent-primary); border-radius: var(--radius-xl);
    padding: 40px; max-width: 450px; width: 100%; position: relative;
    transform: translateY(30px); transition: transform 0.4s ease; box-shadow: var(--shadow-purple);
}
.lead-popup.active .lead-popup-content { transform: translateY(0); }
.close-popup {
    position: absolute; top: 15px; right: 15px; background: transparent; color: var(--text-muted);
    font-size: 20px; transition: color 0.2s;
}
.close-popup:hover { color: white; }
.lead-popup-header { text-align: center; margin-bottom: 25px; }
.lead-input {
    width: 100%; padding: 14px 18px; background: var(--bg-secondary); border: 1px solid var(--border-color);
    border-radius: var(--radius-md); color: white; margin-bottom: 15px;
}
.lead-input:focus { border-color: var(--accent-primary); outline: none; }



/* responsve */
/* =====================================================
   ENTERPRISE RESPONSIVE DESIGN (All Devices)
   ===================================================== */

/* 1. Global Fixes for Media and Tables */
img, svg, iframe, video {
    max-width: 100%;
    height: auto;
}

/* Perfect Mobile Tables (Prevents screen stretching) */
.trades-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
}
.trades-table table {
    min-width: 700px; /* Forces scrolling instead of squishing */
}

/* ==================== LAPTOPS (Max 1200px) ==================== */
@media (max-width: 1200px) {
    /* Slightly reduce main container padding and massive text */
    .hero-title { font-size: 48px; }
    .section-title { font-size: 38px; }
    
    /* Squeeze grids slightly so they don't hit the edges */
    .services-grid, .pricing-grid, .results-grid { gap: 20px; }
    .contact-wrapper { gap: 40px; }
    .about-grid { gap: 40px; }
}

/* ==================== IPAD & TABLETS (Max 1024px) ==================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px; /* Reduce white space */
    }

    /* Adjust Text for iPad */
    .hero-title { font-size: 42px; }
    .hero-subtitle { font-size: 16px; margin: 0 auto 32px; max-width: 80%; }
    
    /* Hero Layout Adjustment */
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 30px; }
    .hero-visual { display: block; max-width: 600px; margin: 0 auto; }

    /* Change 3/4 Column Grids to 2 Columns */
    .services-grid, 
    .pricing-grid, 
    .results-grid, 
    .stats-grid, 
    .analysis-grid, 
    .tv-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Side-by-side divs become stacked */
    .tradingview-container, 
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Realign specific content for stacked view */
    .about-features { text-align: left; }
    .contact-details { text-align: left; max-width: 400px; margin: 0 auto 30px; }
    .contact-social { justify-content: center; }
    
    /* Footer Grid */
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

/* ==================== IPHONES & ANDROIDS (Max 768px) ==================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px; /* Tighten up spacing for scrolling */
    }
    
    /* Base Mobile Typography Scaling */
    .hero-title { font-size: 36px; line-height: 1.25; }
    .section-title { font-size: 28px; line-height: 1.3; margin-bottom: 12px; }
    .hero-subtitle, .section-desc { font-size: 15px; }
    p { font-size: 15px; }

    /* Shrink Padding inside cards/divs so they fit nicely */
    .service-card { padding: 24px; }
    .pricing-card { padding: 28px 24px; }
    .stat-box { padding: 20px; }
    .result-card { padding: 20px; }
    .contact-form { padding: 24px; }

    /* Animated Hamburger Menu */
    .hamburger { display: flex; z-index: 1001; position: relative; }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile Slide-Out Menu */
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: rgba(22, 33, 62, 0.98); backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column; padding: 100px 24px 24px; gap: 20px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border-color);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-menu.active { right: 0; }
    .nav-actions { display: none; /* Hide header social icons to save space */ }

    /* All Grids to 1 Column */
    .services-grid, 
    .pricing-grid, 
    .results-grid, 
    .stats-grid, 
    .tv-stats {
        grid-template-columns: 1fr;
    }

    /* Stack buttons full-width for easy thumb tapping */
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    
    /* Remove the "pop out" scale effect on pricing on mobile so it fits the screen */
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    
    /* Adjust internal elements */
    .chart-levels { grid-template-columns: 1fr; gap: 10px; }
    .review-card { min-width: 85vw; /* Make reviews fit the screen width */ }
    
    /* Center Footer */
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { align-items: center; display: flex; flex-direction: column; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    
    .scroll-top { bottom: 20px; right: 20px; } 
}

/* ==================== SMALL IPHONES (Max 480px) ==================== */
@media (max-width: 480px) {
    /* Extreme text scaling for tiny screens */
    .hero-title { font-size: 32px; }
    .section-title { font-size: 26px; }
    .pricing-amount { font-size: 38px; }
    .stat-number { font-size: 28px; }
    
    /* Ensure no container overflow */
    .container { padding: 0 16px; }
    
    /* Compress specific oversized elements */
    .calculator-card { padding: 24px 16px; }
    .hero-stats { flex-direction: column; align-items: center; gap: 20px; }
    .contact-form { padding: 20px 16px; }
    
    /* Make trust banner stack nicely */
    .trust-banner { flex-direction: column; text-align: center; padding: 20px; }
    .trust-banner > div { flex-direction: column; justify-content: center; }
}

.floating-chat:hover { transform: scale(1.1); }

/* =====================================================
   ULTIMATE MOBILE RESPONSIVENESS PATCH
   (Forces inline desktop elements to stack on mobile)
   ===================================================== */

/* --- TABLETS & SMALL LAPTOPS (Max 992px) --- */
@media (max-width: 992px) {
    /* Fix Video Analysis Section on Services Page */
    .video-analysis > div {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 20px !important;
    }
    .video-analysis h3 {
        font-size: 28px !important;
    }
    
    /* Fix Trust Banner on Results Page */
    .trust-banner {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
        gap: 16px !important;
    }
    .trust-banner > div {
        flex-direction: column !important;
        justify-content: center !important;
        gap: 12px !important;
    }
}

/* --- IPHONES & ANDROIDS (Max 768px) --- */
@media (max-width: 768px) {
    /* Prevent any screen stretching */
    body, html {
        overflow-x: hidden !important;
        width: 100%;
    }

    /* 1. Fix TradingView Profile Header Structure */
    .tradingview-content > div[style*="display: flex"] {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
    
    /* Center the MentorMichael Premium text */
    .tradingview-content h2 {
        justify-content: center !important;
    }
    
    /* 2. Fix TradingView Bio Box */
    .tradingview-content p[style] {
        text-align: center !important;
        border-left: none !important;
        border-top: 3px solid var(--accent-primary) !important;
        border-radius: 0 0 var(--radius-md) var(--radius-md) !important;
    }

    /* 3. Fix TradingView 4-Column Stats (Changes to 2 columns) */
    .tv-stats[style] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* 4. Fix Market Allocation Grid */
    .tradingview-chart .chart-body > div[style] {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .tradingview-chart .chart-body {
        height: auto !important;
        padding: 15px 0 !important;
    }

    /* 5. Fix About Page Stats Chart */
    .about-visual .chart-levels[style] {
        grid-template-columns: 1fr !important;
    }
    
    /* 6. Fix Form and Calculator Margins */
    .lead-popup-content, .contact-form, .calculator-card {
        padding: 24px 16px !important;
    }
}

/* --- SMALL PHONES (Max 480px) --- */
@media (max-width: 480px) {
    /* Push TV Stats to 1 single column on tiny screens */
    .tv-stats[style] {
        grid-template-columns: 1fr !important;
    }
    
    /* Perfect Typography Scaling */
    .hero-title {
        font-size: 32px !important;
    }
    
    /* Force buttons to be full width for easy thumb tapping */
    .hero-buttons {
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
/* ==================== ARTICLE READING PAGE ==================== */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 32px !important;
    }
    .article-body .article-content p, 
    .article-body .article-content li {
        font-size: 15px !important;
    }
    .article-body > .container > div:first-child {
        height: 250px !important; /* Shrinks the big hero image on phones */
        margin-bottom: 30px !important;
    }
}
/* Add to styles.css */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: 1fr !important;
    }
    .toolkit-visual {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .toolkit-section > div > div > div {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .toolkit-section ul {
        align-items: center; /* Centers the list items on mobile */
    }
}

/* Add to styles.css */

/* Fix Asset Breakdown Grid on Mobile */
@media (max-width: 992px) {
    .breakdown-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Enable Horizontal Scroll for Trade Table on Mobile */
.trades-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Ensure table rows hover nicely */
.trades-table tr:hover td {
    background: rgba(139, 92, 246, 0.05);
    transition: background 0.3s ease;
}
/* Add to styles.css */

/* Guarantee Card Mobile Fix */
@media (max-width: 768px) {
    .guarantee-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 24px !important;
    }
    .guarantee-card div[style*="text-align: left"] {
        text-align: center !important;
    }
}

/* Comparison Table Mobile Fix */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
/* Ensure alternating row colors for readability */
.comparison-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}
.comparison-table tr:hover {
    background-color: rgba(139, 92, 246, 0.05);
    transition: background 0.2s ease;
}
/* Add to styles.css */

/* Channel Grid Mobile Fix */
@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: 1fr !important; /* Stack cards vertically */
        gap: 20px !important;
    }
    
    .locations-grid {
        flex-direction: column; /* Stack location bubbles */
        align-items: center;
        width: 100%;
    }
    
    .locations-grid > div {
        width: 100%;
        justify-content: center;
    }
}

/* Hover Effect for Channel Cards */
.channel-card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--accent-primary) !important;
    box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
    /* Stack the Platform section vertically */
    .platforms-section .container > div {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 30px !important;
    }
    /* Ensure the MT4/MT5 cards don't squish */
    .platforms-grid {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 768px) {
    .tv-stats {
        grid-template-columns: repeat(2, 1fr) !important; /* Changes 4 columns to a 2x2 grid */
        gap: 15px;
    }
    .tradingview-content p {
        border-left: none !important;
        border-top: 3px solid var(--accent-primary) !important;
        text-align: center;
    }
}
.trades-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
.trades-table {
    min-width: 600px; /* Forces a scrollbar instead of shrinking text */
}
/* FINAL RESPONSIVE PATCH */
@media (max-width: 768px) {
    /* Fix Platform Cards from g.JPG */
    .platforms-section .container > div {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .platforms-grid {
        grid-template-columns: 1fr !important;
    }
    /* Fix TradingView Stat Overlap */
    .tv-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
    /* Ensure Tables are Swipable */
    .trades-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ==================== HOW IT WORKS SECTION ==================== */
.process-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.process-card {
    flex: 1;
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.process-icon-box {
    width: 80px;
    height: 80px;
    background: var(--bg-elevated);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--accent-primary);
    border: 2px solid var(--border-color);
    position: relative;
}

.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-secondary);
    color: white;
    font-size: 12px;
    font-weight: 800;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-card);
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 60px; /* Aligns arrow with icons */
    font-size: 24px;
    color: var(--text-muted);
    opacity: 0.5;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.process-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Responsiveness for Process Section */
/* Mobile Responsiveness for Process Section */
@media (max-width: 900px) {
    .process-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-arrow {
        transform: rotate(90deg); /* Points down on mobile */
        padding-top: 0;
        margin: -20px 0; /* Tighten gap */
    }
    
    .process-card {
        width: 100%;
    }
}

/* Default TradingView Height */
#tradingview_gold_pro {
    height: 500px !important;
    min-height: 400px;
}

/* Mobile TradingView Height Fix */
@media (max-width: 768px) {
    #tradingview_gold_pro {
        height: 400px !important;
        min-height: 350px;
    }
}