/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #0a0a0a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.bold-text {
    font-weight: 900;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.highlight-text {
    color: #00ff88;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0,255,136,0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 24px;
    color: #fff;
}

.nav-logo i {
    color: #00ff88;
    font-size: 28px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00ff88;
}

.cta-btn-nav {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,255,136,0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.stock-ticker {
    position: absolute;
    top: 100px;
    width: 100%;
    background: rgba(0,255,136,0.1);
    padding: 10px 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
    gap: 50px;
}

.ticker-content span {
    color: #00ff88;
    font-weight: 700;
    font-size: 18px;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #ccc;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 600;
}

.feature-item i {
    color: #00ff88;
    font-size: 20px;
    width: 24px;
}

.main-cta-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 30px;
    min-width: 300px;
}

.main-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,255,136,0.4);
}

.main-cta-btn small {
    font-size: 12px;
    opacity: 0.8;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    border: 2px solid #0a0a0a;
    font-size: 18px;
}

.plus {
    margin-left: 10px;
    color: #00ff88;
    font-weight: 700;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-container {
    position: relative;
    width: 400px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 400px;
    gap: 10px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #00ff88, #00cc6a);
    border-radius: 4px 4px 0 0;
    animation: growBar 2s ease-out;
    position: relative;
}

@keyframes growBar {
    from { height: 0; }
    to { height: var(--final-height); }
}

.profit-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    padding: 10px 15px;
    border-radius: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: bounce 3s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #333;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.profile-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 40px rgba(102,126,234,0.3);
}

.profile-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #333;
}

.highlight-box {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    color: #fff;
    position: relative;
}

.highlight-box i {
    font-size: 24px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.highlight-box p {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.highlight-box cite {
    font-style: italic;
    opacity: 0.9;
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.achievement h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.achievement h4 i {
    color: #667eea;
}

.achievement p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,255,136,0.2);
    border-color: #00ff88;
}

.benefit-card.featured {
    border: 2px solid #00ff88;
    background: rgba(0,255,136,0.1);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b6b;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 32px;
    color: #000;
}

.benefit-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.benefit-card p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.benefit-card ul {
    list-style: none;
    text-align: left;
}

.benefit-card li {
    margin-bottom: 10px;
    font-weight: 600;
}

/* Modules Section */
.modules-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.module-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.module-row.reverse {
    grid-template-areas: "text image";
}

.module-row.reverse .module-text {
    grid-area: text;
}

.module-row.reverse .module-image {
    grid-area: image;
}

.module-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: #333;
}

.module-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.strategy-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.point {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(102,126,234,0.1);
    border-radius: 10px;
    font-weight: 600;
}

.point i {
    color: #667eea;
    font-size: 20px;
    width: 24px;
}

.learn-more-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,255,136,0.3);
}

/* Chart Visual */
.chart-visual {
    background: url(../images/3.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    color: #fff;
}

.mini-chart {

    position: relative;
    height: 400px;
}


.chart-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
}

.stat-positive {
    font-size: 2rem;
    font-weight: 900;
    color: #00ff88;
}

.stat-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
}

/* Formula Visual */
.formula-visual {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
}

.formula-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.formula {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ff88;
    font-family: 'Courier New', monospace;
}

.var {
    color: #667eea;
}

.formula-description {
    color: #ccc;
    font-weight: 600;
}

.data-points {
    display: flex;
    gap: 10px;
}

.data-points .point {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
}

.data-points .point.active {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0,255,136,0.5);
}

/* Community Visual */
.community-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-network {
    background: url(../images/4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 400px;
    height: 600px;
    border-radius: 20px;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    z-index: 2;
}

.member-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-80px) rotate(calc(-1 * var(--angle)));
    animation: float 3s ease-in-out infinite;
    animation-delay: calc(var(--angle) / 360deg * 2s);
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-80px) rotate(calc(-1 * var(--angle))) translateY(0px); }
    50% { transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-80px) rotate(calc(-1 * var(--angle))) translateY(-10px); }
}

.member-count {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(0,0,0,0.8);
    padding: 15px 25px;
    border-radius: 15px;
    color: #fff;
}

.count {
    font-size: 2rem;
    font-weight: 900;
    color: #00ff88;
    display: block;
}

.label {
    font-size: 14px;
    opacity: 0.8;
}

/* Method Highlights */
.method-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.highlight .content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #333;
}

.highlight .content p {
    color: #666;
    margin: 0;
}

/* Community Benefits */
.community-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(102,126,234,0.1);
    border-radius: 15px;
}

.benefit i {
    color: #667eea;
    font-size: 24px;
    margin-top: 5px;
}

.benefit h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #333;
}

.benefit p {
    color: #666;
    margin: 0;
}

