/* ============================================================
   what-is-lahochi 頁面專屬樣式
   使用全域 CSS 變數（來自 global-style.css），保持紫金配色主題
   ============================================================ */

/* ----- 紫金配色主題（頁面專屬）----- */
:root {
    /* 紫色系 */
    --purple-dark: #4a1c6b;
    --purple-main: #6b2d9b;
    --purple-light: #9b59b6;
    --purple-soft: #d4a5e8;
    --purple-pale: #f3e5f9;
    
    /* 金色系 */
    --gold-dark: #b8860b;
    --gold-main: #d4af37;
    --gold-light: #f4d03f;
    --gold-soft: #fef3c7;
    
    /* 背景與文字 */
    --bg-light: #faf8fc;
    --bg-white: #ffffff;
    --text-dark: #2d1b3d;
    --text-gray: #5c4a6e;
    --text-light: #8b7a9e;
    --border-color: #e8dff0;
    
    /* 漸層 */
    --gradient-purple: linear-gradient(135deg, #6b2d9b 0%, #9b59b6 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-hero: linear-gradient(135deg, #4a1c6b 0%, #6b2d9b 50%, #2d1b3d 100%);
    
    /* 陰影 */
    --shadow-sm: 0 1px 3px rgba(74,28,107,0.1);
    --shadow-md: 0 4px 12px rgba(74,28,107,0.15);
    --shadow-lg: 0 10px 30px rgba(74,28,107,0.2);
    --shadow-xl: 0 20px 50px rgba(74,28,107,0.25);
    --shadow-gold: 0 4px 20px rgba(212,175,55,0.3);
}

body { color: var(--text-dark); background: var(--bg-white); }
img { max-width: 100%; height: auto; }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    padding: var(--space-24) var(--space-5) var(--space-16);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="0.5"/></svg>') center/300px repeat;
    opacity: 0.5;
}

.hero-container {
    max-width: var(--container-2xl);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content { color: white; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(212,175,55,0.2);
    border: 1px solid var(--gold-main);
    color: var(--gold-light);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    margin-bottom: var(--space-6);
}

.hero-content h1 {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
}

.hero-content h1 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--space-8);
    line-height: var(--leading-loose);
}

.hero-definition {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212,175,55,0.3);
    margin-bottom: var(--space-8);
}

.hero-definition p {
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
    color: rgba(255,255,255,0.9);
    line-height: var(--leading-relaxed);
}

.hero-definition p:last-child { margin-bottom: 0; }
.hero-definition strong { color: var(--gold-light); }

.lahochi-meaning {
    display: flex;
    gap: var(--space-5);
    margin: var(--space-6) 0;
    flex-wrap: wrap;
}

.lahochi-meaning-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(212,175,55,0.15);
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-full);
    border: 1px solid rgba(212,175,55,0.4);
}

.lahochi-meaning-item .char {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--gold-light);
}

.lahochi-meaning-item .meaning {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.9);
}

.hero-author {
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: var(--space-5) var(--space-6);
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(212,175,55,0.3);
}

.hero-author img {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-circle);
    object-fit: cover;
    border: 3px solid var(--gold-main);
}

.hero-author-info h4 {
    font-weight: var(--font-semibold);
    color: var(--gold-light);
    font-size: var(--text-base);
    margin-bottom: var(--space-1);
}

.hero-author-info p {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
}

.hero-visual { position: relative; }

.hero-image-main {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(212,175,55,0.2);
    border: 3px solid rgba(212,175,55,0.5);
}

.hero-image-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--purple-dark);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: var(--font-bold);
    font-size: var(--text-base);
    box-shadow: var(--shadow-gold);
    white-space: nowrap;
}

/* ===== 通用 SECTION 樣式 ===== */
section { padding: var(--space-20) var(--space-5); }
.section-container { max-width: var(--container-lg); margin: 0 auto; }
.section-wide { max-width: var(--container-2xl); margin: 0 auto; }
.section-header { text-align: center; margin-bottom: var(--space-12); }

