/* Pro Trader Platform - Site-wide Styles */

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

body {
    background: #000000;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}



/* Brand Logo - Top Left Corner */
.brand-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.brand-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.brand-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(34, 211, 238, 0.3));
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(34, 211, 238, 1);
    border-radius: 50px;
    padding: 12px 32px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(34, 211, 238, 0.3),
        0 0 20px rgba(34, 211, 238, 0.4);
    min-width: 700px;
    height: 60px;
    display: flex;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
}

.nav-container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
    height: 100%;
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-brand-section {
    display: flex;
    align-items: center;
    min-width: 200px;
}

.nav-brand-text {
    color: #22d3ee;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
}

.nav-brand-text:hover {
    color: #0891b2;
}

.nav-items {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 1rem;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    padding: 8px 4px;
}

.nav-link:hover {
    color: #22d3ee;
}

.products-dropdown {
    position: relative;
    color: #e2e8f0;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 1rem;
}

.products-dropdown:hover {
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
}

.products-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Add delay before hiding dropdown */
.dropdown-menu {
    transition-delay: 0.1s;
}

.products-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    transition-delay: 0s;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
    display: inline;
    margin-left: 2px;
}

.products-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    position: absolute;
    top: 100%;
    left: -16px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 4px;
    min-width: 240px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    /* Add padding for better hover zone */
    padding-top: 12px;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #e2e8f0;
    text-decoration: none;
    transition: background 0.2s;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
}

.auth-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    height: 100%;
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

/* Mobile Navigation Styles */
@media screen and (max-width: 768px) {
    /* Adjust brand logo position on mobile to make room for title */
    .brand-logo {
        top: 15px !important;
        left: 15px !important;
    }
    
    .brand-logo img {
        height: 60px !important;
    }
    
    /* Remove all borders and make nav clean on mobile */
    .floating-nav {
        border: none !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(10px);
        border-radius: 20px !important;
        min-width: 90% !important;
        left: 5% !important;
        transform: none !important;
        padding: 12px 20px !important;
        height: 50px !important;
        top: 15px !important;
    }
    
    /* Show burger menu on mobile */
    .burger-menu {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3px;
        padding: 10px;
        margin-left: auto;
    }
    
    /* Hide desktop navigation items */
    .nav-items.desktop-nav {
        display: none !important;
    }
    
    /* Hide desktop auth buttons */
    .auth-buttons.desktop-auth {
        display: none !important;
    }
    
    /* Mobile nav container - center brand text between logo and burger */
    .nav-container {
        justify-content: center !important;
        align-items: center;
        gap: 16px;
        position: relative;
    }
    
    /* Position brand text between logo and burger on mobile */
    .nav-brand-section {
        flex: 1;
        text-align: center !important;
        margin-left: 100px !important; /* Move right to clear the logo */
        margin-right: 60px !important; /* Leave space for burger menu */
    }
    
    /* Make brand text more prominent on mobile */
    .nav-brand-text {
        font-size: 1rem !important;
        font-weight: 600 !important;
        color: #22d3ee !important;
    }
    
    /* Position burger menu absolutely to right */
    .burger-menu {
        position: absolute !important;
        right: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
}

.burger-menu:hover {
    background: rgba(34, 211, 238, 0.1);
}

.burger-line {
    width: 24px;
    height: 2px;
    background: #e2e8f0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.burger-menu:hover .burger-line {
    background: #22d3ee;
}

/* Mobile Menu Backdrop - covers entire screen for click-outside-to-close */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 998;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    cursor: pointer;
}

/* Mobile Menu Visibility Classes */
.mobile-menu-visible {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu-hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Mobile Menu Backdrop - full screen overlay */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 998;
    cursor: pointer;
}

/* Mobile Menu Dropdown */
.mobile-menu-dropdown {
    display: block;
    position: fixed;
    top: 70px; /* Position below the nav bar */
    left: 5%;
    right: 5%;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    z-index: 999; /* Above backdrop */
    animation: slideDown 0.3s ease-out;
    cursor: default;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 16px 20px 0;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    background: rgba(34, 211, 238, 0.1);
    border: 2px solid #22d3ee;
    color: #22d3ee;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 16px;
    text-align: center;
    display: block;
    width: calc(100% - 32px);
}

