/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(../images/bgc.jpg)no-repeat center center;
    background-size: cover;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stock-chart-animation {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    transform: rotate(15deg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(15deg) translateY(0px); }
    50% { transform: rotate(15deg) translateY(-20px); }
}

.floating-numbers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stock-number {
    position: absolute;
    font-size: 1.5rem;
    font-weight: 900;
    color: #4ade80;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: bounce 3s ease-in-out infinite;
}

.stock-number:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.stock-number:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 0.5s;
}

.stock-number:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.stock-number:nth-child(4) {
    top: 70%;
    right: 25%;
    animation-delay: 1.5s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 2rem;
}

.highlight {
    background: linear-gradient(45deg, #4ade80, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(45deg, #4ade80, #22d3ee);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(74, 222, 128, 0.4);
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    display: inline-flex;
    margin: 0 auto;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.02), rgba(34, 211, 238, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(74, 222, 128, 0.4);
}

.feature-card:hover .feature-icon i {
    transform: rotate(5deg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    border-radius: 50%;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
}

.feature-icon {
    position: relative;
    z-index: 1;
}

.feature-icon i {
    transition: transform 0.3s ease;
}

.feature-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #64748b;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Image Text Sections */
.image-text-section {
    padding: 6rem 0;
}

.image-text-section:nth-child(even) {
    background: #f8fafc;
}

.image-text-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.left-image .image-text-content {
    grid-template-columns: 1fr 1fr;
}

.right-image .image-text-content {
    grid-template-columns: 1fr 1fr;
}

.text-content h2 {
    color: #1e293b;
    margin-bottom: 2rem;
}

.text-content p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: #64748b;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
}

/* Placeholder Images with Visualizations */
.placeholder-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Chart Visualization */
.chart-visualization {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.chart-positive {
    color: #4ade80;
    font-weight: 900;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 200px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #4ade80, #22d3ee);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: growUp 2s ease-out;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height, 100%); }
}

/* Community Visualization */
.community-visualization {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #4ade80;
}

.member-avatar {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    border-radius: 50%;
}

.member-info {
    display: flex;
    flex-direction: column;
}

.member-name {
    font-weight: 700;
    color: #1e293b;
}

.member-profit {
    color: #4ade80;
    font-weight: 800;
}

.success-badge {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(45deg, #4ade80, #22d3ee);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    margin-top: 1rem;
}

/* Success Stats */
.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.success-stat {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
}

.success-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.success-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

/* Resource List */
.resource-list {
    margin: 2rem 0;
}

.resource-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #4ade80;
    transition: all 0.3s ease;
    cursor: pointer;
}

.resource-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left-color: #22d3ee;
}

.resource-item:hover .resource-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.resource-item:hover .resource-icon i {
    transform: rotate(10deg);
}

.resource-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.resource-icon i {
    transition: transform 0.3s ease;
}

.resource-text h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.resource-text p {
    color: #64748b;
    margin: 0;
    font-size: 1rem;
}

/* Resources Visualization */
.resources-visualization {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.resource-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.resource-header {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.resource-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.resource-content span {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(74, 222, 128, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-guarantee {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 600;
    text-align: center;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-align: center;
    margin: 0 auto;
    max-width: fit-content;
}

.floating-cta:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* 确保PC端浮动按钮居中 */
@media (min-width: 769px) {
    .floating-cta {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        right: auto !important;
        margin: 0 auto !important;
    }
    
    .floating-cta:hover {
        transform: translateX(-50%) translateY(-5px) !important;
    }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #4ade80;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    color: #e2e8f0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.3rem 0;
    color: #94a3b8;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

.disclaimer {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .image-text-content {
        gap: 3rem;
    }
    
    .text-content h2 {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }
    
    .placeholder-image {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .image-text-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* 手机端统一为上图下文布局 */
    .left-image .image-text-content,
    .right-image .image-text-content {
        grid-template-columns: 1fr;
    }
    
    .left-image .image-content,
    .right-image .image-content {
        order: 1;
    }
    
    .left-image .text-content,
    .right-image .text-content {
        order: 2;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
    }
    
    .floating-cta {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        transform: none;
        width: auto;
    }
    
    .floating-cta:hover {
        transform: translateY(-5px);
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    /* 图文模块移动端优化 */
    .image-text-section {
        padding: 4rem 0;
    }
    
    .text-content h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .text-content p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .placeholder-image {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .benefits-list {
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .benefits-list li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }
    
    .resource-list {
        margin: 1.5rem 0;
    }
    
    .resource-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .resource-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .resource-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .resource-text p {
        font-size: 0.9rem;
        margin: 0;
    }
    
    /* 图表可视化移动端优化 */
    .chart-visualization,
    .community-visualization,
    .resources-visualization {
        padding: 1rem;
    }
    
    .chart-header {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .chart-bars {
        height: 150px;
        gap: 0.3rem;
    }
    
    .member-card {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .member-avatar {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }
    
    .member-info {
        align-items: center;
    }
    
    .member-name {
        font-size: 0.9rem;
    }
    
    .member-profit {
        font-size: 0.8rem;
    }
    
    .resource-card {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .resource-header {
        font-size: 0.8rem;
    }
    
    .resource-content span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .floating-cta {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* 超小屏幕图文模块优化 */
    .image-text-section {
        padding: 3rem 0;
    }
    
    /* 确保超小屏幕也是上图下文 */
    .left-image .image-content,
    .right-image .image-content {
        order: 1;
    }
    
    .left-image .text-content,
    .right-image .text-content {
        order: 2;
    }
    
    .text-content h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.3;
    }
    
    .text-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .placeholder-image {
        min-height: 250px;
        padding: 1rem;
    }
    
    .benefits-list li {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
    
    .resource-item {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .resource-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .resource-text h4 {
        font-size: 1rem;
    }
    
    .resource-text p {
        font-size: 0.85rem;
    }
    
    /* 图表可视化超小屏幕优化 */
    .chart-visualization,
    .community-visualization,
    .resources-visualization {
        padding: 0.8rem;
    }
    
    .chart-bars {
        height: 120px;
        gap: 0.2rem;
    }
    
    .member-card {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .member-avatar {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
    }
    
    .member-name {
        font-size: 0.8rem;
    }
    
    .member-profit {
        font-size: 0.75rem;
    }
    
    .resource-card {
        padding: 0.6rem;
        margin-bottom: 0.6rem;
    }
    
    .resource-header {
        font-size: 0.75rem;
    }
    
    .resource-content span {
        font-size: 0.65rem;
    }
    
    /* 成功统计数据优化 */
    .success-stats {
        gap: 1rem;
    }
    
    .success-stat {
        padding: 1rem;
    }
    
    .success-number {
        font-size: 1.5rem;
    }
    
    .success-label {
        font-size: 0.8rem;
    }
    
    /* 移动端动画优化 */
    .feature-card[data-aos] {
        animation-duration: 0.6s !important;
    }
    
    .resource-item[data-aos] {
        animation-duration: 0.5s !important;
    }
    
    /* 减少移动端的复杂动画 */
    .particle {
        display: none;
    }
    
    .stock-chart-animation {
        animation: none;
    }
    
    .floating-numbers .stock-number {
        animation: none;
    }
    
    /* 移动端触摸优化 */
    .cta-button,
    .floating-cta,
    .feature-card,
    .resource-item {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        margin: 0 auto;
    }
    
    .cta-button:active,
    .floating-cta:active {
        transform: scale(0.98);
    }
    
    /* 移动端滚动优化 */
    .image-text-section,
    .features,
    .cta-section {
        -webkit-overflow-scrolling: touch;
    }
}

/* Animation for elements coming into view */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Professional animations */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced floating numbers animation */
.stock-number {
    animation: bounce 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

/* Professional card hover effects */
.professional-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.professional-hover:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Stock market themed animations */
.stock-up {
    animation: stockUp 0.5s ease-out;
}

@keyframes stockUp {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.stock-down {
    animation: stockDown 0.5s ease-out;
}

@keyframes stockDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}
