/* 폰트 Weight 최적화 - 500을 400으로, 600/800/900을 700으로 표준화 */
.welcome_text,
.primary_btn,
.secondary_btn,
.visual_content p {
    font-weight: 400 !important; /* 기존 500을 400으로 */
}

.feature_card h3,
.course_card h3,
.guide_card h3,
h1, h2, h3, h4, h5, h6,
.visual_content h1,
section h2 {
    font-weight: 700 !important; /* 기존 600/800/900을 700으로 통일 */
}

/* 특수 weight들을 표준으로 조정 */
*[style*="font-weight: 500"],
*[style*="font-weight: 600"], 
*[style*="font-weight: 800"],
*[style*="font-weight: 900"] {
    font-weight: 700 !important;
}

/* 시스템 폰트 우선 사용 */
body, * {
    font-family: 
        system-ui,
        -apple-system,
        'Segoe UI',
        'Malgun Gothic',
        'Apple SD Gothic Neo',
        'Noto Sans KR',
        sans-serif;
}

/* 폰트 로딩 최적화 */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Critical CSS 최적화 */
.font-weight-400 { font-weight: 400; }
.font-weight-700 { font-weight: 700; } 