/* ========================================
   무진장 스타일 - 다크 테마 CSS
   3,810만 명 사주 오류 분석 홈페이지
   ======================================== */

/* ========== 1. CSS 변수 정의 ========== */
:root {
    /* 배경 색상 */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    
    /* 텍스트 색상 */
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-gold: #d4af37;
    
    /* 강조 색상 */
    --accent-red: #ff4444;
    --accent-blue: #4488ff;
    --accent-gold: #ffd700;
    --accent-green: #00ff88;
    
    /* 그라데이션 */
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(68,136,255,0.1) 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    
    /* 그림자 */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    
    /* 폰트 */
    --font-serif: 'Noto Serif KR', serif;
    --font-sans: 'Noto Sans KR', sans-serif;
    --font-number: 'Roboto', sans-serif;
    
    /* 기타 */
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* ========== 2. 기본 리셋 & 스타일 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ========== 4. 로딩 화면 ========== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.dharma-wheel-loading {
    text-align: center;
}

.dharma-wheel-loading svg {
    animation: rotate 3s linear infinite;
}

.dharma-wheel-loading p {
    margin-top: 20px;
    color: var(--text-gold);
    font-family: var(--font-serif);
    font-size: 18px;
    letter-spacing: 2px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========== 5. 스크롤 진행 바 ========== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ========== 6. 네비게이션 ========== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 9998;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dharma-icon {
    animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-gold);
}

.nav-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.nav-highlight {
    color: var(--accent-green);
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

.nav-menu a.nav-highlight::after {
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--text-gold) 100%);
}

.nav-menu a.nav-urgent {
    color: var(--accent-red);
    font-weight: 700;
    animation: pulse 1.5s ease-in-out infinite;
}

.nav-menu a.nav-urgent::after {
    background: linear-gradient(90deg, var(--accent-red) 0%, var(--accent-gold) 100%);
}

/* 햄버거 버튼 */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
    position: relative;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--text-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== 6.5 Google 자동 언어 번역 ========== */

#google_translate_element {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

/* Google Translate 위젯 기본 스타일은 translator.js에서 처리 */

/* ========== 6.6 블랙록 투자 분석 섹션 ========== */

.blackrock-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.blackrock-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-gold), transparent);
}

.blackrock-hero {
    text-align: center;
    margin-bottom: 60px;
}

.blackrock-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

/* 블랙록 개요 카드 */
.blackrock-overview {
    margin-bottom: 60px;
}

.overview-card {
    background: var(--gradient-card);
    border: 2px solid var(--text-gold);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.overview-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.overview-card .icon {
    font-size: 36px;
}

.overview-card h3 {
    font-size: 28px;
    color: var(--text-gold);
    margin: 0;
}

.investment-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.stat-box.large {
    grid-column: span 2;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-value.highlight {
    font-size: 32px;
    color: var(--text-gold);
}

.stat-value.urgent {
    color: var(--accent-red);
    font-size: 28px;
}

/* 분석 그리드 */
.blackrock-analysis {
    margin-bottom: 60px;
}

.analysis-title {
    font-size: 32px;
    color: var(--text-gold);
    text-align: center;
    margin-bottom: 40px;
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.analysis-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: all 0.3s ease;
}

.analysis-card:hover {
    border-color: var(--text-gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.analysis-card.highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 68, 68, 0.1) 100%);
    border: 2px solid var(--text-gold);
}

.analysis-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.analysis-card h4 {
    font-size: 22px;
    color: var(--text-gold);
    margin-bottom: 15px;
}

.analysis-card p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.analysis-card ul {
    list-style: none;
    padding: 0;
}

.analysis-card ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.analysis-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--text-gold);
}

/* 타임라인 */
.impact-timeline {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--text-gold);
}

.timeline-item.urgent {
    background: rgba(255, 68, 68, 0.2);
    border-left-color: var(--accent-red);
}

.timeline-item .year {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-gold);
    min-width: 80px;
}

.timeline-item.urgent .year {
    color: var(--accent-red);
    font-size: 20px;
}

.timeline-item .event {
    font-size: 16px;
    color: var(--text-primary);
}

/* 데이터 테이블 */
.blackrock-data {
    margin-bottom: 60px;
}

.data-title {
    font-size: 28px;
    color: var(--text-gold);
    text-align: center;
    margin-bottom: 30px;
}

.data-table-wrapper {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    border-collapse: collapse;
    overflow: hidden;
}

.data-table thead {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(68, 136, 255, 0.1) 100%);
}

.data-table th,
.data-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.data-table th {
    font-weight: 700;
    color: var(--text-gold);
    font-size: 16px;
}

.data-table td {
    color: var(--text-secondary);
}

.data-table .total-row {
    background: rgba(212, 175, 55, 0.1);
    font-weight: 700;
}

.data-table .total-row td {
    color: var(--text-primary);
}

/* 투자 규모 차트 */
.blackrock-chart {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
}

