/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: url(../images/bgc.jpg)no-repeat center center;
    background-size: cover;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stock-chart-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 400"><path d="M0,300 Q100,250 200,280 T400,200 T600,150 T800,100 T1000,80" stroke="%23ffffff20" stroke-width="3" fill="none"/><path d="M0,350 Q150,300 300,320 T600,250 T1000,180" stroke="%2300ff8820" stroke-width="2" fill="none"/></svg>') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
}

.floating-numbers {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-numbers .number {
    position: absolute;
    font-weight: 800;
    font-size: 1.2rem;
    color: #00ff88;
    animation: float 6s ease-in-out infinite;
}

.floating-numbers .number:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-numbers .number:nth-child(2) { top: 30%; right: 15%; animation-delay: 1.5s; }
.floating-numbers .number:nth-child(3) { top: 60%; left: 20%; animation-delay: 3s; }
.floating-numbers .number:nth-child(4) { top: 70%; right: 25%; animation-delay: 4.5s; }
.floating-numbers .number:nth-child(5) { top: 40%; left: 50%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 1; }
}

.hero .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title .highlight {
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0,255,136,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ff88;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trading-dashboard {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    width: 100%;
    max-width: 400px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.dashboard-header h3 {
    font-weight: 700;
    font-size: 1.1rem;
}

.status {
    color: #00ff88;
    font-weight: 600;
    font-size: 0.9rem;
}

.stock-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border-left: 4px solid #00ff88;
}

.stock-item.green .change {
    color: #00ff88;
}

.symbol {
    font-weight: 800;
    font-size: 1.1rem;
}

.price {
    font-weight: 700;
    font-size: 1rem;
}

.change {
    font-weight: 700;
    font-size: 0.9rem;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255,107,53,0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,53,0.6);
}

.cta-button.large {
    padding: 25px 50px;
    font-size: 1.3rem;
}

.hero-cta {
    margin-top: 20px;
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: #1a237e;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-text {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a237e;
}

.feature p {
    color: #666;
    font-weight: 500;
}

/* Image-Text Modules */
.image-text-module {
    padding: 100px 0;
}

.image-text-module:nth-child(even) {
    background: #f8f9fa;
}

.module-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.left-image .module-content {
    grid-template-areas: "image text";
}

.right-image .module-content {
    grid-template-areas: "text image";
}

.left-image .module-image {
    grid-area: image;
}

.left-image .module-text {
    grid-area: text;
}

.right-image .module-image {
    grid-area: image;
}

.right-image .module-text {
    grid-area: text;
}

.module-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #1a237e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.module-text p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1a237e;
}

.stat-item .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a237e, #283593);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.chart-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.chart-lines {
    position: relative;
    width: 200px;
    height: 150px;
}

.line {
    position: absolute;
    height: 3px;
    background: #00ff88;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.line-1 {
    width: 60px;
    top: 20px;
    left: 0;
    animation-delay: 0s;
}

.line-2 {
    width: 100px;
    top: 60px;
    left: 40px;
    animation-delay: 0.5s;
}

.line-3 {
    width: 80px;
    top: 100px;
    left: 20px;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

.community-placeholder {
    text-align: center;
}

.community-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.member-avatars {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.avatar:nth-child(1) { animation-delay: 0s; }
.avatar:nth-child(2) { animation-delay: 0.2s; }
.avatar:nth-child(3) { animation-delay: 0.4s; }
.avatar:nth-child(4) { animation-delay: 0.6s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Activity Rules Section */
.activity-rules {
    padding: 100px 0;
    background: #1a237e;
    color: white;
}

.activity-rules .section-title {
    color: white;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.rule-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.rule-card:hover {
    transform: translateY(-10px);
}

.rule-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.rule-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #00ff88;
}

.rule-card p {
    font-weight: 500;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.disclaimer {
    margin-top: 20px !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    opacity: 0.8;
}

/* Success Stories Section */
.success-stories {
    padding: 100px 0;
    background: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.story-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #00ff88;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.story-icon {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #00ff88, #00d084);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-stats {
    text-align: right;
}

.profit {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ff88;
    line-height: 1;
}

.timeframe {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

.story-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 15px;
}

.story-card p {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.member-type {
    background: linear-gradient(45deg, #1a237e, #283593);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.date {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #1a237e;
    color: white;
}

.testimonials .section-title {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.member-info .title {
    font-size: 0.9rem;
    color: #00ff88;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.rating {
    font-size: 1rem;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.profit-badge {
    background: linear-gradient(45deg, #00ff88, #00d084);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.testimonial-footer .date {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
}

.stat-highlight {
    text-align: center;
}

.big-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #00ff88;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Additional Benefits Section */
.additional-benefits {
    padding: 100px 0;
    background: white;
}

.benefits-comparison {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(45deg, #1a237e, #283593);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
}

.comparison-header > div {
    padding: 25px 20px;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.feature-col {
    justify-content: flex-start !important;
    font-size: 1rem;
    color: #333;
}

.other-col {
    color: #ff4757;
    font-size: 0.95rem;
}

.our-col {
    color: #00ff88;
    font-size: 0.95rem;
    background: rgba(0,255,136,0.05);
}

.comparison-row:nth-child(even) {
    background: #f8f9fa;
}

/* Enhanced Final CTA */
.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.highlight-icon {
    font-size: 1.2rem;
}

.highlight-item span:last-child {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-btn {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
    animation: pulse-float 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    transform: none;
}

@keyframes pulse-float {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255,107,53,0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .module-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .left-image .module-content,
    .right-image .module-content {
        grid-template-areas: "image" "text";
    }
    
    .module-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .stats-row {
        justify-content: center;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-numbers .number {
        font-size: 1rem;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* New sections responsive */
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .comparison-row > div {
        justify-content: center !important;
        border-bottom: 1px solid #eee;
        padding: 15px 20px;
    }
    
    .feature-col {
        background: #f8f9fa;
        font-weight: 700;
    }
    
    .cta-highlights {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .highlight-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .floating-cta {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: 90%;
    }
    
    .floating-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
        min-width: 200px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .module-text h2 {
        font-size: 1.5rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}
