/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    /* Colors */
    --primary-blue: #059669;
    /* Changed to Dark Green */
    --vibrant-blue: #10b981;
    /* Changed to Emerald Green */
    --light-blue: #34d399;
    /* Changed to Light Green */
    --emerald-green: #FF4136;
    --dark-green: #059669;
    --deep-navy: #0f172a;
    --navy-blue: #1e293b;
    --slate-gray: #334155;
    --light-gray: #f1f5f9;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: var(--spacing-xs) 0;
    transition: color var(--transition-base);
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--vibrant-blue);
}

.nav-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-left: auto;
    /* Push to right */
}

.nav-actions .btn {
    font-size: 0.95rem;
    padding: 0.5rem 1.25rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    /* background: var(--gradient-primary); */
    background: linear-gradient(135deg, #FF4136 0%, #FFB08E 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    /* background: var(--gradient-hero); */
    /*color: var(--white);*/
    overflow: hidden;
    padding: var(--spacing-2xl) 0;
}

.hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-content {
    text-align: left;
    max-width: 95% !important;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #FF4136 0%, #FFB08E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: var(--spacing-xl);
}

.hero-actions {
    align-items: center;
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.broker-logos {
    margin-top: var(--spacing-2xl);
}

.broker-text {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
}

.logos-grid {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.broker-logo {
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-image {
    width: 156%;
    height: auto;
    border-radius: var(--radius-xl);
    /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); */
    /* animation: float-gentle 6s ease-in-out infinite; */
}

@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--emerald-green);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--emerald-green);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--light-blue);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ===================================
   Stats Section
   =================================== */
.stats {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--light-gray);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 3rem;
    color: var(--vibrant-blue);
    margin-bottom: var(--spacing-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-text {
    padding-right: var(--spacing-lg);
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 500;
    color: var(--text-dark);
}

.about-feature i {
    color: var(--emerald-green);
    font-size: 1.25rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.about-image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ===================================
   Trading Levels Section
   =================================== */
.trading-levels {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.trading-levels-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-xl);
    max-width: 1100px;
    margin: 0 auto;
}

.trading-levels-grid .level-card {
    flex: 0 1 calc(50% - var(--spacing-xl));
    max-width: 380px;
}

.trading-levels-grid .level-card.featured {
    flex: 0 1 100%;
    max-width: 400px;
    margin: 0 auto var(--spacing-md);
    order: -1;
}

.level-card {
    position: relative;
    padding: var(--spacing-xl);
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.level-card:hover::before {
    transform: scaleX(1);
}

.level-card:hover {
    border-color: var(--vibrant-blue);
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.level-card.featured {
    border-color: var(--vibrant-blue);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.level-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    transition: all var(--transition-base);
}

.level-icon.beginner {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.2) 100%);
    color: var(--vibrant-blue);
}

.level-icon.advanced {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: var(--emerald-green);
}

.level-icon.portfolio {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(251, 146, 60, 0.2) 100%);
    color: #fb923c;
}

.level-card:hover .level-icon {
    transform: scale(1.1) rotate(5deg);
}

.level-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.level-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===================================
   Everything You Need Section
   =================================== */
/* ===================================
   Everything You Need Section
   =================================== */
.everything-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
    /* Changed from light gray to white to better match typical clean designs */
}

.everything-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    /* Changed to 60% / 40% split */
    gap: var(--spacing-2xl);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.everything-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Feature Card & Switching Logic */
.feature-card-wrapper {
    display: none;
    width: 100%;
    animation: fadeIn 0.4s ease-out;
    justify-content: center;
}

.feature-card-wrapper.active {
    display: flex;
}

/* Feature List Card Styles (Option Strategies) */
.feature-list-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: 20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
    /* Soft neumorphic-ish deep shadow */
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Practice Trade / Portfolio Card Styles */
.portfolio-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: 20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
    width: 100%;
    max-width: 550px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.portfolio-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    transition: all var(--transition-fast);
}

.portfolio-item:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.port-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-xs);
}

.port-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.port-body {
    margin-bottom: var(--spacing-xs);
}

.port-pnl {
    font-size: 1.125rem;
    font-weight: 700;
}