.blackrock-chart .chart-title {
    font-size: 22px;
    color: var(--text-gold);
    text-align: center;
    margin-bottom: 30px;
}

.blackrock-chart .chart-container {
    position: relative;
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
}

/* 경고 박스 */
.blackrock-warning {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid var(--accent-red);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
}

.warning-icon {
    font-size: 60px;
    flex-shrink: 0;
}

.warning-content h3 {
    font-size: 28px;
    color: var(--accent-red);
    margin-bottom: 15px;
}

.warning-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.warning-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.warning-stat {
    text-align: center;
}

.warning-stat .number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-gold);
    margin-bottom: 5px;
}

.warning-stat .label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* 연결 그리드 */
.blackrock-connection {
    margin-bottom: 40px;
}

.connection-title {
    font-size: 28px;
    color: var(--text-gold);
    text-align: center;
    margin-bottom: 40px;
}

.connection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.connection-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    padding: 30px;
}

.connection-card.highlight {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 2px solid var(--accent-green);
}

.connection-card h4 {
    font-size: 20px;
    color: var(--text-gold);
    margin-bottom: 15px;
}

.connection-card ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.connection-card ol li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.cta-box {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.cta-box p {
    margin: 5px 0;
    color: var(--accent-green);
    font-weight: 700;
}

/* 반응형 */
@media (max-width: 991px) {
    .investment-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-box.large {
        grid-column: span 2;
    }
    
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .connection-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .investment-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-box.large {
        grid-column: span 1;
    }
    
    .blackrock-warning {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .warning-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .data-table th,
    .data-table td {
        padding: 10px;
        font-size: 14px;
    }
    
    /* 차트 반응형 */
    .blackrock-chart {
        padding: 20px 15px;
    }
    
    .blackrock-chart .chart-container {
        height: 300px;
    }
    
    .blackrock-chart .chart-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

/* ========== 6.6.5 AI 혁명 × 사주팔자 현금화 시스템 섹션 ========== */

.ai-revolution-section {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #0f0f1e 100%);
    position: relative;
    overflow: hidden;
}

.ai-revolution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-red) 25%, 
        var(--text-gold) 50%, 
        var(--accent-blue) 75%, 
        transparent 100%
    );
}

/* 히어로 섹션 */
.revolution-hero {
    text-align: center;
    margin-bottom: 80px;
}

.revolution-badge {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%);
    color: var(--bg-primary);
    font-size: 15px;
    font-weight: 700;
    border-radius: 25px;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

.revolution-quote {
    margin-top: 40px;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(68, 136, 255, 0.1) 100%);
    border-left: 4px solid var(--text-gold);
    border-radius: var(--border-radius);
}

