/* ========================================
   생태명리학 12인 제자 양성 프로그램
   - 선명한 글씨 (가독성 향상)
   - 황금 법륜 무한 회전
   - 구글 번역 30개국
======================================== */

/* ==================== 초기화 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #000000; /* 선명한 검은색 */
    background-color: #ffffff;
}

/* ==================== 색상 변수 ==================== */
:root {
    --primary: #8B5CF6; /* 보라색 - 영성 */
    --secondary: #F59E0B; /* 골드 - 가치 */
    --accent: #14B8A6; /* 청록색 - 생명 */
    --dark: #1a1a1a; /* 진한 검정 */
    --text: #000000; /* 검은색 (가독성 향상) */
    --text-light: #333333; /* 약간 밝은 검정 */
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, var(--primary), var(--accent));
    --gradient-2: linear-gradient(135deg, var(--secondary), var(--primary));
    --gradient-3: linear-gradient(135deg, var(--accent), var(--secondary));
}

/* ==================== 타이포그래피 ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif KR', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark); /* 제목은 진한 색 */
}

p, li, span {
    color: var(--text); /* 본문은 검은색 */
    font-weight: 400;
}

strong {
    font-weight: 700;
    color: var(--dark);
}

/* ==================== 구글 번역 위젯 스타일 ==================== */
.translate-widget {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: rgba(139, 92, 246, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

#google_translate_element {
    display: inline-block;
}

#google_translate_element .goog-te-combo {
    padding: 0.5rem 1rem;
    border: 2px solid #ffffff;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

#google_translate_element .goog-te-combo:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

#google_translate_element .goog-te-combo option {
    background: #5D3FD3;
    color: #ffffff;
}

/* 구글 번역 브랜딩 제거 */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate iframe {
    visibility: hidden !important;
}

/* ==================== 컨테이너 ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ==================== 헤더 ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-1);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

/* 황금 법륜 무한 회전 */
.dharma-wheel {
    flex-shrink: 0;
}

#dharmaWheelGroup {
    transform-origin: 50% 50%;
    transform-box: fill-box;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s ease;
}

/* ==================== 버튼 ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ==================== 히어로 섹션 ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--secondary), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
    color: var(--white);
    font-weight: 500;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.6s both;
}

.stat-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: var(--white);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.8s both;
}

/* 카운트다운 */
.countdown-container {
    margin-top: 4rem;
    animation: fadeInUp 1s ease 1s both;
}

.countdown-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--white);
}

/* ==================== 섹션 헤더 ==================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* ==================== 프로그램 그리드 ==================== */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    animation: fadeInUp 1s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.program-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.program-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-description {
    color: var(--text);
    line-height: 1.8;
}

.program-description p {
    margin-bottom: 1rem;
}

.program-description strong {
    color: var(--dark);
    font-weight: 700;
}

/* ==================== 가치 그리드 ==================== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease;
}

.value-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.value-header i {
    font-size: 2.5rem;
    color: var(--primary);
}

.value-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
}

.value-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.value-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.value-breakdown {
    border-top: 2px solid var(--bg-light);
    padding-top: 1.5rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.breakdown-label {
    font-weight: 600;
    color: var(--dark);
}

.breakdown-value {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.breakdown-detail {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.value-note {
    margin-top: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text);
}

.value-note i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.value-list {
    list-style: none;
}

.value-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.value-list i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-list strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.value-list p {
    color: var(--text);
    margin: 0;
}

/* ==================== 시장 분석 ==================== */
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.market-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.market-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.market-icon i {
    font-size: 2rem;
    color: var(--white);
}

.market-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.market-amount {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.market-year {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.market-stats {
    border-top: 2px solid var(--bg-light);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stat-label {
    color: var(--text);
    font-weight: 500;
}

.stat-value {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.market-source {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.market-source i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.market-note {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(20, 184, 166, 0.05));
    border-left: 4px solid var(--primary);
    border-radius: 5px;
}

.market-note p {
    margin-bottom: 1rem;
    color: var(--text);
}

.market-note strong {
    color: var(--dark);
}

.market-note ul {
    list-style-position: inside;
    color: var(--text);
}

.market-note li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

/* 시장 경고 */
.market-warning {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 15px;
    border: 3px solid var(--secondary);
    display: flex;
    gap: 2rem;
    align-items: start;
}

.warning-icon {
    font-size: 4rem;
    color: var(--secondary);
}

.warning-content h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.warning-content p {
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.warning-content strong {
    color: var(--secondary);
    font-weight: 700;
}

/* 역사 섹션 */
.history-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(245, 158, 11, 0.05));
    border-radius: 15px;
}

.history-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

.history-title i {
    color: var(--primary);
    margin-right: 1rem;
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
}

.history-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text);
}

.history-intro strong {
    color: var(--primary);
}

.history-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.history-box h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.history-box h4 i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.history-box ul {
    list-style-position: inside;
    margin-bottom: 1rem;
    color: var(--text);
}

.history-box li {
    margin-bottom: 0.75rem;
    color: var(--text);
}

.history-box p {
    color: var(--text);
    line-height: 1.8;
}

.history-box strong {
    color: var(--primary);
}

.history-note {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--text);
}

