/* ===== Haohaoming 課介頁 ===== */
/* 1) 設計 token */
.hhm-page {
  --ink: #1f1a15; --ink-mid: #5e524a; --ink-soft: #948578; --ink-faint: #c8bdb0;
  --coral: #e26a4f; --coral-deep: #c44e35; --coral-soft: #ffeae1;
  --peach: #f8c9b0; --rose: #e9b8a8; --honey: #d4a056; --honey-soft: #f3e6c8;
  --bg: #ffffff; --bg-soft: #faf8f4; --bg-card: #fdf6ee; --bg-card2: #f5efe6;
  --line: #efe8dd; --line-strong: #e0d4c1; --hero-bg: #1a120c;
  --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-pill: 999px;
  --font-body: "Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
  --font-num: "Plus Jakarta Sans","Noto Sans TC",sans-serif;
  --shadow-card: 0 6px 24px -8px rgba(60,40,30,.18), 0 2px 8px rgba(60,40,30,.06);
  --shadow-pop: 0 12px 36px -10px rgba(60,40,30,.28), 0 4px 12px rgba(60,40,30,.10);

  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
}

/* 2) 範圍重置:中和 globel.css 的全域元素規則(僅限 .hhm-page 內) */
/* 範圍重置:只中和會干擾的繼承,且特異度不可高於元件 class(避免壓掉 .hhm-buy-btn 等) */
.hhm-page a { font-family: inherit; text-decoration: none; }
.hhm-page button { font-family: inherit; cursor: pointer; -webkit-appearance: none; appearance: none; }
.hhm-page img { display: block; max-width: 100%; }
/* 註:ul 的 list-style/margin/padding 由全站 globel.css(元素選擇器)歸零即可,
   這裡不再用 .hhm-page ul 重置,以免特異度壓過 .hhm-chapter-units / .hhm-plan-feat 的自訂間距 */
/* 注意:globel.css 有 `* { position: relative }`,故所有絕對定位元素都必須是
   其目標容器的「直接子層」;需要定位脈絡的容器一律顯式宣告 position: relative。 */

/* 3) 頁面版面(對應 HaohaomingProgramPage.tsx 的 Layout grid) */
.hhm-page { display: block; }
.hhm-main {
  max-width: 1180px; margin: 0 auto; padding: 56px 24px;
  display: grid; grid-template-columns: 1fr 360px;
  column-gap: 56px; row-gap: 64px;
  align-items: start;
}
.hhm-main-top { grid-column: 1; display: flex; flex-direction: column; gap: 40px; }
.hhm-side { grid-column: 2; position: sticky; top: 24px; }
.hhm-instructor-area { grid-column: 1; }

@media (max-width: 900px) {
  .hhm-main { grid-template-columns: 1fr; padding: 32px 20px; row-gap: 40px; }
  .hhm-main-top, .hhm-side, .hhm-instructor-area { grid-column: 1; }
  .hhm-side { position: static; top: auto; }
}

