        /* ===== 頁面專屬配色變數 ===== */
        :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-light: rgba(74, 28, 107, 0.12);
            --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 覆寫（使用頁面專屬配色）===== */
        body {
            background: var(--bg-light);
            color: var(--text-dark);
        }

        .container {
            max-width: var(--container-2xl);
            margin: 0 auto;
            padding: 0 var(--space-8);
        }

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

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px var(--space-8) var(--space-20);
            position: relative;
            background: var(--gradient-hero);
            color: white;
            overflow: hidden;
        }
        .hero-bg-shape { position: absolute; border-radius: var(--radius-circle); opacity: 0.5; pointer-events: none; }
        .hero-bg-shape-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%); top: 5%; right: -150px; }
        .hero-bg-shape-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(155,89,182,0.2) 0%, transparent 70%); bottom: 10%; left: -100px; }
        .hero-container {
            max-width: var(--container-2xl);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-20);
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .hero-content { max-width: 600px; }
        .hero-badge {
            display: inline-block;
            padding: var(--space-3) var(--space-6);
            background: rgba(212,175,55,0.2);
            border: 1px solid var(--gold-main);
            border-radius: var(--radius-full);
            font-size: var(--text-sm);
            font-weight: var(--font-medium);
            color: var(--gold-light);
            margin-bottom: var(--space-8);
            letter-spacing: 0.1em;
        }
        .hero h1 {
            font-size: var(--text-5xl);
            font-weight: var(--font-bold);
            margin-bottom: var(--space-6);
            line-height: var(--leading-tight);
            color: white;
        }
        .hero-subtitle {
            font-size: var(--text-lg);
            color: rgba(255,255,255,0.85);
            margin-bottom: var(--space-5);
            line-height: var(--leading-relaxed);
        }
        .hero-highlight {
            font-size: var(--text-base);
            color: var(--gold-light);
            font-weight: var(--font-medium);
            margin-bottom: var(--space-8);
            padding: var(--space-4) var(--space-5);
            background: rgba(212,175,55,0.15);
            border-radius: var(--radius-lg);
            border-left: 3px solid var(--gold-main);
        }
        .hero-buttons {
            display: flex;
            gap: var(--space-5);
            flex-wrap: wrap;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: var(--space-3);
            padding: var(--space-5) var(--space-8);
            background: var(--gradient-gold);
            color: var(--purple-dark);
            text-decoration: none;
            border-radius: var(--radius-full);
            font-size: var(--text-base);
            font-weight: var(--font-semibold);
            transition: all var(--transition-normal) var(--ease-out);
            box-shadow: var(--shadow-gold);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(212,175,55,0.5);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: var(--space-3);
            padding: var(--space-5) var(--space-8);
            background: transparent;
            color: white;
            text-decoration: none;
            border-radius: var(--radius-full);
            font-size: var(--text-base);
            font-weight: var(--font-medium);
            border: 2px solid rgba(255,255,255,0.4);
            transition: all var(--transition-normal) var(--ease-out);
        }
        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--gold-main);
        }
        .hero-image { position: relative; }
        .hero-image-frame {
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
            border: 4px solid rgba(212,175,55,0.3);
        }
        .hero-image img { width: 100%; height: auto; display: block; }
        .hero-image-decoration {
            position: absolute;
            width: 120px;
            height: 120px;
            border: 3px solid var(--gold-main);
            border-radius: var(--radius-circle);
            bottom: -30px;
            right: -30px;
            opacity: 0.5;
        }

        /* Sections */
        section { padding: var(--space-24) 0; }
        .section-header { text-align: center; margin-bottom: var(--space-16); }
        .section-tag {
            display: inline-block;
            font-size: var(--text-sm);
            font-weight: var(--font-semibold);
            letter-spacing: 0.2em;
            color: var(--gold-main);
            text-transform: uppercase;
            margin-bottom: var(--space-4);
        }
        .section-title {
            font-size: var(--text-4xl);
            font-weight: var(--font-bold);
            margin-bottom: var(--space-5);
            color: var(--purple-dark);
        }
        .section-desc {
            max-width: 750px;
            margin: 0 auto;
            color: var(--text-gray);
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
        }

        /* What Is Section */
        .what-is-section { background: var(--bg-white); }
        .what-is-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: var(--space-20);
            align-items: center;
        }
        .what-is-image { position: relative; }
        .what-is-image-frame {
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .what-is-image img { width: 100%; height: auto; display: block; }
        .what-is-content h2 {
            font-size: var(--text-4xl);
            font-weight: var(--font-bold);
            color: var(--purple-dark);
            margin-bottom: var(--space-6);
        }
        .what-is-content p {
            color: var(--text-gray);
            margin-bottom: var(--space-5);
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
        }
        .highlight-box {
            background: var(--purple-pale);
            padding: var(--space-6) var(--space-8);
            border-radius: var(--radius-lg);
            border-left: 4px solid var(--gold-main);
            margin: var(--space-8) 0;
        }
        .highlight-box p {
            font-style: italic;
            color: var(--purple-dark);
            margin-bottom: var(--space-3);
            font-size: var(--text-base);
        }
        .highlight-box cite {
            font-size: var(--text-sm);
            color: var(--text-gray);
        }

        /* Key Points Section */
        .key-points { background: var(--bg-light); }
        .key-points-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-8);
        }
        .key-point-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: var(--space-8);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
        }
        .key-point-card h3 {
            font-size: var(--text-xl);
            font-weight: var(--font-bold);
            color: var(--purple-dark);
            margin-bottom: var(--space-4);
            display: flex;
            align-items: center;
            gap: var(--space-3);
        }
        .key-point-card h3::before { content: '✦'; color: var(--gold-main); }
        .key-point-card p {
            color: var(--text-gray);
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
        }

        /* Stats Section */
        .stats { background: var(--gradient-hero); color: white; }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-10);
        }
        .stat-card {
            text-align: center;
            padding: var(--space-8) var(--space-5);
        }
        .stat-number {
            font-size: var(--text-6xl);
            font-weight: var(--font-bold);
            color: var(--gold-light);
            margin-bottom: var(--space-3);
        }
        .stat-label {
            font-size: var(--text-base);
            opacity: 0.85;
        }

        /* Compare Section */
        .compare-section { background: var(--bg-white); }
        .compare-intro {
            max-width: 800px;
            margin: 0 auto var(--space-12);
            text-align: center;
        }
        .compare-intro p {
            color: var(--text-gray);
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
        }
        .compare-table {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .compare-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            border-bottom: 1px solid var(--border-light);
        }
        .compare-row:last-child { border-bottom: none; }
        .compare-cell {
            padding: var(--space-6) var(--space-8);
            text-align: center;
        }
        .compare-row.header { background: var(--gradient-purple); color: white; }
        .compare-row.header .compare-cell {
            font-weight: var(--font-semibold);
            font-size: var(--text-base);
        }
        .compare-cell.feature {
            text-align: left;
            font-weight: var(--font-medium);
            color: var(--purple-dark);
            background: var(--purple-pale);
        }
        .compare-cell .check { color: #27ae60; font-size: var(--text-2xl); }
        .compare-cell .cross { color: #e74c3c; font-size: var(--text-2xl); }

        /* Process Section */
        .process-section { background: var(--bg-light); }
        .process-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-16);
            align-items: center;
        }
        .process-content h2 {
            font-size: var(--text-4xl);
            font-weight: var(--font-bold);
            color: var(--purple-dark);
            margin-bottom: var(--space-6);
        }
        .process-content > p {
            color: var(--text-gray);
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
            margin-bottom: var(--space-6);
        }
        .process-steps { list-style: none; }
        .process-steps li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-4);
            padding: var(--space-4) 0;
            border-bottom: 1px solid var(--border-light);
        }
        .process-steps li:last-child { border-bottom: none; }
        .process-step-num {
            width: 35px;
            height: 35px;
            border-radius: var(--radius-circle);
            background: var(--gradient-gold);
            color: var(--purple-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: var(--font-bold);
            flex-shrink: 0;
        }
        .process-step-text {
            color: var(--text-gray);
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
        }
        .process-image {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .process-image img { width: 100%; height: auto; display: block; }

        /* Benefits Section */
        .benefits-section { background: var(--purple-pale); }
        .benefits-intro {
            max-width: 800px;
            margin: 0 auto var(--space-12);
            text-align: center;
        }
        .benefits-intro p {
            color: var(--text-gray);
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-6);
        }
        .benefit-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: var(--space-8) var(--space-6);
            box-shadow: var(--shadow-md);
            transition: all 0.4s var(--ease-out);
            text-align: center;
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-gold);
        }
        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        .benefit-icon {
            width: 65px;
            height: 65px;
            border-radius: var(--radius-circle);
            background: var(--purple-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-5);
        }
        .benefit-icon svg { width: 28px; height: 28px; stroke: var(--purple-main); }
        .benefit-card h3 {
            font-size: var(--text-base);
            font-weight: var(--font-bold);
            color: var(--purple-dark);
            margin-bottom: var(--space-3);
        }
        .benefit-card p {
            color: var(--text-gray);
            font-size: var(--text-sm);
            line-height: var(--leading-relaxed);
        }

        /* Results Section */
        .results-section { background: var(--bg-white); }
        .results-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-16);
            align-items: center;
        }
        .results-image {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            cursor: pointer;
            transition: transform var(--transition-normal) var(--ease-out);
        }
        .results-image:hover { transform: scale(1.02); }
        .results-image img { width: 100%; height: auto; display: block; }
        .results-content h2 {
            font-size: var(--text-4xl);
            font-weight: var(--font-bold);
            color: var(--purple-dark);
            margin-bottom: var(--space-6);
        }
        .results-content > p {
            color: var(--text-gray);
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
            margin-bottom: var(--space-5);
        }
        .results-list {
            list-style: none;
            margin-top: var(--space-6);
            background: var(--purple-pale);
            padding: var(--space-6) var(--space-8);
            border-radius: var(--radius-lg);
        }
        .results-list li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-3);
            padding: var(--space-2) 0;
            color: var(--text-dark);
            font-weight: var(--font-medium);
        }
        .results-list li::before {
            content: '✓';
            color: var(--gold-main);
            font-weight: var(--font-bold);
        }

        /* Experience Section */
        .experience-section { background: linear-gradient(135deg, var(--purple-pale) 0%, var(--gold-soft) 100%); }
        .experience-wrapper {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: var(--space-16);
            align-items: center;
        }
        .experience-image { position: relative; }
        .experience-image img {
            width: 100%;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            border: 4px solid var(--gold-main);
        }
        .experience-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-2xl);
            font-weight: var(--font-bold);
            white-space: nowrap;
            box-shadow: var(--shadow-gold);
        }
        .experience-content h2 {
            font-size: var(--text-4xl);
            font-weight: var(--font-bold);
            color: var(--purple-dark);
            margin-bottom: var(--space-6);
        }
        .experience-content h2 span { color: var(--gold-dark); }
        .experience-content > p {
            color: var(--text-gray);
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
            margin-bottom: var(--space-5);
        }
        .experience-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-5);
            margin: var(--space-8) 0;
        }
        .experience-stat {
            text-align: center;
            padding: var(--space-5);
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
        }
        .experience-stat-num {
            font-size: var(--text-4xl);
            font-weight: var(--font-bold);
            color: var(--purple-main);
        }
        .experience-stat-label {
            font-size: var(--text-sm);
            color: var(--text-gray);
            margin-top: var(--space-1);
        }
        .experience-quote {
            background: white;
            padding: var(--space-6) var(--space-8);
            border-radius: var(--radius-xl);
            border-left: 5px solid var(--gold-main);
            margin-top: var(--space-6);
        }
        .experience-quote p {
            font-style: italic;
            color: var(--purple-dark);
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
        }

        /* Video Section */
        .video-section { background: var(--gradient-hero); color: white; }
        .video-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-16);
            align-items: center;
        }
        .video-content h2 {
            font-size: var(--text-4xl);
            font-weight: var(--font-bold);
            margin-bottom: var(--space-6);
        }
        .video-content h2 span { color: var(--gold-light); }
        .video-content p {
            color: rgba(255,255,255,0.85);
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
            margin-bottom: var(--space-5);
        }
        .video-frame {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            border: 3px solid rgba(212,175,55,0.3);
        }
        .video-frame iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Course Content Section */
        .course-content-section { background: var(--bg-white); }
        .course-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-10);
        }
        .course-column {
            background: white;
            border-radius: var(--radius-xl);
            padding: var(--space-10);
            box-shadow: var(--shadow-md);
            border: 2px solid var(--border-light);
        }
        .course-column h3 {
            font-size: var(--text-xl);
            font-weight: var(--font-bold);
            color: var(--purple-dark);
            margin-bottom: var(--space-6);
            display: flex;
            align-items: center;
            gap: var(--space-3);
        }
        .course-column h3 span {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-circle);
            background: var(--gradient-purple);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: var(--text-base);
        }
        .course-list { list-style: none; }
        .course-list li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-3);
            padding: var(--space-3) 0;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-gray);
            font-size: var(--text-base);
        }
        .course-list li:last-child { border-bottom: none; }
        .course-list li::before {
            content: '✓';
            color: var(--gold-main);
            font-weight: var(--font-bold);
            flex-shrink: 0;
        }

        /* Pricing Section */
        .pricing-section { background: var(--gradient-hero); color: white; }
        .pricing-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-16);
            align-items: center;
        }
        .pricing-info h2 {
            font-size: var(--text-4xl);
            font-weight: var(--font-bold);
            margin-bottom: var(--space-8);
        }
        .pricing-list {
            display: flex;
            flex-direction: column;
            gap: var(--space-5);
        }
        .pricing-item {
            display: flex;
            align-items: flex-start;
            gap: var(--space-4);
        }
        .pricing-item-icon {
            width: 45px;
            height: 45px;
            border-radius: var(--radius-circle);
            background: rgba(212,175,55,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .pricing-item-icon svg { width: 20px; height: 20px; stroke: var(--gold-light); }
        .pricing-item-text h4 {
            font-size: var(--text-base);
            font-weight: var(--font-semibold);
            color: var(--gold-light);
            margin-bottom: var(--space-1);
        }
        .pricing-item-text p {
            font-size: var(--text-base);
            opacity: 0.85;
            line-height: var(--leading-relaxed);
        }
        .pricing-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-2xl);
            padding: var(--space-12) var(--space-10);
            border: 1px solid rgba(255,255,255,0.2);
            text-align: center;
        }
        .pricing-card h3 {
            font-size: var(--text-xl);
            font-weight: var(--font-medium);
            margin-bottom: var(--space-3);
            color: var(--gold-light);
        }
        .pricing-amount {
            font-size: var(--text-6xl);
            font-weight: var(--font-bold);
            margin-bottom: var(--space-1);
        }
        .pricing-note {
            font-size: var(--text-sm);
            opacity: 0.7;
            margin-bottom: var(--space-8);
        }
        .pricing-features {
            text-align: left;
            margin-bottom: var(--space-8);
            list-style: none;
        }
        .pricing-features li {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            padding: var(--space-3) 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-size: var(--text-base);
        }
        .pricing-features li:last-child { border-bottom: none; }
        .pricing-features li::before {
            content: '✓';
            color: var(--gold-main);
            font-weight: var(--font-bold);
        }

        /* FAQ Section */
        .faq-section { background: var(--bg-light); }
        .faq-wrapper { max-width: 850px; margin: 0 auto; }
        .faq-item {
            background: white;
            border-radius: var(--radius-xl);
            margin-bottom: var(--space-4);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 2px solid transparent;
            transition: border-color var(--transition-normal) var(--ease-out);
        }
        .faq-item:hover, .faq-item.active { border-color: var(--gold-main); }
        .faq-question {
            padding: var(--space-6) var(--space-8);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: var(--font-semibold);
            font-size: var(--text-base);
            color: var(--purple-dark);
            transition: background var(--transition-normal) var(--ease-out);
        }
        .faq-question:hover { background: var(--purple-pale); }
        .faq-question::after {
            content: '+';
            font-size: var(--text-2xl);
            color: var(--gold-dark);
            transition: transform var(--transition-normal) var(--ease-out);
            font-weight: var(--font-normal);
        }
        .faq-item.active .faq-question::after { transform: rotate(45deg); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }
        .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);
        }

        /* Contact Section */
        .contact-section { background: var(--bg-white); }
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-16);
            align-items: center;
        }
        .contact-text h2 {
            font-size: var(--text-4xl);
            font-weight: var(--font-bold);
            color: var(--purple-dark);
            margin-bottom: var(--space-5);
        }
        .contact-text > p {
            color: var(--text-gray);
            font-size: var(--text-base);
            line-height: var(--leading-relaxed);
            margin-bottom: var(--space-5);
        }
        .contact-info {
            background: white;
            border-radius: var(--radius-xl);
            padding: var(--space-10);
            box-shadow: var(--shadow-lg);
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: var(--space-5);
            padding: var(--space-5) 0;
            border-bottom: 1px solid var(--border-light);
        }
        .contact-item:last-child { border-bottom: none; }
        .contact-icon {
            width: 55px;
            height: 55px;
            border-radius: var(--radius-circle);
            background: var(--purple-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .contact-icon svg { width: 24px; height: 24px; stroke: var(--purple-main); }
        .contact-detail { display: flex; flex-direction: column; }
        .contact-label {
            font-size: var(--text-sm);
            color: var(--text-light);
            margin-bottom: var(--space-1);
        }
        .contact-detail a, .contact-detail span {
            font-size: var(--text-base);
            color: var(--text-dark);
            text-decoration: none;
            font-weight: var(--font-medium);
        }
        .contact-detail a:hover { color: var(--purple-main); }

        /* Footer */
        .footer {
            background: var(--gradient-hero);
            color: white;
            padding: var(--space-16) 0 var(--space-10);
        }
        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: var(--space-12);
            margin-bottom: var(--space-12);
        }
        .footer-brand h3 {
            font-size: var(--text-xl);
            font-weight: var(--font-bold);
            margin-bottom: var(--space-3);
        }
        .footer-brand p {
            opacity: 0.75;
            font-size: var(--text-base);
            margin-bottom: var(--space-5);
            line-height: var(--leading-relaxed);
        }
        .footer-section h4 {
            font-size: var(--text-base);
            font-weight: var(--font-semibold);
            margin-bottom: var(--space-5);
            color: var(--gold-light);
        }
        .footer-section a {
            display: block;
            color: white;
            text-decoration: none;
            opacity: 0.75;
            margin-bottom: var(--space-3);
            font-size: var(--text-base);
            transition: all var(--transition-normal) var(--ease-out);
        }
        .footer-section a:hover { opacity: 1; color: var(--gold-light); }
        .footer-bottom {
            padding-top: var(--space-8);
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .footer-bottom p {
            font-size: var(--text-sm);
            opacity: 0.6;
        }

        /* LINE 按鈕樣式已由 line-button.css 提供 */

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: var(--space-12);
                text-align: center;
            }
            .hero-content { max-width: 100%; }
            .hero-buttons { justify-content: center; }
            .hero-image { max-width: 500px; margin: 0 auto; }
            .footer-content { grid-template-columns: repeat(2, 1fr); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .experience-wrapper { grid-template-columns: 1fr; text-align: center; }
            .experience-image { max-width: 300px; margin: 0 auto; }
        }
        @media (max-width: 992px) {
            section { padding: var(--space-20) 0; }
            .what-is-grid, .process-wrapper, .results-wrapper, .video-wrapper, .contact-wrapper, .pricing-wrapper, .course-grid {
                grid-template-columns: 1fr;
                gap: var(--space-12);
            }
            .what-is-image, .process-image, .results-image { max-width: 500px; margin: 0 auto; }
            .benefits-grid { grid-template-columns: repeat(2, 1fr); }
            .key-points-grid { grid-template-columns: 1fr; }
            .compare-row { grid-template-columns: 1fr 1fr; }
            .compare-cell.feature { grid-column: 1 / -1; text-align: center; }
            .experience-stats { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .hero {
                padding: var(--space-24) var(--space-5) var(--space-16);
                min-height: auto;
            }
            .hero h1 { font-size: var(--text-4xl); }
            .benefits-grid { grid-template-columns: 1fr; }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: var(--space-5);
            }
            .stat-number { font-size: var(--text-5xl); }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
            .footer-bottom {
                flex-direction: column;
                gap: var(--space-4);
                text-align: center;
            }
            .experience-stats {
                grid-template-columns: 1fr;
                gap: var(--space-4);
            }
            
            /* 手機版比較表格 - 卡片式設計 */
            .compare-table { background: transparent; box-shadow: none; border-radius: 0; }
            .compare-row.header { display: none; }
            .compare-row {
                display: block;
                background: white;
                border-radius: var(--radius-lg);
                margin-bottom: var(--space-5);
                box-shadow: var(--shadow-md);
                border: 1px solid var(--border-light);
                overflow: hidden;
            }
            .compare-row:last-child { margin-bottom: 0; }
            .compare-cell { display: block; padding: 0; text-align: left; border-bottom: none; }
            .compare-cell.feature {
                background: var(--gradient-purple);
                color: white;
                padding: var(--space-4) var(--space-5);
                font-weight: var(--font-semibold);
                font-size: var(--text-base);
                text-align: center;
            }
            .compare-cell:not(.feature) {
                padding: var(--space-5);
                display: flex;
                justify-content: space-between;
                align-items: center;
                border-bottom: 1px solid var(--border-light);
            }
            .compare-cell:not(.feature):last-child { border-bottom: none; }
            .compare-cell:not(.feature)::before {
                font-weight: var(--font-semibold);
                color: var(--purple-dark);
            }
            .compare-row .compare-cell:nth-child(2)::before { content: '能量面提'; }
            .compare-row .compare-cell:nth-child(3)::before { content: '傳統醫美'; }
            .compare-cell .check, .compare-cell .cross { font-size: var(--text-xl); }
        }
        @media (max-width: 480px) {
            .container { padding: 0 var(--space-5); }
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            .pricing-card { padding: var(--space-10) var(--space-6); }
            .pricing-amount { font-size: var(--text-5xl); }
            .course-column { padding: var(--space-8) var(--space-6); }
        }
