/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2563eb;
    --accent-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Navigation Styles */
.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 54, 93, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-logo i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 500;
}


.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.nav-logo i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

#stockChart {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text-content {
    order: 2;
}

.hero-image {
    order: 1;
}

@media (min-width: 769px) {
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    .hero-text-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
}

@media (min-width: 769px) {

    
    .hero-text-content {
        order: unset;
    }
    
    .hero-image {
        order: unset;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    margin-right: 0.5rem;
    color: #fbbf24;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.gradient-text {
    background: linear-gradient(45deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-text {
    position: relative;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: #fbbf24;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.free-notice {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: var(--shadow-lg);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-guarantee {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-guarantee {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-guarantee {
        margin-top: 1rem;
    }
}

.guarantee-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.guarantee-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.guarantee-badge i {
    color: #10b981;
    font-size: 1rem;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 769px) {
    .hero-text-content {
        align-items: flex-start;
        text-align: left;
    }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-main-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.hero-main-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

@media (min-width: 769px) {
    .profile-highlights {
        margin: 1.5rem 0;
        text-align: left;
    }

    .highlight-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        padding: 0.8rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        border-left: 3px solid #10b981;
    }

    .highlight-item i {
        color: #fbbf24;
        font-size: 1.2rem;
        width: 20px;
        flex-shrink: 0;
    }

    .highlight-item div {
        flex: 1;
    }

    .highlight-item strong {
        display: block;
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
        color: white;
    }

    .highlight-item span {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .profile-stats {
        display: flex;
        justify-content: space-around;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .profile-stats .stat {
        text-align: center;
    }

    .profile-stats .number {
        display: block;
        font-size: 1.5rem;
        font-weight: 900;
        color: #fbbf24;
        font-family: 'Montserrat', sans-serif;
    }

    .profile-stats .label {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 600;
    }
}

.profile-highlights {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid #10b981;
    text-align: center;
}

.highlight-item i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.highlight-item div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: white;
}

.highlight-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.profile-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-stats .stat {
    text-align: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.profile-stats .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fbbf24;
    font-family: 'Montserrat', sans-serif;
}

.profile-stats .label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    gap: 4rem;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.expertise-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.expertise-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.expertise-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.credentials h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.credential-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.credential-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.credential-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.credential-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.credential-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Community Section */
.community {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.feature-card.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

.feature-card.premium:hover {
    transform: scale(1.08) translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-success);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-card.premium .feature-icon {
    background: rgba(255, 255, 255, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card.premium h3 {
    color: white;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.feature-card.premium p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.feature-card.premium li {
    color: rgba(255, 255, 255, 0.9);
}

.feature-card li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.feature-card.premium li::before {
    color: #fbbf24;
}

/* Investment Philosophy Section */
.investment-philosophy {
    padding: 6rem 0;
    background: var(--bg-white);
}

/* Market Analysis Section */
.market-analysis {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Education Program Section */
.education-program {
    padding: 6rem 0;
    background: var(--bg-white);
}

/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Content Layout Styles */
.content-layout {
    display: grid;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.left-image-right-text {
    grid-template-columns: 1fr 1.2fr;
}

.right-image-left-text {
    grid-template-columns: 1.2fr 1fr;
}

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 100%;
    max-width: 500px;
    height: 400px;
    position: relative;
}

.content-text {
    padding: 2rem 0;
}

.text-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Investment Philosophy Specific Styles */
.philosophy-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.chart-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
}

.philosophy-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.point {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
}

.point i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.philosophy-principles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.principle {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.principle:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.principle-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.principle-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.principle-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Market Analysis Specific Styles */
.analysis-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.feature-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.analysis-stats {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    margin-top: 2rem;
}

.analysis-stats .stat {
    text-align: center;
}

.analysis-stats .number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
    display: block;
}

.analysis-stats .label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.analysis-dashboard {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid #e2e8f0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.update-time {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.market-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.indicator-label {
    font-weight: 600;
    color: var(--text-primary);
}

.indicator-value {
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.indicator-value.up {
    color: var(--accent-color);
}

.indicator-value.down {
    color: var(--danger-color);
}

.indicator-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.analysis-summary h5 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.analysis-summary ul {
    list-style: none;
    padding: 0;
}

.analysis-summary li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.analysis-summary li::before {
    content: '▶';
    color: var(--secondary-color);
    margin-right: 0.5rem;
    font-size: 0.7rem;
}

/* Education Program Specific Styles */
.education-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #e2e8f0;
}

.course-modules {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.module {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.module.active {
    opacity: 1;
    background: var(--gradient-primary);
    color: white;
}

.module:hover {
    transform: translateX(5px);
}

.module-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.module.active .module-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.module span {
    font-weight: 600;
}

.progress-indicator {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-success);
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    display: block;
}

.program-levels {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.level {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.level:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.level-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.level-badge.beginner {
    background: var(--gradient-success);
    color: white;
}

.level-badge.intermediate {
    background: var(--gradient-primary);
    color: white;
}

.level-badge.advanced {
    background: var(--gradient-secondary);
    color: white;
}

.level h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.level ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.level li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.level li::before {
    content: '✓';
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

.level-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.level-duration i {
    color: var(--secondary-color);
}

.program-benefits {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.program-benefits .benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.program-benefits i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.program-benefits span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Success Stories Specific Styles */
.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.metric-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.metric-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.case-studies h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.case-study {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-color);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.case-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.case-return {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
}

.case-study p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.case-study p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-secondary);
}

.performance-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.performance-note i {
    color: var(--warning-color);
}

.performance-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.performance-chart {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid #e2e8f0;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.chart-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.chart-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.chart-visual {
    height: 200px;
    margin-bottom: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.chart-legend {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.student {
    background: var(--secondary-color);
}

.legend-color.market {
    background: var(--accent-color);
}

.legend-color.sp500 {
    background: var(--warning-color);
}

.chart-highlights {
    display: flex;
    justify-content: space-around;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.highlight {
    text-align: center;
}

.highlight-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.highlight-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .left-image-right-text .content-image {
        order: 1;
    }
    
    .left-image-right-text .content-text {
        order: 2;
    }
    
    .right-image-left-text .content-text {
        order: 1;
    }
    
    .right-image-left-text .content-image {
        order: 2;
    }
    
    .image-container {
        height: 300px;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
    
    .text-content h3 {
        font-size: 1.3rem;
    }
    
    .text-content p {
        font-size: 1rem;
    }
    
    .philosophy-points {
        gap: 1rem;
    }
    
    .point {
        padding: 0.8rem 1rem;
    }
    
    .principle {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .analysis-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .program-levels {
        gap: 1.5rem;
    }
    
    .program-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .success-metrics {
        grid-template-columns: 1fr;
    }
    
    .case-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .chart-legend {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .chart-highlights {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .investment-philosophy,
    .market-analysis,
    .education-program,
    .success-stories {
        padding: 4rem 0;
    }
    
    .content-text {
        padding: 1rem 0;
    }
    
    .text-content h2 {
        font-size: 1.8rem;
    }
    
    .text-content h3 {
        font-size: 1.2rem;
    }
    
    .image-container {
        height: 250px;
    }
    
    .philosophy-visual {
        padding: 1rem;
    }
    
    .point {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .principle {
        padding: 1rem;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-number {
        align-self: center;
    }
    
    .level {
        padding: 1.2rem;
    }
    
    .metric-card {
        padding: 1.2rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .analysis-dashboard {
        padding: 1rem;
    }
    
    .education-visual {
        padding: 1.5rem;
    }
    
    .performance-chart {
        padding: 1rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--bg-white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.benefit-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.benefits-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.chart-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    height: 300px;
}

#performanceChart {
    width: 100%;
    height: 100%;
}

.success-stats {
    display: flex;
    gap: 1rem;
}

.stat-card {
    flex: 1;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info h4 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.2rem;
}

.stat-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
}

.testimonials .section-title {
    color: white;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Join Section */
.join {
    padding: 6rem 0;
    background: var(--bg-light);
}

.join-header {
    text-align: center;
    margin-bottom: 4rem;
}

.join-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.join-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warning-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-card.featured h3 {
    color: white;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    border-bottom: 1px solid #f1f5f9;
}

.pricing-card.featured li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features i {
    color: var(--accent-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.pricing-card.featured i {
    color: #fbbf24;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--gradient-primary);
    color: white;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured .pricing-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-card.featured .pricing-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.pricing-card.free-membership {
    max-width: 500px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    transform: scale(1.05);
    border: 3px solid #fbbf24;
}

.pricing-card.free-membership:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-card.free-membership .featured-badge {
    background: #fbbf24;
    color: #1a365d;
}

.pricing-card.free-membership .pricing-header h3 {
    color: white;
    font-size: 1.8rem;
}

.free-text {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.no-cost {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-card.free-membership .pricing-features li {
    color: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-card.free-membership .pricing-features i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.pricing-card.free-membership .pricing-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    padding: 1.2rem;
}

.pricing-card.free-membership .pricing-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.free-guarantee {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.free-guarantee i {
    color: #fbbf24;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.free-guarantee span {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.join-guarantee {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.guarantee-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: white;
}

.footer-section i {
    color: var(--secondary-color);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content {
        gap: 2.5rem;
        max-width: 100%;
    }
    
    .hero-image {
        margin: 0 auto;
        max-width: 450px;
        width: 100%;
    }
    
    .hero-text-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
}
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .free-notice {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
        margin-top: 0.8rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .guarantee-badges {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .guarantee-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-main-image {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .hero-main-image img {
        border-radius: 16px;
        max-height: 300px;
        object-fit: cover;
    }
    


    
    .nav-container {
        padding: 0.8rem 20px;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .nav-logo i {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .expertise-grid,
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .join-guarantee {
        gap: 1.5rem;
    }
    
    .guarantee-item {
        font-size: 0.9rem;
    }
    
    .free-text {
        font-size: 2.5rem;
    }
    
    .pricing-card.free-membership {
        max-width: 100%;
        transform: scale(1);
    }
    
    .pricing-card.free-membership:hover {
        transform: scale(1.02) translateY(-5px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0.6rem 15px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo i {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 90px 0 40px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-image {
        margin-bottom: 0;
        display: flex;
        justify-content: center;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .free-notice {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        margin-top: 0.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .guarantee-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .guarantee-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        flex: 1;
        min-width: 140px;
    }
    
    .profile-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 1.2rem;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .status-indicator {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
    
    .profile-info h3 {
        font-size: 1.1rem;
    }
    
    .profile-info p {
        font-size: 0.8rem;
    }
    
    .highlight-item {
        padding: 0.5rem;
        margin-bottom: 0.6rem;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    

    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.free-membership {
        padding: 1.8rem;
    }
    
    .free-text {
        font-size: 2.2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.8rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

/* Touch optimization */
@media (hover: none) and (pointer: coarse) {
    .cta-primary:hover,
    .cta-secondary:hover,
    .pricing-btn:hover,
    .nav-link:hover,
    .feature-card:hover,
    .credential-card:hover {
        transform: none;
    }
    
    .cta-primary:active,
    .cta-secondary:active,
    .pricing-btn:active {
        transform: scale(0.98);
    }
    
    .feature-card,
    .credential-card,
    .testimonial-card {
        transition: none;
    }
    
    .guarantee-badge:hover,
    .social-links a:hover {
        transform: none;
    }
    
    .guarantee-badge:active,
    .social-links a:active {
        transform: scale(0.95);
    }
} 

.floating-button-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
    }
    @keyframes bounce {
    0%, 100% {
    transform: translateY(0);
    }
    50% {
    transform: translateY(-10px);
    }
    }
    .floating-button {
    position: relative;
    background: #05C705;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: auto;
    }
    
    .floating-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .floating-button .icon {
    font-size: 24px;
    }
    
    @media (max-width: 768px) {
    .floating-button-container {
    bottom: 20px;
    }
    
    .floating-button {
    font-size: 16px;
    padding: 12px 24px;
    }
    }
    
    @media (max-width: 480px) {
    .floating-button {
    font-size: 14px;
    padding: 10px 20px;
    }
    
    .floating-button .icon {
    font-size: 18px;
    }
    }