.revolution-quote p {
    font-size: 20px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.quote-author {
    display: block;
    text-align: right;
    color: var(--text-gold);
    font-size: 16px;
    font-weight: 600;
}

/* 인사이트 그리드 */
.revolution-insights {
    margin-bottom: 80px;
}

.insights-title {
    font-size: 32px;
    color: var(--text-gold);
    text-align: center;
    margin-bottom: 50px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.insight-card:hover {
    border-color: var(--text-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.insight-card.highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 68, 68, 0.1) 100%);
    border: 2px solid var(--text-gold);
}

.insight-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.insight-card h4 {
    font-size: 22px;
    color: var(--text-gold);
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.insight-data {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.data-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.data-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-gold);
}

/* 혁신 분야 카드 */
.revolution-fields {
    margin-bottom: 80px;
}

.fields-title {
    font-size: 32px;
    color: var(--text-gold);
    text-align: center;
    margin-bottom: 50px;
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.field-card {
    background: var(--bg-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.field-card:hover {
    border-color: var(--text-gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.field-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(68, 136, 255, 0.1) 100%);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.field-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.field-header h4 {
    font-size: 24px;
    color: var(--text-gold);
    margin-bottom: 8px;
}

.field-investment {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 68, 68, 0.2);
    color: var(--accent-red);
    font-size: 13px;
    font-weight: 600;
    border-radius: 15px;
}

.field-body {
    padding: 30px;
}

.field-body h5 {
    font-size: 18px;
    color: var(--text-gold);
    margin-bottom: 12px;
    margin-top: 25px;
}

.field-body h5:first-child {
    margin-top: 0;
}

.field-body p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.field-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.field-body ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.field-body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--text-gold);
}

/* 시장 규모 */
.market-size {
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.market-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.market-row:last-child {
    border-bottom: none;
}

.market-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.market-value.highlight {
    font-size: 18px;
    color: var(--text-gold);
}

/* 현금화 방법 */
.cash-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cash-method {
    background: linear-gradient(135deg, rgba(68, 136, 255, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-blue);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.method-badge {
    flex-shrink: 0;
    padding: 6px 12px;
    background: var(--accent-blue);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 12px;
}

.method-content {
    flex: 1;
}

.method-content strong {
    display: block;
    font-size: 16px;
    color: var(--text-gold);
    margin-bottom: 8px;
}

.method-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.method-content .income {
    display: inline-block;
    padding: 6px 15px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    color: var(--bg-primary);
    font-size: 14px;
    font-weight: 700;
    border-radius: 15px;
}

/* 차트 섹션 */
.revolution-chart {
    margin-bottom: 80px;
    padding: 40px;
    background: var(--bg-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
}

.chart-summary {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.summary-item {
    text-align: center;
}

.summary-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.summary-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
}

.summary-value.gold {
    color: var(--text-gold);
}

.summary-value.green {
    color: var(--accent-green);
}

.summary-value.blue {
    color: var(--accent-blue);
}

/* 로드맵 */
.revolution-roadmap {
    margin-bottom: 80px;
}

.roadmap-title {
    font-size: 32px;
    color: var(--text-gold);
    text-align: center;
    margin-bottom: 15px;
}

.roadmap-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.roadmap-timeline {
    position: relative;
    padding-left: 60px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        var(--accent-blue) 0%, 
        var(--text-gold) 50%, 
        var(--accent-green) 100%
    );
}

.roadmap-step {
    position: relative;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.roadmap-step:hover {
    border-color: var(--text-gold);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.roadmap-step.highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 68, 68, 0.1) 100%);
    border: 2px solid var(--text-gold);
}

.step-badge {
    position: absolute;
    left: -60px;
    top: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.step-content h4 {
    font-size: 22px;
    color: var(--text-gold);
    margin-bottom: 15px;
}

.step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.step-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.step-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: 700;
}

.step-income {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.income-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-green);
}

.income-value.gold {
    font-size: 24px;
    color: var(--text-gold);
}

/* 수익 차트 */
.revolution-income-chart {
    margin-bottom: 80px;
    padding: 40px;
    background: var(--bg-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
}

/* CTA 섹션 */
.revolution-cta {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 3px solid var(--text-gold);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    text-align: center;
}

.cta-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.revolution-cta h3 {
    font-size: 32px;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.revolution-cta > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.cta-option {
    background: var(--bg-card);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: all 0.3s ease;
}

.cta-option:hover {
    border-color: var(--text-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.cta-option.highlight {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(68, 136, 255, 0.1) 100%);
    border: 3px solid var(--text-gold);
}

.option-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.cta-option h4 {
    font-size: 20px;
    color: var(--text-gold);
    margin-bottom: 15px;
}

.cta-option p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--bg-primary);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #4488ff 0%, #2266cc 100%);
}

.cta-urgency {
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid var(--accent-red);
    border-radius: var(--border-radius);
}

.cta-urgency p {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.cta-urgency p:last-child {
    margin-bottom: 0;
}

/* 반응형 - AI 혁명 섹션 */
@media (max-width: 991px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fields-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
    
    .chart-summary {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .revolution-quote {
        padding: 20px;
    }
    
    .revolution-quote p {
        font-size: 16px;
    }
    
    .roadmap-timeline {
        padding-left: 40px;
    }
    
    .roadmap-timeline::before {
        left: 10px;
    }
    
    .step-badge {
        left: -40px;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .revolution-chart,
    .revolution-income-chart {
        padding: 20px;
    }
    
    .revolution-cta {
        padding: 40px 20px;
    }
    
    .cta-icon {
        font-size: 60px;
    }
}

/* ========== 6.7 오프캔버스 메뉴 ========== */

/* 오버레이 */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 오프캔버스 메뉴 */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: var(--bg-secondary);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.offcanvas-menu.active {
    right: 0;
}

/* 오프캔버스 헤더 */
.offcanvas-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(68,136,255,0.05) 100%);
}

.offcanvas-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offcanvas-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-gold);
    line-height: 1.2;
}

.offcanvas-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.offcanvas-close {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--text-gold);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.offcanvas-close:hover {
    background: var(--text-gold);
    transform: rotate(90deg);
}

.offcanvas-close svg {
    color: var(--text-gold);
}

.offcanvas-close:hover svg {
    color: var(--bg-primary);
}

/* 오프캔버스 네비게이션 */
.offcanvas-nav {
    flex: 1;
    padding: 20px 0;
}

.offcanvas-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 25px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.offcanvas-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--text-gold);
    padding-left: 30px;
}

.offcanvas-link.highlight {
    color: var(--accent-green);
    font-weight: 700;
    background: rgba(0, 255, 136, 0.05);
    border-left-color: var(--accent-green);
}

.offcanvas-link.highlight:hover {
    background: rgba(0, 255, 136, 0.1);
}

.offcanvas-icon {
    font-size: 22px;
    width: 30px;
    text-align: center;
}

/* 오프캔버스 푸터 */
.offcanvas-footer {
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.05);
}

.offcanvas-contact {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    text-align: center;
}

.offcanvas-contact-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-gold);
    margin-bottom: 8px;
}