/* Details Section */
.details-section {
    padding: 100px 0;
    background: #fff;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.detail-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #00ff88;
}

.detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #fff;
}

.detail-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #333;
}

.detail-card p {
    color: #666;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
}

.cta-content > p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #ccc;
}

.urgency-elements {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
}

.urgency-item i {
    color: #00ff88;
    font-size: 20px;
}

.final-cta-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 25px 50px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,255,136,0.4);
}

.final-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.final-cta-btn:hover::before {
    left: 100%;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ccc;
    font-size: 14px;
}

.guarantee i {
    color: #00ff88;
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0;
    color: #fff;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
}

.footer-logo i {
    color: #00ff88;
}

.footer-text p {
    margin-bottom: 10px;
    color: #ccc;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: max-content;
}

.floating-btn {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,255,136,0.3);
    animation: pulse-floating 3s infinite;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,255,136,0.5);
}

@keyframes pulse-floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Mobile Navigation Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255,255,255,0.1);
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    animation: fadeIn 0.3s ease;
}

.mobile-nav-menu.active {
    display: flex;
}

.mobile-nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    padding: 15px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: #00ff88;
    background: rgba(0,255,136,0.1);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-nav-close:hover {
    background-color: rgba(255,255,255,0.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 50px 20px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .chart-container {
        width: 350px;
        height: 280px;
    }
    
    .about-content,
    .module-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .details-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Navigation for mobile */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-logo span {
        font-size: 20px;
    }
    
    /* Hero section mobile optimization */
    .hero {
        min-height: 90vh;
        padding: 80px 0 40px;
    }
    
    .hero-container {
        gap: 30px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-features {
        margin-bottom: 30px;
    }
    
    .feature-item {
        font-size: 14px;
        gap: 12px;
    }
    
    .feature-item i {
        font-size: 18px;
    }
    
    .chart-container {
        width: 280px;
        height: 220px;
    }
    
    .stock-ticker {
        top: 80px;
    }
    
    .ticker-content span {
        font-size: 14px;
    }
    
    /* Buttons mobile optimization */
    .main-cta-btn {
        min-width: 280px;
        padding: 18px 25px;
        font-size: 16px;
    }
    
    .cta-btn-nav {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .learn-more-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .final-cta-btn {
        padding: 20px 35px;
        font-size: 18px;
    }
    
    .floating-btn {
        padding: 15px 25px;
        font-size: 14px;
        bottom: 20px;
    }
    
    /* Sections padding adjustment */
    .about-section,
    .benefits-section,
    .modules-section,
    .details-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* About section mobile */
    .about-content {
        gap: 40px;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .highlight-box {
        padding: 20px;
        margin: 20px 0;
    }
    
    .highlight-box p {
        font-size: 1.1rem;
    }
    
    /* Benefits section mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.5rem;
    }
    
    /* Modules section mobile */
    .module-row {
        margin-bottom: 60px;
        gap: 30px;
    }
    
    .module-text h3 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .module-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .strategy-points,
    .method-highlights,
    .community-benefits {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .point {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .highlight,
    .benefit {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .number {
        align-self: center;
    }
    
    /* Chart and formula visuals mobile */
    .mini-chart {
        height: 280px;
    }
    
    .stat-positive {
        font-size: 1.5rem;
    }
    
    .formula {
        font-size: 2rem;
    }
    
    .member-network {
        width: 280px;
        height: 400px;
    }
    
    /* Details section mobile */
    .details-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .detail-card {
        padding: 30px 20px;
    }
    
    .detail-card h3 {
        font-size: 1.3rem;
    }
    
    /* Final CTA mobile */
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .cta-content > p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .urgency-elements {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .urgency-item {
        justify-content: center;
        font-size: 14px;
    }
    
    /* Social proof mobile */
    .social-proof {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 14px;
    }
    
    .avatars {
        justify-content: center;
    }
    
    /* Footer mobile */
    .footer {
        padding: 30px 0;
    }
    
    .footer-logo {
        font-size: 18px;
    }
    
    .footer-text p {
        font-size: 14px;
    }
    
    /* Guarantee mobile */
    .guarantee {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
        text-align: center;
    }
    .formula-visual{
        display: none;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-title {
        font-size: 1.8rem;
    }
    
    .chart-container {
        width: 250px;
        height: 180px;
    }
    
    .main-cta-btn {
        min-width: 250px;
        padding: 16px 20px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .about-text h3,
    .module-text h3 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .final-cta-btn {
        padding: 18px 30px;
        font-size: 16px;
    }
    
    .benefit-card,
    .detail-card {
        padding: 25px 15px;
    }
    
    .member-network {
        width: 250px;
        height: 350px;
    }
    
    .formula-visual{
        display: none;
    }
}
