        /* ============================================================
           Access Bars 課程頁面 - 專屬樣式
           字體大小使用全域變數，保留頁面專屬配色
           ============================================================ */
        
        :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%);
            
            /* 頁面專屬陰影 */
            --page-shadow-sm: 0 1px 3px rgba(74,28,107,0.1);
            --page-shadow-md: 0 4px 12px rgba(74,28,107,0.15);
            --page-shadow-lg: 0 10px 30px rgba(74,28,107,0.2);
            --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);
        }

        /* ========== 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: var(--tracking-wider);
        }

        .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-md);
            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: var(--tracking-wider);
            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-lg);
            line-height: var(--leading-relaxed);
        }

        /* ========== INTRO SECTION ========== */
        .intro {
            background: var(--bg-white);
        }

        .intro-content {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: var(--space-20);
            align-items: center;
        }

        .intro-image {
            position: relative;
        }

        .intro-image-frame {
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: var(--page-shadow-lg);
        }

        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
        }

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

        .intro-text p {
            color: var(--text-gray);
            margin-bottom: var(--space-5);
            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;
        }

        /* ========== RESEARCH SECTION ========== */
        .research {
            background: var(--purple-pale);
        }

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

        .research-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: var(--space-10);
            box-shadow: var(--page-shadow-md);
            border: 1px solid var(--border-light);
        }

        .research-card h3 {
            font-size: var(--text-lg);
            font-weight: var(--font-bold);
            color: var(--purple-dark);
            margin-bottom: var(--space-3);
        }

        .research-card .research-meta {
            font-size: var(--text-sm);
            color: var(--text-light);
            margin-bottom: var(--space-5);
            padding-bottom: var(--space-5);
            border-bottom: 1px solid var(--border-light);
        }

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

        .research-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .research-item-label {
            color: var(--text-gray);
            font-size: var(--text-base);
        }

        .research-item-value {
            font-size: var(--text-xl);
            font-weight: var(--font-bold);
            color: var(--purple-main);
        }

        .research-item-value.highlight {
            color: var(--gold-dark);
        }

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

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

        .benefit-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: var(--space-10) var(--space-8);
            box-shadow: var(--page-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(-10px);
            box-shadow: var(--page-shadow-lg);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            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: 32px;
            height: 32px;
            stroke: var(--purple-main);
        }

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

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

        /* ========== COURSE CONTENT SECTION ========== */
        .course-content {
            background: linear-gradient(135deg, #f3e5f9 0%, #fef3c7 100%);
        }

        .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(--page-shadow-md);
        }

        .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;
            padding-left: 0;
        }

        .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);
            line-height: var(--leading-relaxed);
        }

        .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 {
            background: var(--gradient-hero);
            color: white;
        }

        .pricing-content {
            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-normal);
        }

        .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-amount span {
            font-size: var(--text-xl);
            font-weight: var(--font-normal);
        }

        .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;
            padding-left: 0;
        }

        .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 {
            background: var(--bg-light);
        }

        .faq-list {
            max-width: 850px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: var(--radius-lg);
            margin-bottom: var(--space-4);
            overflow: hidden;
            box-shadow: var(--page-shadow-sm);
            border: 2px solid transparent;
            transition: border-color var(--transition-normal);
        }

        .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-lg);
            color: var(--purple-dark);
            transition: background var(--transition-normal);
        }

        .faq-question:hover {
            background: var(--purple-pale);
        }

        .faq-question span {
            flex: 1;
            padding-right: var(--space-4);
        }

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

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

        /* 隱藏舊的 SVG 圖標 */
        .faq-question svg {
            display: none;
        }

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

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

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

        /* ========== CONTACT SECTION ========== */
        .contact {
            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-lg);
            line-height: var(--leading-relaxed);
            margin-bottom: var(--space-8);
        }

        .contact-info {
            background: white;
            border-radius: var(--radius-xl);
            padding: var(--space-10);
            box-shadow: var(--page-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-lg);
            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);
            }
        }

        @media (max-width: 992px) {
            section {
                padding: var(--space-20) 0;
            }

            .intro-content,
            .contact-wrapper,
            .pricing-content,
            .course-grid {
                grid-template-columns: 1fr;
                gap: var(--space-12);
            }

            .intro-image {
                max-width: 500px;
                margin: 0 auto;
            }

            .benefits-grid,
            .research-grid {
                grid-template-columns: repeat(2, 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,
            .research-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;
            }

            /* 手機版「學習接收」區塊上下排列 */
            .receiving-grid {
                grid-template-columns: 1fr !important;
                gap: var(--space-10) !important;
            }
        }

        @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);
            }
        }