/* ===== Hero ===== (對譯 Hero.tsx / Countdown.tsx) */
.hhm-hero { position: relative; overflow: hidden; min-height: 640px; background: var(--hero-bg); color: #fff; }
.hhm-hero-media { position: absolute; inset: 0; z-index: 0; background: #1a120c url("/image/haohaoming/hero.png") center / cover no-repeat; }
.hhm-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(15,10,6,.72) 0%, rgba(15,10,6,.2) 60%, rgba(15,10,6,.4) 100%); }
.hhm-hero-inner { position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; padding: 56px 24px 64px; display: flex; align-items: flex-end; min-height: 640px; }
.hhm-hero-col { align-self: flex-end; max-width: 660px; }
.hhm-hero-instructor { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; font-size: 15px; font-weight: 500; color: rgba(255,255,255,.85); }
.hhm-hero-instructor::before { content: ""; width: 24px; height: 1px; background: rgba(255,255,255,.5); }
.hhm-hero-title { margin: 0 0 28px; font-size: 52px; font-weight: 700; line-height: 1.25; letter-spacing: -.5px; color: #fff; }
/* 倒數:外層膠囊(優惠倒數標籤 + 一排格子);格子內數字+單位同一行 */
.hhm-hero-countdown { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 28px; padding: 8px 8px 8px 18px; max-width: 100%; background: rgba(255,255,255,.1); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-radius: var(--r-pill); }
.hhm-cd-label { flex-shrink: 0; white-space: nowrap; font-size: 12px; font-weight: 500; letter-spacing: 1px; color: rgba(255,255,255,.7); }
.hhm-cd-row { display: inline-flex; align-items: center; gap: 4px; flex-wrap: nowrap; }
.hhm-cd-cell { display: inline-flex; align-items: baseline; justify-content: center; gap: 5px; padding: 7px 12px; white-space: nowrap; background: rgba(255,255,255,.15); border-radius: 12px; }
.hhm-cd-num { font-family: var(--font-num); font-feature-settings: "tnum"; font-size: 24px; font-weight: 700; line-height: 1; color: var(--coral); }
.hhm-cd-unit { font-size: 11px; font-weight: 500; letter-spacing: .5px; color: rgba(255,255,255,.7); }
.hhm-cd-short { display: none; }
.hhm-hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hhm-hero-strike { font-family: var(--font-num); font-size: 16px; font-weight: 500; color: rgba(255,255,255,.55); text-decoration: line-through; }
.hhm-strike-prefix { display: none; }
.hhm-hero-hint { margin: 18px 0 0; font-size: 13px; letter-spacing: .5px; color: rgba(255,255,255,.6); }
/* 購買主鈕(全頁共用) */
.hhm-buy-btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; height: 56px; padding: 0 32px; background: var(--coral); color: #fff; font-size: 16px; font-weight: 600; border-radius: var(--r-pill); box-shadow: 0 8px 24px -8px rgba(226,106,79,.6); transition: all .2s ease; }
.hhm-buy-btn:hover { background: var(--coral-deep); transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(226,106,79,.7); }
.hhm-buy-price { font-family: var(--font-num); font-size: 18px; font-weight: 700; }
@media (max-width: 900px) {
  .hhm-hero { min-height: calc(100vh - 4rem); }
  .hhm-hero-media { background-image: url("/image/haohaoming/hero-mobile.png"); }
  .hhm-hero-overlay { background: linear-gradient(180deg, rgba(15,10,6,.45), rgba(15,10,6,.65)); }
  .hhm-hero-inner { padding: 32px 20px 36px; min-height: calc(100vh - 4rem); }
  .hhm-hero-col { max-width: none; width: 100%; }
  .hhm-hero-instructor { font-size: 13px; margin-bottom: 12px; }
  .hhm-hero-instructor::before { width: 20px; }
  .hhm-hero-title { font-size: 30px; margin-bottom: 24px; }
  .hhm-hero-countdown { display: flex; width: 100%; gap: 6px; padding: 6px 10px; margin-bottom: 22px; }
  .hhm-cd-label { font-size: 11px; letter-spacing: 0; padding: 0 4px; }
  .hhm-cd-row { flex: 1; gap: 6px; }
  .hhm-cd-cell { flex: 1; }
  .hhm-cd-full { display: none; }
  .hhm-cd-short { display: inline; }
  .hhm-hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hhm-hero-cta .hhm-buy-btn { width: 100%; padding: 0 22px; font-size: 15px; letter-spacing: .5px; }
  .hhm-buy-price { font-size: 17px; }
  .hhm-hero-strike { font-size: 13px; text-align: center; }
  .hhm-strike-prefix { display: inline; }
  .hhm-hero-hint { display: none; }
}
@media (max-width: 480px) {
  .hhm-hero-title { font-size: 26px; }
  .hhm-cd-cell { gap: 4px; padding: 6px 7px; }
  .hhm-cd-num { font-size: 20px; }
}

/* ===== FundingProgress ===== (對譯 FundingProgress.tsx) */
.hhm-funding-card { background: var(--bg-card); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-card); }
.hhm-funding-top { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; }
.hhm-funding-pctrow { display: flex; align-items: baseline; gap: 8px; }
.hhm-funding-pct { font-family: var(--font-num); font-weight: 800; font-size: 20px; line-height: 1; letter-spacing: -.3px; color: var(--coral); }
.hhm-funding-pct sup { font-size: .7em; font-weight: 700; margin-left: 2px; }
.hhm-funding-label { font-size: 14px; font-weight: 500; color: var(--ink-mid); }
.hhm-funding-plan { font-size: 13px; font-weight: 500; color: var(--ink-mid); background: #fff; padding: 7px 14px; border-radius: var(--r-pill); }
.hhm-funding-bar { position: relative; height: 7px; background: #fff; overflow: hidden; border-radius: var(--r-pill); margin-bottom: 16px; }
.hhm-funding-fill { position: absolute; inset: 0; background: linear-gradient(90deg, var(--coral), var(--honey)); border-radius: var(--r-pill); }
.hhm-funding-countrow { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--ink-mid); }
.hhm-funding-cell { display: inline-flex; align-items: baseline; gap: 4px; background: #fff; padding: 6px 10px; border-radius: 10px; }
.hhm-funding-cdnum { font-family: var(--font-num); font-feature-settings: "tnum"; font-size: 16px; font-weight: 700; letter-spacing: -.5px; color: var(--coral); }
.hhm-funding-cdunit { font-size: 12px; color: var(--ink-soft); }
@media (max-width: 900px) {
  .hhm-funding-card { padding: 22px 20px; }
  .hhm-funding-top { display: block; margin-bottom: 0; }
  .hhm-funding-pctrow { gap: 7px; margin-bottom: 12px; }
  .hhm-funding-pct { font-size: 19px; }
  .hhm-funding-label { font-size: 13px; }
  .hhm-funding-plan { display: inline-block; font-size: 11px; padding: 6px 12px; margin-bottom: 14px; }
  .hhm-funding-bar { height: 6px; margin-bottom: 14px; }
  .hhm-funding-countrow { gap: 8px; font-size: 12px; }
  .hhm-funding-cell { gap: 3px; }
  .hhm-funding-cdnum { font-size: 15px; }
  .hhm-funding-cdunit { font-size: 11px; }
}

/* ===== InfoList ===== */
/* ticket(對譯 InfoList.tsx):整排格子,上半彩色數值、下半白底標籤,格間虛線穿孔 */
.hhm-ticket { display: flex; gap: 0; border: 1px solid var(--line-strong); border-radius: 14px; overflow: hidden; }
.hhm-ticket-cell { flex: 1; position: relative; display: flex; flex-direction: column; }
.hhm-ticket-cell + .hhm-ticket-cell::before { content: ""; position: absolute; left: 0; top: 10%; bottom: 10%; width: 1px; z-index: 1; background-image: repeating-linear-gradient(to bottom, var(--line-strong) 0, var(--line-strong) 5px, transparent 5px, transparent 9px); }
.hhm-ticket-top { flex: 1 1 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 18px 14px 12px; text-align: center; }
.hhm-ticket-value { font-family: var(--font-num); font-weight: 800; font-size: 24px; line-height: 1; margin-bottom: 4px; letter-spacing: -.5px; }
.hhm-ticket-sub { font-family: var(--font-num); font-size: 13px; font-weight: 700; letter-spacing: .5px; opacity: .8; }
.hhm-ticket-bottom { padding: 8px 14px; text-align: center; background: var(--bg); border-top: 1px dashed var(--line-strong); }
.hhm-ticket-label { font-size: 15px; font-weight: 700; letter-spacing: .3px; color: var(--ink-soft); }
@media (max-width: 900px) {
  .hhm-ticket { flex-wrap: wrap; border-radius: 12px; }
  .hhm-ticket-cell { flex: 1 1 45%; }
  .hhm-ticket-top { padding: 14px 10px 10px; }
  .hhm-ticket-value { font-size: 20px; margin-bottom: 3px; }
  .hhm-ticket-sub { font-size: 12px; letter-spacing: .3px; }
  .hhm-ticket-bottom { padding: 7px 10px; }
  .hhm-ticket-label { font-size: 12px; }
  .hhm-ticket-cell:nth-child(3), .hhm-ticket-cell:nth-child(4) { border-top: 1px dashed var(--line-strong); }
  .hhm-ticket-cell:nth-child(3)::before { display: none; }
}

/* ===== AboutProse ===== (對譯 AboutProse.tsx) */
.hhm-about-prose { position: relative; background: var(--bg-card); border-radius: var(--r-lg); padding: 36px 40px; font-size: 16px; line-height: 1.95; letter-spacing: .3px; color: var(--ink); }
.hhm-about-prose p { margin: 0; padding-left: 12px; padding-top: 12px; }
.hhm-about-quote { position: absolute; top: 18px; left: 22px; z-index: 1; font-family: var(--font-num); font-weight: 800; font-size: 88px; line-height: 1; color: var(--peach); opacity: .6; }
/* ===== FundingVideo ===== (原生 video,封面=首格畫面) */
.hhm-video-frame { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: var(--r-md); box-shadow: var(--shadow-card); background: var(--hero-bg); }
.hhm-video-el { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .hhm-about-prose { padding: 24px; font-size: 14px; }
  .hhm-about-prose p { padding-left: 6px; padding-top: 8px; }
  .hhm-about-quote { top: 8px; left: 16px; font-size: 56px; }
}

/* ===== Tabs ===== */
.hhm-sechead { margin-bottom: 28px; }
.hhm-sechead-en { display: block; font-family: var(--font-num); font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--coral); margin: 0 0 6px; }
.hhm-sechead-cn { font-size: 26px; font-weight: 700; letter-spacing: .5px; color: var(--ink); margin: 0; }
@media (max-width: 900px) { .hhm-sechead-cn { font-size: 20px; } }
.hhm-tablist { display: inline-flex; gap: 4px; padding: 4px; background: var(--bg-soft); border-radius: var(--r-pill); margin-bottom: 32px; max-width: 100%; }
.hhm-tab { padding: 12px 28px; font-size: 15px; font-weight: 500; color: var(--ink-soft); background: transparent; border-radius: var(--r-pill); white-space: nowrap; transition: all .2s; }
.hhm-tab:hover { color: var(--ink); }
.hhm-tab.is-active { background: var(--coral); color: #fff; font-weight: 600; }
.hhm-panel[hidden] { display: none; }
/* intro:圖列 + 試看影片 */
.hhm-intro { display: flex; flex-direction: column; gap: 48px; }
.hhm-intro-gallery img { display: block; width: 100%; margin: 0 0 18px; }
.hhm-intro-gallery img:last-child { margin-bottom: 0; }
/* accordion 共用開合(章節 / FAQ) */
.hhm-acc-item { background: var(--bg-soft); border-radius: var(--r-md); transition: all .2s; }
.hhm-acc-item:hover { background: var(--bg-card); }
.hhm-acc-item.is-open { background: var(--bg-card); box-shadow: var(--shadow-card); }
.hhm-acc-head { width: 100%; background: transparent; display: flex; align-items: center; cursor: pointer; text-align: left; }
.hhm-acc-body[hidden] { display: none; }
/* 章節(對譯 ChapterPanel.tsx) */
.hhm-chapter-list { display: flex; flex-direction: column; gap: 14px; }
.hhm-chapter-head { gap: 20px; padding: 22px 28px; }
.hhm-chapter-no { flex-shrink: 0; font-family: var(--font-num); font-weight: 700; font-size: 13px; letter-spacing: .5px; color: var(--coral); background: var(--coral-soft); padding: 4px 10px; border-radius: var(--r-pill); }
.hhm-chapter-title { flex: 1; font-size: 16px; font-weight: 600; letter-spacing: .3px; color: var(--ink); }
.hhm-chapter-count { font-family: var(--font-num); font-size: 13px; font-weight: 500; color: var(--ink-soft); }
.hhm-chapter-caret { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: #fff; color: var(--ink-mid); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; transition: all .2s; }
.hhm-acc-item.is-open .hhm-chapter-caret { background: var(--coral); color: #fff; transform: rotate(45deg); }
.hhm-chapter-units { list-style: none; margin: 0; padding: 0 28px 18px; }
.hhm-chapter-unit { display: flex; align-items: center; gap: 16px; margin: 4px 0; padding: 12px 16px; border-radius: 12px; background: #fff; }
.hhm-unit-id { flex-shrink: 0; min-width: 32px; font-family: var(--font-num); font-weight: 600; font-size: 13px; letter-spacing: .5px; color: var(--ink-soft); }
.hhm-unit-title { flex: 1; font-size: 14px; color: var(--ink-mid); }
/* FAQ(對譯 FaqPanel.tsx) */
.hhm-faq-list { display: flex; flex-direction: column; gap: 12px; }
.hhm-faq-q { gap: 18px; padding: 22px 28px; color: var(--ink); }
.hhm-faq-mark { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--coral); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-num); font-weight: 700; font-size: 13px; }
.hhm-faq-text { flex: 1; font-size: 16px; font-weight: 600; letter-spacing: .3px; color: var(--ink); }
.hhm-faq-caret { flex-shrink: 0; font-size: 16px; color: var(--ink-soft); transition: transform .2s; }
.hhm-acc-item.is-open .hhm-faq-caret { color: var(--coral); transform: rotate(45deg); }
.hhm-faq-answer { padding: 0 28px 24px 76px; font-size: 15px; line-height: 1.85; letter-spacing: .3px; color: var(--ink-mid); }
.hhm-faq-answer a { color: var(--coral); font-weight: 600; text-decoration: underline; }
@media (max-width: 900px) {
  .hhm-tablist { margin-bottom: 20px; overflow-x: auto; }
  .hhm-tab { padding: 10px 22px; font-size: 13px; flex-shrink: 0; }
  .hhm-intro { gap: 36px; }
  .hhm-intro-gallery img { margin: 0 0 14px; }
  .hhm-chapter-list { gap: 10px; }
  .hhm-chapter-head { gap: 12px; padding: 16px 18px; }
  .hhm-chapter-no { font-size: 11px; }
  .hhm-chapter-title { font-size: 14px; }
  .hhm-chapter-count { display: none; }
  .hhm-chapter-caret { width: 28px; height: 28px; font-size: 12px; }
  .hhm-chapter-units { padding: 0 18px 14px; }
  .hhm-chapter-unit { gap: 10px; padding: 10px 12px; }
  .hhm-unit-id { font-size: 11px; min-width: 24px; }
  .hhm-unit-title { font-size: 13px; }
  .hhm-faq-q { padding: 16px 18px; gap: 12px; }
  .hhm-faq-mark { width: 24px; height: 24px; font-size: 11px; }
  .hhm-faq-text { font-size: 14px; }
  .hhm-faq-caret { font-size: 14px; }
  .hhm-faq-answer { padding: 0 18px 16px 54px; font-size: 13px; line-height: 1.8; }
}

/* ===== InstructorCard ===== */
.hhm-instructor-card { display: grid; grid-template-columns: 160px 1fr; gap: 36px; align-items: start; background: var(--bg-card); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow-card); }
.hhm-instructor-avatar { width: 160px; height: 160px; border-radius: 50%; overflow: hidden; background: var(--coral); flex-shrink: 0; box-shadow: 0 8px 24px -8px rgba(226,106,79,.4); }
.hhm-instructor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hhm-instructor-role { font-family: var(--font-num); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--coral); margin: 0 0 6px; }
.hhm-instructor-name { font-size: 28px; font-weight: 700; letter-spacing: .5px; color: var(--ink); margin: 0 0 8px; }
.hhm-instructor-tagline { font-size: 14px; color: var(--ink-soft); margin: 0 0 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.hhm-instructor-bio { display: flex; flex-direction: column; gap: 22px; text-align: left; }
.hhm-bio-block--divider { border-top: 1px solid var(--line); padding-top: 22px; }
.hhm-bio-lead { position: relative; margin: 0 0 6px; padding-left: 22px; font-size: 15px; font-weight: 700; letter-spacing: .3px; color: var(--ink); }
.hhm-bio-lead::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.hhm-bio-line { margin: 0; font-size: 15px; line-height: 1.85; color: var(--ink-mid); }
.hhm-bio-line--indent { padding-left: 22px; }
.hhm-bio-line + .hhm-bio-line { margin-top: 2px; }
@media (max-width: 900px) {
  .hhm-instructor-card { display: block; padding: 28px 20px; text-align: center; }
  .hhm-instructor-avatar { width: 110px; height: 110px; margin: 0 auto 16px; }
  .hhm-instructor-name { font-size: 24px; margin: 0 0 6px; }
  .hhm-instructor-tagline { font-size: 13px; margin: 0 0 16px; padding-bottom: 16px; }
  .hhm-instructor-bio { gap: 18px; }
  .hhm-bio-lead { font-size: 14px; }
  .hhm-bio-line { font-size: 13px; }
  .hhm-bio-block--divider { padding-top: 18px; }
}

/* ===== PlanCard ===== */
.hhm-plan-mobilehead { display: none; }
.hhm-plan { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-pop); }
.hhm-plan-header { padding: 20px 24px 0; display: flex; justify-content: space-between; align-items: center; }
.hhm-plan-no { font-family: var(--font-num); font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--ink-soft); }
.hhm-plan-no strong { margin-left: 4px; font-weight: 700; color: var(--coral); }
.hhm-plan-cover { margin: 20px 24px 0; aspect-ratio: 16/9; border-radius: var(--r-md); background-color: var(--hero-bg); background-size: cover; background-position: center; background-repeat: no-repeat; }
.hhm-plan-title { margin: 22px 24px 0; font-size: 17px; font-weight: 600; line-height: 1.6; letter-spacing: .3px; color: var(--ink); }
.hhm-plan-badge { margin: 14px 24px 0; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .3px; color: var(--coral); background: var(--coral-soft); padding: 6px 12px; border-radius: var(--r-pill); }
.hhm-plan-badge::before { content: "🔥"; font-size: 12px; }
.hhm-plan-price { margin: 14px 24px 0; padding-bottom: 22px; display: flex; align-items: baseline; gap: 14px; border-bottom: 1px solid var(--line); }
.hhm-plan-original { font-family: var(--font-num); font-size: 16px; font-weight: 500; color: var(--ink-soft); text-decoration: line-through; }
.hhm-plan-now { font-family: var(--font-num); font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -1.5px; color: var(--coral); }
.hhm-plan-now small { font-size: 16px; font-weight: 700; margin-right: 4px; vertical-align: top; position: relative; top: 6px; }
.hhm-plan-saving { margin-left: auto; text-align: right; font-size: 11px; font-weight: 600; letter-spacing: .5px; line-height: 1.5; color: var(--coral); }
.hhm-plan-saving strong { display: block; font-family: var(--font-num); font-weight: 700; font-size: 16px; margin-top: 2px; }
.hhm-plan-feat { margin: 20px 24px 0; list-style: none; padding: 0; }
.hhm-plan-feat li { position: relative; font-size: 14px; line-height: 1.6; color: var(--ink-mid); padding: 6px 0 6px 26px; }
.hhm-plan-feat li::before { content: "✓"; position: absolute; left: 0; top: 7px; width: 18px; height: 18px; background: var(--coral-soft); color: var(--coral); border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.hhm-plan-actions { margin: 22px 24px 0; display: flex; flex-direction: column; gap: 10px; }
.hhm-plan-buy { display: flex; align-items: center; justify-content: center; height: 54px; background: var(--coral); color: #fff; border-radius: var(--r-pill); font-size: 16px; font-weight: 600; letter-spacing: 1px; cursor: pointer; box-shadow: 0 8px 20px -6px rgba(226,106,79,.5); transition: all .2s; }
.hhm-plan-buy:hover { background: var(--coral-deep); transform: translateY(-1px); box-shadow: 0 12px 24px -6px rgba(226,106,79,.6); }
.hhm-plan-foot { margin-top: 22px; padding: 18px 24px; background: var(--bg-soft); text-align: center; font-size: 12px; letter-spacing: .5px; color: var(--ink-soft); }
.hhm-plan-foot strong { display: block; font-family: var(--font-num); font-weight: 700; font-size: 18px; color: var(--ink); margin-top: 4px; letter-spacing: 0; }
@media (max-width: 900px) {
  .hhm-plan-mobilehead { display: block; }
  .hhm-plan { box-shadow: var(--shadow-card); }
  .hhm-plan-header { padding: 18px 20px 0; }
  .hhm-plan-no { font-size: 11px; }
  .hhm-plan-cover { margin: 16px 20px 0; }
  .hhm-plan-title { margin: 18px 20px 0; font-size: 15px; }
  .hhm-plan-badge { margin: 12px 20px 0; gap: 6px; font-size: 11px; padding: 5px 11px; }
  .hhm-plan-price { margin: 12px 20px 0; padding-bottom: 18px; gap: 12px; }
  .hhm-plan-original { font-size: 14px; }
  .hhm-plan-now { font-size: 38px; }
  .hhm-plan-now small { font-size: 14px; margin-right: 3px; top: 5px; }
  .hhm-plan-saving { font-size: 10px; }
  .hhm-plan-saving strong { font-size: 14px; }
  .hhm-plan-feat { margin: 16px 20px 0; }
  .hhm-plan-feat li { font-size: 13px; padding: 5px 0 5px 24px; }
  .hhm-plan-feat li::before { top: 6px; width: 17px; height: 17px; font-size: 10px; }
  .hhm-plan-actions { margin: 18px 20px 0; gap: 9px; }
  .hhm-plan-buy { height: 50px; font-size: 15px; }
  .hhm-plan-foot { margin-top: 18px; padding: 14px 20px; font-size: 11px; }
  .hhm-plan-foot strong { font-size: 16px; }
}
/* 手機置底條:預設隱藏,JS 加 is-visible 才升起 */
/* ===== StickyPlanButton(對譯 StickyPlanButton.tsx,手機置底) ===== */
.hhm-sticky { display: none; }
.hhm-sticky-row { display: flex; align-items: center; gap: 10px; }
.hhm-sticky-now { font-family: var(--font-num); font-size: 22px; font-weight: 800; line-height: 1; letter-spacing: -.5px; color: var(--coral); }
.hhm-sticky-old { font-family: var(--font-num); font-size: 11px; color: var(--ink-soft); text-decoration: line-through; margin-top: 2px; }
.hhm-sticky-btn { flex: 1; display: flex; align-items: center; justify-content: center; height: 48px; background: var(--coral); color: #fff; border-radius: var(--r-pill); font-size: 14px; font-weight: 600; letter-spacing: .5px; cursor: pointer; box-shadow: 0 8px 20px -6px rgba(226,106,79,.5); }
@media (max-width: 900px) {
  .hhm-sticky { display: block; position: fixed; bottom: 0; left: 50%; transform: translateX(-50%) translateY(120%); transition: transform .28s ease; width: 100%; max-width: 430px; background: #fff; border-top: 1px solid var(--line); padding: 10px 16px; z-index: 100; box-shadow: 0 -4px 16px -4px rgba(0,0,0,.1); }
  .hhm-sticky.is-visible { transform: translateX(-50%) translateY(0); }
}

.hhm-success { max-width: 560px; margin: 0 auto; padding: 80px 24px; text-align: center; }
.hhm-success-title { font-size: 30px; font-weight: 700; color: var(--ink); }
.hhm-success-text { margin: 16px 0 32px; font-size: 15px; color: var(--ink-mid); }
.hhm-success-btn { display: inline-flex; }