.section-label {
    display: inline-block;
    background: var(--purple-pale);
    color: var(--purple-main);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-xl);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
}

.section-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--purple-dark);
    margin-bottom: var(--space-4);
}

.section-title span { color: var(--gold-dark); }

.section-subtitle {
    color: var(--text-gray);
    font-size: var(--text-lg);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== LAST UPDATED ===== */
.last-updated {
    text-align: center;
    padding: var(--space-5);
    background: linear-gradient(90deg, var(--purple-pale) 0%, var(--gold-soft) 100%);
    color: var(--purple-dark);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
}

/* ===== DEEP DIVE SECTION ===== */
.deep-dive-section { background: var(--bg-light); }

.deep-dive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: start;
}

.deep-dive-content h3 {
    font-size: var(--text-2xl);
    color: var(--purple-dark);
    margin-bottom: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.deep-dive-content h3::before {
    content: '';
    width: 5px;
    height: 30px;
    background: var(--gradient-gold);
    border-radius: 3px;
}

.deep-dive-content p {
    color: var(--text-gray);
    margin-bottom: var(--space-5);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.deep-dive-highlight {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold-main);
    margin: var(--space-6) 0;
    box-shadow: var(--shadow-sm);
}

.deep-dive-highlight p {
    margin-bottom: 0;
    font-weight: var(--font-medium);
    color: var(--purple-dark);
}

.deep-dive-image { position: sticky; top: 100px; }

.deep-dive-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.deep-dive-image-caption {
    text-align: center;
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    color: var(--text-light);
}

/* ===== ENERGY SECTION ===== */
.energy-section { background: white; }

.energy-intro {
    max-width: var(--container-lg);
    margin: 0 auto var(--space-12);
    text-align: center;
}

.energy-intro p {
    font-size: var(--text-lg);
    color: var(--text-gray);
    line-height: var(--leading-loose);
}

.energy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.energy-card {
    background: var(--bg-light);
    padding: var(--space-10) var(--space-8);
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: all var(--transition-normal) var(--ease-out);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.energy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.energy-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple-light);
    box-shadow: var(--shadow-lg);
}

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

.energy-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-size: var(--text-4xl);
    box-shadow: 0 10px 30px rgba(107,45,155,0.3);
}

.energy-card h3 {
    font-size: var(--text-xl);
    color: var(--purple-dark);
    margin-bottom: var(--space-4);
}

.energy-card p {
    color: var(--text-gray);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

/* ===== FEATURES SECTION ===== */
.features-section {
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
}

.features-section .section-label {
    background: rgba(212,175,55,0.2);
    color: var(--gold-light);
}

.features-section .section-title { color: white; }
.features-section .section-title span { color: var(--gold-light); }
.features-section .section-subtitle { color: rgba(255,255,255,0.8); }

.features-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-10);
    position: relative;
    z-index: 1;
}

.features-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(212,175,55,0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.feature-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(212,175,55,0.2);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--gold-main);
    transform: translateY(-5px);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-5);
}

.feature-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    color: white;
}

.feature-card p {
    color: rgba(255,255,255,0.8);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

/* ===== BENEFITS SECTION ===== */
.benefits-section { background: var(--bg-light); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.benefit-category {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.benefit-category:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.benefit-header {
    padding: var(--space-8);
    text-align: center;
}

.benefit-category:nth-child(1) .benefit-header { background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%); }
.benefit-category:nth-child(2) .benefit-header { background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%); }
.benefit-category:nth-child(3) .benefit-header { background: linear-gradient(135deg, #6b2d9b 0%, #9b59b6 100%); }

.benefit-header h3 {
    color: white;
    font-size: var(--text-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: 0;
}

.benefit-header h3 span { font-size: var(--text-3xl); }
.benefit-list { padding: var(--space-8); }

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border-color);
}

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

.benefit-check {
    width: 24px;
    height: 24px;
    background: var(--purple-pale);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-main);
    font-size: var(--text-xs);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-item p {
    color: var(--text-gray);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    margin-bottom: 0;
}

/* ===== WHO SECTION ===== */
.who-section { background: white; }

.who-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-12);
}