.mobile-menu-close:hover {
    background: rgba(34, 211, 238, 0.1);
    border-color: #22d3ee;
}

/* Mobile Menu Header */
.mobile-menu-header {
    padding: 16px;
    border-bottom: 1px solid rgba(34, 211, 238, 0.3);
    display: flex;
    justify-content: flex-end;
}

/* Close Button */
.close-btn {
    background: #22d3ee;
    border: none;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.close-btn:hover {
    background: #17a2b8;
}

/* Mobile Menu Closer */
.mobile-menu-closer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: #22d3ee;
    color: #000;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.mobile-menu-closer:hover {
    background: #17a2b8;
    transform: scale(1.05);
}

@media (min-width: 769px) {
    .mobile-menu-closer {
        display: none !important;
    }
}

/* Close option in mobile menu */
.mobile-close-option {
    background: rgba(34, 211, 238, 0.2) !important;
    border: 1px solid #22d3ee !important;
    color: #22d3ee !important;
    font-weight: bold !important;
    text-align: center !important;
    margin: 8px 0 !important;
}

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

.mobile-menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: left;
}

.mobile-nav-link:hover {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
}

.mobile-nav-link.mobile-auth-link {
    margin-top: 8px;
    text-align: center;
    font-weight: 600;
}

.mobile-nav-link.mobile-auth-link.primary {
    background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
    color: #0f172a;
}

