/* ==========================================================
           Modern Layout Styles for Weight Loss Page
           ========================================================== */
        .weight-hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, #c5b098 0%, #8b6d51 100%);
            color: #ffffff;
            font-size: 13px;
            font-weight: bold;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            box-shadow: 0 2px 8px rgba(139, 109, 81, 0.2);
        }

        .weight-section-title {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 20px;
            padding-bottom: 14px;
            border-bottom: 2px solid #e8dfd5;
        }

        .weight-section-title h3 {
            margin: 0;
            font-size: 24px;
            font-weight: bold;
            color: #5a4a3a;
        }

        .weight-intro-box {
            background: #ffffff;
            border: 1px solid #ebd9c8;
            border-radius: 12px;
            padding: 24px 28px;
            margin-bottom: 30px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
            text-align: left;
        }

        .weight-highlight-banner {
            background: linear-gradient(135deg, #fdfbf9 0%, #f7f3ee 100%);
            border-left: 4px solid #8b6d51;
            border-radius: 8px;
            padding: 16px 20px;
            margin: 20px 0;
            font-size: 15px;
            color: #5a4a3a;
            line-height: 1.8;
        }

        /* 4 Core Features Grid */
        .weight-feature-grid {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -8px 30px -8px;
        }

        .weight-feature-col {
            flex: 1 1 25%;
            max-width: 25%;
            padding: 8px;
        }

        @media only screen and (max-width: 991px) {
            .weight-feature-col {
                flex: 1 1 50%;
                max-width: 50%;
            }
        }

        @media only screen and (max-width: 480px) {
            .weight-feature-col {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }

        .weight-feature-card {
            background: #ffffff;
            border: 1px solid #ebd9c8;
            border-radius: 10px;
            padding: 22px 16px;
            text-align: center;
            height: 100%;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .weight-feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 22px rgba(184, 159, 130, 0.22);
        }

        .weight-feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #c5b098 0%, #8b6d51 100%);
            color: #ffffff;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 12px;
            box-shadow: 0 4px 10px rgba(139, 109, 81, 0.25);
        }

        .weight-feature-card h4 {
            font-size: 16px;
            font-weight: bold;
            color: #444;
            margin-bottom: 6px;
        }

        .weight-feature-card p {
            font-size: 13px;
            color: #777;
            margin: 0;
            line-height: 1.5;
        }

        /* 3 Core Rules */
        .weight-rule-card {
            background: #ffffff;
            border: 1px solid #ebd9c8;
            border-radius: 12px;
            padding: 20px 24px;
            margin-bottom: 18px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
            text-align: left;
        }

        .weight-rule-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .weight-rule-badge {
            background: #8b6d51;
            color: #ffffff;
            font-size: 13px;
            font-weight: bold;
            padding: 3px 12px;
            border-radius: 20px;
        }

        .weight-rule-title {
            font-size: 17px;
            font-weight: bold;
            color: #444;
            margin: 0;
        }

        /* Before & After Cases Showcase */
        .weight-case-grid {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px 30px -10px;
        }

        .weight-case-col {
            flex: 1 1 33.333%;
            max-width: 33.333%;
            padding: 10px;
        }

        @media only screen and (max-width: 991px) {
            .weight-case-col {
                flex: 1 1 50%;
                max-width: 50%;
            }
        }

        @media only screen and (max-width: 600px) {
            .weight-case-col {
                flex: 1 1 100%;
                max-width: 100%;
            }
        }

        .weight-case-card {
            background: #ffffff;
            border: 1px solid #ebd9c8;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .weight-case-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .weight-case-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            background: #f5f5f5;
        }

        .weight-case-body {
            padding: 14px 16px;
            text-align: center;
            background: #ffffff;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .weight-case-name {
            font-size: 15px;
            font-weight: bold;
            color: #333333;
            margin-bottom: 6px;
        }

        .weight-case-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
            color: #666666;
            margin-bottom: 8px;
        }

        .weight-case-badge {
            display: inline-block;
            background: #e85a5a;
            color: #ffffff;
            font-size: 13px;
            font-weight: bold;
            padding: 3px 12px;
            border-radius: 15px;
            margin: 0 auto;
        }

        /* Herb Ingredients Grid */
        .weight-herb-grid {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -8px 25px -8px;
        }

        .weight-herb-col {
            flex: 1 1 25%;
            max-width: 25%;
            padding: 8px;
        }

        @media only screen and (max-width: 991px) {
            .weight-herb-col {
                flex: 1 1 33.333%;
                max-width: 33.333%;
            }
        }

        @media only screen and (max-width: 600px) {
            .weight-herb-col {
                flex: 1 1 50%;
                max-width: 50%;
            }
        }

        .weight-herb-card {
            background: #ffffff;
            border: 1px solid #ebd9c8;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }

        .weight-herb-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(184, 159, 130, 0.2);
        }

        .weight-herb-img {
            width: 100%;
            height: 130px;
            object-fit: cover;
            display: block;
        }

        .weight-herb-body {
            padding: 10px 12px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .weight-herb-title {
            font-size: 14px;
            font-weight: bold;
            color: #5a4a3a;
            margin-bottom: 4px;
        }

        .weight-herb-desc {
            font-size: 12px;
            color: #777;
            line-height: 1.4;
            margin: 0;
        }

        /* Alert / Care Callout Boxes */
        .weight-care-box {
            background: #fdfbf9;
            border: 1px solid #ebd9c8;
            border-radius: 10px;
            padding: 20px 24px;
            margin-bottom: 20px;
            text-align: left;
        }

        .weight-care-title {
            font-size: 16px;
            font-weight: bold;
            color: #8b6d51;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .weight-care-list {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 14px;
            line-height: 2;
            color: #555;
        }

        .weight-care-list li {
            position: relative;
            padding-left: 22px;
            margin-bottom: 4px;
        }

        .weight-care-list li:before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #8b6d51;
            font-weight: bold;
        }

        /* ==========================================================
           Modern Medical FAQ Accordion Section (MONK Warm Theme)
           ========================================================== */
        .faq-accordion-section {
            margin: 45px 0 35px 0;
        }

        .faq-accordion-item {
            background: #ffffff;
            border: 1.5px solid #ebd9c8;
            border-radius: 14px;
            margin-bottom: 14px;
            box-shadow: 0 4px 16px rgba(59, 40, 31, 0.04);
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .faq-accordion-item:hover {
            border-color: #8b6d51;
            box-shadow: 0 6px 22px rgba(139, 109, 81, 0.14);
        }

        .faq-accordion-header {
            padding: 18px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            background: #ffffff;
            user-select: none;
            transition: background 0.25s ease;
            gap: 12px;
        }

        .faq-accordion-header:hover {
            background: #fdfaf7;
        }

        .faq-accordion-header h4 {
            margin: 0 !important;
            font-size: 16.5px !important;
            font-weight: 800 !important;
            color: #2b1c14 !important;
            display: flex !important;
            align-items: center !important;
            gap: 12px !important;
            line-height: 1.5 !important;
        }

        .faq-q-badge {
            background: linear-gradient(135deg, #c5b098 0%, #8b6d51 100%) !important;
            color: #ffffff !important;
            font-size: 13px !important;
            font-weight: 800 !important;
            width: 26px !important;
            height: 26px !important;
            border-radius: 50% !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            flex-shrink: 0 !important;
            box-shadow: 0 2px 6px rgba(139, 109, 81, 0.35) !important;
        }

        .faq-accordion-icon {
            font-size: 15px !important;
            color: #8b6d51 !important;
            transition: transform 0.3s ease !important;
            flex-shrink: 0 !important;
        }

        .faq-accordion-item.active .faq-accordion-icon {
            transform: rotate(180deg) !important;
        }

        .faq-accordion-body {
            padding: 0 24px !important;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease;
            background: #faf6f0 !important;
            border-top: 1px solid transparent;
        }

        .faq-accordion-item.active .faq-accordion-body {
            padding: 18px 24px 22px 24px !important;
            max-height: 600px;
            border-top-color: #ebd9c8 !important;
        }

        .faq-accordion-body p {
            margin: 0 !important;
            font-size: 15px !important;
            line-height: 1.85 !important;
            color: #3b2b20 !important;
            font-weight: 500 !important;
        }

        /* ==========================================================
           Modern Luxury Multi-Column SEO Sitemap Footer (京典麗緻診所)
           ========================================================== */
        .luxury-site-footer {
            background: linear-gradient(180deg, #2b211a 0%, #1c140f 100%);
            border-top: 3px solid #dfbe7a;
            color: #d8cec4;
            font-family: inherit;
            position: relative;
            z-index: 10;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Top Brand & Trust Strip */
        .footer-top-strip {
            border-bottom: 1px solid rgba(223, 190, 122, 0.18);
            padding: 28px 0;
            background: rgba(0, 0, 0, 0.15);
        }

        .footer-brand-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-brand-logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none !important;
        }

        .footer-brand-logo img {
            width: 38px;
            height: 38px;
            object-fit: contain;
            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
        }

        .footer-clinic-name {
            margin: 0;
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.8px;
        }

        .footer-clinic-slogan {
            margin: 2px 0 0 0;
            font-size: 13px;
            color: #dfbe7a;
            letter-spacing: 0.3px;
        }

        .footer-trust-badges {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .footer-trust-badge {
            background: rgba(223, 190, 122, 0.08);
            border: 1px solid rgba(223, 190, 122, 0.25);
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 12.5px;
            color: #ebd8c8;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.25s ease;
        }

        .footer-trust-badge i {
            color: #dfbe7a;
            font-size: 13px;
        }

        .footer-trust-badge:hover {
            background: rgba(223, 190, 122, 0.18);
            border-color: #dfbe7a;
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* Main Multi-Column Sitemap Section */
        .footer-main-content {
            padding: 48px 0 36px 0;
        }

        .footer-sitemap-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 28px;
        }

        .footer-col {
            display: flex;
            flex-direction: column;
        }

        .footer-col-title {
            color: #dfbe7a;
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 16px 0;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(223, 190, 122, 0.25);
            display: flex;
            align-items: center;
            gap: 8px;
            letter-spacing: 0.5px;
        }

        .footer-col-title i {
            font-size: 15px;
            color: #c5b098;
        }

        .footer-nav-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-nav-link {
            color: #c4b8ad !important;
            font-size: 13.5px;
            line-height: 1.5;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            transition: all 0.22s ease;
            position: relative;
        }

        .footer-nav-link i {
            color: #8b6d51;
            font-size: 12px;
            transition: transform 0.22s ease, color 0.22s ease;
        }

        .footer-nav-link:hover {
            color: #ffffff !important;
            transform: translateX(4px);
        }

        .footer-nav-link:hover i {
            color: #dfbe7a;
            transform: translateX(2px);
        }

        /* Badges inside links */
        .footer-badge-gold {
            background: linear-gradient(135deg, #dfbe7a 0%, #a88247 100%);
            color: #1a120b !important;
            font-size: 10px;
            font-weight: 800;
            padding: 1px 6px;
            border-radius: 4px;
            letter-spacing: 0.5px;
        }

        .footer-badge-monk {
            background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
            color: #ffffff !important;
            font-size: 10px;
            font-weight: 800;
            padding: 1px 6px;
            border-radius: 4px;
        }

        .footer-badge-hot {
            background: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
            color: #ffffff !important;
            font-size: 10px;
            font-weight: 800;
            padding: 1px 6px;
            border-radius: 4px;
        }

        /* Contact & QR Column */
        .footer-contact-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 16px;
            font-size: 13px;
        }

        .footer-info-item {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.5;
            color: #c4b8ad;
        }

        .footer-info-item i {
            color: #dfbe7a;
            font-size: 14px;
            margin-top: 3px;
            flex-shrink: 0;
            width: 14px;
            text-align: center;
        }

        .footer-info-item a {
            color: #ebd8c8 !important;
            text-decoration: underline !important;
            transition: color 0.2s ease;
        }

        .footer-info-item a:hover {
            color: #ffffff !important;
        }

        .footer-qr-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(223, 190, 122, 0.3);
            border-radius: 10px;
            padding: 10px 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .footer-qr-card img {
            width: 54px;
            height: 54px;
            object-fit: contain;
            background: #ffffff;
            padding: 3px;
            border-radius: 6px;
            flex-shrink: 0;
        }

        .footer-qr-text strong {
            display: block;
            color: #06c755;
            font-size: 13px;
            margin-bottom: 2px;
        }

        .footer-qr-text span {
            display: block;
            color: #a89d94;
            font-size: 11.5px;
            line-height: 1.35;
        }

        .footer-qr-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #dfbe7a;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(223, 190, 122, 0.2);
        }

        /* Medical E-E-A-T Compliance Disclaimer */
        .footer-medical-disclaimer {
            background: rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(223, 190, 122, 0.18);
            border-radius: 10px;
            padding: 18px 22px;
            margin-top: 36px;
        }

        .footer-disclaimer-title {
            color: #dfbe7a;
            font-size: 13.5px;
            font-weight: 700;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .footer-medical-disclaimer p {
            margin: 0;
            font-size: 12.5px;
            line-height: 1.8;
            color: #9f9389;
        }

        /* Bottom Copyright & Legal Links */
        .footer-bottom-bar {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 0 24px 0;
            background: #150f0b;
        }

        .footer-bottom-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 14px;
        }

        .footer-copyright p {
            margin: 0;
            font-size: 12.5px;
            color: #8c8077;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: #a89d94 !important;
            font-size: 12.5px;
            text-decoration: none !important;
            transition: color 0.2s ease;
        }

        .footer-bottom-links a:hover {
            color: #dfbe7a !important;
        }

        .footer-bottom-links span {
            color: #554a42;
            font-size: 11px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1199px) {
            .footer-sitemap-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }

            .footer-col-contact {
                grid-column: span 2;
            }
        }

        @media (max-width: 767px) {
            .footer-top-strip {
                padding: 20px 0;
            }

            .footer-brand-wrap {
                flex-direction: column;
                align-items: flex-start;
                gap: 14px;
            }

            .footer-trust-badges {
                gap: 8px;
            }

            .footer-trust-badge {
                padding: 4px 10px;
                font-size: 11.5px;
            }

            .footer-main-content {
                padding: 32px 0 24px 0;
            }

            .footer-sitemap-grid {
                grid-template-columns: 1fr 1fr;
                gap: 22px 16px;
            }

            .footer-col-contact {
                grid-column: span 2;
                margin-top: 6px;
            }

            .footer-bottom-flex {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .footer-sitemap-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .footer-col-contact {
                grid-column: span 1;
            }
        }

        /* ==========================================================
           【醫學深度升級】四大生化代謝柱石與臨床生化解析
           ========================================================== */
        .weight-pillar-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin: 20px 0 30px 0;
        }

        @media (max-width: 768px) {
            .weight-pillar-grid {
                grid-template-columns: 1fr;
            }
        }

        .weight-pillar-card {
            background: #ffffff;
            border: 1.5px solid #ebd9c8;
            border-radius: 12px;
            padding: 22px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .weight-pillar-card:hover {
            transform: translateY(-3px);
            border-color: #8b6d51;
            box-shadow: 0 8px 24px rgba(139, 109, 81, 0.15);
        }

        .weight-pillar-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
            flex-wrap: wrap;
            gap: 8px;
        }

        .weight-pillar-badge {
            background: linear-gradient(135deg, #c5b098 0%, #8b6d51 100%);
            color: #ffffff;
            font-size: 12px;
            font-weight: 800;
            padding: 3px 10px;
            border-radius: 14px;
            letter-spacing: 0.5px;
        }

        .weight-pillar-code {
            font-size: 11px;
            color: #a89485;
            font-weight: 700;
            font-family: monospace;
        }

        .weight-pillar-title {
            font-size: 17px;
            font-weight: 800;
            color: #3b281f;
            margin: 0 0 8px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .weight-pillar-subtitle {
            font-size: 13px;
            font-weight: 700;
            color: #8b6d51;
            margin-bottom: 10px;
            display: block;
        }

        .weight-pillar-body {
            font-size: 14px;
            line-height: 1.8;
            color: #555555;
            flex-grow: 1;
        }

        .weight-pillar-bio-tag {
            margin-top: 14px;
            padding: 8px 12px;
            background: #fdfaf6;
            border-left: 3px solid #dfbe7a;
            border-radius: 4px;
            font-size: 12.5px;
            color: #785a44;
            line-height: 1.5;
        }

        /* ==========================================================
           【中醫五型體質辨證矩陣】君臣佐使配伍架構
           ========================================================== */
        .weight-matrix-container {
            background: #fdfbf9;
            border: 1.5px solid #ebd9c8;
            border-radius: 14px;
            padding: 24px;
            margin: 25px 0 35px 0;
        }

        .weight-matrix-header {
            text-align: center;
            margin-bottom: 22px;
        }

        .weight-matrix-header h4 {
            font-size: 20px;
            font-weight: 800;
            color: #3b281f;
            margin: 0 0 8px 0;
        }

        .weight-matrix-header p {
            font-size: 14px;
            color: #7d6e63;
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .weight-matrix-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
        }

        @media (max-width: 991px) {
            .weight-matrix-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .weight-matrix-grid {
                grid-template-columns: 1fr;
            }
        }

        .weight-matrix-card {
            background: #ffffff;
            border: 1px solid #ebd9c8;
            border-radius: 10px;
            padding: 16px;
            transition: all 0.25s ease;
        }

        .weight-matrix-card:hover {
            border-color: #8b6d51;
            box-shadow: 0 4px 14px rgba(139, 109, 81, 0.12);
        }

        .weight-matrix-type {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .weight-matrix-name {
            font-size: 15.5px;
            font-weight: 800;
            color: #8b6d51;
        }

        .weight-matrix-symptom {
            font-size: 12.5px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
            min-height: 40px;
        }

        .weight-matrix-strategy {
            background: #faf5ee;
            border-radius: 6px;
            padding: 6px 10px;
            font-size: 12px;
            color: #785a44;
            font-weight: 700;
        }

        /* ==========================================================
           【專科醫師說真話】破解自律減重 3 大死穴
           ========================================================== */
        .weight-truth-section {
            background: linear-gradient(135deg, #2b211a 0%, #1c140f 100%);
            border: 2px solid #dfbe7a;
            border-radius: 16px;
            padding: 36px 30px;
            margin: 40px 0;
            color: #f5ede6;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
            position: relative;
            overflow: hidden;
        }

        .weight-truth-section::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(223, 190, 122, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .weight-truth-head {
            text-align: center;
            margin-bottom: 28px;
        }

        .weight-truth-badge {
            display: inline-block;
            background: rgba(223, 190, 122, 0.18);
            border: 1px solid #dfbe7a;
            color: #dfbe7a;
            font-size: 12px;
            font-weight: 800;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .weight-truth-title {
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 8px 0;
        }

        .weight-truth-sub {
            font-size: 14px;
            color: #d8cec4;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .weight-truth-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        @media (max-width: 991px) {
            .weight-truth-grid {
                grid-template-columns: 1fr;
            }
        }

        .weight-truth-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(223, 190, 122, 0.25);
            border-radius: 12px;
            padding: 22px;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
        }

        .weight-truth-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: #dfbe7a;
            transform: translateY(-3px);
        }

        .weight-truth-pitfall {
            color: #ff7b7b;
            font-size: 15px;
            font-weight: 800;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .weight-truth-pitfall i {
            color: #ff5252;
        }

        .weight-truth-bio {
            font-size: 13.5px;
            line-height: 1.8;
            color: #ebdcd0;
            margin: 0 0 12px 0;
        }

        .weight-truth-sol {
            background: rgba(223, 190, 122, 0.12);
            border-left: 3px solid #dfbe7a;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 12.5px;
            color: #dfbe7a;
            font-weight: 700;
            line-height: 1.5;
        }

        /* ==========================================================
           【旗艦 VIP 臨床個人化調理計畫】(高奢磨砂玻璃 Paywall 風格)
           ========================================================== */
        .vip-unlock-container {
            background: linear-gradient(135deg, #faf7f2 0%, #f4ede2 100%);
            border: 2.5px solid #dfbe7a;
            border-radius: 18px;
            padding: 36px 32px;
            margin: 45px 0;
            box-shadow: 0 12px 40px rgba(139, 109, 81, 0.16);
            position: relative;
        }

        @media (max-width: 768px) {
            .vip-unlock-container {
                padding: 24px 18px;
                border-radius: 14px;
            }
        }

        .vip-unlock-header {
            text-align: center;
            margin-bottom: 28px;
        }

        .vip-gold-ribbon {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
            color: #ffffff;
            font-size: 12px;
            font-weight: 800;
            padding: 5px 16px;
            border-radius: 20px;
            letter-spacing: 0.8px;
            box-shadow: 0 3px 10px rgba(212, 175, 55, 0.35);
            margin-bottom: 10px;
        }

        .vip-unlock-title {
            font-size: 25px;
            font-weight: 900;
            color: #2b1c14;
            margin: 0 0 8px 0;
            letter-spacing: 0.5px;
        }

        .vip-unlock-desc {
            font-size: 14.5px;
            color: #6b584a;
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.65;
        }

        /* 3 題智能快篩區域 */
        .vip-quiz-card {
            background: #ffffff;
            border: 1.5px solid #ebd9c8;
            border-radius: 14px;
            padding: 22px 24px;
            margin-bottom: 24px;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
        }

        .vip-quiz-step {
            margin-bottom: 18px;
        }

        .vip-quiz-step:last-child {
            margin-bottom: 0;
        }

        .vip-quiz-label {
            font-size: 14px;
            font-weight: 800;
            color: #3e2e23;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .vip-quiz-label-num {
            background: #8b6d51;
            color: #ffffff;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 800;
        }

        .vip-options-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .vip-opt-pill {
            background: #fdfaf6;
            border: 1.5px solid #ebd9c8;
            border-radius: 8px;
            padding: 9px 15px;
            font-size: 13px;
            font-weight: 700;
            color: #5a473a;
            cursor: pointer;
            transition: all 0.2s ease;
            user-select: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .vip-opt-pill:hover {
            border-color: #8b6d51;
            background: #fef7ec;
            transform: translateY(-1px);
        }

        .vip-opt-pill.active {
            background: linear-gradient(135deg, #8b6d51 0%, #684f39 100%);
            border-color: #684f39;
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(104, 79, 57, 0.25);
        }

        .vip-opt-pill.active::after {
            content: "✓";
            font-size: 11px;
            font-weight: bold;
            margin-left: 2px;
        }

        /* 觸發生成按鈕 */
        .vip-generate-box {
            text-align: center;
            margin: 20px 0 10px 0;
        }

        .vip-generate-btn {
            background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
            color: #ffffff;
            border: none;
            padding: 14px 34px;
            font-size: 16px;
            font-weight: 800;
            border-radius: 30px;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(170, 124, 17, 0.35);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .vip-generate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(170, 124, 17, 0.45);
            background: linear-gradient(135deg, #dfbe7a 0%, #b8860b 100%);
        }

        /* 生成進度條動畫 */
        .vip-progress-wrap {
            display: none;
            margin: 20px auto;
            max-width: 500px;
            text-align: center;
        }

        .vip-progress-bar-bg {
            background: #e6ded4;
            height: 8px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .vip-progress-bar-fill {
            background: linear-gradient(90deg, #d4af37, #06c755);
            height: 100%;
            width: 0%;
            border-radius: 10px;
            transition: width 0.3s linear;
        }

        .vip-progress-text {
            font-size: 12.5px;
            color: #8b6d51;
            font-weight: 700;
        }

        /* 個人化臨床代謝調理卡片 */
        .vip-rx-card {
            background: #ffffff;
            border: 2px solid #dfbe7a;
            border-radius: 14px;
            margin-top: 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .vip-rx-top-seal {
            background: #faf6f0;
            border-bottom: 1.5px dashed #ebd9c8;
            padding: 16px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }

        .vip-rx-clinic-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .vip-rx-clinic-brand img {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }

        .vip-rx-clinic-name {
            font-size: 16px;
            font-weight: 800;
            color: #3e2e23;
        }

        .vip-rx-clinic-sub {
            font-size: 11px;
            color: #9c8b7d;
        }

        .vip-rx-meta {
            text-align: right;
            font-size: 11.5px;
            color: #7d6e63;
        }

        .vip-rx-code {
            font-family: monospace;
            font-weight: 700;
            color: #b45309;
        }

        .vip-rx-body {
            padding: 24px;
            position: relative;
        }

        .vip-rx-patient-bar {
            background: #fdfaf6;
            border: 1px solid #ebd9c8;
            border-radius: 8px;
            padding: 12px 18px;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }

        .vip-rx-p-item {
            font-size: 13px;
            color: #555;
        }

        .vip-rx-p-item strong {
            color: #2b1c14;
        }

        /* 處方內容（底層數據，準備被磨砂遮蓋） */
        .vip-rx-underlying-content {
            filter: blur(5px);
            -webkit-filter: blur(5px);
            opacity: 0.45;
            user-select: none;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .vip-rx-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 15px;
            font-size: 13px;
        }

        .vip-rx-table th,
        .vip-rx-table td {
            border: 1px solid #ebd9c8;
            padding: 10px 12px;
            text-align: left;
        }

        .vip-rx-table th {
            background: #f7f2ea;
            color: #684f39;
            font-weight: 700;
        }

        .vip-rx-locked-wrap {
            position: relative;
            overflow: hidden;
            min-height: 420px;
            border-radius: 8px;
        }

        /* 磨砂毛玻璃解鎖簾幕 (Frosted Glass Curtain) */
        .vip-lock-curtain {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.76);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px 24px;
            text-align: center;
            z-index: 10;
        }

        .vip-lock-icon-wrap {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
            margin-bottom: 12px;
            animation: vipLockPulse 2.5s infinite ease-in-out;
        }

        @keyframes vipLockPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
            }

            50% {
                transform: scale(1.06);
                box-shadow: 0 8px 28px rgba(212, 175, 55, 0.65);
            }
        }

        .vip-lock-title {
            font-size: 19px;
            font-weight: 900;
            color: #2b1c14;
            margin: 0 0 6px 0;
        }

        .vip-lock-warning {
            font-size: 13px;
            line-height: 1.6;
            color: #684f39;
            max-width: 580px;
            margin: 0 auto 16px auto;
        }



        /* LINE 專屬解鎖 CTA 按鈕 */
        .vip-action-btns {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 360px;
            margin: 0 auto;
        }

        .vip-btn-line {
            width: 100%;
            background: #06c755;
            color: #ffffff !important;
            padding: 14px 28px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 800;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 6px 22px rgba(6, 199, 85, 0.38);
            transition: all 0.25s ease;
            letter-spacing: 0.5px;
        }

        .vip-btn-line:hover {
            background: #05b04c;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(6, 199, 85, 0.48);
            color: #ffffff !important;
        }

        /* 手機版個人化處方卡與安全鎖自適應佈局 (消除過度留白) */
        @media (max-width: 768px) {
            .vip-rx-card {
                margin-top: 18px;
            }

            .vip-rx-top-seal {
                padding: 14px 14px;
                gap: 10px;
            }

            .vip-rx-clinic-brand {
                gap: 8px;
            }

            .vip-rx-clinic-name {
                font-size: 14.5px;
            }

            .vip-rx-clinic-sub {
                font-size: 10px;
            }

            .vip-rx-meta {
                text-align: left;
                width: 100%;
                border-top: 1px dashed #ebd9c8;
                padding-top: 8px;
                margin-top: 2px;
                display: flex;
                flex-direction: column;
                gap: 3px;
            }

            .vip-rx-body {
                padding: 14px 12px;
            }

            .vip-rx-patient-bar {
                padding: 10px 12px;
                margin-bottom: 12px;
                gap: 6px;
            }

            .vip-rx-p-item {
                font-size: 12px;
                width: 100%;
            }

            .vip-rx-locked-wrap {
                min-height: unset;
                position: relative;
            }

            .vip-rx-underlying-content {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                overflow: hidden;
                max-height: 100%;
            }

            .vip-lock-curtain {
                position: relative;
                top: auto;
                left: auto;
                right: auto;
                bottom: auto;
                padding: 22px 14px;
            }

            .vip-lock-icon-wrap {
                width: 48px;
                height: 48px;
                font-size: 20px;
                margin-bottom: 10px;
            }

            .vip-lock-title {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .vip-lock-warning {
                font-size: 12px;
                line-height: 1.55;
                margin-bottom: 14px;
            }

            .vip-btn-line {
                padding: 12px 20px;
                font-size: 14.5px;
            }
        }

        /* ==========================================================
           高奢文字排版微動效與視覺引導 (Luxury Typography & Micro-Interactions)
           ========================================================== */
        .reveal-fade-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1), transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: opacity, transform;
        }

        .reveal-fade-up.is-revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.10s;
        }

        .reveal-delay-2 {
            transition-delay: 0.20s;
        }

        .reveal-delay-3 {
            transition-delay: 0.30s;
        }

        .reveal-delay-4 {
            transition-delay: 0.40s;
        }

        /* 英文字母次標題隨捲動優雅展開字距 (Swiss Watch / High-End Horology Style) */
        .subtitle-letter-stretch {
            display: inline-block;
            letter-spacing: 2px;
            transition: letter-spacing 1.1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
        }

        .subtitle-letter-stretch.is-revealed {
            letter-spacing: 4px;
        }

        /* 頂級金牌徽章流光漫射 (Specular Gold Sheen Pass) */
        .luxury-shimmer-badge {
            position: relative;
            overflow: hidden !important;
        }

        .luxury-shimmer-badge::after {
            content: '';
            position: absolute;
            top: 0;
            left: -130%;
            width: 65%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
            transform: skewX(-25deg);
            animation: luxuryBadgeSheen 4.2s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes luxuryBadgeSheen {

            0%,
            65% {
                left: -130%;
            }

            100% {
                left: 160%;
            }
        }

        /* 頂級臨床權威數據滾動看板 */
        .clinic-stats-strip {
            background: linear-gradient(135deg, #fdfbf9 0%, #f7efe4 100%);
            border: 1.5px solid #dfbe7a;
            border-radius: 16px;
            padding: 24px 20px;
            margin: 24px 0 35px 0;
            box-shadow: 0 6px 24px rgba(139, 109, 81, 0.08);
            position: relative;
            overflow: hidden;
        }

        .clinic-stat-item {
            text-align: center;
            padding: 10px 14px;
            position: relative;
        }

        .clinic-stat-num {
            font-size: 34px;
            font-weight: 900;
            color: #78350f;
            font-family: 'Open Sans', "Microsoft JhengHei", sans-serif;
            line-height: 1.1;
            display: inline-flex;
            align-items: baseline;
            justify-content: center;
            white-space: nowrap;
        }

        .clinic-stat-num span {
            display: inline-block;
            white-space: nowrap;
        }

        .clinic-stat-num .stat-counter {
            font-variant-numeric: tabular-nums;
        }

        .clinic-stat-num .stat-unit {
            font-size: 20px;
            color: #b45309;
            font-weight: 800;
            margin-left: 2px;
            vertical-align: baseline;
        }

        .clinic-stat-label {
            font-size: 13px;
            color: #785a44;
            font-weight: 700;
            margin-top: 6px;
            letter-spacing: 0.3px;
        }

        @media (max-width: 767px) {
            .clinic-stats-strip {
                padding: 16px 8px;
                margin: 18px 0 28px 0;
            }

            .clinic-stat-item {
                padding: 8px 3px;
            }

            .clinic-stat-num {
                font-size: 24px;
                white-space: nowrap;
            }

            .clinic-stat-num .stat-unit {
                font-size: 15px !important;
                margin-left: 1px;
            }

            .clinic-stat-label {
                font-size: 11.5px;
                letter-spacing: -0.2px;
                margin-top: 4px;
            }
        }

        @media (max-width: 360px) {
            .clinic-stat-num {
                font-size: 20px;
            }

            .clinic-stat-num .stat-unit {
                font-size: 13px !important;
            }

            .clinic-stat-label {
                font-size: 10.5px;
            }
        }

        /* 核心卡片微動效質感提升 (Elevated Medical Cards) */
        .weight-pillar-card,
        .weight-case-card,
        .weight-matrix-card,
        .weight-herb-card,
        .weight-care-box {
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease !important;
        }

        .weight-pillar-card:hover,
        .weight-matrix-card:hover,
        .weight-care-box:hover {
            transform: translateY(-4px) !important;
            box-shadow: 0 12px 30px rgba(139, 109, 81, 0.12) !important;
            border-color: #8b6d51 !important;
        }

        .weight-case-card:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 14px 32px rgba(139, 109, 81, 0.16) !important;
        }

        .weight-herb-card:hover {
            transform: translateY(-3px) !important;
            box-shadow: 0 8px 22px rgba(139, 109, 81, 0.14) !important;
            border-color: #dfbe7a !important;
        }

        /* 呼吸引導下劃線微動效 */
        .weight-section-title h3 {
            position: relative;
            display: inline-block;
        }

        .weight-section-title h3::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 38px;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #8b6d51);
            border-radius: 2px;
            transition: width 0.4s ease;
        }

        .weight-section-title:hover h3::after {
            width: 70px;
        }