.who-intro-content h3 {
    font-size: var(--text-3xl);
    color: var(--purple-dark);
    margin-bottom: var(--space-5);
}

.who-intro-content p {
    color: var(--text-gray);
    font-size: var(--text-lg);
    line-height: var(--leading-loose);
}

.who-intro-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.who-card {
    background: var(--bg-light);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-align: center;
}

.who-card:hover {
    border-color: var(--gold-main);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.who-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-size: var(--text-3xl);
}

.who-card h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-3);
    color: var(--purple-dark);
}

.who-card p {
    color: var(--text-gray);
    font-size: var(--text-base);
    margin-bottom: 0;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
    background: linear-gradient(180deg, var(--purple-pale) 0%, white 100%);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: start;
}

.experience-text h3 {
    font-size: var(--text-2xl);
    color: var(--purple-dark);
    margin-bottom: var(--space-6);
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.experience-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: white;
    padding: var(--space-5) var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold-main);
}

.experience-item span { font-size: var(--text-xl); }

.experience-item p {
    color: var(--text-dark);
    font-weight: var(--font-medium);
    margin-bottom: 0;
}

.experience-note {
    background: var(--purple-pale);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    margin-top: var(--space-8);
}

.experience-note p {
    color: var(--purple-dark);
    font-size: var(--text-base);
    margin-bottom: 0;
}

.experience-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.experience-images img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.experience-image-full { grid-column: span 2; }

/* ===== COMPARISON SECTION ===== */
.comparison-section { background: white; }

.comparison-intro {
    max-width: var(--container-md);
    margin: 0 auto var(--space-10);
    text-align: center;
}

.comparison-intro p {
    color: var(--text-gray);
    font-size: var(--text-lg);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: var(--space-10);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-5);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: var(--text-base);
}

.comparison-table th {
    background: var(--gradient-hero);
    color: white;
    font-weight: var(--font-semibold);
}

.comparison-table th.highlight {
    background: var(--gradient-gold);
    color: var(--purple-dark);
}

.comparison-table tr:hover { background: var(--purple-pale); }
.comparison-table td:nth-child(2) { font-weight: var(--font-medium); color: var(--purple-dark); }

.comparison-advice {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--space-6);
    background: var(--bg-light);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    align-items: start;
}

.comparison-advice img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-circle);
    object-fit: cover;
    border: 3px solid var(--gold-main);
}

.comparison-advice-content h4 {
    color: var(--gold-dark);
    margin-bottom: var(--space-3);
}

.comparison-advice-content p {
    color: var(--text-gray);
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
}

/* ===== HISTORY SECTION ===== */
.history-section { background: var(--bg-light); }

.history-intro {
    max-width: var(--container-md);
    margin: 0 auto var(--space-12);
    text-align: center;
}

.history-intro p {
    color: var(--text-gray);
    font-size: var(--text-lg);
}

.history-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

.timeline { position: relative; padding-left: var(--space-8); }

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

.timeline-item {
    position: relative;
    padding-bottom: var(--space-8);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-8) - 6px);
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--gold-main);
    border-radius: var(--radius-circle);
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--purple-dark);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-3);
}

