        /* =============================================================
           Theme System · 粉色系可組合主題
           使用方式：
             1. <div class="editor-area"> 是基底容器（只含字型/排版設定）
             2. 內層包 <div class="theme-xxx"> 即套用該主題色系
             3. 若未包 theme 容器，會自動 fallback 為 theme-blue
             可用主題：
               .theme-blue   → 粉藍（預設）
               .theme-pink   → 粉紅
               .theme-yellow → 粉黃
               .theme-green  → 粉綠
               .theme-purple → 粉紫
               .theme-beige  → 奶米
             背景工具 class（吃當前 scope 主題變數）：
               .bg-soft / .bg-gradient / .bg-gradient-v / .bg-gradient-deep
               .bg-white / .bg-cream
           ============================================================= */

        /* ---- 基底容器：只放非主題相關設定 + 預設 fallback 主題色 ---- */
        .editor-area {
            /* ===== 非主題變數（跨主題共用） ===== */
            --dp-cream: #f6f2ea;
            --dp-text: #3a3a3a;
            --dp-muted: #7a7a7a;
            --dp-bg: var(--dp-soft);
            --dp-bg-2: var(--dp-soft);
            --dp-gradient: linear-gradient(135deg, var(--dp-soft-2) 0%, var(--dp-soft-3) 100%);
            --dp-gradient-soft: linear-gradient(180deg, #fff 0%, var(--dp-soft) 100%);

            /* ===== Fallback 主題色（當內部沒包 .theme-xxx 時） ===== */
            --dp-primary: #a9c9d6;
            --dp-primary-deep: #6b9fb1;
            --dp-dark: #2f4a54;
            --dp-soft: #eef5f7;
            --dp-soft-2: #d9e7ed;
            --dp-soft-3: #c3d8e0;
            --dp-accent: #e6c98a;
            --dp-line: #d8e4e8;

            font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
            color: var(--dp-text);
            line-height: 1.9;
            background: #fff;
        }

        /* ---- 主題色系（可層疊覆蓋） ---- */
        .theme-blue {
            --dp-primary: #a9c9d6;
            --dp-primary-deep: #6b9fb1;
            --dp-dark: #2f4a54;
            --dp-soft: #eef5f7;
            --dp-soft-2: #d9e7ed;
            --dp-soft-3: #c3d8e0;
            --dp-accent: #e6c98a;
            --dp-line: #d8e4e8;
        }

        .theme-pink {
            --dp-primary: #e8bcc2;
            --dp-primary-deep: #c98490;
            --dp-dark: #6b3a42;
            --dp-soft: #fbf0f2;
            --dp-soft-2: #f4dce1;
            --dp-soft-3: #e9c5cc;
            --dp-accent: #d9a86b;
            --dp-line: #ecd9dd;
        }

        .theme-yellow {
            --dp-primary: #ead9a4;
            --dp-primary-deep: #c9a85c;
            --dp-dark: #6b5620;
            --dp-soft: #fbf6e6;
            --dp-soft-2: #f4ead0;
            --dp-soft-3: #e9d8a8;
            --dp-accent: #b59a71;
            --dp-line: #ecdfc2;
        }

        .theme-green {
            --dp-primary: #bfd8c4;
            --dp-primary-deep: #7ba586;
            --dp-dark: #2f5a3f;
            --dp-soft: #eef5f0;
            --dp-soft-2: #dde9e0;
            --dp-soft-3: #c6dac9;
            --dp-accent: #d9a86b;
            --dp-line: #d6e4d8;
        }

        .theme-purple {
            --dp-primary: #d2c4df;
            --dp-primary-deep: #9b82b5;
            --dp-dark: #4a3a5a;
            --dp-soft: #f4eff8;
            --dp-soft-2: #e6dbef;
            --dp-soft-3: #d4c3e0;
            --dp-accent: #c9a85c;
            --dp-line: #e1d8eb;
        }

        .theme-beige {
            --dp-primary: #e0d1b8;
            --dp-primary-deep: #b59a71;
            --dp-dark: #5a4a30;
            --dp-soft: #faf5ec;
            --dp-soft-2: #f1e6d0;
            --dp-soft-3: #e2d0ad;
            --dp-accent: #6b9fb1;
            --dp-line: #eadfc8;
        }

        /* ---- 背景樣式工具 class ---- */
        .bg-soft {
            background: var(--dp-soft) !important;
        }

        .bg-gradient {
            background: linear-gradient(135deg, var(--dp-soft-2) 0%, var(--dp-soft-3) 100%) !important;
        }

        .bg-gradient-v {
            background: linear-gradient(180deg, #fff 0%, var(--dp-soft) 100%) !important;
        }

        .bg-gradient-deep {
            background: linear-gradient(135deg, var(--dp-soft) 0%, var(--dp-soft-2) 50%, var(--dp-soft-3) 100%) !important;
        }

        .bg-white {
            background: #fff !important;
        }

        .bg-cream {
            background: #f6f2ea !important;
        }

        .editor-area p {
            margin-bottom: 0;
        }

        .editor-area ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .editor-area h3,
        .editor-area h4,
        .editor-area h5 {
            color: var(--dp-dark);
        }

        /* ===== Hero ===== */
        .dp-hero {
            position: relative;
            background: #fff;
            padding: 70px 0 90px;
            overflow: hidden;
        }

        .dp-hero::after {
            content: "";
            position: absolute;
            right: 0;
            top: 40px;
            bottom: 40px;
            width: 62%;
            background: linear-gradient(135deg, #fff 0%, var(--dp-soft) 25%, var(--dp-soft-2) 60%, var(--dp-soft-3) 100%);
            z-index: 0;
            pointer-events: none;
        }

        .dp-hero>.container {
            position: relative;
            z-index: 1;
        }

        .dp-hero-left {
            position: relative;
            padding: 60px 60px 60px 90px;
            z-index: 2;
        }

        .dp-hero-tag {
            position: absolute;
            left: 0;
            top: 60px;
            writing-mode: vertical-rl;
            background: var(--dp-primary);
            color: #fff;
            font-size: 14px;
            letter-spacing: .4em;
            padding: 16px 6px;
            font-weight: 500;
        }

        .dp-hero-title {
            font-size: clamp(36px, 4.4vw, 56px);
            font-weight: 700;
            color: var(--dp-dark);
            margin: 0 0 26px;
            line-height: 1.2;
            letter-spacing: .04em;
        }

        .dp-hero-desc {
            font-size: 15px;
            color: #5a5a5a;
            line-height: 2.1;
            max-width: 480px;
            margin-bottom: 36px;
            letter-spacing: .03em;
        }

        .dp-hero-deco {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: #e6c98a;
            position: relative;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dp-hero-deco i {
            font-size: 28px;
            color: #fff;
        }

        .dp-hero-deco::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 100%;
            width: 1px;
            height: 42px;
            background: var(--dp-dark);
        }

        .dp-hero-img {
            position: relative;
            background: transparent;
            aspect-ratio: 5/4;
            overflow: hidden;
            z-index: 2;
        }

        .dp-hero-img img {
            position: absolute;
            right: 0;
            bottom: 0;
            width: auto;
            height: 100%;
            max-height: 100%;
            object-fit: contain;
            z-index: 2;
        }

        /* ===== Section title ===== */
        .dp-sec-title {
            position: relative;
            text-align: center;
            margin-bottom: 50px;
        }

        .dp-sec-title::before {
            content: "";
            display: block;
            width: 100%;
            max-width: 720px;
            height: 1px;
            background: var(--dp-line);
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .dp-sec-title h3 {
            display: inline-block;
            position: relative;
            z-index: 1;
            background: #fff;
            padding: 0 32px;
            font-size: 28px;
            font-weight: 700;
            color: var(--dp-dark);
            letter-spacing: .08em;
            margin: 0;
        }

        .dp-sec-title.on-bg h3 {
            background: var(--dp-bg);
        }

        /* ===== Principle ===== */
        .dp-principle {
            background: var(--dp-soft);
            padding: 80px 0;
            margin-bottom: 0;
        }

        .dp-principle-sub {
            text-align: center;
            color: var(--dp-primary-deep);
            font-size: 13px;
            margin-bottom: 36px;
            letter-spacing: .3em;
            font-weight: 600;
        }

        .dp-principle-intro {
            max-width: 820px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .dp-principle-intro p {
            font-size: 16px;
            line-height: 2.1;
            color: #4a4a4a;
            letter-spacing: .03em;
            margin: 0;
        }

        .dp-principle-intro em {
            font-style: normal;
            color: var(--dp-primary-deep);
            font-weight: 700;
            padding: 0 4px;
            border-bottom: 1px dashed var(--dp-primary);
        }

        .dp-principle-img {
            background: #fff;
            padding: 20px;
            border: 1px solid var(--dp-line);
            text-align: center;
        }

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

        .dp-principle-note {
            margin-top: 40px;
        }

        .dp-pnote {
            display: flex;
            gap: 18px;
            background: #fff;
            padding: 24px 26px;
            border-left: 3px solid var(--dp-primary);
            margin-bottom: 14px;
        }

        .dp-pnote .no {
            font-family: "Georgia", serif;
            font-size: 30px;
            font-weight: 800;
            color: var(--dp-primary-deep);
            line-height: 1;
            min-width: 44px;
        }

        .dp-pnote h6 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dp-dark);
            margin: 0 0 6px;
        }

        .dp-pnote p {
            font-size: 14px;
            color: #5a5a5a;
            line-height: 1.85;
            margin: 0;
        }

        /* ===== Advantages ===== */
        .dp-advantages {
            background: #fff;
            padding: 80px 0 70px;
            margin-bottom: 0;
            position: relative;
            overflow: hidden;
        }

        .dp-advantages::before,
        .dp-advantages::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--dp-primary), transparent 70%);
            opacity: .35;
            pointer-events: none;
        }

        .dp-advantages::before {
            width: 320px;
            height: 320px;
            left: -100px;
            top: -100px;
        }

        .dp-advantages::after {
            width: 280px;
            height: 280px;
            right: -80px;
            bottom: -80px;
        }

        .dp-adv-head {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .dp-adv-en {
            display: block;
            font-size: 12px;
            letter-spacing: .4em;
            color: var(--dp-primary-deep);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .dp-adv-maintitle {
            font-size: clamp(26px, 3vw, 34px);
            font-weight: 700;
            color: var(--dp-dark);
            margin: 0 0 14px;
            letter-spacing: .05em;
        }

        .dp-adv-maintitle em {
            font-style: normal;
            color: var(--dp-primary-deep);
            margin-left: 6px;
        }

        .dp-adv-subtxt {
            font-size: 14.5px;
            color: var(--dp-muted);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.9;
        }

        .dp-adv-card {
            position: relative;
            background: #fff;
            border: 1px solid var(--dp-line);
            padding: 48px 24px 32px;
            text-align: center;
            height: 100%;
            overflow: hidden;
            transition: .5s;
        }

        .dp-adv-card::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, var(--dp-primary) 0%, var(--dp-primary-deep) 100%);
            opacity: 0;
            transition: .5s;
            z-index: 0;
        }

        .dp-adv-card:hover {
            transform: translateY(-8px);
            border-color: var(--dp-primary);
            box-shadow: 0 28px 50px -25px rgba(47, 74, 84, .35);
        }

        .dp-adv-card:hover::before {
            opacity: 1;
        }

        .dp-adv-card>* {
            position: relative;
            z-index: 1;
        }

        .dp-adv-num {
            position: absolute;
            top: 12px;
            left: 18px;
            font-family: "Georgia", serif;
            font-size: 44px;
            font-weight: 800;
            color: var(--dp-soft);
            line-height: 1;
            letter-spacing: -.02em;
            transition: .5s;
            z-index: 1;
        }

        .dp-adv-card:hover .dp-adv-num {
            color: rgba(255, 255, 255, .25);
        }

        .dp-adv-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 1.5px solid var(--dp-primary);
            background: var(--dp-soft);
            color: var(--dp-primary-deep);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 10px auto 18px;
            transition: .5s;
        }

        .dp-adv-icon svg {
            width: 42px;
            height: 42px;
        }

        .dp-adv-card:hover .dp-adv-icon {
            background: #fff;
            color: var(--dp-primary-deep);
            border-color: #fff;
            transform: rotate(-6deg);
        }

        .dp-adv-tag {
            display: inline-block;
            font-size: 11px;
            letter-spacing: .2em;
            font-weight: 600;
            color: var(--dp-primary-deep);
            background: var(--dp-soft);
            padding: 3px 12px;
            margin-bottom: 10px;
            border-radius: 20px;
            transition: .5s;
        }

        .dp-adv-card:hover .dp-adv-tag {
            background: rgba(255, 255, 255, .2);
            color: #fff;
        }

        .dp-adv-card h5 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dp-dark);
            margin: 0 0 14px;
            transition: .5s;
        }

        .dp-adv-card:hover h5 {
            color: #fff;
        }

        .dp-adv-line {
            width: 32px;
            height: 2px;
            background: var(--dp-primary);
            margin: 0 auto 14px;
            transition: .5s;
        }

        .dp-adv-card:hover .dp-adv-line {
            background: #fff;
            width: 48px;
        }

        .dp-adv-card p {
            font-size: 13px;
            color: var(--dp-muted);
            line-height: 1.9;
            margin: 0;
            transition: .5s;
        }

        .dp-adv-card:hover p {
            color: rgba(255, 255, 255, .9);
        }

        /* ===== Feature (療程特色) ===== */
        .dp-feature {
            background: var(--dp-soft);
            padding: 80px 0 70px;
            margin-bottom: 0;
            position: relative;
        }

        .dp-feature-head-wrap {
            text-align: center;
            margin-bottom: 50px;
        }

        .dp-feature-en {
            display: block;
            font-size: 12px;
            letter-spacing: .4em;
            color: var(--dp-primary-deep);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .dp-feature-title {
            font-size: clamp(26px, 3vw, 34px);
            font-weight: 700;
            color: var(--dp-dark);
            margin: 0 0 12px;
            letter-spacing: .05em;
        }

        .dp-feature-title em {
            font-style: normal;
            color: var(--dp-primary-deep);
            margin-left: 6px;
        }

        .dp-feature-sub {
            font-size: 14.5px;
            color: var(--dp-muted);
            margin: 0;
        }

        .dp-feat-card {
            background: #fff;
            padding: 34px 36px 32px;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: .4s;
            border: 1px solid var(--dp-line);
        }

        .dp-feat-card::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--dp-primary);
            transition: .4s;
        }

        .dp-feat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 22px 46px -26px rgba(47, 74, 84, .3);
        }

        .dp-feat-card:hover::before {
            background: var(--dp-primary-deep);
            width: 6px;
        }

        .dp-feat-head {
            display: flex;
            align-items: center;
            gap: 18px;
            padding-bottom: 18px;
            margin-bottom: 18px;
            border-bottom: 1px dashed var(--dp-line);
        }

        .dp-feat-no {
            font-family: "Georgia", serif;
            font-size: 38px;
            font-weight: 800;
            color: var(--dp-primary);
            line-height: 1;
            letter-spacing: -.02em;
        }

        .dp-feat-ic {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--dp-soft);
            color: var(--dp-primary-deep);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            transition: .4s;
        }

        .dp-feat-ic svg {
            width: 30px;
            height: 30px;
        }

        .dp-feat-card:hover .dp-feat-ic {
            background: var(--dp-primary);
            color: #fff;
            transform: rotate(8deg);
        }

        .dp-feat-card h5 {
            font-size: 17px;
            font-weight: 700;
            color: var(--dp-dark);
            margin: 0 0 10px;
            letter-spacing: .02em;
        }

        .dp-feat-card p {
            font-size: 14px;
            color: #5a5a5a;
            line-height: 1.95;
            margin: 0;
        }

        /* ===== Feature V2 (療程特色 - 大編號堆疊卡片) ===== */
        .dp-feature-v2 {
            background: #fff;
            padding: 80px 0 60px;
            margin-bottom: 0;
        }

        .dp-feat2-list {}

        .dp-feat2-item {
            display: flex;
            align-items: stretch;
            position: relative;
            background: var(--dp-soft);
            overflow: hidden;
            margin-bottom: 20px;
            transition: .35s;
        }

        .dp-feat2-item:last-child {
            margin-bottom: 0;
        }

        .dp-feat2-item:hover {
            box-shadow: 0 14px 40px -20px rgba(47, 74, 84, .22);
            transform: translateY(-3px);
        }

        .dp-feat2-side {
            width: 110px;
            min-height: 100%;
            background: linear-gradient(135deg, var(--dp-primary) 0%, var(--dp-primary-deep) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }

        .dp-feat2-no {
            font-family: "Georgia", serif;
            font-size: 52px;
            font-weight: 800;
            color: rgba(255, 255, 255, .25);
            line-height: 1;
            letter-spacing: -.03em;
            position: relative;
            z-index: 1;
        }

        .dp-feat2-side::after {
            content: "";
            position: absolute;
            right: -1px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border: 10px solid transparent;
            border-right-color: var(--dp-soft);
            border-left: none;
        }

        .dp-feat2-body {
            flex: 1;
            padding: 28px 32px 28px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .dp-feat2-body::before {
            content: attr(data-no);
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            font-family: "Georgia", serif;
            font-size: 120px;
            font-weight: 800;
            color: var(--dp-soft-2);
            line-height: 1;
            pointer-events: none;
            opacity: .5;
        }

        .dp-feat2-body h5 {
            font-size: 17px;
            font-weight: 700;
            color: var(--dp-dark);
            margin: 0 0 8px;
            letter-spacing: .02em;
            position: relative;
            z-index: 1;
        }

        .dp-feat2-body h5::before {
            content: "";
            display: inline-block;
            width: 20px;
            height: 3px;
            background: var(--dp-primary-deep);
            margin-right: 10px;
            vertical-align: middle;
        }

        .dp-feat2-body p {
            font-size: 14px;
            color: #5a5a5a;
            line-height: 1.9;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 575px) {
            .dp-feat2-item {
                flex-direction: column;
            }

            .dp-feat2-side {
                width: 100%;
                min-height: auto;
                padding: 16px 0;
            }

            .dp-feat2-side::after {
                right: 50%;
                top: auto;
                bottom: -1px;
                transform: translateX(50%);
                border: 10px solid transparent;
                border-bottom-color: var(--dp-soft);
                border-top: none;
            }

            .dp-feat2-body::before {
                font-size: 80px;
                right: -4px;
            }
        }

        /* ===== Generic list (適應症) ===== */
        .dp-list-sec {
            background: #fff;
            padding: 80px 0;
            margin-bottom: 0;
        }

        .dp-ul {
            max-width: 760px;
            margin: 0 auto;
        }

        .dp-ul li {
            padding: 14px 0 14px 34px;
            border-bottom: 1px dashed var(--dp-line);
            position: relative;
            font-size: 15px;
            color: #4a4a4a;
        }

        .dp-ul li::before {
            content: "";
            position: absolute;
            left: 8px;
            top: 24px;
            width: 10px;
            height: 10px;
            background: var(--dp-primary);
            border-radius: 50%;
        }

        /* 適應症置中版 */
        .dp-ul-center {
            text-align: center;
            max-width: 900px;
            margin-left: auto !important;
            margin-right: auto !important;
        }

        .dp-ul-center>li {
            padding: 14px 10px !important;
            border-bottom: 1px dashed var(--dp-line);
            text-align: center;
        }

        .dp-ul-center>li::before {
            position: relative;
            left: auto;
            top: auto;
            display: inline-block;
            vertical-align: middle;
            width: 8px;
            height: 8px;
            margin-right: 10px;
        }

        /* ===== Target (適合對象 icon cards) ===== */
        .dp-target {
            background: var(--dp-soft);
            padding: 80px 0;
            margin-bottom: 0;
        }

        .dp-target-card {
            text-align: center;
            padding: 20px;
        }

        .dp-target-ic {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            background: #fff;
            border: 1.5px solid var(--dp-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            color: var(--dp-primary-deep);
        }

        .dp-target-card h5 {
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 6px;
        }

        .dp-target-card p {
            font-size: 13px;
            color: var(--dp-muted);
            line-height: 1.8;
        }

        /* ===== Target V2 (左右斜角區塊設計) ===== */
        .dp-target2 {
            background: #fff;
            padding: 90px 0;
            position: relative;
            overflow: hidden;
        }

        .dp-target2::before,
        .dp-target2::after {
            content: "";
            position: absolute;
            width: 200px;
            height: 200px;
            background: var(--dp-soft);
            transform: rotate(45deg);
            z-index: 0;
        }

        .dp-target2::before {
            top: -100px;
            left: -80px;
        }

        .dp-target2::after {
            bottom: -100px;
            right: -80px;
        }

        .dp-target2>.container {
            position: relative;
            z-index: 1;
        }

        .dp-target2-head {
            text-align: center;
            margin-bottom: 60px;
        }

        .dp-target2-en {
            display: block;
            font-size: 12px;
            letter-spacing: .45em;
            color: var(--dp-primary-deep);
            font-weight: 600;
            margin-bottom: 14px;
        }

        .dp-target2-head h3 {
            font-size: clamp(26px, 3vw, 34px);
            font-weight: 700;
            color: var(--dp-dark);
            margin: 0;
            letter-spacing: .06em;
        }

        .dp-target2-head h3 em {
            font-style: normal;
            color: var(--dp-primary-deep);
            position: relative;
        }

        .dp-target2-line {
            width: 60px;
            height: 2px;
            background: var(--dp-primary);
            margin: 18px auto 0;
            position: relative;
        }

        .dp-target2-line::before,
        .dp-target2-line::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--dp-primary);
            transform: translateY(-50%);
        }

        .dp-target2-line::before {
            left: -14px;
        }

        .dp-target2-line::after {
            right: -14px;
        }

        .dp-target2-grid {
            border: 2px solid var(--dp-soft);
            background: #fff;
        }

        .dp-target2-item {
            position: relative;
            padding: 56px 32px 44px;
            text-align: center;
            border-right: 2px solid var(--dp-soft);
            overflow: hidden;
            transition: .5s;
        }

        .dp-target2-item:last-child {
            border-right: none;
        }

        .dp-target2-item:hover {
            background: var(--dp-soft);
        }

        .dp-target2-no {
            position: absolute;
            top: 6px;
            right: 14px;
            font-family: "Georgia", serif;
            font-size: 92px;
            font-weight: 800;
            line-height: 1;
            color: var(--dp-soft-2);
            letter-spacing: -.04em;
            z-index: 0;
            transition: .5s;
        }

        .dp-target2-item:hover .dp-target2-no {
            color: #fff;
            transform: scale(1.1);
        }

        .dp-target2-ic {
            position: relative;
            z-index: 1;
            width: 96px;
            height: 96px;
            margin: 0 auto 26px;
            color: var(--dp-primary-deep);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .5s;
        }

        .dp-target2-ic svg {
            width: 100%;
            height: 100%;
        }

        .dp-target2-ic::after {
            content: "";
            position: absolute;
            inset: -10px;
            border: 1.5px dashed var(--dp-primary);
            border-radius: 50%;
            opacity: 0;
            transition: .5s;
        }

        .dp-target2-item:hover .dp-target2-ic::after {
            opacity: 1;
            animation: dp-rotate 12s linear infinite;
        }

        @keyframes dp-rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .dp-target2-item h5 {
            position: relative;
            z-index: 1;
            font-size: 19px;
            font-weight: 700;
            color: var(--dp-dark);
            margin: 0 0 14px;
            letter-spacing: .05em;
        }

        .dp-target2-item p {
            position: relative;
            z-index: 1;
            font-size: 13.5px;
            color: var(--dp-muted);
            line-height: 1.95;
            margin: 0 0 22px;
        }

        .dp-target2-tag {
            position: relative;
            z-index: 1;
            display: inline-block;
            font-size: 10px;
            letter-spacing: .25em;
            color: var(--dp-primary-deep);
            padding: 6px 16px;
            border: 1px solid var(--dp-primary);
            border-radius: 20px;
            font-weight: 600;
            transition: .4s;
        }

        .dp-target2-item:hover .dp-target2-tag {
            background: var(--dp-primary-deep);
            color: #fff;
            border-color: var(--dp-primary-deep);
        }

        @media (max-width: 767px) {
            .dp-target2-item {
                border-right: none;
                border-bottom: 2px solid var(--dp-soft);
            }

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

        /* ===== Probe cards (三探頭) ===== */
        .dp-probe {
            background: var(--dp-soft);
            padding: 80px 0;
            margin-bottom: 0;
        }

        .dp-probe-card {
            background: #fff;
            border: 1px solid var(--dp-line);
            box-shadow: 0 10px 30px -20px rgba(47, 74, 84, .25);
            overflow: hidden;
            height: 100%;
            transition: .4s;
        }

        .dp-probe-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px -20px rgba(47, 74, 84, .35);
        }

        .dp-probe-card .dp-probe-img {
            overflow: hidden;
            aspect-ratio: 4/3;
        }

        .dp-probe-card .dp-probe-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .6s;
        }

        .dp-probe-card:hover .dp-probe-img img {
            transform: scale(1.08);
        }

        .dp-probe-card .dp-probe-body {
            padding: 24px 26px 28px;
            text-align: center;
        }

        .dp-probe-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 10px;
            color: var(--dp-dark);
        }

        .dp-probe-card p {
            font-size: 14px;
            color: #5a5a5a;
            line-height: 1.85;
            margin-bottom: 4px;
        }

        /* ===== Process (流程) ===== */
        .dp-process {
            background: #fff;
            padding: 80px 0 70px;
            margin-bottom: 0;
        }

        .dp-process-sub {
            text-align: center;
            font-size: 13px;
            letter-spacing: .25em;
            color: var(--dp-primary-deep);
            font-weight: 600;
            margin: -20px 0 46px;
        }

        .dp-step-card {
            position: relative;
            background: #fff;
            border: 1px solid var(--dp-line);
            padding: 50px 20px 36px;
            text-align: center;
            height: 100%;
            transition: .4s;
        }

        .dp-step-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 46px -26px rgba(47, 74, 84, .3);
            border-color: var(--dp-primary);
        }

        .dp-step-num {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--dp-primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "Georgia", serif;
            font-size: 18px;
            font-weight: 700;
            font-style: italic;
            box-shadow: 0 8px 20px -8px rgba(107, 159, 177, .6);
            transition: .4s;
        }

        .dp-step-card:hover .dp-step-num {
            background: var(--dp-primary-deep);
            transform: translateX(-50%) scale(1.08);
        }

        .dp-step-ic {
            width: 88px;
            height: 88px;
            margin: 10px auto 22px;
            color: var(--dp-primary-deep);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .4s;
        }

        .dp-step-ic svg {
            width: 100%;
            height: 100%;
        }

        .dp-step-card:hover .dp-step-ic {
            color: var(--dp-primary);
            transform: scale(1.05);
        }

        .dp-step-card h5 {
            font-size: 17px;
            font-weight: 700;
            color: var(--dp-primary-deep);
            margin: 0;
            letter-spacing: .05em;
            position: relative;
            display: inline-block;
        }

        .dp-step-card h5::after {
            content: "";
            display: block;
            width: 30px;
            height: 2px;
            background: var(--dp-primary);
            margin: 8px auto 0;
        }

        /* ===== Time block (所需/維持) ===== */
        .dp-time-sec {
            background: #fff;
            padding: 80px 0;
            margin-bottom: 0;
        }

        .dp-time-box {
            border-left: 4px solid var(--dp-primary);
            padding: 20px 28px;
            background: var(--dp-soft);
            height: 100%;
        }

        .dp-time-box h4 {
            font-size: 20px;
            font-weight: 700;
            margin: 0 0 10px;
        }

        .dp-time-box p {
            font-size: 14.5px;
            color: #5a5a5a;
            line-height: 1.9;
            margin: 0;
        }

        /* ===== Warning (禁忌) ===== */
        .dp-warn-sec {
            background: var(--dp-soft);
            padding: 80px 0;
            margin-bottom: 0;
        }

        .dp-warn-box {
            background: #fff;
            padding: 30px 34px;
            border-top: 3px solid var(--dp-primary-deep);
        }

        .dp-warn-box h4 {
            font-size: 19px;
            font-weight: 700;
            color: var(--dp-dark);
            margin: 0 0 18px;
        }

        /* ===== Clinic cards ===== */
        .dp-clinic {
            background: #fff;
            padding: 70px 0 56px;
            margin-bottom: 0;
        }

        .dp-clinic-head {
            text-align: center;
            margin-bottom: 40px;
        }

        .dp-clinic-head .dp-clinic-en {
            display: block;
            font-size: 12px;
            letter-spacing: .35em;
            color: var(--dp-primary-deep);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .dp-clinic-head h4 {
            font-size: 26px;
            font-weight: 700;
            color: var(--dp-dark);
            margin: 0 0 10px;
            letter-spacing: .05em;
        }

        .dp-clinic-head p {
            font-size: 14px;
            color: var(--dp-muted);
            margin: 0;
        }

        .dp-clinic-card {
            display: block;
            position: relative;
            background: #fff;
            border: 1px solid var(--dp-line);
            padding: 34px 22px 28px;
            text-align: center;
            height: 100%;
            text-decoration: none !important;
            color: var(--dp-text);
            overflow: hidden;
            transition: .4s;
            cursor: pointer;
        }

        /* 編輯器將每段內容拆成多個 <a class="dp-clinic-card">，使用 display:contents 攤平 */
        .dp-clinic [class*="col-"] a.dp-clinic-card {
            display: contents;
        }

        /* 讓欄位本身成為卡片外觀 */
        .dp-clinic .row > [class*="col-"] {
            position: relative;
            background: #fff;
            border: 1px solid var(--dp-line);
            padding: 34px 22px 28px;
            text-align: center;
            color: var(--dp-text);
            overflow: hidden;
            transition: .4s;
            cursor: pointer;
            flex: 0 0 calc(25% - 16px);
            max-width: calc(25% - 16px);
            margin: 0 8px 16px;
        }

        @media (max-width: 991px) {
            .dp-clinic .row > [class*="col-"] {
                flex: 0 0 calc(50% - 16px);
                max-width: calc(50% - 16px);
            }
        }

        .dp-clinic .row > [class*="col-"]:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px -20px rgba(47, 74, 84, .25);
            border-color: var(--dp-primary);
        }

        .dp-clinic .row > [class*="col-"]::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 3px;
            background: var(--dp-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .5s ease;
        }

        .dp-clinic .row > [class*="col-"]:hover::before {
            transform: scaleX(1);
        }

        .dp-clinic-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px -20px rgba(47, 74, 84, .25);
            border-color: var(--dp-primary);
        }

        .dp-clinic-card .num {
            position: absolute;
            right: 16px;
            top: 12px;
            font-size: 42px;
            font-weight: 800;
            color: var(--dp-soft);
            line-height: 1;
            font-family: "Georgia", serif;
            letter-spacing: -.02em;
        }

        .dp-clinic .ic {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--dp-soft);
            color: var(--dp-primary-deep);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 6px auto 20px;
            transition: .4s;
            position: relative;
            box-shadow: 0 6px 18px -8px rgba(47, 74, 84, .25);
        }

        .dp-clinic .ic::after {
            content: "";
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 1px dashed var(--dp-primary);
            opacity: .35;
            transition: .4s;
        }

        .dp-clinic .row > [class*="col-"]:hover .ic {
            background: var(--dp-primary);
            color: #fff;
            transform: translateY(-2px);
        }

        .dp-clinic .row > [class*="col-"]:hover .ic::after {
            opacity: .8;
            transform: rotate(45deg);
        }

        .dp-clinic .ic svg {
            width: 28px;
            height: 28px;
            stroke-width: 1.6;
        }

        .dp-clinic-card h5 {
            font-size: 18px;
            font-weight: 700;
            margin: 0 0 8px;
            color: var(--dp-dark);
        }

        .dp-clinic-card .tel {
            display: block;
            font-size: 14px;
            color: var(--dp-muted);
            letter-spacing: .05em;
            margin-bottom: 16px;
        }

        .dp-clinic-card .more {
            display: inline-block;
            font-size: 12px;
            letter-spacing: .1em;
            color: var(--dp-primary-deep);
            padding-top: 10px;
            border-top: 1px solid var(--dp-line);
            width: 100%;
            font-weight: 600;
            transition: .3s;
        }

        .dp-clinic-card:hover .more {
            color: var(--dp-dark);
            letter-spacing: .15em;
        }

        /* ===== FAQ wrapper (使用原本 accordion 樣式) ===== */
        .dp-faq {
            background: #fff;
            padding: 80px 0;
        }

        .dp-faq .card {
            background: #fff !important;
            border: none !important;
            border-radius: 0 !important;
            margin-bottom: 10px !important;
        }

        .dp-faq .card-header {
            background: var(--dp-soft) !important;
            border: none !important;
            padding: 0 !important;
        }

        .dp-faq .card-header .btn-link {
            color: var(--dp-dark) !important;
            font-size: 16px !important;
            font-weight: 600 !important;
            text-decoration: none !important;
            width: 100% !important;
            text-align: left !important;
            white-space: normal !important;
            box-shadow: none !important;
        }

        .dp-faq .card-header .btn-link:hover,
        .dp-faq .card-header .btn-link:focus {
            color: var(--dp-primary-deep) !important;
            text-decoration: none !important;
        }

        .dp-faq .card-body {
            background: #fff !important;
            color: var(--dp-text) !important;
            padding: 22px 26px !important;
            font-size: 14.5px !important;
            line-height: 1.95 !important;
        }

        .dp-faq .card-body ul {
            padding-left: 20px;
            list-style: disc;
        }

        .dp-faq .card-body ul li {
            margin-bottom: 6px;
        }

        /* ===== Responsive ===== */
        @media (max-width: 991px) {
            .dp-hero {
                padding: 40px 0 50px;
            }

            .dp-hero-left {
                padding: 40px 20px 40px 60px;
            }

            .dp-hero-tag {
                top: 40px;
                font-size: 12px;
                padding: 12px 5px;
            }

            .dp-hero-title {
                font-size: 32px;
            }

            .dp-hero-img {
                aspect-ratio: 16/10;
                margin-top: 24px;
            }

            .dp-adv-item {
                border-right: none;
                border-bottom: 1px dashed var(--dp-line);
                padding-bottom: 24px;
                margin-bottom: 14px;
            }

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

            .dp-pbox .dp-pbox-stat {
                right: 8px;
                top: 8px;
            }
        }

        /* ===== FontAwesome icon 尺寸統一控制（取代原 SVG） ===== */
        .dp-clinic .ic .fa { font-size: 26px; line-height: 1; }
        .dp-adv-icon .fa { font-size: 32px; line-height: 1; }
        .dp-feat-ic .fa { font-size: 28px; line-height: 1; }
        .dp-target-ic .fa { font-size: 32px; line-height: 1; }
        .dp-target2-ic .fa { font-size: 38px; line-height: 1; }
        .dp-step-ic .fa { font-size: 30px; line-height: 1; }

        /* ===== 療程流程 01-04 圈圈放大（保留原 absolute 定位） ===== */
        .dp-process .dp-step-num {
            width: 64px;
            height: 64px;
            font-size: 22px;
            top: -28px;
        }
        .dp-process .dp-step-card { padding-top: 50px; }
        .dp-process .dp-step-card:hover .dp-step-num {
            transform: translateX(-50%) scale(1.08);
        }