.history-note i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.history-quote {
    background: var(--gradient-1);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
}

.history-quote i {
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.history-quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--white);
    font-style: italic;
}

.history-quote cite {
    display: block;
    text-align: right;
    font-size: 0.9rem;
    opacity: 0.9;
    color: var(--white);
}

.history-modern {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.history-modern h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.history-modern h4 i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

.history-modern p {
    color: var(--text);
    line-height: 1.8;
}

.history-modern strong {
    color: var(--primary);
}

/* ==================== 가격 정책 ==================== */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.price-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    position: relative;
}

.price-card.featured {
    border: 3px solid var(--secondary);
    transform: scale(1.05);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.price-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.price-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.price-subtitle {
    color: var(--text-light);
}

.price-amount {
    text-align: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-light);
}

.price-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-unit {
    font-size: 1.2rem;
    color: var(--text-light);
}

.price-discount {
    text-align: center;
    margin-bottom: 2rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 1rem;
}

.discount-rate {
    color: var(--secondary);
    font-weight: 700;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.price-features i {
    color: var(--primary);
    margin-top: 0.25rem;
}

.price-roi {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.roi-title {
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--dark);
}

.roi-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.roi-item.highlight {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

/* 분할 납부 옵션 */
.payment-options {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(245, 158, 11, 0.05));
    border-radius: 15px;
}

.options-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark);
}