.timeline-item h4 {
    color: var(--purple-dark);
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.timeline-item p {
    color: var(--text-gray);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.history-images {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.history-image-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.history-image-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.history-image-card p {
    padding: var(--space-4);
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-gray);
    margin-bottom: 0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section { background: white; }

.testimonials-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
    margin-bottom: var(--space-12);
}

.testimonials-intro-content h3 {
    font-size: var(--text-2xl);
    color: var(--purple-dark);
    margin-bottom: var(--space-4);
}

.testimonials-intro-content p {
    color: var(--text-gray);
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
}

.testimonials-intro-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.testimonial-image-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.testimonial-image-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-image-card img {
    width: 100%;
    display: block;
}

/* ===== COURSE SECTION ===== */
.course-section {
    background: linear-gradient(180deg, var(--purple-pale) 0%, white 50%, var(--purple-pale) 100%);
}

.course-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    align-items: center;
    margin-bottom: var(--space-16);
}

.course-content h2 {
    font-size: var(--text-3xl);
    color: var(--purple-dark);
    margin-bottom: var(--space-4);
}

.course-content h2 span { color: var(--gold-dark); }

.course-content > p {
    color: var(--text-gray);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
}

.course-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.course-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--text-dark);
    padding: var(--space-3) var(--space-4);
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.course-feature::before {
    content: '✓';
    color: var(--gold-dark);
    font-weight: bold;
}

.course-price-box {
    background: var(--gradient-hero);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    margin-bottom: var(--space-6);
}

.course-price-box h4 {
    color: rgba(255,255,255,0.8);
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
}

.course-price {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--gold-light);
    margin-bottom: var(--space-2);
}

.course-price-note {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

.course-cta {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--purple-dark);
    padding: var(--space-5) var(--space-10);
    border-radius: var(--radius-full);
    font-weight: var(--font-bold);
    font-size: var(--text-lg);
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

.course-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.course-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
}

.course-images img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ===== TEACHER COURSE SECTION ===== */
.teacher-course-wrapper {
    background: white;
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.teacher-course-wrapper h2 {
    font-size: var(--text-3xl);
    color: var(--purple-dark);
    margin-bottom: var(--space-4);
}

.teacher-course-wrapper h2 span { color: var(--gold-dark); }

.teacher-course-wrapper > p {
    color: var(--text-gray);
    font-size: var(--text-lg);
    margin-bottom: var(--space-10);
}

.teacher-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
    text-align: left;
}

.teacher-benefits-box {
    background: var(--purple-pale);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-8);
}

.teacher-benefits-box h3 {
    color: var(--purple-dark);
    font-size: var(--text-xl);
    margin-bottom: var(--space-5);
}

.teacher-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.teacher-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: var(--text-dark);
}

.teacher-benefits-list li .icon { font-size: var(--text-xl); }

.teacher-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.teacher-module-card {
    background: var(--bg-light);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    text-align: center;
}

.module-icon { font-size: var(--text-3xl); margin-bottom: var(--space-3); }
.module-title { font-weight: var(--font-bold); color: var(--purple-dark); margin-bottom: var(--space-2); }
.module-content { font-size: var(--text-sm); color: var(--text-gray); line-height: var(--leading-relaxed); }

.teacher-price-box {
    background: var(--gradient-hero);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.teacher-price-box .box-content { position: relative; z-index: 1; }

.teacher-price-header {
    text-align: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.teacher-price-header .label {
    color: rgba(255,255,255,0.8);
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
}

.teacher-price-header .price {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--gold-light);
    margin-bottom: var(--space-2);
}

.teacher-price-header .note {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.7);
}

.teacher-info-box {
    background: rgba(255,255,255,0.1);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-5);
}

.teacher-info-box .info-title {
    color: var(--gold-light);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.teacher-info-box .info-content {
    color: rgba(255,255,255,0.9);
    font-size: var(--text-base);
}

.teacher-includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
}

.include-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255,255,255,0.9);
    font-size: var(--text-sm);
}

.include-item span { color: var(--gold-light); }

.teacher-cta-btn {
    display: block;
    background: var(--gradient-gold);
    color: var(--purple-dark);
    padding: var(--space-5);
    border-radius: var(--radius-full);
    font-weight: var(--font-bold);
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.teacher-image-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-5);
}

.teacher-image-card img { width: 100%; display: block; }

.teacher-bottom-note {
    margin-top: var(--space-10);
    padding: var(--space-5);
    background: var(--gold-soft);
    border-radius: var(--radius-lg);
    text-align: center;
}