.offcanvas-contact-info {
    font-size: 18px;
    font-weight: 700;
    margin: 5px 0;
}

.offcanvas-contact-info a {
    color: var(--text-primary);
    text-decoration: none;
}

.offcanvas-contact-info a:hover {
    color: var(--text-gold);
}

.offcanvas-contact-time {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.offcanvas-quote {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
}

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

/* 파티클 배경 */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--text-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* 배경 법륜 */
.hero-bg-wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    animation: rotate-slow 30s linear infinite;
}

.hero-bg-wheel svg {
    width: 800px;
    height: 800px;
}

/* 히어로 콘텐츠 */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-icon {
    margin-bottom: 30px;
}

.dharma-wheel-hero {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-gold);
    margin-bottom: 20px;
    letter-spacing: 4px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-main {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.highlight-number {
    font-family: var(--font-number);
    color: var(--accent-red);
    font-size: 72px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-cost {
    font-size: 22px;
    color: var(--accent-red);
    font-weight: 700;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.highlight-percent {
    color: var(--accent-red);
    font-weight: 700;
    font-family: var(--font-number);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

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

/* 스크롤 인디케이터 */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-gold);
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--text-gold);
    border-radius: 50%;
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% { top: 10px; opacity: 1; }
    50% { top: 30px; opacity: 0.3; }
}

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

/* ========== 7.5. 히어로 희망 메시지 ========== */
.hero-hope {
    background: linear-gradient(135deg, rgba(0,255,136,0.1) 0%, rgba(212,175,55,0.1) 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-green);
    margin: 30px 0;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease 1.3s forwards;
}

.hope-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.hope-message {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--accent-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.hope-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-primary);
}

.hope-description strong {
    color: var(--text-gold);
    font-size: 24px;
}

.hope-highlight {
    display: inline-block;
    font-size: 28px;
    font-weight: 900;
    color: var(--accent-green);
    background: linear-gradient(135deg, rgba(0,255,136,0.2) 0%, rgba(212,175,55,0.2) 100%);
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 15px;
}

/* ========== 8. 버튼 스타일 ========== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    border-color: var(--text-gold);
    color: var(--text-gold);
}

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

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.9), 0 0 40px rgba(0, 255, 136, 0.6); }
}

.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 15px;
    background: var(--bg-card);
    border-color: var(--text-gold);
    color: var(--text-primary);
}

.btn-contact:hover {
    background: var(--gradient-gold);
    color: var(--bg-primary);
}

.btn-icon {
    font-size: 24px;
}

/* ========== 9. 섹션 공통 스타일 ========== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-gold);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

/* ========== 10. 통계 카드 ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-gold);
}

.stat-card.highlight {
    border-color: var(--accent-red);
    background: rgba(255, 68, 68, 0.1);
}

.stat-number {
    font-family: var(--font-number);
    font-size: 48px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.stat-card.highlight .stat-number {
    color: var(--accent-red);
}

.stat-label {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.stat-percent {
    font-size: 24px;
    color: var(--accent-red);
    font-weight: 700;
    margin-top: 10px;
}

.stat-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 15px;
    overflow: hidden;
    position: relative;
}

.stat-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--width, 0%);
    background: var(--color);
    transition: width 2s ease;
    border-radius: 3px;
}

.additional-stats {
    max-width: 800px;
    margin: 0 auto;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    transition: var(--transition);
}

.stat-row:hover {
    background: var(--bg-card-hover);
    transform: translateX(10px);
}

.stat-icon {
    font-size: 32px;
}

.stat-text {
    font-size: 18px;
    color: var(--text-secondary);
}

.stat-text strong {
    color: var(--text-gold);
    font-family: var(--font-number);
}

.stat-row.highlight-stat {
    background: rgba(212, 175, 55, 0.15);
    border-left: 4px solid var(--text-gold);
    padding-left: 20px;
    font-size: 20px;
}

.stat-row.highlight-stat strong {
    color: var(--accent-red);
    font-size: 24px;
}

/* ========== 10.5. 계산 근거 스타일 ========== */
.calculation-basis {
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--text-gold);
}

.calculation-basis h3 {
    font-size: 28px;
    color: var(--text-gold);
    margin-bottom: 30px;
    text-align: center;
}