.options-title i {
    color: var(--accent);
    margin-right: 1rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.option-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.option-card.featured {
    border: 2px solid var(--secondary);
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-name {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.option-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.option-desc {
    color: var(--text-light);
}

/* ==================== 커리큘럼 ==================== */
.curriculum-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.curriculum-phase {
    margin-bottom: 4rem;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.phase-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
}

.phase-title {
    font-size: 2rem;
    color: var(--dark);
}

.phase-duration {
    color: var(--text-light);
    font-size: 1.1rem;
}

.phase-content {
    margin-left: 110px;
}

.month-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.month-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.month-content h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.month-content ul {
    list-style-position: inside;
    color: var(--text);
}

.month-content li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

/* ==================== 교수자 소개 ==================== */
.teacher-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.teacher-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.teacher-placeholder {
    width: 250px;
    height: 250px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teacher-placeholder i {
    font-size: 8rem;
    color: var(--white);
}

.teacher-name {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.teacher-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.teacher-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.teacher-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text);
}

.teacher-stat i {
    color: var(--accent);
    font-size: 1.5rem;
}

.teacher-expertise h4,
.teacher-collaboration h4,
.teacher-philosophy h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.teacher-expertise h4 i,
.teacher-collaboration h4 i,
.teacher-philosophy h4 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.teacher-expertise ul,
.teacher-collaboration ul {
    list-style-position: inside;
    margin-bottom: 2rem;
    color: var(--text);
}

.teacher-expertise li,
.teacher-collaboration li {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.teacher-philosophy {
    margin-top: 2rem;
}

.teacher-philosophy blockquote {
    background: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--primary);
    border-radius: 5px;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
}

/* ==================== 제자 혜택 ==================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-desc {
    color: var(--text);
    line-height: 1.7;
}

/* ==================== FAQ ==================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem 2rem;
    color: var(--text);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--primary);
}

/* ==================== 신청 섹션 ==================== */
.apply-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.apply-highlight {
    background: var(--gradient-1);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.apply-highlight h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.apply-highlight h3 i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.apply-highlight ul {
    list-style: none;
}

.apply-highlight li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.apply-highlight i {
    color: var(--secondary);
}

.apply-remaining {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 2rem;
}

.remaining-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.remaining-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
}

.remaining-bar {
    width: 100%;
    height: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.remaining-fill {
    height: 100%;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}

.apply-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.apply-info h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.apply-info h3 i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.apply-info ul {
    list-style-position: inside;
    color: var(--text);
}

.apply-info li {
    margin-bottom: 0.75rem;
    color: var(--text);
}

.apply-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s ease;
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.char-count {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ==================== 프로젝트 그리드 ==================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.project-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.project-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.project-card p {
    color: var(--text);
}

/* ==================== 푸터 ==================== */
.footer {
    background: var(--gradient-1);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.dharma-wheel-small {
    flex-shrink: 0;
}

.footer-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-desc {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
    color: var(--white);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-links i {
    margin-right: 0.5rem;
    color: var(--secondary);
}

.footer-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-slogan {
    font-style: italic;
    opacity: 0.8;
    color: var(--white);
}

/* ==================== 애니메이션 ==================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== 반응형 ==================== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .teacher-card {
        grid-template-columns: 1fr;
    }
    
    .apply-container {
        grid-template-columns: 1fr;
    }
    
    .phase-content {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .program-grid,
    .value-grid,
    .market-grid {
        grid-template-columns: 1fr;
    }
    
    .teacher-stats {
        grid-template-columns: 1fr;
    }
    
    .translate-widget {
        margin: 0.5rem;
    }
    
    #google_translate_element .goog-te-combo {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .phase-header {
        flex-direction: column;
        align-items: start;
    }
    
    .month-item {
        flex-direction: column;
    }
    
    .translate-widget {
        margin: 0.25rem;
    }
    
    #google_translate_element .goog-te-combo {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* ==================== AI 계급화 시대 섹션 ==================== */
.ai-era-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(245, 158, 11, 0.05));
}

.ai-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.ai-video-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.ai-video-card h3 {
    margin-bottom: 1rem;
}

.ai-video-card p {
    margin-bottom: 1.5rem;
}

.ai-crisis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.ai-crisis-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s ease;
}

.ai-crisis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.crisis-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.crisis-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.ai-solution {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ai-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.solution-item i {
    font-size: 1.5rem;
}

.ai-value-section {
    margin: 4rem 0;
}

.ai-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ai-value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.ai-value-card h4 {
    margin-bottom: 1rem;
}

.ai-cta {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(139, 92, 246, 0.1));
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid var(--secondary);
}

/* ==================== 역사 타임라인 ==================== */
.history-timeline {
    position: relative;
    padding-left: 3rem;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-1);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 3px solid rgba(139, 92, 246, 0.3);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient-2);
    border: 4px solid var(--white);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.timeline-date {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.timeline-content h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.timeline-content ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.timeline-content li {
    margin-bottom: 0.75rem;
}

/* ==================== 유틸리티 클래스 (인라인 스타일 제거용) ==================== */
.bg-gradient-light {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(245, 158, 11, 0.05));
}

.content-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.box-title-purple {
    color: #8B5CF6;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.box-text-large {
    color: #000;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
}

.highlight-gold-large {
    color: #F59E0B;
    font-size: 1.4rem;
}

.info-box-gold {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 10px;
    border-left: 5px solid #F59E0B;
}

.info-box-purple {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 10px;
    border-left: 5px solid #8B5CF6;
    text-align: center;
}

.info-box-light {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.box-subtitle {
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 1rem;
}

.box-text {
    color: #000;
    font-weight: 600;
    line-height: 1.8;
}

.text-purple-bold {
    color: #8B5CF6;
}

.text-gold-bold {
    color: #F59E0B;
}

.section-title-dark {
    color: #1a1a1a;
    font-weight: 900;
}

.section-subtitle-dark {
    color: #000;
    font-weight: 600;
}

.info-text-center {
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* 타임라인 커스텀 스타일 */
.timeline-content h3 {
    color: #8B5CF6;
    font-weight: 800;
}

.timeline-content h4 {
    color: #F59E0B;
    font-weight: 700;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content li {
    color: #000;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content li::before {
    content: "→";
    color: #14B8A6;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.timeline-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(139, 92, 246, 0.1));
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    border-left: 5px solid #F59E0B;
}

.timeline-highlight p {
    color: #000;
    font-weight: 700;
    margin: 0;
}

/* 대형 제목 스타일 */
.large-title {
    color: #1a1a1a;
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.large-title-gold {
    color: #F59E0B;
    font-weight: 900;
    font-size: 1.8rem;
}

.medium-title-purple {
    color: #8B5CF6;
    font-weight: 800;
    font-size: 1.3rem;
}

.large-list {
    color: #000;
    font-weight: 600;
    line-height: 1.8;
    font-size: 1.1rem;
}

.large-list li strong {
    color: #F59E0B;
    font-size: 1.2rem;
}

.value-description {
    color: #8B5CF6;
    font-weight: 700;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* 로고 스타일 */
.logo-main-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD700;
}

.logo-sub-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

/* 히어로 타이머 텍스트 */
.timer-text {
    color: #fff;
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.95rem;
}

/* ==================== 애니메이션 ==================== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ==================== 인쇄 최적화 ==================== */
@media print {
    .header,
    .hamburger,
    .hero-cta,
    .countdown-container,
    .btn,
    .footer {
        display: none;
    }
    
    body {
        color: #000000;
    }
}