.mobile-nav-link.mobile-auth-link.primary:hover {
    background: linear-gradient(135deg, #0891b2 0%, #065f73 100%);
    color: #0f172a;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(34, 211, 238, 0.2);
    margin: 12px 0;
}

.mobile-welcome-text {
    color: #22d3ee;
    font-weight: 500;
    padding: 12px 16px;
    text-align: center;
}

.mobile-logout-btn {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.mobile-logout-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.login-btn {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    transition: color 0.2s;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.login-btn:hover {
    color: #22d3ee;
}

.get-started-btn, .btn-primary {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    height: auto;
    line-height: 1.2;
    white-space: nowrap;
}

.get-started-btn:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.4);
}

/* Main Content */
.main-content, .container {
    padding-top: 100px;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-highlight, .highlight {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle, .subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    margin-bottom: 80px;
}

.cta-button {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(34, 211, 238, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(34, 211, 238, 0.4);
}

.arrow {
    font-size: 1.2rem;
}

/* Button Styles */
.btn-secondary {
    background: transparent;
    border: 1px solid rgba(226, 232, 240, 0.3);
    color: #e2e8f0;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: #22d3ee;
    color: #22d3ee;
}

/* Content Sections */
.platform-section, .features-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.platform-card, .feature-card {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.platform-title, .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.platform-description {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.2);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #22d3ee;
    margin-bottom: 12px;
}

.feature-description {
    color: #cbd5e1;
    line-height: 1.5;
    font-size: 0.95rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #22d3ee;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Game Changer Sections */
.game-changer-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.game-changer-card {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.game-changer-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-align: center;
}

.game-changer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.game-changer-item {
    text-align: left;
}

.game-changer-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.game-changer-item p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.future-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.future-card {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.future-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.future-description {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.future-cta-button {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(34, 211, 238, 0.3);
}

.future-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(34, 211, 238, 0.4);
}

/* How It Works Section */
.how-it-works {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 80px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: left;
}

.step-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    color: #94a3b8;
    line-height: 1.6;
}

/* CTA Sections */
.cta-section {
    text-align: center;
    margin-bottom: 80px;
}

/* Footer Styles */
.footer {
    background: rgba(15, 23, 42, 0.8);
    border-top: 1px solid rgba(34, 211, 238, 0.3);
    padding: 60px 20px 40px 20px;
    margin-top: 120px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.footer-logo {
    height: 60px;
    width: auto;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
    white-space: nowrap;
}

.footer-brand-subtitle {
    color: #22d3ee;
    font-size: 0.9rem;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #22d3ee;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
    color: #64748b;
    font-size: 0.9rem;
}

/* FlowChart Section */
.flowchart-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.flowchart-card {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.flowchart-diagram {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    opacity: 1;
}

/* Platform Icons */
.platform-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

/* Pricing Page Styles */
.pricing-section {
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(34, 211, 238, 0.2);
}

.pricing-card.selected {
    border: 1px solid #22d3ee;
    box-shadow: 
        0 0 20px rgba(34, 211, 238, 0.4),
        0 0 40px rgba(34, 211, 238, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.2);
}


.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-badge {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.plan-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.plan-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.plan-subtitle {
    color: #94a3b8;
    font-size: 1rem;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 32px;
}

.price {
    color: #22d3ee;
    font-size: 3rem;
    font-weight: 700;
}

.period {
    color: #94a3b8;
    font-size: 1.2rem;
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.features-list li {
    color: #e2e8f0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(34, 211, 238, 0.1);
    font-size: 0.95rem;
}

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

.pricing-btn {
    width: auto;
    text-align: center;
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.faq-question {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-answer {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Authentication Pages */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    padding-top: 100px;
}

.auth-form-container {
    width: 100%;
    max-width: 400px;
}

.auth-form {
    background: rgba(15, 23, 42, 0.9);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.auth-subtitle {
    color: #94a3b8;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.auth-description {
    color: #94a3b8;
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 32px;
}

.login-form,
.register-form,
.forgot-password-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-input {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #22d3ee;
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.2);
}

.form-input::placeholder {
    color: #64748b;
}

/* Auth Form Button */
.auth-button {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    border: none;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
    width: 100%;
    margin-top: 8px;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.4);
}

.auth-button:active {
    transform: translateY(0);
}

.auth-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.2);
}

/* Form Layout */
.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #22d3ee;
    cursor: pointer;
}

.checkbox-label {
    color: #94a3b8;
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1.4;
}

.forgot-password-link {
    color: #22d3ee;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.forgot-password-link:hover {
    color: #0891b2;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.form-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #22d3ee;
}

.checkbox-text {
    color: #94a3b8;
    font-size: 0.9rem;
}

.forgot-password {
    color: #22d3ee;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.forgot-password:hover {
    color: #0891b2;
}

.auth-btn {
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.4);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.auth-footer-text {
    color: #94a3b8;
    font-size: 0.9rem;
}

.auth-link {
    color: #22d3ee;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.auth-link:hover {
    color: #0891b2;
}

/* Responsive adjustments */
/* Responsive Navigation - Screen width checks */
@media (max-width: 1024px) {
    .floating-nav {
        min-width: 95%;
        left: 2.5%;
        transform: none;
    }
}

@media (max-width: 950px) {
    /* Hide desktop navigation and show burger menu */
    .nav-items.desktop-nav {
        display: none !important;
    }
    
    .auth-buttons.desktop-auth {
        display: none !important;
    }
    
    .burger-menu {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    /* Ensure mobile menu is visible on phones */
    .nav-items.desktop-nav {
        display: none !important;
    }
    
    .auth-buttons.desktop-auth {
        display: none !important;
    }
    
    .burger-menu {
        display: flex !important;
    }
    
    .floating-nav {
        min-width: 95%;
        left: 2.5%;
        transform: none;
        padding: 12px 24px;
    }
    
    .nav-container {
        gap: 20px;
    }
    
    .nav-brand-section {
        min-width: auto;
        flex: 1;
    }
}

@media (max-width: 768px) {
    /* Mobile phone specific rules */
    .nav-items.desktop-nav {
        display: none !important;
    }
    
    .auth-buttons.desktop-auth {
        display: none !important;
    }
    
    .burger-menu {
        display: flex !important;
    }
    
    .brand-logo img {
        height: 60px;
    }
    
    .floating-nav {
        min-width: 95%;
        left: 2.5%;
        transform: none;
        padding: 12px 20px;
    }
    
    .nav-container {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    /* Force burger menu on very small screens */
    .nav-items {
        display: none !important;
    }
    
    .auth-buttons {
        display: none !important;
    }
    
    .burger-menu {
        display: flex !important;
        order: 2;
    }
    
    .nav-brand-section {
        order: 1;
        flex: 1;
    }
    
    .floating-nav {
        min-width: 98%;
        left: 1%;
        padding: 8px 16px;
    }
}
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .main-content, .container {
        padding-top: 120px;
    }
    
    .flowchart-section {
        margin-top: 60px;
        margin-bottom: 40px;
    }
    
    .flowchart-card {
        padding: 30px 20px;
    }
    
    .flowchart-diagram {
        width: 100%;
        max-width: 100%;
    }
    
    .platform-card, .feature-card {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .platform-title, .section-title {
        font-size: 1.8rem;
    }
    
    .platform-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .game-changer-card {
        padding: 30px 20px;
    }
    
    .game-changer-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .game-changer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .future-card {
        padding: 40px 20px;
    }
    
    .future-title {
        font-size: 1.8rem;
    }
    
    .future-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    /* Keep footer horizontal on tablets, only stack on phones */
}
    
    .platform-icons {
        gap: 20px;
    }
    
    .platform-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* New Flow Diagram Styles */
.flow-diagram-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.flow-diagram-container {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.flow-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(34, 211, 238, 0.4);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.flow-platform:hover {
    border-color: rgba(34, 211, 238, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 211, 238, 0.15);
}

.platform-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
}

.platform-logo.small {
    width: 40px;
    height: 40px;
}

.platform-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.tradingview-logo {
    color: #22d3ee;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 16px;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 8px;
}

.flow-arrow {
    color: #22d3ee;
    font-size: 2rem;
    font-weight: bold;
}

.flow-connectors {
    width: 100%;
    height: 2px;
    position: relative;
}

.flow-connector-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #22d3ee, transparent);
}

.flow-bottom-platforms {
    display: flex;
    gap: 60px;
    justify-content: center;
    align-items: center;
}

.mt-platforms {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Updated Section Styles */
.metatrader-section,
.ctrader-dxtrade-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-card {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 16px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 40px;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.features-list .feature-item {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.features-list .feature-item:hover {
    border-color: rgba(34, 211, 238, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.15);
}

/* Game Changer Section Updates */
.game-changer-feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.game-changer-feature-description {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1rem;
}

/* Future Section Updates */
.future-section {
    max-width: 1000px;
    margin: 80px auto 60px auto;
    padding: 0 20px;
}

.future-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 12px 40px rgba(34, 211, 238, 0.1);
}

.future-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.future-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .flow-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }
    
    .flow-bottom-platforms {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-card {
        padding: 30px 20px;
    }
    
    .future-title {
        font-size: 2rem;
    }
    
    .future-description {
        font-size: 1.1rem;
    }
}

/* Mobile Menu Close Button (X button) */
.mobile-close-button {
    background: rgba(34, 211, 238, 0.1);
    border: 2px solid #22d3ee;
    color: #22d3ee;
    font-size: 20px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.mobile-close-button:hover {
    background: rgba(34, 211, 238, 0.2);
    border-color: #0891b2;
    color: #ffffff;
    transform: scale(1.1);
}

.mobile-close-button:active {
    transform: scale(0.95);
}

/* TradingView Connection Page Styles */

/* First Fold - Hero Section */
.tradingview-hero-section {
    background: transparent;
    padding: 140px 2rem 80px 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tradingview-hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.tradingview-hero-section .hero-highlight {
    color: #22d3ee;
}

.tradingview-hero-section .hero-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tradingview-hero-section .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tradingview-hero-section .cta-button.secondary {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(34, 211, 238, 0.8);
    color: #22d3ee;
}

.tradingview-hero-section .cta-button.secondary:hover {
    background: rgba(34, 211, 238, 0.1);
    transform: translateY(-2px);
}

.tradingview-hero-section .hero-note {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Broker Icons */
.broker-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.broker-icon img {
    height: 50px;
    width: auto;
    filter: grayscale(50%) brightness(0.8);
    transition: all 0.3s ease;
}

.broker-icon img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* Power Section - First Fold */
.power-section-first-fold {
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    text-align: center;
}

.power-section-first-fold .power-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #22d3ee;
}

.power-section-first-fold .power-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.power-section-first-fold .power-question {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.power-section-first-fold .highlight-text {
    color: #22d3ee;
    font-weight: 600;
}

.tradingview-highlight-box {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.tradingview-highlight-box p {
    font-size: 1.1rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.power-section-first-fold .power-footer {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-top: 1.5rem;
}

/* Second Fold - Missing Link Section */
.missing-link-section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.missing-link-card {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.missing-link-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    text-align: center;
}

.lightning-icon {
    font-size: 2rem;
    color: #22d3ee;
}

.missing-link-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.missing-link-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.missing-link-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(34, 211, 238, 0.05);
    border-radius: 10px;
}

.green-checkmark {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: bold;
    min-width: 24px;
}

.feature-content {
    flex: 1;
}

.missing-link-feature .feature-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.missing-link-feature .feature-description {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Features Grid - 2x2 Layout */
.tradingview-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tradingview-feature-card {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tradingview-feature-card:hover {
    transform: translateY(-5px);
    border-color: #22d3ee;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
}

.tradingview-feature-card .feature-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tradingview-feature-card .feature-icon {
    font-size: 2.5rem;
}

.tradingview-feature-card .feature-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.tradingview-feature-card .feature-card-description {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Third Fold - How It Works */
.tradingview-how-it-works {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-container {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-step {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
}

.how-it-works-step .step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #22d3ee;
    margin-bottom: 1rem;
}

.how-it-works-step .step-description {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.final-cta-container {
    margin-top: 2rem;
}

.tradingview-cta {
    background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.tradingview-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
    background: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tradingview-hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .broker-icons {
        gap: 2rem;
    }
    
    .broker-icon img {
        height: 40px;
    }
    
    .power-section-first-fold {
        padding: 2rem;
    }
    
    .power-section-first-fold .power-title {
        font-size: 2rem;
    }
    
    .tradingview-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .missing-link-card,
    .how-it-works-container {
        padding: 2rem;
    }
    
    .steps-container {
        gap: 1.5rem;
    }
}

/* Trade Copying Page Styles */

/* First Fold - Hero Section */
.trade-copying-hero-section {
    background: transparent;
    padding: 140px 2rem 80px 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.trade-copying-hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.trade-copying-hero-section .hero-highlight {
    color: #22d3ee;
}

.trade-copying-hero-section .hero-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trade-copying-hero-section .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

/* Market Domination Section */
.market-domination-section {
    padding: 3rem 0;
    margin-bottom: 4rem;
}

.market-domination-section .market-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

.market-domination-section .highlight-text {
    color: #22d3ee;
}

.trade-copying-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trade-copying-feature-card {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.trade-copying-feature-card:hover {
    transform: translateY(-5px);
    border-color: #22d3ee;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
}

.trade-copying-feature-card .feature-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.trade-copying-feature-card .feature-icon {
    font-size: 2.5rem;
}

.trade-copying-feature-card .feature-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.trade-copying-feature-card .feature-card-description {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Prop Firm Section */
.prop-firm-section {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.prop-firm-card {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.prop-firm-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.globe-icon {
    font-size: 2rem;
    color: #22d3ee;
}

.prop-firm-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.prop-firm-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
}

.prop-firm-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.prop-firm-feature {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.prop-firm-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #22d3ee;
    margin-bottom: 1rem;
}

.prop-firm-feature-description {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Second Fold - Trading Empire Section */
.trading-empire-section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trading-empire-section .empire-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

.empire-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.empire-feature-card {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.empire-feature-card:hover {
    transform: translateY(-5px);
    border-color: #22d3ee;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
}

.empire-feature-header {
    margin-bottom: 1.5rem;
}

.empire-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.empire-feature-description {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section-trade-copying {
    margin-top: 4rem;
}

.final-cta-card {
    background: rgba(15, 23, 42, 0.3);
    border: 2px solid rgba(34, 211, 238, 0.8);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.final-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.final-cta-description {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-highlight {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto 3rem auto;
    max-width: 600px;
}

.final-cta-highlight-title {
    font-size: 1.4rem;
    color: #22d3ee;
    margin-bottom: 1rem;
}

.final-cta-highlight-text {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.6;
}

.final-cta-button-container {
    margin-bottom: 2rem;
}

.trade-copying-cta {
    background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
}

.trade-copying-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
    background: linear-gradient(135deg, #0891b2 0%, #22d3ee 100%);
}

.final-tagline {
    margin-top: 2rem;
}

.tagline-main {
    font-size: 1.2rem;
    color: #22d3ee;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tagline-sub {
    font-size: 1rem;
    color: #94a3b8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trade-copying-hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .trade-copying-features-grid,
    .empire-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .prop-firm-card,
    .final-cta-card {
        padding: 2rem;
    }
    
    .market-domination-section .market-title,
    .trading-empire-section .empire-title {
        font-size: 2rem;
    }
    
    .final-cta-title {
        font-size: 1.8rem;
    }
}

/* Mobile Phone Only - Footer Stacking */
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }
}