.basis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.basis-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.basis-card h4 {
    font-size: 20px;
    color: var(--text-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.basis-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.basis-card li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.basis-card li:last-child {
    border-bottom: none;
}

.basis-card li strong {
    color: var(--text-primary);
}

.basis-source,
.basis-formula {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-style: italic;
}

.basis-formula {
    color: var(--accent-green);
    font-family: var(--font-number);
    font-weight: 600;
}

.detailed-basis {
    max-width: 1000px;
    margin: 30px auto 0;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius);
    border: 2px solid var(--text-gold);
}

.detailed-basis h3 {
    font-size: 28px;
    color: var(--text-gold);
    margin-bottom: 30px;
    text-align: center;
}

.basis-section {
    margin-bottom: 40px;
}

.basis-section h4 {
    font-size: 22px;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.basis-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.basis-table thead {
    background: rgba(212, 175, 55, 0.2);
}

.basis-table th,
.basis-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.basis-table th {
    color: var(--text-gold);
    font-weight: 600;
    font-size: 14px;
}

.basis-table td {
    color: var(--text-secondary);
    font-size: 15px;
}

.basis-table .total-row {
    background: rgba(212, 175, 55, 0.15);
    font-weight: 700;
}

.basis-table .total-row td {
    color: var(--text-gold);
}

.basis-sources {
    padding: 30px;
    background: rgba(68, 136, 255, 0.1);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-blue);
}

.basis-sources h4 {
    font-size: 20px;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.basis-sources ul {
    list-style: none;
    margin-bottom: 20px;
}

.basis-sources li {
    padding: 8px 0;
    color: var(--text-secondary);
    padding-left: 25px;
    position: relative;
}

.basis-sources li::before {
    content: '📄';
    position: absolute;
    left: 0;
    top: 8px;
}

.basis-sources li strong {
    color: var(--text-primary);
}

.basis-note {
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    color: var(--text-gold);
    font-size: 14px;
    line-height: 1.6;
}

/* ========== 11. 오류 카드 ========== */
.errors-list {
    max-width: 1000px;
    margin: 0 auto;
}

.error-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border-left: 4px solid var(--text-gold);
    overflow: hidden;
    transition: var(--transition);
}

.error-card:hover {
    box-shadow: var(--shadow-md);
}

.error-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.error-title {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.error-number {
    font-family: var(--font-number);
    font-size: 36px;
    font-weight: 900;
    color: var(--text-gold);
    opacity: 0.5;
}

.error-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.error-stats {
    display: flex;
    align-items: center;
    gap: 20px;
}

.error-count {
    font-family: var(--font-number);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-red);
}

.error-percent {
    font-size: 18px;
    color: var(--text-secondary);
    background: rgba(255, 68, 68, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
}

.error-toggle {
    background: none;
    border: 2px solid var(--text-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-gold);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-toggle:hover {
    background: var(--text-gold);
    color: var(--bg-primary);
    transform: rotate(90deg);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.error-card.active .toggle-icon {
    transform: rotate(45deg);
}

.error-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 30px;
}

.error-card.active .error-content {
    max-height: 5000px;
    padding: 0 30px 30px 30px;
}

.error-section {
    margin-bottom: 30px;
}

.error-section h4 {
    font-size: 20px;
    color: var(--text-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.error-section ul {
    list-style: disc;
    list-style-position: inside;
    color: var(--text-secondary);
    line-height: 1.8;
}

.error-section ul li {
    margin-bottom: 8px;
}

.error-section ul li strong {
    color: var(--text-primary);
}

.solution-list {
    list-style: none !important;
}

.solution-list li::before {
    content: '✓ ';
    color: var(--accent-green);
    font-weight: bold;
    margin-right: 8px;
}

/* 테이블 스타일 */
.error-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.error-table thead {
    background: rgba(212, 175, 55, 0.2);
}

.error-table th,
.error-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.error-table th {
    color: var(--text-gold);
    font-weight: 600;
}

.error-table td {
    color: var(--text-secondary);
}

.error-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.error-impact {
    color: var(--accent-red) !important;
    font-weight: 600;
}

.total-row {
    background: rgba(212, 175, 55, 0.1);
    font-weight: 700;
}

.total-row td {
    color: var(--text-gold) !important;
}

.highlight-row {
    background: rgba(0, 255, 136, 0.1);
}

.highlight-row td {
    color: var(--accent-green) !important;
}

/* 비교 테이블 */
.comparison-table {
    width: 100%;
    margin: 15px 0;
}

.comparison-table td {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wrong {
    color: var(--accent-red);
    font-weight: 600;
    width: 150px;
}

.correct {
    color: var(--accent-green);
    font-weight: 600;
    width: 150px;
}

.example-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--text-gold);
}

.example-box p {
    margin-bottom: 15px;
    color: var(--text-primary);
}

/* ========== 12. 차트 섹션 ========== */
.chart-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 30px;
    align-items: start;
}

.chart-wrapper {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-table {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th,
.stats-table td {
    padding: 15px 10px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-table th {
    color: var(--text-gold);
    font-weight: 600;
    font-size: 14px;
}

.stats-table td {
    color: var(--text-secondary);
    font-size: 15px;
}

.severity {
    display: inline-block;
    font-size: 16px;
}

.severity.severe { color: var(--accent-red); }
.severity.high { color: #ff8844; }
.severity.medium { color: #ffbb44; }
.severity.low { color: #44ff88; }

.overlap-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--text-gold);
}

.overlap-note p {
    color: var(--text-gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.overlap-note ul {
    list-style: none;
    color: var(--text-secondary);
}

.overlap-note li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.overlap-note li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-gold);
}

.overlap-note strong {
    color: var(--text-primary);
}

/* ========== 13. 검증 카드 ========== */
.verification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.verification-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.verification-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-gold);
}

.verification-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.verification-card h3 {
    font-size: 20px;
    color: var(--text-gold);
    margin-bottom: 25px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verification-stats {
    text-align: left;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item .label {
    color: var(--text-secondary);
    font-size: 14px;
}

.stat-item .value {
    font-family: var(--font-number);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.error-text {
    color: var(--accent-red) !important;
}

.success-text {
    color: var(--accent-green) !important;
}

/* ========== 14. 해결책 섹션 ========== */
.solution-section {
    background: var(--gradient-hero);
}

.comparison-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.comparison-item {
    flex: 1;
    min-width: 300px;
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.comparison-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.comparison-item.old {
    border-color: var(--accent-red);
}

.comparison-item.new {
    border-color: var(--accent-green);
    background: rgba(0, 255, 136, 0.05);
}

.comparison-item h3 {
    font-size: 24px;
    color: var(--text-gold);
    margin-bottom: 20px;
    text-align: center;
}

.method-list {
    margin-bottom: 25px;
}

.method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.method-name {
    font-size: 16px;
    color: var(--text-secondary);
}

.accuracy {
    font-family: var(--font-number);
    font-size: 24px;
    font-weight: 700;
}

.method.highlight .accuracy {
    font-size: 32px;
}

.issues p,
.features p {
    margin-bottom: 10px;
    font-size: 15px;
}

.issues p {
    color: var(--accent-red);
}

.features p {
    color: var(--accent-green);
}

.comparison-arrow {
    font-size: 48px;
    color: var(--text-gold);
    font-weight: bold;
}

.rescue-stats {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 2px solid var(--text-gold);
}

.rescue-number {
    margin-bottom: 20px;
}

.big-number {
    font-family: var(--font-number);
    font-size: 72px;
    font-weight: 900;
    color: var(--accent-green);
}

.rescue-number p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.rescue-formula {
    font-size: 18px;
    color: var(--text-secondary);
}

.rescue-formula strong {
    color: var(--accent-green);
    font-size: 24px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== 15. 체크리스트 ========== */
.checklist-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checklist {
    margin-bottom: 30px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.check-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.check-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--text-gold);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
}

.check-item input[type="checkbox"]:checked + .checkmark {
    background: var(--text-gold);
}

.check-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-primary);
    font-size: 18px;
    font-weight: bold;
}

.check-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.check-text strong {
    color: var(--text-primary);
}

.check-result {
    margin-top: 30px;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.check-result.excellent {
    background: rgba(0, 255, 136, 0.2);
    color: var(--accent-green);
    border: 2px solid var(--accent-green);
}

.check-result.good {
    background: rgba(255, 187, 68, 0.2);
    color: #ffbb44;
    border: 2px solid #ffbb44;
}

.check-result.poor {
    background: rgba(255, 68, 68, 0.2);
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
}

/* ========== 16. 상담 카드 ========== */
.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.consult-card {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.consult-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--text-gold);
    background: var(--gradient-card);
}

.consult-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.consult-card h3 {
    font-size: 20px;
    color: var(--text-gold);
    margin-bottom: 10px;
}

.consult-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========== 17. 연락처 섹션 ========== */
.contact-section {
    background: var(--gradient-hero);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--text-gold);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.contact-details a {
    font-size: 20px;
    color: var(--text-gold);
    font-weight: 600;
    display: block;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.6;
}

.contact-note {
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--text-gold);
}

.contact-note p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-note {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 30px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-green);
    text-align: center;
}

.service-note h3 {
    font-size: 22px;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.service-note p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.service-note strong {
    color: var(--text-primary);
}

/* ========== 18. 푸터 ========== */
.footer {
    background: var(--bg-primary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--text-gold);
}

.footer-logo span {
    font-size: 18px;
    color: var(--text-secondary);
}

.footer-quote {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.footer-links span {
    color: var(--text-secondary);
}

/* ========== 18.5. 99% 탈출 섹션 ========== */
.escape-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.escape-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0,255,136,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.escape-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 20px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-red);
}

.escape-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.escape-title {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--accent-red);
    margin-bottom: 20px;
    font-weight: 900;
}

.escape-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
}

.escape-content {
    max-width: 1200px;
    margin: 0 auto;
}

.escape-card {
    background: linear-gradient(135deg, rgba(0,255,136,0.1) 0%, rgba(212,175,55,0.1) 100%);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    border: 3px solid var(--accent-green);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.escape-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0,255,136,0.1), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.escape-card-icon {
    font-size: 80px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.escape-card h3 {
    font-size: 36px;
    color: var(--accent-green);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.escape-message {
    position: relative;
    z-index: 2;
}

.message-large {
    font-size: 28px;
    line-height: 1.8;
    color: var(--text-primary);
}

.message-large strong {
    color: var(--text-gold);
    font-size: 32px;
}

.highlight-99 {
    display: inline-block;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-green);
    background: rgba(0, 255, 136, 0.2);
    padding: 15px 30px;
    border-radius: 12px;
    margin-top: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.escape-video {
    margin: 60px 0;
    text-align: center;
}

.escape-video h3 {
    font-size: 32px;
    color: var(--text-gold);
    margin-bottom: 30px;
}

/* 동영상 컨테이너 */
.video-container {
    max-width: 900px;
    margin: 0 auto;
}

/* YouTube 썸네일 링크 */
.youtube-thumbnail-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* YouTube 썸네일 래퍼 */
.youtube-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 비율 */
    background: var(--bg-primary);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--text-gold);
    transition: all 0.3s ease;
}

.youtube-thumbnail:hover {
    box-shadow: 0 15px 60px rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    border-color: #ffd700;
}

/* 썸네일 이미지 */
.youtube-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.youtube-thumbnail:hover img {
    transform: scale(1.05);
}

/* YouTube 재생 버튼 오버레이 */
.youtube-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.youtube-thumbnail:hover .youtube-play-overlay {
    transform: translate(-50%, -50%) scale(1.15);
}

.youtube-play-overlay svg {
    display: block;
}

/* YouTube 배지 */
.youtube-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.youtube-thumbnail:hover .youtube-badge {
    background: rgba(255, 0, 0, 1);
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

/* 동영상 대체 버튼 (오류 시) */
.video-fallback {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: rgba(10, 10, 10, 0.95);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--text-gold);
}

.video-fallback p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
}

.video-fallback .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-fallback .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.video-caption {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 16px;
    font-style: italic;
    text-align: center;
    line-height: 1.8;
}

.video-info {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-gold);
    font-style: normal;
    font-weight: 500;
}

.escape-steps {
    margin: 60px 0;
}

.escape-steps h3 {
    font-size: 32px;
    color: var(--text-gold);
    margin-bottom: 40px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--text-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    font-family: var(--font-number);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.step-card h4 {
    font-size: 24px;
    color: var(--text-gold);
    margin: 20px 0;
    text-align: center;
}

.step-card ul {
    list-style: none;
    padding: 0;
}

.step-card li {
    padding: 10px 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-card li strong {
    color: var(--text-primary);
}

.escape-benefits {
    margin: 60px 0;
}

.escape-benefits h3 {
    font-size: 32px;
    color: var(--text-gold);
    margin-bottom: 40px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-item {
    background: rgba(0, 255, 136, 0.05);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.benefit-icon {
    font-size: 56px;
    display: block;
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-size: 22px;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.escape-cta {
    margin-top: 80px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(212,175,55,0.2) 0%, rgba(0,255,136,0.2) 100%);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    border: 3px solid var(--text-gold);
    text-align: center;
}

.cta-box h3 {
    font-size: 40px;
    color: var(--text-gold);
    margin-bottom: 20px;
    font-weight: 900;
}

.cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-description strong {
    color: var(--accent-green);
    font-size: 24px;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.cta-stat {
    text-align: center;
}

.cta-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-green);
    font-family: var(--font-number);
    margin-bottom: 10px;
}

.cta-label {
    display: block;
    font-size: 16px;
    color: var(--text-secondary);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== 19. 반응형 디자인 ========== */

/* 오프캔버스 메뉴 표시 (991px 이하) */
@media (max-width: 991px) {
    /* 데스크톱 메뉴 숨김 */
    .desktop-menu {
        display: none !important;
    }
    
    /* 햄버거 버튼 표시 */
    .nav-toggle {
        display: flex;
    }
    
    /* 네비게이션 로고 크기 조정 */
    .nav-logo .dharma-icon {
        width: 35px;
        height: 35px;
    }
    
    .nav-title {
        font-size: 20px;
    }
    
    .nav-subtitle {
        font-size: 12px;
    }
    
    /* Google 번역 위젯 간격 조정 */
    #google_translate_element {
        margin-right: 10px;
    }
}

/* 모바일 Google 번역 위젯 (767px 이하) */
@media (max-width: 767px) {
    #google_translate_element {
        margin-right: 8px;
    }
}

/* 태블릿 (768px ~ 1199px) */
@media (max-width: 1199px) {
    .hero-main {
        font-size: 42px;
    }
    
    .highlight-number {
        font-size: 56px;
    }
    
    .chart-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .chart-container {
        grid-template-columns: 1fr;
    }
    
    .comparison-box {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* 모바일 (최대 767px) */
@media (max-width: 767px) {
    .basis-grid {
        grid-template-columns: 1fr;
    }
    
    .basis-table {
        font-size: 12px;
    }
    
    .basis-table th,
    .basis-table td {
        padding: 10px 8px;
    }
    
    .calculation-basis,
    .detailed-basis {
        padding: 20px;
    }
    
    .escape-title {
        font-size: 28px;
    }
    
    .escape-subtitle {
        font-size: 18px;
    }
    
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    /* YouTube 썸네일 모바일 최적화 */
    .video-container {
        max-width: 100%;
    }
    
    .youtube-play-overlay svg {
        width: 56px;
        height: 40px;
    }
    
    .youtube-badge {
        font-size: 12px;
        padding: 8px 16px;
        bottom: 15px;
    }
    
    .video-caption {
        font-size: 14px;
    }
    
    .video-info {
        font-size: 13px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .hope-message {
        font-size: 24px;
    }
    
    .hope-highlight {
        font-size: 20px;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-main {
        font-size: 32px;
    }
    
    .highlight-number {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .error-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .error-stats {
        width: 100%;
        justify-content: space-between;
    }
    
    .verification-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .big-number {
        font-size: 48px;
    }
    
    .comparison-arrow {
        font-size: 32px;
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .hero-main {
        font-size: 28px;
    }
    
    .highlight-number {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .consultation-grid {
        grid-template-columns: 1fr;
    }
    
    .error-table {
        font-size: 12px;
    }
    
    .error-table th,
    .error-table td {
        padding: 10px 8px;
    }
}

/* ========== 20. AOS 애니메이션 준비 ========== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-up"] {
    transform: perspective(2500px) rotateX(-100deg);
}

[data-aos="flip-up"].aos-animate {
    transform: perspective(2500px) rotateX(0);
}

/* ========== 21. 프린트 스타일 ========== */
@media print {
    nav, .footer, .hero-buttons, .cta-buttons, .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

/* ========== 22. AI 챗봇 스타일 ========== */

/* 챗봇 버튼 */
.chatbot-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.chatbot-button svg {
    color: var(--bg-primary);
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-red);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
    white-space: nowrap;
}

/* 챗봇 팝업 */
.chatbot-popup {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 400px;
    height: 600px;
    background: var(--bg-secondary);
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s ease;
}

.chatbot-popup.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot-popup.minimized {
    height: 70px;
    overflow: hidden;
}

/* 챗봇 헤더 */
.chatbot-header {
    background: linear-gradient(135deg, var(--text-gold) 0%, var(--accent-gold) 100%);
    padding: 15px 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--bg-primary);
}

.chatbot-status {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: rgba(10, 10, 10, 0.8);
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chatbot-header-actions {
    display: flex;
    gap: 8px;
}

.chatbot-action-btn {
    width: 30px;
    height: 30px;
    background: rgba(10, 10, 10, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chatbot-action-btn:hover {
    background: rgba(10, 10, 10, 0.3);
    transform: scale(1.1);
}

.chatbot-action-btn svg {
    color: var(--bg-primary);
}

/* 챗봇 메시지 영역 */
.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chatbot-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: var(--text-gold);
    border-radius: 3px;
}

/* 챗봇 메시지 */
.chat-message {
    display: flex;
    gap: 10px;
    animation: messageSlideIn 0.3s ease;
}

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

.bot-message {
    align-items: flex-start;
}

.bot-message .bot-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.message-wrapper {
    flex: 1;
}

.message-content {
    background: var(--bg-card);
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
}

.bot-message .message-content {
    border-bottom-left-radius: 5px;
}

.user-message {
    justify-content: flex-end;
}

.user-message .message-content {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    border-bottom-right-radius: 5px;
    max-width: 70%;
}

.message-time {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
    text-align: right;
}

.bot-message .message-time {
    text-align: left;
}

/* 빠른 응답 버튼 */
.chatbot-quick-replies {
    padding: 10px 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    border-top: 1px solid var(--bg-card);
}

.quick-reply-btn {
    padding: 8px 14px;
    background: var(--bg-card);
    border: 1px solid var(--text-gold);
    border-radius: 20px;
    color: var(--text-gold);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-reply-btn:hover {
    background: var(--text-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* 챗봇 입력 폼 */
.chatbot-input-form {
    padding: 15px 20px;
    border-top: 1px solid var(--bg-card);
    display: flex;
    gap: 10px;
}

.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.chatbot-input:focus {
    border-color: var(--text-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.chatbot-input::placeholder {
    color: var(--text-secondary);
}

.chatbot-send-btn {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chatbot-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.chatbot-send-btn svg {
    color: var(--bg-primary);
}

/* 모바일 반응형 */
@media (max-width: 767px) {
    .chatbot-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .chatbot-popup {
        bottom: 90px;
        right: 20px;
        left: 20px;
        width: auto;
        height: 500px;
    }
    
    .chatbot-header h3 {
        font-size: 14px;
    }
    
    .chatbot-status {
        font-size: 11px;
    }
    
    .chatbot-messages {
        padding: 15px;
    }
    
    .message-content {
        font-size: 13px;
    }
    
    .quick-reply-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}