/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 50%, #2d2d5f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    color: white;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.highlight {
    background: linear-gradient(45deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 5px #00ff88); }
    to { filter: drop-shadow(0 0 20px #00ccff); }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    margin-bottom: 40px;
}

.feature-item {
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button {
    background: linear-gradient(45deg, #00ff88, #00ccff);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: #0f0f23;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.3rem;
}

.trust-indicators {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-right {
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.stock-chart-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,255,136,0.1), rgba(0,204,255,0.1));
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.1) 2px, rgba(255,255,255,0.1) 4px),
        radial-gradient(circle at 20% 80%, rgba(0,255,136,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,204,255,0.3) 0%, transparent 50%);
    animation: chartFlow 15s ease-in-out infinite;
}

@keyframes chartFlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.floating-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.stat-item {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
}

.stat-item.profit {
    animation-delay: 0s;
}

.stat-item.success {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0,255,136,0.3);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #1a1a3a, #2d2d5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
    font-weight: 900;
}

.badge-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
}

.badge-text {
    font-size: 0.9rem;
}

.about-text h3 {
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1a1a3a;
}

.about-text p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
}

.expertise-list {
    margin-top: 30px;
}

.expertise-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
}

.expertise-item .icon {
    font-size: 2rem;
    line-height: 1;
}

.expertise-item strong {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a3a;
}

.expertise-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Benefits Section */
.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-text h2 {
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1a1a3a;
}

.benefits-text p {
    margin-bottom: 40px;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border-left: 5px solid #00ff88;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,255,136,0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    line-height: 1;
    min-width: 60px;
}

.benefit-content h4 {
    font-weight: 900;
    margin-bottom: 8px;
    color: #1a1a3a;
    font-size: 1.1rem;
}

.benefit-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.benefits-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.benefits-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
}

.stat-card {
    flex: 1;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ff88;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* Success Section */
.success-section {
    background: #f8f9fa;
}

.success-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.success-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.success-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.chart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,255,136,0.1), rgba(0,204,255,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #00ff88, #00ccff);
    transform: translateY(-50%);
    animation: chartGrow 3s ease-in-out infinite;
}

@keyframes chartGrow {
    0% { width: 0; }
    100% { width: 80%; }
}

.profit-indicator {
    background: rgba(0,255,136,0.95);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,255,136,0.3);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.success-text h2 {
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1a1a3a;
}

.success-text p {
    margin-bottom: 40px;
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.testimonials {
    margin-bottom: 40px;
}

.testimonial {
    margin-bottom: 25px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border-left: 5px solid #00ccff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
    font-size: 0.9rem;
}

/* Join Section */
.join-section {
    background: linear-gradient(135deg, #1a1a3a 0%, #2d2d5f 100%);
    color: white;
}

.join-section .section-header h2 {
    color: white;
    -webkit-text-fill-color: white;
}

.join-section .section-header p {
    color: rgba(255,255,255,0.8);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ff88, #00ccff);
    border-radius: 50%;
    line-height: 80px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: #1a1a3a;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,255,136,0.3);
}

.step-content h3 {
    font-weight: 900;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.step-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    background: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Orbitron', 'Noto Sans KR', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #1a1a3a;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.urgency-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.urgency-item {
    font-weight: 700;
    color: #ff6b35;
    display: flex;
    align-items: center;
    gap: 8px;
}

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: floatingPulse 3s ease-in-out infinite;
}

@keyframes floatingPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.floating-button {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.floating-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .about-content,
    .benefits-content,
    .success-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .urgency-indicators {
        flex-direction: column;
        gap: 20px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }

    .stats-overlay {
        position: static;
        margin-top: 20px;
    }

    .floating-stats {
        position: static;
        display: flex;
        gap: 15px;
        margin-top: 20px;
        justify-content: center;
    }

    .hero-image-container {
        height: 300px;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .feature-item {
        justify-content: center;
        text-align: center;
        max-width: 300px;
    }

    .trust-indicators {
        justify-content: center;
        text-align: center;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .floating-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 6px 18px;
        margin-bottom: 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .benefit-item,
    .expertise-item {
        flex-direction: column;
        text-align: center;
    }

    .hero-features {
        text-align: center;
    }

    .feature-item {
        justify-content: center;
    }
}