.port-meta {
    font-size: 0.75rem;
    color: var(--text-light);
}


.port-footer {
    font-size: 0.75rem;
    color: var(--text-light);
    border-top: 1px solid #e2e8f0;
    padding-top: 4px;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    text-align: left;
}

.testimonial-nav {
    display: flex;
    gap: var(--spacing-xs);
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--vibrant-blue);
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--vibrant-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.nav-btn:hover {
    background: var(--vibrant-blue);
    color: var(--white);
}

.testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid transparent;
    /* 3 cards per view minus gaps */
    flex: 0 0 calc((100% - 2 * var(--spacing-lg)) / 3);
    scroll-snap-align: start;
    min-width: 250px;
}

@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 calc((100% - var(--spacing-lg)) / 2);
    }
}

@media (max-width: 600px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Changed from flex-start to center for better alignment */
    margin-bottom: var(--spacing-md);
}

.client-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    /* Reset margin for better flex alignment */
}

.quote-icon {
    font-size: 2rem;
}

.quote-icon.blue {
    color: #4f46e5;
}

.quote-icon.teal {
    color: #06b6d4;
}

.quote-icon.orange {
    color: #f97316;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}


.text-blue {
    color: #3b82f6;
}

.text-red {
    color: #ef4444;
}

.text-green {
    color: #10b981;
}

.text-gray {
    color: #94a3b8;
}

.text-gray-sm {
    color: #94a3b8;
}

/* Special Featured/Ad Card Style */
.testimonial-card.special-add-card {
    background: linear-gradient(135deg, #FF4136 0%, #FFB08E 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.testimonial-card.special-add-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
}

.testimonial-card.special-add-card .card-header {
    margin-bottom: var(--spacing-sm);
    justify-content: center;
    width: 100%;
    z-index: 1;
}

.testimonial-card.special-add-card .client-name {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    z-index: 1;
}

.testimonial-card.special-add-card .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
    margin-bottom: var(--spacing-lg);
}

.testimonial-card.special-add-card .quote-icon {
    color: rgba(255, 255, 255, 0.2);
    font-size: 3rem;
}

.special-card-btn {
    z-index: 1;
    background: var(--white);
    color: #FF4136;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.special-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #fff;
    color: #FF4136;
}

/* Pro Tools / Scanner Card Styles */
.tools-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: 20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.tools-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.tools-header-row h3 {
    font-size: 1.25rem;
    margin: 0;
}

.badge-live {
    background: #fee2e2;
    color: #ef4444;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 99px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

.scanner-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.scanner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
    background: #f8fafc;
    border-radius: var(--radius-md);
    border-left: 3px solid transparent;
}

.scanner-item:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.scanner-info {
    display: flex;
    flex-direction: column;
}

.tk-symbol {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.tk-price {
    font-size: 0.8rem;
    color: var(--text-light);
}

.signal-tag {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.signal-tag.buy {
    background: #d1fae5;
    color: #059669;
}

.signal-tag.sell {
    background: #fee2e2;
    color: #b91c1c;
}

.signal-tag.neutral {
    background: #f1f5f9;
    color: #64748b;
}

.blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: #8b5cf6;
    opacity: 0.1;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.feature-showcase-image {
    width: 100%;
    /* max-width: 500px; Remove max-width to allow it to be bigger */
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.feature-showcase-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.feature-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg) var(--spacing-md);
    /* Row gap lg, Col gap md */
    position: relative;
    z-index: 2;
}

/* ... existing code ... */

.tab-links {
    display: flex;
    /* gap: var(--spacing-xl); */
    margin-bottom: var(--spacing-sm);
    /* Reduced from xl */
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0;
}

.tab-link {
    background: none;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: 600;
    font-size: 0.9rem;
    /* Reduced from 1rem */
    color: #64748b !important;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    text-decoration: none;
    border-left: 3px solid transparent;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
}

.tab-link:hover {
    color: var(--text-dark) !important;
}

.tab-link.active {
    color: #10b981 !important;
    /* Teal/green color like Sensibull */
    /* border-left-color: #3b82f6 !important; */
    /* Blue left border */
    border-bottom-color: #3b82f6 !important;
    /* Blue bottom border */
    background: #f0f9ff !important;
    /* Very light blue background */
}

.tab-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-top: var(--spacing-xs);
    /* Reduced from md */
    font-weight: 400;
}

.tab-content {
    position: relative;
    min-height: 100px;
    /* Reduced min-height */
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane p {
    font-size: 1.25rem;
    /* Larger text for impact */
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 0;
    font-weight: 500;
}

/* ===================================
   Process Section
   =================================== */
.process {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.process-card {
    position: relative;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 3rem;
    font-weight: 800;
    color: #e2e8f0;
}

.process-icon {
    font-size: 3rem;
    color: var(--vibrant-blue);
    margin-bottom: var(--spacing-md);
}

.process-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.process-description {
    color: var(--text-light);
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    padding: var(--spacing-xl);
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: var(--vibrant-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.feature-link {
    color: var(--vibrant-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.feature-link:hover {
    gap: var(--spacing-sm);
}

/* ===================================
   Pricing Section
   =================================== */
.pricing {
    padding: var(--spacing-2xl) 0;
    background: var(--light-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 3px solid var(--vibrant-blue);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-success);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--light-gray);
}

.pricing-plan {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.pricing-features li {
    padding: var(--spacing-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.pricing-features i {
    color: var(--emerald-green);
}

.pricing-features li.disabled i {
    color: var(--text-light);
}

.pricing-features li.disabled {
    color: var(--text-light);
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--vibrant-blue);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}

.faq-question i {
    transition: transform var(--transition-base);
    color: var(--vibrant-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-light);
}

/* More Questions Button */
.faq-more-btn-container {
    text-align: center;
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-lg);
}

.btn-more-questions {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 14px 32px;
    background: linear-gradient(135deg, #FF4136 0%, #FFB08E 100%);
    /* Match submit button */
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-more-questions:hover {
    background: linear-gradient(135deg, #FF4136 0%, #FFB08E 100%);
    /* Match submit button hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.btn-more-questions i {
    font-size: 0.875rem;
    transition: transform var(--transition-base);
}

.btn-more-questions:hover i {
    transform: translateX(4px);
}

/* Broker Request Integration Link */
.broker-cta-link {
    color: #3b82f6;
    font-weight: 700;
    text-decoration: none;
}

.broker-cta-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* FAQ Page Specific Styles */
.faq-page-header {
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    text-align: center;
}

.faq-page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.faq-page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.faq-page-content {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.faq-category {
    margin-bottom: var(--spacing-2xl);
}

.faq-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--vibrant-blue);
    display: inline-block;
}

.faq-back-btn-container {
    text-align: center;
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid var(--light-gray);
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--white);
    color: var(--vibrant-blue);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--vibrant-blue);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-back-home:hover {
    /* background: var(--vibrant-blue); */
    background: linear-gradient(135deg, #FF4136 0%, #FFB08E 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.btn-back-home i {
    font-size: 0.875rem;
    transition: transform var(--transition-base);
}

.btn-back-home:hover i {
    transform: translateX(-4px);
}

/* ===================================
   CTA Section
   =================================== */
.cta {
    padding: var(--spacing-2xl) 0;
    /* background: var(--gradient-hero); */
    background: linear-gradient(135deg, #FF4136 0%, #FFB08E 100%);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: var(--spacing-xl);
}

.cta-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.btn-call-us {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-call-us:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-call-us i {
    font-size: 1rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #4d5258;
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.footer-description {
    color: #94a3b8;
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--vibrant-blue);
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: #94a3b8;
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #94a3b8;
}

.footer-contact i {
    color: var(--vibrant-blue);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    color: #94a3b8;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ===================================
   Floating Action Buttons
   =================================== */
.floating-actions {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.floating-btn.whatsapp {
    background: #25d366;
}

.floating-btn.call {
    background: var(--vibrant-blue);
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 667px) {
    .dashboard-image {
        margin-top: 30px !important;
    }

    .hero-image {
        margin-top: 20px !important;
    }

    .feature-showcase-image img {
        margin-top: 20px !important;
    }
}
/* Center navigation menu on desktop screens */
@media (min-width: 769px) {
    .nav-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo {
        z-index: 10;
    }

    .nav-actions {
        z-index: 10;
    }
}
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .nav-menu {
        position: static;
        left: auto;
        top: auto;
        flex-direction: row;
        background-color: transparent;
        width: auto;
        text-align: left;
        box-shadow: none;
        padding: 0;
        gap: var(--spacing-sm);
    }

    .nav-menu.active {
        left: auto;
    }

    .nav-menu li {
        margin: 0;
    }

    .mobile-menu-toggle {
        display: none;
    }

    /* Hide login button and resize logo for mobile consistency */
    .nav-actions {
        display: none;
    }

    .logo img {
        height: 28px !important;
        width: auto !important;
        max-width: none !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .hero-content {
        text-align: center;
        max-width: 95% !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        justify-content: center;
    }

    .logos-grid {
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .about-text {
        padding-right: 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .trading-levels-grid {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .trading-levels-grid .level-card,
    .trading-levels-grid .level-card.featured {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0;
    }

    .everything-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .bro_sec {
        grid-template-columns: 1fr;
    }

    .tab-links {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
        border-bottom: none;
    }

    .tab-link {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .broker-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .broker-item {
        padding: var(--spacing-md);
    }

    .broker-symbol {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .broker-grid-main {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
    }

    .broker-grid-main .broker-item {
        padding: var(--spacing-md);
    }

    .broker-grid-main .broker-symbol {
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }

    .broker-grid-main .broker-name {
        font-size: 0.85rem;
    }

    .faq-page-title {
        font-size: 2rem;
    }

    .faq-page-subtitle {
        font-size: 1rem;
    }

    .faq-category-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {

    /* Prevent horizontal overflow - Force everything to fit */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw;
        width: 100%;
        height: auto;
        overflow-y: auto;
        scroll-snap-type: none !important;
    }

    /* Scroll Snap for Sections - REMOVED */
    section,
    footer {
        min-height: auto;
        display: block;
        padding-bottom: var(--spacing-xl);
        scroll-snap-align: none !important;
    }

    /* Reset specific layout flex properties that might conflict */
    section>.container,
    footer>.container {
        width: 100%;
    }

    /* Ensure all sections fit */
    section {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* Container and spacing */
    .container {
        padding: 0 12px;
        max-width: 100%;
        width: 100%;
    }

    /* Typography - Optimized for mobile */
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .section-title {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Buttons - Make them full width and touch-friendly */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
    }

    .hero-actions .btn {
        width: 100%;
    }

    /* CTA Section */
    .cta-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .btn-call-us {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95rem;
        justify-content: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    /* Trading Levels */
    .level-card {
        padding: var(--spacing-lg);
    }

    .level-title {
        font-size: 1.1rem;
    }

    .level-description {
        font-size: 0.875rem;
    }

    /* Everything Section - Tabs */
    .everything-content {
        overflow-x: hidden;
        gap: var(--spacing-sm);
        display: flex;
        flex-direction: column;
    }

    .everything-video-container {
        order: 2;
        width: 100%;
        display: block;
        margin-top: var(--spacing-sm);
        min-height: 250px;
        background: #f8f9fa;
        border-radius: 8px;
        padding: var(--spacing-sm);
    }

    .everything-tabs {
        order: 1;
        width: 100%;
        flex: none !important;
    }

    .tab-links {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin-bottom: var(--spacing-md);
        overflow-x: visible;
        justify-content: space-between;
    }

    .tab-links::-webkit-scrollbar {
        display: none;
    }

    .tab-link {
        padding: 8px 8px;
        font-size: 0.65rem;
        white-space: normal;
        flex: 1;
        min-width: 0;
        text-align: center;
        border-bottom: 2px solid transparent;
        border-radius: 4px 4px 0 0;
        line-height: 1.2;
        font-weight: 500;
        transition: all 0.2s ease;
        word-wrap: break-word;
    }

    .tab-link.active {
        border-bottom-color: var(--vibrant-blue);
        background: rgba(59, 130, 246, 0.08);
        color: var(--vibrant-blue);
    }

    .tab-description {
        font-size: 0.85rem;
        padding: var(--spacing-sm) var(--spacing-md);
        padding-bottom: var(--spacing-xs);
        line-height: 1.5;
        text-align: left;
    }

    /* Ensure images don't overflow */
    img,
    .hero-image,
    .feature-showcase-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain;
        display: block !important;
    }

    .dashboard-image {
        width: 85% !important;
        max-width: 350px !important;
        height: auto !important;
        margin: 0 auto;
        display: block !important;
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        display: flex;
        /* Ensure flex/grid behavior for ordering */
        flex-direction: column;
    }

    .hero-image {
        order: -1;
        margin-bottom: var(--spacing-md);
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
    }

    /* Trading Levels - Clean Vertical Stack for Mobile */
    .trading-levels .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .trading-levels-grid {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xl);
        padding-left: 0;
        padding-right: 0;
    }

    .trading-levels .section-header,
    .trading-levels .section-title {
        padding-left: 0;
        padding-right: 0;
    }

    .trading-levels-grid .level-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0;
        text-align: center;
    }

    .trading-levels-grid .level-card:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .trading-levels-grid .level-card.featured {
        background: transparent !important;
        border: none !important;
        order: unset;
        flex: unset;
    }

    .level-icon {
        width: 70px;
        height: 70px;
        margin-bottom: var(--spacing-sm);
    }

    /* Remove top gradient line */
    .level-card::before {
        display: none !important;
    }

    /* Fix for feature images on mobile */
    .everything-video-container {
        width: 100%;
        max-width: 100%;
        display: block !important;
        min-height: 200px;
    }

    .visual-content-wrapper {
        width: 100%;
        max-width: 100%;
        display: block !important;
    }

    #feature-image {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        max-width: 100%;
    }

    .feature-list-card {
        width: 100%;
        max-width: 100%;
    }

    /* Broker Section */
    .broker-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .broker-grid-main .broker-item {
        padding: var(--spacing-sm);
        min-height: 160px;
    }

    .broker-icon-box {
        width: 50px;
        height: 50px;
    }

    .broker-grid-main .broker-symbol {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .broker-grid-main .broker-name {
        font-size: 0.75rem;
    }

    /* Testimonials */
    /* Testimonials - Mobile Single Card with Spacing */
    .testimonials-grid {
        padding: 0 25px 30px 25px;
        /* Spacing on sides */
        gap: 25px;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        flex: 0 0 100% !important;
        /* Full width of constraints */
        width: 100% !important;
        max-width: 100% !important;
        padding: var(--spacing-lg);
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        scroll-snap-align: center;
        border: 1px solid #f0f0f0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border-radius: 12px;
    }

    .client-img {
        width: 40px !important;
        height: 40px !important;
    }

    .client-name {
        font-size: 0.95rem;
    }

    .client-position {
        font-size: 0.75rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    /* FAQ Section */
    .faq-question {
        padding: var(--spacing-md);
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: var(--spacing-md);
        font-size: 0.85rem;
    }

    .btn-more-questions {
        width: 100%;
        padding: var(--spacing-md);
        font-size: 0.9rem;
        justify-content: center;
        display: inline-flex;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    /* Floating Buttons */
    .floating-actions {
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Navigation */
    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Hide login button in header on mobile */
    .nav-actions {
        display: none;
    }

    /* Feature Cards */
    .feature-card {
        padding: var(--spacing-lg);
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }

    /* Pricing Cards */
    .pricing-card {
        padding: var(--spacing-lg);
    }

    .pricing-plan {
        font-size: 1.1rem;
    }

    .pricing-price .amount {
        font-size: 2rem;
    }

    /* Process Cards */
    .process-card {
        padding: var(--spacing-lg);
    }

    .process-title {
        font-size: 1rem;
    }

    .process-description {
        font-size: 0.85rem;
    }

    /* Back to Home Button */
    .btn-back-home {
        width: 100%;
        justify-content: center;
        padding: var(--spacing-md);
    }
}

/* Extra Small Devices (320px - 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .broker-grid-main {
        grid-template-columns: repeat(2, 1fr);
        /* Force 2 columns even on small screens */
    }

    .broker-item {
        width: 100%;
        max-width: 100%;
        padding: 10px 5px;
        /* Even smaller padding for tight fits */
        min-height: 110px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

.everything-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.everything-video-container {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dashboard-video {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

.everything-tabs {
    flex: 0 0 400px;
}


.video-fade {
    opacity: 0;
}

/* ===================================
   Broker Mini Box Section
   =================================== */
.broker-section {
    background: var(--white);
    padding: var(--spacing-2xl) 0;
}

.broker-grid-main {
    display: flex;
    /* Changed from grid to flex for the row of cards */
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.broker-item {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 20px;
    width: 160px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-base);
    text-align: center;
    cursor: pointer;
    /* Resetting potential conflicting styles from previous grid layout */
    margin: 0;
}

.broker-item:hover {
    border-color: #ff8e53;
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.broker-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    box-shadow: 0 10px 15px -3px rgba(255, 107, 107, 0.3);
    position: relative;
    padding: 2px;
}

/* Styling for the image-based logos */
.broker-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    background: white;
    /* Clean look for all logos */
}

.broker-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-top: auto;
}

/* Overriding previous responsive rules for broker grid */
@media (max-width: 600px) {
    .broker-grid-main {
        gap: var(--spacing-sm);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .broker-item {
        width: 100%;
        max-width: 100%;
        min-height: 120px;
        /* Smaller height */
        padding: 15px 10px;
        /* Smaller padding */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .broker-icon-box {
        width: 50px;
        /* Smaller icon */
        height: 50px;
        margin-bottom: 8px;
    }

    .broker-grid-main .broker-name {
        font-size: 0.85rem;
        /* Smaller text */
        margin-top: 5px;
    }

    .nav-menu {
        margin-left: 5%;
    }
}

/* ===================================
   About Us Page
   =================================== */
.about-hero {
    padding: var(--spacing-2xl) 0;
    text-align: center;
    background: var(--white);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.hiring-tag {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline */
.journey-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: var(--spacing-2xl) auto;
    padding-top: 20px;
}

.timeline-line {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border: 3px solid #dbeafe;
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    box-sizing: content-box;
}

.timeline-content {
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 0 var(--spacing-xs);
}

/* Backers */
.backers-box {
    max-width: 500px;
    margin: var(--spacing-2xl) auto var(--spacing-sm);
    padding: var(--spacing-lg);
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.backed-text {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.backer-logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sparkle-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #fbbf24;
    font-size: 1.5rem;
}

.backer-note {
    text-align: center;
    font-size: 0.75rem;
    color: #cbd5e1;
}

/* Culture */
.culture-section {
    padding: var(--spacing-2xl) 0;
    background: #f8fafc;
}

.culture-description {
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1rem;
    line-height: 1.7;
}

.culture-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.culture-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.culture-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Leadership */
.leadership-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
}

.leader-card {
    text-align: center;
}

.leader-image-container {
    width: 100%;
    aspect-ratio: 1;
    background: #cfcfcf;
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    position: relative;
}

.leader-placeholder-img {
    width: 100%;
    height: 100%;
    background: #cbd5e1;
    /* Generic gray placeholder */
    background-image: linear-gradient(135deg, #cbd5e1 0%, #e2e8f0 100%);
}

.leader-hover-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: left;
}

.leader-image-container:hover .leader-hover-info {
    opacity: 1;
}

.leader-bio {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.leader-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.leader-title {
    font-size: 0.85rem;
    color: var(--text-light);
}

.hiring-cta-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
    border-top: 1px solid #f1f5f9;
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   Schedule Demo Section
   =================================== */
.schedule-demo-section {
    padding: var(--spacing-2xl) 0;
    background: #f8fafc;
}

.demo-wrapper {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    min-height: 600px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Side - Purple Content */
.demo-content {
    flex: 2;
    background: linear-gradient(135deg, #FF4136 0%, #FFB08E 100%);
    padding: var(--spacing-2xl);
    color: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.demo-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 4px;
}

.shape-1 {
    width: 100px;
    height: 100px;
    border: 15px solid var(--white);
    top: 10%;
    left: 10%;
    transform: rotate(45deg);
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--white);
    bottom: 20%;
    right: 15%;
    border-radius: 50%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    border: 2px solid var(--white);
    bottom: -50px;
    left: -50px;
    border-radius: 50%;
}

.demo-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
    color: var(--white);
}

.demo-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 80%;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    color: var(--white);
}

/* Right Side - Form */
.demo-form-container {
    flex: 3;
    padding: var(--spacing-2xl);
    background: var(--white);
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    height: 100%;
    justify-content: center;
}

.form-row {
    display: flex;
    gap: var(--spacing-lg);
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    background: #f8fafc;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    border-color: #7c3aed;
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-submit {
    margin-top: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #94a3b8;
    max-width: 60%;
    margin: 0;
}

.disclaimer-link {
    color: #3b82f6;
    font-weight: 700;
    text-decoration: none;
}

.disclaimer-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.btn-submit-demo {
    background: linear-gradient(135deg, #FF4136 0%, #FFB08E 100%);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-submit-demo:hover {
    background: linear-gradient(135deg, #FF4136 0%, #FFB08E 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

@media (max-width: 900px) {
    .demo-wrapper {
        flex-direction: column;
    }

    .demo-content {
        padding: var(--spacing-xl);
        min-height: 250px;
    }

    .demo-form-container {
        padding: var(--spacing-xl);
    }

    .form-row {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .form-submit {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .form-disclaimer {
        max-width: 100%;
        order: 2;
    }

    .btn-submit-demo {
        width: 100%;
        order: 1;
    }
}

/* Compact Demo Form for Mobile (One Screen Goal) */
@media (max-width: 600px) {
    .schedule-demo-section {
        padding: 10px 0;
    }

    .demo-wrapper {
        border-radius: 0;
        margin: 0;
        box-shadow: none;
    }

    .demo-content {
        padding: 20px;
        min-height: auto;
        text-align: center;
    }

    .demo-title {
        font-size: 1.75rem;
        margin-bottom: 0;
    }

    .demo-subtitle {
        display: none;
        /* Hide subtitle to fit one screen */
    }

    .demo-form-container {
        padding: 20px;
    }

    /* Compacting Form Inputs */
    .demo-form {
        gap: var(--spacing-md);
    }

    .form-row {
        flex-direction: row !important;
        /* Keep side-by-side on mobile */
        gap: var(--spacing-sm);
    }

    .form-group {
        flex: 1;
        /* Equal width for all fields */
    }

    .form-group input,
    .form-group select {
        padding: 10px 14px;
        font-size: 0.95rem;
        width: 100%;
    }

    .btn-submit-demo {
        padding: 12px;
        width: 50%;
        margin: 0 auto;
    }

    .btn-more-questions {
        padding: 12px;
        width: 50%;
        margin: 0 auto;
        justify-content: center;
    }

    /* FAQ Mobile Fixes */
    .faq .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-header {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Reduce space above More Questions button */
    .faq-more-btn-container {
        margin-top: var(--spacing-md);
        padding-top: 0;
    }

    /* Fix Header on Mobile - Don't Scroll */
    .header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }

    /* Force Login Button Visibility on Mobile */
    .nav-actions {
        display: block !important;
        margin-left: auto;
        /* Push to right */
        margin-right: 10px;
        /* Space before hamburger if present */
    }

    .nav-actions .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .mobile-menu-toggle {
        margin-left: 0;
        /* Adjust spacing */
    }

    /* Broker Section - 3 Columns with Auto Sizing */
    .broker-grid-main {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px;
        padding: 0 15px 20px 15px;
    }

    .broker-item {
        width: 100%;
        height: auto;
        padding: 12px 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .broker-icon-box {
        width: 45px;
        height: 45px;
    }

    .broker-name {
        font-size: 0.75rem;
        margin-top: 6px;
    }

    /* Ensure answer is fully visible only when active */
    .faq-answer {
        display: none;
        padding-top: 20px;
    }

    .faq-item.active .faq-answer {
        display: block;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 15px;
        /* Add padding for content */
    }

    .faq-question {
        padding: 15px;
        /* Adjust padding for touch */
    }

    .footer-brand {
        width: 60%;
    }
}