.teacher-bottom-note p {
    color: var(--purple-dark);
    margin-bottom: 0;
}

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--bg-light); }

.faq-wrapper {
    max-width: var(--container-lg);
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
    padding: var(--space-6) var(--space-8);
    font-weight: var(--font-semibold);
    color: var(--purple-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-lg);
}

.faq-question::after {
    content: '+';
    font-size: var(--text-2xl);
    color: var(--gold-main);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

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

.faq-answer-content {
    padding: 0 var(--space-8) var(--space-6);
    color: var(--text-gray);
    line-height: var(--leading-relaxed);
}

/* ===== AUTHOR SECTION ===== */
.author-section { background: white; }

.author-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-12);
    align-items: start;
}

.author-image-container {
    position: relative;
}

.author-image-container img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--gold-main);
}

.author-badge {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--purple-dark);
    padding: var(--space-3) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: var(--font-bold);
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
}

.author-content h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
    color: var(--purple-dark);
}

.author-content h2 span { color: var(--gold-dark); }

.author-content > p {
    color: var(--text-gray);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    line-height: var(--leading-loose);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-base);
    color: var(--text-dark);
    padding: var(--space-3) var(--space-4);
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.credential-item::before {
    content: '✓';
    color: var(--gold-dark);
    font-weight: bold;
}

.author-quote {
    background: linear-gradient(135deg, var(--purple-pale) 0%, var(--gold-soft) 100%);
    padding: var(--space-6) var(--space-8);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--gold-main);
}

.author-quote p {
    font-style: italic;
    color: var(--purple-dark);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-gold);
    text-align: center;
    padding: var(--space-20) var(--space-5);
}

.cta-section h2 {
    font-size: var(--text-4xl);
    color: var(--purple-dark);
    margin-bottom: var(--space-5);
}

.cta-section p {
    font-size: var(--text-xl);
    color: var(--purple-main);
    margin-bottom: var(--space-10);
}

.cta-buttons {
    display: flex;
    gap: var(--space-5);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: var(--space-5) var(--space-10);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: var(--font-bold);
    font-size: var(--text-lg);
    transition: all var(--transition-normal);
}

.cta-btn-primary {
    background: var(--gradient-hero);
    color: white;
    box-shadow: var(--shadow-lg);
}

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

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

.cta-btn-secondary:hover {
    background: var(--purple-dark);
    color: white;
}

/* ===== 動畫 ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.gold-shimmer {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* ===== RWD 響應式調整 ===== */
@media (max-width: 1024px) {
    .hero-container,
    .deep-dive-grid,
    .features-wrapper,
    .who-intro,
    .experience-content,
    .history-wrapper,
    .testimonials-intro,
    .course-wrapper,
    .author-wrapper,
    .teacher-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-content h1,
    .hero-subtitle {
        text-align: center;
    }

    .lahochi-meaning,
    .hero-author {
        justify-content: center;
    }

    .energy-cards,
    .benefits-grid,
    .who-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .experience-images,
    .course-images {
        grid-template-columns: 1fr;
    }

    .features-image,
    .deep-dive-image,
    .history-images {
        position: relative;
        top: 0;
        order: -1;
    }

    .experience-image-full {
        grid-column: span 1;
    }

    .comparison-advice {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comparison-advice img {
        margin: 0 auto;
    }

    .credentials-grid,
    .course-features,
    .teacher-modules-grid {
        grid-template-columns: 1fr;
    }

    .author-image-container {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--space-12) var(--space-5);
    }

    .hero-content h1 {
        font-size: var(--text-3xl);
    }

    .section-title {
        font-size: var(--text-2xl);
    }

    .lahochi-meaning {
        flex-direction: column;
        align-items: center;
    }

    .comparison-table {
        font-size: var(--text-sm);
    }

    .comparison-table th,
    .comparison-table td {
        padding: var(--space-3);
    }

    .teacher-includes-grid {
        grid-template-columns: 1fr;
    }
}
