/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00C851;
    --secondary-green: #00A041;
    --dark-green: #007A31;
    --primary-blue: #1E40AF;
    --secondary-blue: #3B82F6;
    --dark-blue: #1E3A8A;
    --text-dark: #E2E8F0;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;
    --bg-light: #1E293B;
    --bg-white: #0F172A;
    --border-light: #334155;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    --gradient-blue: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #0F172A;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-lg);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    width: 100%;
    padding-bottom: 40px;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0F172A 0%, #050c16 50%, #000000 100%);
    overflow: hidden;
    padding-top: 4rem;
}

.hero-background {
    
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.trading-charts {
    position: absolute;
    bottom: 10%;
    right: 5%;
    display: flex;
    gap: 20px;
    align-items: end;
    z-index: 1;
}

.chart-image {
    width: 300px;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    animation: chartFloat 4s ease-in-out infinite;
    opacity: 0.8;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.chart-1 {
    animation-delay: 0s;
    transform: rotate(-5deg);
}

.chart-2 {
    animation-delay: 1.3s;
    transform: rotate(3deg);
}

.chart-3 {
    animation-delay: 2.6s;
    transform: rotate(-2deg);
}

@keyframes chartFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg)); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateY(-15px) rotate(var(--rotation, 0deg)); 
        opacity: 1; 
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.money-icon {
    position: absolute;
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.4;
    font-weight: bold;
}

.money-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.money-icon:nth-child(2) {
    top: 60%;
    left: 5%;
    animation-delay: 1.5s;
}

.money-icon:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 3s;
}

.money-icon:nth-child(4) {
    top: 70%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #CBD5E1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #94A3B8;
}

/* Dashboard Preview Section */
.dashboard-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-header {
    text-align: center;
    color: var(--text-white);
    z-index: 2;
    position: relative;
}

.dashboard-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.dashboard-subtitle {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-image-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  
    border-image: linear-gradient(135deg, #00C851 0%, #00A041 50%, #007A31 100%) 1;
    background: linear-gradient(135deg, #00C851 0%, #00A041 50%, #007A31 100%);
    padding: 3px;
    
}


.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 30px rgba(0, 200, 81, 0.6)) drop-shadow(0 0 60px rgba(0, 160, 65, 0.4)) drop-shadow(0 0 90px rgba(0, 200, 81, 0.2));
}





@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes imageGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(0, 200, 81, 0.4)) drop-shadow(0 0 40px rgba(0, 160, 65, 0.3)) drop-shadow(0 0 60px rgba(0, 200, 81, 0.1));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(0, 200, 81, 0.8)) drop-shadow(0 0 80px rgba(0, 160, 65, 0.6)) drop-shadow(0 0 120px rgba(0, 200, 81, 0.3));
    }
}

/* Responsive adjustments for dashboard preview */
@media (max-width: 768px) {
    .dashboard-preview {
        padding: 3rem 0;
    }
    
    .dashboard-content {
        gap: 2rem;
    }
    
    .dashboard-title {
        font-size: 2rem;
    }
    
    .dashboard-subtitle {
        font-size: 1.1rem;
    }
    
    .dashboard-image-container {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .dashboard-image {
        border-radius: 15px;
    }
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: #000000;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Market Focus Section */
.market-focus {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.market-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.market-image {
    height: 200px;
    overflow: hidden;
}

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

.market-card:hover .market-image img {
    transform: scale(1.05);
}

.market-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.market-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Trust Section */
.trust {
    padding: 5rem 0;
    background: #000000;
}

.trust-content {
    max-width: 1000px;
    margin: 0 auto;
}

.coach-bio {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.coach-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--primary-green);
    position: relative;
}

.coach-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.3s ease;
}

.coach-avatar:hover .coach-photo {
    transform: scale(1.05);
}

.bio-text h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.bio-text h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.credentials {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.achievements {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
}

.testimonials {
    margin-bottom: 4rem;
}

.testimonials h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.testimonial {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-green);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.proof-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.proof-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.profit-chart {
    position: relative;
    height: 120px;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-bottom: 1rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px; 
    margin-right: 10px;
    height: 100%;
}

.chart-bar {
    width: 20px;
    background: var(--gradient-primary);
    border-radius: 3px 3px 0 0;
    position: relative;
    animation: growBar 2s ease-out;
    transition: all 0.3s ease;
}

.chart-bar:nth-child(1) {
    animation-delay: 0.2s;
    background: linear-gradient(135deg, #00C851 0%, #00A041 100%);
}

.chart-bar:nth-child(2) {
    animation-delay: 0.4s;
    background: linear-gradient(135deg, #00A041 0%, #007A31 100%);
}

.chart-bar:nth-child(3) {
    animation-delay: 0.6s;
    background: linear-gradient(135deg, #007A31 0%, #005A21 100%);
}

.chart-bar:hover {
    transform: scaleY(1.05);
    box-shadow: 0 4px 8px rgba(0, 200, 81, 0.3);
}

@keyframes growBar {
    0% { height: 0; }
    100% { height: var(--target-height, 80%); }
}

.proof-card span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.proof-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: #000000;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.step-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Conversion Section */
.conversion {
    padding: 5rem 0;
    background: var(--gradient-blue);
    color: var(--text-white);
    text-align: center;
}

.conversion-content h2 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.conversion-content p {
    color: #E2E8F0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.urgency-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

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

.timer-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.timer-label {
    font-size: 0.9rem;
    color: #CBD5E1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-text {
    color: #FEF3C7;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #0A0F1A;
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-main h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer-main p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: var(--primary-green);
    text-decoration: none;
}

.disclaimer {
    font-size: 0.8rem !important;
    color: var(--text-light) !important;
}

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.sticky-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .coach-bio {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .achievements {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sticky-cta {
        display: block;
    }
    
    .trading-charts {
        display: none;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: row;
        gap: 0.8rem;
        justify-content: space-between;
    }
    
    .stat {
        flex: 1;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .urgency-timer {
        gap: 1rem;
    }
    
    .timer-number {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.testimonial,
.proof-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.cta-button:active {
    transform: scale(0.98);
}

/* Focus states for accessibility */
.cta-button:focus,
a:focus {
    outline: 2px solid var(--primary-green);
    outline-offset: 2px;
}
