/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gowun Dodum', sans-serif;
    line-height: 1.6;
    color: #2F4F4F;
    background-color: #E8F5E9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: url(../images/bgc.png) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #3B7A57;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(59, 122, 87, 0.2);
}

.hero-badge i {
    color: #FFD700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: #FFD700;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3B7A57, #E8F5E9);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-item i {
    color: #FFD700;
    font-size: 1.2rem;
    width: 20px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(47, 79, 79, 0.3);
}

.hero-badge-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #3B7A57;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(59, 122, 87, 0.4);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stock-ticker {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    background: rgba(47, 79, 79, 0.9);
    color: white;
    padding: 10px 0;
    display: flex;
    gap: 40px;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
    border-radius: 10px;
}

.ticker-item {
    font-size: 14px;
    font-weight: 500;
}

.price-up {
    color: #4CAF50;
}

.price-down {
    color: #F44336;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* 呼吸发光动画 */
@keyframes breathingGlow {
    0% {
        box-shadow: 
            0 8px 25px rgba(59, 122, 87, 0.3),
            0 0 20px rgba(59, 122, 87, 0.2),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
        transform: scale(1);
    }
    100% {
        box-shadow: 
            0 12px 35px rgba(59, 122, 87, 0.5),
            0 0 30px rgba(59, 122, 87, 0.4),
            0 0 40px rgba(255, 215, 0, 0.3),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
        transform: scale(1.02);
    }
}

/* 发光脉冲动画 */
@keyframes glowPulse {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(135deg, #3B7A57, #2F4F4F);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 122, 87, 0.3);
    font-family: 'Gowun Dodum', sans-serif;
    position: relative;
    overflow: hidden;
    animation: breathingGlow 2s ease-in-out infinite alternate;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #3B7A57, #FFD700);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    animation: glowPulse 2s ease-in-out infinite alternate;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 122, 87, 0.4);
    animation-play-state: paused;
}

.cta-button:hover::before {
    opacity: 0.7;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.cta-button.large {
    padding: 22px 45px;
    font-size: 1.3rem;
}

.button-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2F4F4F;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #2F4F4F;
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-item.reverse {
    direction: rtl;
}

.about-item.reverse > * {
    direction: ltr;
}

.about-content {
    padding: 20px;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E8F5E9, #3B7A57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    margin: 0 auto;
}

.about-icon i {
    font-size: 2rem;
    color: #2F4F4F;
}

.about-content h3 {
    font-size: 1.8rem;
    color: #2F4F4F;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2F4F4F;
    opacity: 0.9;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    background: linear-gradient(135deg, #E8F5E9, rgba(59, 122, 87, 0.1));
    border-radius: 20px;
}

.chart-icon {
    font-size: 8rem;
    color: #3B7A57;
    opacity: 0.3;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #E8F5E9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(47, 79, 79, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B7A57, #2F4F4F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #2F4F4F;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #2F4F4F;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #3B7A57;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #E8F5E9;
    padding: 35px;
    border-radius: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #3B7A57;
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2F4F4F;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: #2F4F4F;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: #3B7A57;
    font-size: 14px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #FFD700;
    font-size: 16px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2F4F4F, #3B7A57);
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-note {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Footer */
.footer {
    background: #2F4F4F;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info h3 {
    margin-bottom: 10px;
    color: #E8F5E9;
}

.footer-info p {
    opacity: 0.8;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E8F5E9;
}

/* Fixed Bottom CTA */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    transform: translateY(0) !important;
}

.fixed-cta-button {
    background: linear-gradient(135deg, #3B7A57, #2F4F4F);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 122, 87, 0.3);
    font-family: 'Gowun Dodum', sans-serif;
    min-width: 250px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: breathingGlow 2s ease-in-out infinite alternate;
}

.fixed-cta-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #3B7A57, #FFD700);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    animation: glowPulse 2s ease-in-out infinite alternate;
}

.fixed-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 122, 87, 0.4);
    animation-play-state: paused;
}

.fixed-cta-button:hover::before {
    opacity: 0.7;
}

.fixed-cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s ease-in-out infinite;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 20px 0;
    }
    
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-stats {
        align-items: center;
        text-align: center;
    }
    
    .hero-image-container {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .about-item {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-item.reverse {
        direction: ltr;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .section-header p {
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-section {
        text-align: center;
        padding: 60px 0;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .fixed-cta-button {
        min-width: 200px;
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .stock-ticker {
        font-size: 12px;
        gap: 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image-container {
        width: 200px;
        height: 200px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .fixed-cta-button {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}
