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

        html {
            scroll-behavior: smooth;
        }

        /* Offset for fixed nav on anchor scroll */
        [id] {
            scroll-margin-top: 80px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        nav {
            position: sticky;
            top: 0;
            z-index: 30;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            padding: 1rem 0;
            border-bottom: 1px solid rgba(37, 99, 235, 0.1);
        }

        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #2563eb, #7c3aed, #2563eb);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
            letter-spacing: -0.5px;
        }
        
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a, .nav-links button {
            color: #374151;
            text-decoration: none;
            cursor: pointer;
            border: none;
            background: none;
            font-size: 1rem;
            transition: color 0.3s;
        }

        .nav-links a:hover, .nav-links button:hover {
            color: #2563eb;
        }

        .lang-selector {
            display: flex;
            gap: 0.5rem;
            border-left: 1px solid #e5e7eb;
            padding-left: 2rem;
        }

        /* Hide second language selector on desktop */
        nav .container > .lang-selector:last-child {
            display: none;
        }

        .lang-btn {
            padding: 0.5rem 0.75rem;
            border-radius: 0.375rem;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-weight: 600;
        }

        .lang-btn.active {
            background: #2563eb;
            color: white;
        }

        .lang-btn.inactive {
            background: #f3f4f6;
            color: #374151;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #374151;
            padding: 0.5rem;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.9);
            z-index: 100;
            padding: 2rem;
            overflow-y: auto;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .mobile-nav-header .logo {
            color: white;
        }

        .mobile-close {
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-nav-links a, .mobile-nav-links button {
            color: white;
            text-decoration: none;
            font-size: 1.25rem;
            border: none;
            background: none;
            cursor: pointer;
            text-align: left;
            padding: 0.5rem 0;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 5rem 0 3rem;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: white;
            color: #667eea;
            padding: 1rem 2.5rem;
            border-radius: 2rem;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-block;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        /* Features */
        .features {
            padding: 4rem 0;
            background: #f9fafb;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .feature-card p {
            color: #6b7280;
            line-height: 1.7;
        }

        /* Courses */
        .courses {
            padding: 4rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #1f2937;
            font-weight: 800;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .course-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        /* Course Progress Path */
        .course-progress-path {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin: 2rem auto 0;
            max-width: 700px;
            padding: 0 1rem;
        }

        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            flex-shrink: 0;
        }

        .progress-step span {
            font-size: 0.75rem;
            font-weight: 600;
            color: #9ca3af;
            transition: color 0.3s;
        }

        .progress-step:hover span {
            color: #667eea;
        }

        .progress-dot {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: #e5e7eb;
            border: 3px solid #d1d5db;
            transition: all 0.3s;
            position: relative;
        }

        .progress-dot.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
        }

        .progress-dot.active::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .progress-step:hover .progress-dot {
            border-color: #667eea;
            transform: scale(1.1);
        }

        .progress-line {
            flex: 1;
            height: 3px;
            background: #e5e7eb;
            min-width: 20px;
            margin-top: -1.2rem;
        }

        @media (max-width: 480px) {
            .course-progress-path {
                gap: 0;
            }
            .progress-step span {
                font-size: 0.6rem;
            }
            .progress-dot {
                width: 22px;
                height: 22px;
            }
        }

        .course-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2.5rem;
            border-radius: 1.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
        }

        .course-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }

        .course-level {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.9rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .course-card h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .course-card p {
            margin-bottom: 1.5rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .course-topics {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .course-topics li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .course-topics li:before {
            content: '✓';
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .course-duration {
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        /* Simulator */
        .simulator {
            padding: 4rem 0;
            background: #f9fafb;
        }

        .simulator-container {
            background: white;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            margin-top: 2rem;
        }

        .simulator-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .pair-selector {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .pair-btn {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .pair-btn.active {
            background: white;
            color: #667eea;
        }

        .price-display {
            font-size: 2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .price-change {
            font-size: 1rem;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            background: rgba(255,255,255,0.2);
        }

        .price-change.positive {
            color: #10b981;
        }

        .price-change.negative {
            color: #ef4444;
        }

        .chart-container {
            padding: 2rem;
            min-height: 400px;
            background: white;
        }

        .chart {
            width: 100%;
            height: 400px;
            background: linear-gradient(to bottom, #f9fafb 0%, white 100%);
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            position: relative;
        }

        .trading-controls {
            padding: 2rem;
            background: #f9fafb;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .control-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .control-group label {
            font-weight: 600;
            color: #374151;
        }

        .control-group input, .control-group select {
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            font-size: 1rem;
        }

        .trade-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 1rem;
        }

        .trade-btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .buy-btn {
            background: #10b981;
            color: white;
        }

        .buy-btn:hover {
            background: #059669;
            transform: translateY(-2px);
        }

        .sell-btn {
            background: #ef4444;
            color: white;
        }

        .sell-btn:hover {
            background: #dc2626;
            transform: translateY(-2px);
        }

        .balance-display {
            background: white;
            padding: 1.5rem;
            border-radius: 0.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1rem;
        }

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

        .balance-label {
            font-size: 0.9rem;
            color: #6b7280;
            margin-bottom: 0.25rem;
        }

        .balance-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
        }

        /* EA Promo Section */
        .ea-promo-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #eff6ff 100%);
            border-top: 3px solid #2563eb;
            border-bottom: 3px solid #2563eb;
            position: relative;
            overflow: hidden;
        }
        
        .ea-promo-section::before {
            content: '⚡';
            position: absolute;
            top: 1rem;
            left: 5%;
            font-size: 3rem;
            opacity: 0.2;
            animation: float 3s ease-in-out infinite;
        }
        
        .ea-promo-section::after {
            content: '💰';
            position: absolute;
            bottom: 1rem;
            right: 5%;
            font-size: 3rem;
            opacity: 0.2;
            animation: float 3s ease-in-out infinite 1.5s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .ea-promo-container {
            background: white;
            border-radius: 1.5rem;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
            border: 3px solid #2563eb;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .ea-promo-badge {
            display: inline-block;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-weight: 800;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
        }
        
        .ea-promo-title {
            font-size: 2rem;
            color: #1e3a8a;
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.3;
        }
        
        .ea-promo-highlight {
            background: linear-gradient(135deg, #e0f2f1, #ccfbf1);
            border: 2px solid #0d9488;
            border-radius: 1rem;
            padding: 1.5rem;
            margin-bottom: 2rem;
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f766e;
        }
        
        .ea-promo-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2rem;
            text-align: left;
        }
        
        .ea-promo-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: #f0f9ff;
            padding: 1rem;
            border-radius: 0.75rem;
            border: 2px solid #38bdf8;
        }
        
        .ea-promo-feature-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .ea-promo-feature-text {
            font-weight: 600;
            color: #0c4a6e;
            font-size: 0.9rem;
        }
        
        .btn-ea {
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: white;
            padding: 1.25rem 3rem;
            border-radius: 0.75rem;
            border: none;
            cursor: pointer;
            font-weight: 800;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1.25rem;
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-ea:hover {
            background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
        }
        
        .ea-promo-disclaimer {
            margin-top: 1.5rem;
            font-size: 0.75rem;
            color: #0c4a6e;
            font-style: italic;
        }

        /* Social Proof Section */
        .social-proof {
            padding: 3rem 0;
            background: white;
            border-bottom: 1px solid #e5e7eb;
        }

        .social-proof-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .proof-item {
            padding: 1.5rem 1rem;
        }

        .proof-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline;
            line-height: 1.2;
        }

        .proof-unit {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .proof-label {
            display: block;
            margin-top: 0.5rem;
            font-size: 0.95rem;
            color: #6b7280;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .social-proof-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            .proof-number {
                font-size: 2.25rem;
            }
        }

        /* FAQ */
        .faq {
            padding: 4rem 0;
        }

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

        .faq-item {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1f2937;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: #f9fafb;
        }

        .faq-toggle {
            transition: transform 0.3s;
            color: #667eea;
            font-weight: bold;
        }

        .faq-toggle.active {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 1.5rem;
            color: #6b7280;
            line-height: 1.7;
        }

        .faq-answer.active {
            max-height: 500px;
            padding: 0 1.5rem 1.5rem;
        }

       

        /* MT4 Download Section */
        .mt4-download {
            padding: 5rem 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .mt4-download .section-title,
        .mt4-download .section-subtitle {
            color: white;
        }

        .mt4-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .mt4-info h3 {
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .mt4-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mt4-features li {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 1rem;
            backdrop-filter: blur(10px);
        }

        .mt4-features .feature-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .mt4-features strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .mt4-features p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        .mt4-download-box {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .download-card {
            background: white;
            color: #1f2937;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .platform-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .download-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .download-card p {
            color: #6b7280;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .download-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .download-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
        }

        .download-icon {
            font-size: 1.3rem;
        }

        .download-info {
            margin-top: 1rem;
            color: #10b981;
            font-weight: 600;
        }

        .setup-steps {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 1rem;
            backdrop-filter: blur(10px);
        }

        .setup-steps h4 {
            color: white;
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .setup-steps ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .setup-steps li {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.75rem;
            line-height: 1.6;
        }

        .setup-steps strong {
            color: white;
        }

        .tip-box {
            background: rgba(255, 255, 255, 0.15);
            padding: 1rem;
            border-radius: 0.75rem;
            border-left: 4px solid #fbbf24;
            line-height: 1.6;
        }

        .tip-box strong {
            color: #fbbf24;
        }

        .alternative-platforms {
            margin-top: 3rem;
            text-align: center;
        }

        .alternative-platforms h3 {
            font-size: 1.75rem;
            margin-bottom: 2rem;
            color: white;
        }

        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .platform-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem 1.5rem;
            border-radius: 1rem;
            backdrop-filter: blur(10px);
        }

        .platform-emoji {
            font-size: 2.5rem;
            display: block;
            margin-bottom: 1rem;
        }

        .platform-item strong {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .platform-item p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
        }

        /* Footer */
        footer {
            background: #1f2937;
            color: white;
            padding: 3rem 0 2rem;
        }

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

        .footer-section h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: white;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: #9ca3af;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #374151;
            color: #9ca3af;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            nav .container > .lang-selector:first-of-type {
                display: none;
            }

            nav .container > .lang-selector:last-child {
                display: flex;
                border: none;
                padding-left: 0;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

          
            .simulator-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .trading-controls {
                grid-template-columns: 1fr;
            }
            
            .ea-promo-container {
                padding: 2rem 1.5rem;
            }

            .ea-promo-title {
                font-size: 1.5rem;
            }

            .ea-promo-features {
                grid-template-columns: 1fr;
            }

            .ea-promo-highlight {
                font-size: 1.1rem;
                padding: 1rem;
            }
            
            .btn-ea {
                width: 100%;
                text-align: center;
                padding: 1rem 2rem;
                font-size: 1rem;
            }

            .mt4-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .mt4-features li {
                padding: 1rem;
            }

            .setup-steps {
                padding: 1.5rem;
            }

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

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #7c3aed, #2563eb);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 9999;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
        }

        .scroll-to-top:active {
            transform: translateY(-2px);
        }

        .scroll-to-top svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: white;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* Accessibility: reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

        /* Responsive - Mobile */
        @media (max-width: 768px) {
            .scroll-to-top {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
            }

            .scroll-to-top svg {
                width: 20px;
                height: 20px;
            }
        }
        
        /* ===== FOREX TICKER TRADINGVIEW STYLES ===== */
        .forex-ticker-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 46px;
            z-index: 99999;
            background: #1e222d;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid #2563eb;
            overflow: hidden;
        }
        
        .forex-ticker-wrapper .tradingview-widget-container {
            height: 46px;
        }
        
        /* Offset per il body */
        body {
            padding-top: 46px !important;
        }
        
        /* Bottone toggle */
        .ticker-toggle {
            position: fixed;
            top: 46px;
            right: 15px;
            z-index: 99998;
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: white;
            border: none;
            padding: 4px 12px;
            border-radius: 0 0 6px 6px;
            cursor: pointer;
            font-size: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .ticker-toggle:hover {
            opacity: 1;
            transform: translateY(2px);
        }
        
        .forex-ticker-wrapper.hidden {
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }
        
        .forex-ticker-wrapper {
            transition: transform 0.3s ease;
        }
        
        body.ticker-hidden {
            padding-top: 0 !important;
        }
        
        .ticker-hidden .ticker-toggle {
            top: 0;
            border-radius: 0 0 6px 6px;
        }
        
        /* Mobile */
        @media (max-width: 768px) {
            .forex-ticker-wrapper {
                height: 52px;
            }
            
            body {
                padding-top: 42px !important;
            }
            
            .ticker-toggle {
                top: 52px;
                font-size: 8px;
                padding: 3px 8px;
            }
        }

/* === SIMULATOR STYLES === */
                .advanced-simulator {
                    background: white;
                    border-radius: 20px;
                    overflow: hidden;
                    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
                    margin-top: 30px;
                }

                .sim-main-grid {
                    display: grid;
                    grid-template-columns: 1fr 380px;
                    gap: 0;
                    min-height: 900px;
                }

                .sim-chart-section {
                    padding: 25px;
                    background: #f8f9fa;
                }

                .sim-pair-selector {
                    display: flex;
                    gap: 10px;
                    margin-bottom: 20px;
                    flex-wrap: wrap;
                }

                .sim-pair-btn {
                    flex: 1;
                    min-width: 120px;
                    padding: 14px;
                    border: 2px solid #e0e0e0;
                    background: white;
                    border-radius: 12px;
                    cursor: pointer;
                    font-weight: bold;
                    font-size: 1em;
                    transition: all 0.3s;
                }

                .sim-pair-btn:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
                }

                .sim-pair-btn.active {
                    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: white;
                    border-color: #667eea;
                }

                .sim-price-display {
                    background: white;
                    padding: 25px;
                    border-radius: 15px;
                    margin-bottom: 20px;
                    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
                }

                .sim-price-row {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    flex-wrap: wrap;
                    gap: 15px;
                }

                .sim-current-price {
                    font-size: 3em;
                    font-weight: bold;
                    color: #667eea;
                }

                .sim-price-change {
                    font-size: 1.2em;
                    font-weight: bold;
                    padding: 10px 18px;
                    border-radius: 10px;
                }

                .sim-price-change.positive {
                    background: #d1fae5;
                    color: #10b981;
                }

                .sim-price-change.negative {
                    background: #fee2e2;
                    color: #ef4444;
                }

                .sim-indicators {
                    display: flex;
                    gap: 10px;
                    margin-top: 18px;
                    flex-wrap: wrap;
                }

                .sim-indicator-badge {
                    padding: 8px 16px;
                    border-radius: 20px;
                    font-size: 0.85em;
                    font-weight: 600;
                }

                .sim-indicator-badge.bullish {
                    background: #d1fae5;
                    color: #10b981;
                }

                .sim-indicator-badge.bearish {
                    background: #fee2e2;
                    color: #ef4444;
                }

                .sim-indicator-badge.neutral {
                    background: #e5e7eb;
                    color: #6b7280;
                }

                .sim-timeframe-selector {
                    display: flex;
                    gap: 6px;
                    margin-bottom: 18px;
                    justify-content: center;
                    flex-wrap: wrap;
                }

                .sim-timeframe-btn {
                    padding: 10px 18px;
                    border: 1px solid #e0e0e0;
                    background: white;
                    border-radius: 8px;
                    cursor: pointer;
                    font-size: 0.9em;
                    transition: all 0.3s;
                    font-weight: 600;
                }

                .sim-timeframe-btn:hover {
                    background: #f3f4f6;
                }

                .sim-timeframe-btn.active {
                    background: #667eea;
                    color: white;
                    border-color: #667eea;
                }

                .sim-chart-container {
                    background: white;
                    padding: 20px;
                    border-radius: 15px;
                    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
                    height: 450px;
                    position: relative;
                }

                .sim-trading-panel {
                    background: white;
                    padding: 25px;
                    border-left: 1px solid #e0e0e0;
                    overflow-y: auto;
                }

                .sim-account-info {
                    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: white;
                    padding: 22px;
                    border-radius: 15px;
                    margin-bottom: 22px;
                }

                .sim-account-info h3 {
                    margin-bottom: 18px;
                    font-size: 1.3em;
                }

                .sim-account-row {
                    display: flex;
                    justify-content: space-between;
                    margin-bottom: 12px;
                    padding-bottom: 12px;
                    border-bottom: 1px solid rgba(255,255,255,0.2);
                }

                .sim-account-row:last-child {
                    border-bottom: none;
                    margin-bottom: 0;
                }

                .sim-account-label {
                    opacity: 0.9;
                    font-size: 0.95em;
                }

                .sim-account-value {
                    font-weight: bold;
                    font-size: 1.25em;
                }

                .sim-trade-controls {
                    background: #f8f9fa;
                    padding: 22px;
                    border-radius: 15px;
                    margin-bottom: 22px;
                }

                .sim-trade-controls h3 {
                    margin-bottom: 18px;
                    color: #374151;
                    font-size: 1.2em;
                }

                .sim-control-group {
                    margin-bottom: 18px;
                }

                .sim-control-group label {
                    display: block;
                    margin-bottom: 10px;
                    font-weight: 600;
                    color: #374151;
                    font-size: 0.95em;
                }

                .sim-control-group input {
                    width: 100%;
                    padding: 14px;
                    border: 2px solid #e0e0e0;
                    border-radius: 10px;
                    font-size: 1em;
                    transition: border-color 0.3s;
                }

                .sim-control-group input:focus {
                    outline: none;
                    border-color: #667eea;
                }

                .sim-trade-buttons {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 12px;
                    margin-top: 22px;
                }

                .sim-trade-btn {
                    padding: 16px;
                    border: none;
                    border-radius: 12px;
                    font-size: 1.1em;
                    font-weight: bold;
                    cursor: pointer;
                    transition: all 0.3s;
                    text-transform: uppercase;
                }

                .sim-buy-btn {
                    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
                    color: white;
                }

                .sim-buy-btn:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
                }

                .sim-sell-btn {
                    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
                    color: white;
                }

                .sim-sell-btn:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
                }

                .sim-reset-btn {
                    width: 100%;
                    padding: 14px;
                    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
                    color: white;
                    border: none;
                    border-radius: 10px;
                    font-weight: bold;
                    cursor: pointer;
                    margin-top: 18px;
                    transition: all 0.3s;
                }

                .sim-reset-btn:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
                }

                .sim-positions-section {
                    background: #f8f9fa;
                    padding: 18px;
                    border-radius: 15px;
                    margin-top: 22px;
                }

                .sim-positions-header {
                    font-weight: bold;
                    margin-bottom: 18px;
                    color: #374151;
                    font-size: 1.15em;
                }

                .sim-position-card {
                    background: white;
                    padding: 18px;
                    border-radius: 12px;
                    margin-bottom: 12px;
                    border-left: 4px solid #667eea;
                    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
                }

                .sim-position-card.buy {
                    border-left-color: #10b981;
                }

                .sim-position-card.sell {
                    border-left-color: #ef4444;
                }

                .sim-position-header {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 12px;
                }

                .sim-position-type {
                    font-weight: bold;
                    font-size: 1.1em;
                }

                .sim-position-type.buy {
                    color: #10b981;
                }

                .sim-position-type.sell {
                    color: #ef4444;
                }

                .sim-close-btn {
                    background: #ef4444;
                    color: white;
                    border: none;
                    padding: 8px 14px;
                    border-radius: 8px;
                    cursor: pointer;
                    font-size: 0.85em;
                    transition: all 0.3s;
                    font-weight: 600;
                }

                .sim-close-btn:hover {
                    background: #dc2626;
                    transform: scale(1.05);
                }

                .sim-position-details {
                    font-size: 0.9em;
                    color: #6b7280;
                    line-height: 1.9;
                }

                .sim-position-pl {
                    font-weight: bold;
                    font-size: 1.15em;
                    margin-top: 12px;
                    padding-top: 12px;
                    border-top: 1px solid #e5e7eb;
                }

                .sim-position-pl.positive {
                    color: #10b981;
                }

                .sim-position-pl.negative {
                    color: #ef4444;
                }

                .sim-no-positions {
                    text-align: center;
                    padding: 35px;
                    color: #9ca3af;
                }

                .sim-stats-grid {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    gap: 18px;
                    margin-top: 22px;
                }

                .sim-stat-card {
                    background: white;
                    padding: 18px;
                    border-radius: 12px;
                    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
                }

                .sim-stat-label {
                    color: #6b7280;
                    font-size: 0.85em;
                    margin-bottom: 8px;
                }

                .sim-stat-value {
                    font-size: 1.6em;
                    font-weight: bold;
                    color: #374151;
                }

                .sim-notification {
                    position: fixed;
                    top: 20px;
                    right: 20px;
                    padding: 20px 30px;
                    border-radius: 12px;
                    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
                    z-index: 1000;
                    animation: slideIn 0.3s ease-out;
                    max-width: 350px;
                }

                @keyframes slideIn {
                    from {
                        transform: translateX(400px);
                        opacity: 0;
                    }
                    to {
                        transform: translateX(0);
                        opacity: 1;
                    }
                }

                .sim-notification.success {
                    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
                    color: white;
                }

                .sim-notification.error {
                    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
                    color: white;
                }

                @media (max-width: 1024px) {
                    .sim-main-grid {
                        grid-template-columns: 1fr;
                    }

                    .sim-trading-panel {
                        border-left: none;
                        border-top: 1px solid #e0e0e0;
                    }

                    .sim-current-price {
                        font-size: 2.2em;
                    }

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

                @media (max-width: 768px) {
                    .sim-pair-selector {
                        grid-template-columns: 1fr 1fr;
                    }

                    .sim-current-price {
                        font-size: 1.8em;
                    }

                    .sim-chart-container {
                        height: 350px;
                    }
                }

                .sim-risk-dashboard {
                    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
                    padding: 20px;
                    border-radius: 15px;
                    margin-top: 22px;
                    color: white;
                }

                .sim-risk-dashboard h3 {
                    margin-bottom: 18px;
                    font-size: 1.3em;
                    display: flex;
                    align-items: center;
                    gap: 8px;
                }

                .sim-risk-score-container {
                    background: rgba(255, 255, 255, 0.2);
                    padding: 18px;
                    border-radius: 12px;
                    margin-bottom: 18px;
                    backdrop-filter: blur(10px);
                }

                .sim-risk-score-header {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-bottom: 12px;
                }

                .sim-risk-score-value {
                    font-size: 2.5em;
                    font-weight: bold;
                }

                .sim-risk-category {
                    font-size: 1.1em;
                    font-weight: 600;
                    padding: 6px 12px;
                    border-radius: 20px;
                    background: rgba(255, 255, 255, 0.3);
                }

                .sim-risk-bar {
                    width: 100%;
                    height: 12px;
                    background: rgba(255, 255, 255, 0.3);
                    border-radius: 10px;
                    overflow: hidden;
                    position: relative;
                }

                .sim-risk-bar-fill {
                    height: 100%;
                    transition: width 0.5s ease, background 0.5s ease;
                    border-radius: 10px;
                }

                .sim-metrics-grid {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 10px;
                    margin-bottom: 18px;
                }

                .sim-metric-card {
                    background: rgba(255, 255, 255, 0.2);
                    padding: 12px;
                    border-radius: 10px;
                    backdrop-filter: blur(10px);
                }

                .sim-metric-label {
                    font-size: 0.85em;
                    opacity: 0.9;
                    margin-bottom: 6px;
                }

                .sim-metric-value {
                    font-size: 1.4em;
                    font-weight: bold;
                }

                .sim-metric-icon {
                    font-size: 1.2em;
                    margin-right: 6px;
                }

                .sim-advice-section {
                    background: rgba(255, 255, 255, 0.2);
                    padding: 15px;
                    border-radius: 12px;
                    margin-bottom: 15px;
                    backdrop-filter: blur(10px);
                }

                .sim-advice-title {
                    font-weight: bold;
                    margin-bottom: 10px;
                    font-size: 1.05em;
                    display: flex;
                    align-items: center;
                    gap: 8px;
                }

                .sim-advice-list {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                }

                .sim-advice-list li {
                    padding: 8px 0;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                    font-size: 0.9em;
                    line-height: 1.5;
                }

                .sim-advice-list li:last-child {
                    border-bottom: none;
                }

                .sim-advice-icon {
                    margin-right: 8px;
                }

                .sim-best-pairs {
                    background: rgba(255, 255, 255, 0.2);
                    padding: 15px;
                    border-radius: 12px;
                    backdrop-filter: blur(10px);
                }

                .sim-best-pairs-title {
                    font-weight: bold;
                    margin-bottom: 12px;
                    font-size: 1.05em;
                }

                .sim-pair-stat {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 10px;
                    background: rgba(255, 255, 255, 0.15);
                    border-radius: 8px;
                    margin-bottom: 8px;
                }

                .sim-pair-stat:last-child {
                    margin-bottom: 0;
                }

                .sim-pair-name {
                    font-weight: 600;
                    font-size: 1em;
                }

                .sim-pair-performance {
                    display: flex;
                    flex-direction: column;
                    align-items: flex-end;
                }

                .sim-pair-pl {
                    font-weight: bold;
                    font-size: 1.1em;
                }

                .sim-pair-trades {
                    font-size: 0.85em;
                    opacity: 0.9;
                }

                .sim-no-data {
                    text-align: center;
                    padding: 20px;
                    opacity: 0.8;
                    font-size: 0.95em;
                }

/* === BROKER TABLE & CHATBOT STYLES === */
    .broker-table-section {
        padding: 4rem 0;
        background: #f9fafb;
    }
    
    .broker-table-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .broker-table-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #1f2937;
        font-weight: 800;
    }
    
    .broker-table-subtitle {
        text-align: center;
        font-size: 1.1rem;
        color: #6b7280;
        margin-bottom: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .broker-table-wrapper {
        background: white;
        border-radius: 1.5rem;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    .broker-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.95rem;
    }
    
    .broker-table thead {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }
    
    .broker-table th {
        padding: 1.25rem 1rem;
        text-align: left;
        font-weight: 700;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .broker-table tbody tr {
        border-bottom: 1px solid #e5e7eb;
        transition: all 0.3s ease;
    }
    
    .broker-table tbody tr:last-child {
        border-bottom: none;
    }
    
    .broker-table tbody tr:hover {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    }
    
    .broker-table td {
        padding: 1.25rem 1rem;
        color: #374151;
        vertical-align: top;
    }
    
    .broker-name {
        font-weight: 700;
        color: #1f2937;
        font-size: 1.05rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .broker-name::before {
        content: '🏦';
        font-size: 1.2rem;
    }
    
    .regulation-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
    }
    
    .regulation-badge {
        display: inline-block;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 0.25rem 0.6rem;
        border-radius: 1rem;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .regulation-badge.italy {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }
    
    .spread-value {
        font-weight: 700;
        color: #10b981;
        font-size: 1.1rem;
    }
    
    .spread-note {
        display: block;
        font-size: 0.8rem;
        color: #6b7280;
        margin-top: 0.25rem;
        font-weight: 400;
    }
    
    .features-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .features-list li {
        padding: 0.25rem 0;
        padding-left: 1.25rem;
        position: relative;
        color: #4b5563;
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .features-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #10b981;
        font-weight: bold;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .broker-table-wrapper {
            overflow-x: auto;
        }
        
        .broker-table {
            min-width: 900px;
        }
    }
    
    @media (max-width: 768px) {
        .broker-table-title {
            font-size: 1.8rem;
        }
        
        .broker-table-subtitle {
            font-size: 1rem;
        }

        /* Card layout for broker table on mobile */
        .broker-table-wrapper {
            overflow-x: visible;
        }

        .broker-table {
            min-width: unset;
        }

        .broker-table thead {
            display: none;
        }

        .broker-table tbody tr {
            display: block;
            background: white;
            border-radius: 1rem;
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            border: 1px solid #e5e7eb;
        }

        .broker-table tbody td {
            display: block;
            padding: 0.5rem 0;
            border: none;
            text-align: left;
        }

        .broker-table tbody td:first-child {
            padding-bottom: 0.75rem;
            margin-bottom: 0.75rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .broker-table tbody td:first-child .broker-name {
            font-size: 1.3rem;
        }

        .broker-table tbody td:nth-child(2)::before {
            content: 'Regolamentazione: ';
            font-weight: 600;
            color: #374151;
            display: block;
            margin-bottom: 0.4rem;
            font-size: 0.85rem;
        }

        .broker-table tbody td:nth-child(3)::before {
            content: 'Spread EUR/USD: ';
            font-weight: 600;
            color: #374151;
            display: inline;
            font-size: 0.85rem;
        }

        .broker-table tbody td:nth-child(4)::before {
            content: 'Caratteristiche: ';
            font-weight: 600;
            color: #374151;
            display: block;
            margin-bottom: 0.4rem;
            margin-top: 0.5rem;
            font-size: 0.85rem;
        }
    }
    
    /* Disclaimer */
    .broker-disclaimer {
        text-align: center;
        padding: 1.5rem;
        background: #fef3c7;
        border-radius: 0 0 1.5rem 1.5rem;
        font-size: 0.85rem;
        color: #92400e;
    }
    
    .broker-disclaimer strong {
        display: block;
        margin-bottom: 0.5rem;
    }

    /* ===== CHATBOT FLOATING WIDGET STYLES ===== */
    .chatbot-widget-button {
        position: fixed;
        bottom: 120px;
        right: 30px;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
        transition: all 0.3s ease;
        z-index: 10000;
        animation: chatbotEntrance 0.6s ease-out, pulse 2s ease-in-out 3;
        padding: 0;
        line-height: 1;
        overflow: hidden;
    }

    .chatbot-widget-button::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
        animation: shine 3s infinite;
    }

    .chatbot-widget-button svg {
        width: 40px;
        height: 40px;
        fill: white;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        position: relative;
        z-index: 1;
    }

    .chatbot-widget-button:hover {
        transform: scale(1.15);
        box-shadow: 0 12px 45px rgba(102, 126, 234, 0.8), 0 0 30px rgba(118, 75, 162, 0.6);
    }

    .chatbot-widget-button:active {
        transform: scale(0.92) rotate(0deg);
    }

    .chatbot-widget-button:focus {
        outline: 3px solid rgba(102, 126, 234, 0.5);
        outline-offset: 2px;
    }

    /* Chatbot Tooltip/Speech Bubble */
    .chatbot-tooltip {
        position: fixed;
        bottom: 200px;
        right: 30px;
        background: white;
        color: #2d3748;
        padding: 12px 18px;
        border-radius: 18px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        font-size: 14px;
        font-weight: 500;
        max-width: 200px;
        z-index: 10001;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        pointer-events: none;
        border: 1px solid #e2e8f0;
    }

    .chatbot-tooltip.active {
        opacity: 1;
        transform: translateY(0);
    }

    .chatbot-tooltip::after {
        content: '';
        position: absolute;
        bottom: -8px;
        right: 25px;
        width: 15px;
        height: 15px;
        background: white;
        transform: rotate(45deg);
        border-right: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }

    @media (max-width: 768px) {
        .chatbot-tooltip {
            bottom: 165px;
            right: 20px;
            font-size: 13px;
            max-width: 160px;
        }
    }


    /* Robot Icon Animation */
    .robot-icon {
        animation: robotBounce 2s ease-in-out infinite;
    }

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

    .robot-eye {
        animation: robotBlink 3s ease-in-out infinite;
    }

    @keyframes robotBlink {
        0%, 19%, 21%, 100% {
            r: 6;
        }
        20% {
            r: 2;
        }
    }

    .robot-light {
        animation: robotPulse 1.5s ease-in-out infinite;
    }

    @keyframes robotPulse {
        0%, 100% {
            r: 3;
            opacity: 1;
        }
        50% {
            r: 4;
            opacity: 0.7;
        }
    }

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

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
        }
        50% {
            box-shadow: 0 4px 30px rgba(102, 126, 234, 0.7);
        }
    }

    @keyframes float {
        0%, 100% {
            margin-bottom: 0px;
        }
        50% {
            margin-bottom: 10px;
        }
    }

    @keyframes wiggle {
        0%, 100% {
            transform: rotate(10deg);
        }
        25% {
            transform: rotate(-10deg);
        }
        75% {
            transform: rotate(10deg);
        }
    }

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

    /* Responsive for Chatbot Icon */
    @media (max-width: 768px) {
        .chatbot-widget-button {
            width: 60px;
            height: 60px;
            bottom: 90px;
            right: 20px;
        }
        .chatbot-widget-button svg {
            width: 35px;
            height: 35px;
        }
    }

    /* Mobile Responsive - Chatbot Button */
    @media (max-width: 768px) {
        .chatbot-widget-button {
            bottom: 90px;
            right: 20px;
            width: 64px;
            height: 64px;
        }

        .chatbot-widget-button svg {
            width: 36px;
            height: 36px;
        }
    }

    /* Overlay backdrop */
    .chatbot-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 997;
        animation: fadeIn 0.3s ease;
    }

    .chatbot-overlay.active {
        display: block;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
