/* ============================================================
   CounterMate 小掌櫃 官網共用樣式（五頁共用）
   依據 brand/DESIGN.md v1：色票方向 B「信任」、深淺跳段、系統黑體
   規則速記：
   - 深色區塊（hero、重點區、最終 CTA）＝藏青漸層底＋白字，加 class="dark"
   - 其餘區塊＝淨白底；連續兩個同色區塊＝錯
   - LINE 綠只用在「加 LINE」實際按鈕（.btn-line）
   ============================================================ */

/* ---------- 設計 token ---------- */
:root {
  --navy: #16395C;        /* 主色／深底 */
  --navy-deep: #0F2740;   /* 深底加深 */
  --blue: #2C5C8A;        /* 次色 */
  --orange: #E8833A;      /* 行動色（小面積） */
  --paper: #F6F9FC;       /* 淨白底 */
  --white: #FFFFFF;
  --ink: #2A3138;         /* 淺底內文 */
  --line-green: #06C755;  /* 只給加 LINE 按鈕 */
  --card-border: #E2E9F0;
  --dark-grad: linear-gradient(175deg, var(--navy) 0%, var(--navy-deep) 100%);
}

/* ---------- 基礎 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
section { padding: 68px 0; }
@media (max-width: 640px) { section { padding: 52px 0; } }

h1 { font-size: 42px; font-weight: 900; line-height: 1.3; color: var(--navy); }
h2 { font-size: 28px; font-weight: 800; line-height: 1.4; color: var(--navy); }
h3 { font-size: 19px; font-weight: 800; color: var(--navy); }
@media (max-width: 640px) {
  h1 { font-size: 34px; }
  h2 { font-size: 24px; }
}
.kicker { font-size: 14px; letter-spacing: 3px; color: var(--orange); font-weight: 800; margin-bottom: 8px; }
.sec-head { max-width: 640px; margin-bottom: 34px; }
.sec-head p { color: #5b6773; margin-top: 10px; }

/* ---------- 深色區塊（藏青） ---------- */
.dark { background: var(--dark-grad); }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark .sec-head p, .dark p { color: #c3d2e2; }

/* ---------- 按鈕 ---------- */
.btn-p {
  display: inline-block; background: var(--orange); color: #fff; text-decoration: none;
  font-weight: 800; font-size: 17px; padding: 15px 26px; border-radius: 13px;
}
.dark .btn-p { box-shadow: 0 6px 18px rgba(232, 131, 58, .35); }
.btn-g {
  display: inline-block; background: transparent; color: #dbe6f1; text-decoration: none;
  font-weight: 700; font-size: 17px; padding: 15px 26px; border-radius: 13px;
  border: 1.5px solid #3c5f85;
}
.btn-s {
  display: inline-block; background: #e8eff6; color: var(--navy); text-decoration: none;
  font-weight: 700; font-size: 16px; padding: 13px 22px; border-radius: 13px;
}
.btn-line {
  display: inline-block; background: var(--line-green); color: #fff; text-decoration: none;
  font-size: 18px; font-weight: 800; padding: 16px 32px; border-radius: 14px;
  box-shadow: 0 6px 20px rgba(6, 199, 85, .3);
}

/* ---------- 卡片 ---------- */
.card {
  background: #fff; border: 1px solid var(--card-border); border-radius: 16px;
  padding: 26px 24px; box-shadow: 0 2px 8px rgba(22, 57, 92, .04);
}
/* 深底上的白卡：字色回到淺底規則（其他頁的卡片也適用） */
.dark .card h3, .dark .path-card h3, .dark .list-card h3 { color: var(--navy); }
.dark .card p, .dark .path-card p, .dark .list-card p { color: #4c5863; }

/* ============================================================
   導覽列（五頁共用；HTML 結構直接拷貝）
   ============================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e6ecf2;
}
.nav-in { display: flex; align-items: center; gap: 24px; height: 62px; }
.logo { display: flex; align-items: center; gap: 9px; text-decoration: none; white-space: nowrap; }
.logo img { width: 34px; height: 34px; border-radius: 50%; }
.logo .logo-text { font-size: 18px; font-weight: 800; color: var(--navy); }
.logo .logo-text span { color: var(--orange); }
.logo .logo-text small { font-weight: 700; color: var(--navy); margin-left: 6px; letter-spacing: 2px; font-size: 14px; }
.nav-links { display: flex; gap: 20px; margin-left: auto; align-items: center; }
.nav-links a { color: #46525e; text-decoration: none; font-size: 15px; font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active { border-bottom: 2px solid var(--orange); padding-bottom: 2px; }
.nav-line-btn {
  background: var(--line-green); color: #fff; text-decoration: none;
  font-weight: 800; font-size: 15px; padding: 9px 18px; border-radius: 10px; white-space: nowrap;
}
.nav-toggle {
  display: none; margin-left: auto; background: none; border: none; cursor: pointer;
  padding: 8px; line-height: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 2.5px; background: var(--navy); border-radius: 2px; margin: 5px 0;
}
@media (max-width: 820px) {
  .nav-in { gap: 10px; }
  .nav-toggle { display: block; margin-left: auto; }
  .logo img { width: 30px; height: 30px; }
  .logo .logo-text { font-size: 16px; }
  .logo .logo-text small { font-size: 13px; margin-left: 4px; letter-spacing: 1px; }
  .nav-line-btn { margin-left: 0; font-size: 14px; padding: 8px 13px; }
  .nav-links {
    display: none; position: absolute; top: 62px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid #e6ecf2;
    flex-direction: column; align-items: stretch; gap: 0; padding: 6px 0 10px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; font-size: 16px; }
  .nav-links a.active { border-bottom: none; border-left: 3px solid var(--orange); }
}

/* ============================================================
   頁尾（五頁共用；HTML 結構直接拷貝）
   ============================================================ */
.site-footer {
  background: var(--navy-deep); color: #8ba3bd; text-align: center;
  font-size: 13.5px; padding: 30px 0 34px; border-top: 1px solid #1d3550;
}
.site-footer b { color: #dbe6f1; }
.site-footer span { color: var(--orange); }
.site-footer a { color: #b9c8d8; text-decoration: none; }
.site-footer .foot-line { margin-top: 8px; }
.site-footer .foot-copy { margin-top: 8px; font-size: 12.5px; color: #6b8299; }

/* ============================================================
   首頁專用
   ============================================================ */

/* Hero */
.hero { background: var(--dark-grad); padding: 72px 0 80px; }
.hero-in { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; }
.hero .brandline { color: #9fb4ca; font-weight: 800; letter-spacing: 2px; font-size: 15px; margin-bottom: 12px; }
.hero .brandline b { color: #fff; }
.hero .brandline span { color: var(--orange); }
.hero h1 { color: #fff; }
.hero .sub { color: #c3d2e2; font-size: 18px; margin-top: 16px; max-width: 470px; }
.hero .hook { color: #9fb4ca; font-size: 16px; margin-top: 14px; max-width: 470px; }
.hero .btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero .note { color: #8ba3bd; font-size: 14px; margin-top: 14px; }
.hero-mascot { display: flex; justify-content: center; }
.hero-mascot img { width: 300px; max-width: 78%; filter: drop-shadow(0 18px 36px rgba(0, 0, 0, .35)); }
@media (max-width: 860px) {
  .hero { padding: 56px 0 64px; }
  .hero-in { grid-template-columns: 1fr; gap: 30px; }
  .hero-mascot { order: -1; }
  .hero-mascot img { width: 210px; }
}

/* 我們是誰 */
.story { max-width: 680px; }
.story p { color: #4c5863; font-size: 16.5px; margin-top: 14px; }
.story p b { color: var(--navy); }

/* 兩條路分流卡（深底上白卡） */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 820px) { .paths { grid-template-columns: 1fr; } }
.path-card {
  background: #fff; border-radius: 18px; padding: 30px 26px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.path-card .path-tag { font-size: 13px; font-weight: 800; letter-spacing: 1px; color: var(--orange); }
.path-card h3 { font-size: 22px; margin: 6px 0 4px; color: var(--navy); }
.path-card .path-price { color: #5b6773; font-size: 15px; margin-bottom: 10px; }
.path-card .path-price b { font-size: 30px; font-weight: 900; color: var(--navy); }
.path-card p { color: #4c5863; font-size: 15.5px; margin-bottom: 18px; }
.path-card .btn-p, .path-card .btn-s { margin-top: auto; }
.paths-bridge { text-align: center; color: #b9c8d8; font-size: 15px; margin-top: 20px; }

/* 誠實區塊（淺底雙欄） */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }
.list-card { background: #fff; border: 1px solid var(--card-border); border-radius: 16px; padding: 24px; }
.list-card h3 { font-size: 18px; margin-bottom: 10px; }
.list-card ul { list-style: none; }
.list-card li { padding: 8px 0 8px 28px; position: relative; font-size: 15.5px; border-top: 1px dashed #eef2f6; color: #4c5863; }
.list-card.do li::before { content: "✓"; position: absolute; left: 4px; color: var(--orange); font-weight: 800; }
.list-card.dont { background: var(--paper); }
.list-card.dont li::before { content: "・"; position: absolute; left: 8px; color: var(--navy); font-weight: 800; }
.honest-note { font-size: 14px; color: #8a95a0; margin-top: 16px; }

/* ============================================================
   聯絡頁專用（contact.html）
   ============================================================ */
.paper { background: var(--paper); }

/* 開場 */
.contact-hero { background: var(--dark-grad); padding: 72px 0 76px; text-align: center; }
.contact-hero h1 { color: #fff; }
.contact-hero .sub { color: #c3d2e2; font-size: 17px; margin: 16px auto 28px; max-width: 560px; }
.contact-hero .kicker { margin-bottom: 12px; }
.contact-hero .line-id { color: #9fb4ca; font-size: 15px; margin-top: 16px; }
.contact-hero .line-id b { color: #fff; letter-spacing: 1px; }
@media (max-width: 640px) { .contact-hero { padding: 56px 0 60px; } }

/* QR 區 */
.qr-wrap { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.qr-wrap .sec-head { margin-bottom: 0; }
.qr-card {
  background: #fff; border: 1px solid var(--card-border); border-radius: 18px;
  padding: 26px 28px 20px; text-align: center; box-shadow: 0 2px 10px rgba(22, 57, 92, .06);
}
.qr-img { width: 220px; height: 220px; margin: 0 auto; }
.qr-note { font-size: 14px; color: #5b6773; margin-top: 12px; }
.qr-note b { color: var(--navy); }
@media (max-width: 820px) {
  .qr-wrap { grid-template-columns: 1fr; gap: 26px; }
  .qr-card { justify-self: center; }
  .qr-img { width: 200px; height: 200px; }
}

/* 問什麼都可以 */
.ask-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
@media (max-width: 820px) { .ask-grid { grid-template-columns: 1fr; } }
.ask-card h3 { margin-bottom: 8px; }
.ask-card p { color: #4c5863; font-size: 15.5px; margin-bottom: 14px; }
.ask-card a { color: var(--orange); font-weight: 800; text-decoration: none; font-size: 15px; }

/* 精選 FAQ */
.faq details { background: #fff; border: 1px solid var(--card-border); border-radius: 13px; padding: 0 20px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 800; color: var(--navy); font-size: 16.5px; padding: 16px 0; list-style: none; position: relative; padding-right: 30px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "＋"; position: absolute; right: 2px; color: var(--orange); font-weight: 800; }
.faq details[open] summary::after { content: "－"; }
.faq .a { padding: 0 0 16px; color: #4c5863; font-size: 15.5px; }
.faq-more { font-size: 15px; color: #5b6773; margin-top: 18px; }
.faq-more a { color: var(--navy); font-weight: 700; }

/* 最終 CTA（深） */
.final { text-align: center; }
.final h2 { font-size: 30px; }
.final p { margin: 12px auto 26px; max-width: 560px; }
.final .note { color: #8ba3bd; font-size: 14px; margin-top: 14px; }
.final .final-mascot { width: 96px; margin: 0 auto 18px; border-radius: 50%; }

/* ============================================================
   訂閱方案頁（subscribe.html）專用（2026-08-09 新增）
   既有 class 優先；以下為該頁缺少的樣式
   ============================================================ */

/* 頁首（深底，頁內標題等級，不搶首頁的品牌大宣言） */
.page-hero { background: var(--dark-grad); padding: 58px 0 64px; }
.page-hero h1 { color: #fff; font-size: 34px; }
@media (max-width: 640px) { .page-hero { padding: 46px 0 50px; } .page-hero h1 { font-size: 28px; } }
.page-hero .lead, .page-hero .sub { color: #c3d2e2; font-size: 17px; margin-top: 14px; max-width: 560px; }
.page-hero .btns { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.page-hero .note { color: #8ba3bd; font-size: 14px; margin-top: 14px; }
.loop { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.loop b { background: #1e3a55; color: #dbe6f1; font-size: 14px; font-weight: 700; padding: 7px 13px; border-radius: 999px; }
.loop b i { font-style: normal; color: var(--orange); margin-right: 4px; }

/* 行銷部四崗位（淺底） */
.roles { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 760px) { .roles { grid-template-columns: 1fr; } }
.role { background: #fff; border: 1px solid var(--card-border); border-radius: 16px; padding: 26px 24px; }
.role.big { border-top: 4px solid var(--orange); }
.role .icon { font-size: 28px; }
.role h3 { font-size: 19px; margin: 8px 0 2px; }
.role .job { font-size: 13px; color: var(--orange); font-weight: 800; letter-spacing: 1px; }
.role p { font-size: 15.5px; color: #4c5863; margin-top: 8px; }
.role ul { list-style: none; margin-top: 10px; }
.role li { font-size: 15px; color: #4c5863; padding: 5px 0 5px 24px; position: relative; }
.role li::before { content: "✓"; position: absolute; left: 2px; color: var(--orange); font-weight: 800; }
.human-strip {
  margin-top: 18px; background: var(--paper); border: 1px solid var(--card-border); border-radius: 14px;
  padding: 16px 22px; font-size: 16px; color: var(--navy); font-weight: 700; text-align: center;
}

/* 你睡醒後看到的（深底白卡） */
.morning { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.m-card { background: #fff; border-radius: 16px; padding: 20px; }
.m-card .m-tag { font-size: 12.5px; font-weight: 800; color: var(--orange); letter-spacing: 1px; }
.m-card h3 { font-size: 17px; color: var(--navy); margin: 4px 0 12px; }
.m-card .m-lead { font-size: 14px; color: #4c5863; margin-bottom: 8px; }
.m-card .m-note { font-size: 12.5px; color: #93a1ad; margin-top: 10px; }
.booking { border: 1px solid #e6ecf2; border-radius: 12px; padding: 11px 13px; font-size: 14px; color: #4c5863; }
.booking + .booking { margin-top: 8px; }
.booking b { color: var(--navy); }
.booking .meta { color: #6b7883; font-size: 12.5px; }
.post-item { display: flex; gap: 9px; align-items: baseline; padding: 8px 0; border-bottom: 1px dashed #e6ecf2; font-size: 14px; color: #4c5863; }
.post-item .d { color: var(--orange); font-weight: 800; font-size: 12.5px; white-space: nowrap; }
.post-item .ok { margin-left: auto; font-size: 11.5px; color: #1d7a3e; font-weight: 700; white-space: nowrap; }
.stat-row { display: flex; justify-content: space-between; padding: 8px 2px; border-bottom: 1px dashed #e6ecf2; font-size: 14px; color: #4c5863; }
.stat-row b { color: var(--navy); }
.tagchip {
  display: inline-block; background: var(--paper); border: 1px solid #dbe5ee; color: var(--navy);
  border-radius: 999px; padding: 3px 11px; font-size: 12.5px; font-weight: 700; margin: 3px 3px 0 0;
}

/* AI 接單比較（淺底；表格在手機於自身容器內橫向捲動） */
.ai-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: start; }
@media (max-width: 860px) { .ai-grid { grid-template-columns: 1fr; } }
.ai-copy p { color: #4c5863; margin-bottom: 12px; font-size: 16.5px; }
.honest-line {
  background: var(--paper); border-left: 4px solid var(--orange); border-radius: 8px;
  padding: 12px 16px; font-size: 15.5px; color: var(--navy); font-weight: 600;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp {
  width: 100%; min-width: 620px; border-collapse: separate; border-spacing: 0;
  background: #fff; border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; font-size: 15px;
}
.cmp th, .cmp td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid #edf1f5; }
.cmp thead th { background: var(--paper); font-size: 14px; color: #5b6773; }
.cmp thead th.us-col { background: var(--navy); color: #fff; }
.cmp td.us-col { background: #f4f8fc; color: var(--navy); font-weight: 600; }
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp .dim { color: #8a95a0; }

/* 方案（深底）：種子橫幅＋三級卡＋導流卡 */
.seed-banner {
  background: var(--orange); border-radius: 16px; padding: 20px 26px; margin-bottom: 26px;
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.seed-banner .sb-badge { background: #fff; color: var(--orange); font-weight: 900; font-size: 14px; padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
.seed-banner p { color: #fff; font-size: 16.5px; font-weight: 700; flex: 1; min-width: 240px; }
.seed-banner p small { display: block; font-weight: 600; font-size: 13.5px; opacity: .9; }
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; align-items: stretch; }
.tier { background: #fff; border-radius: 18px; padding: 26px 24px; display: flex; flex-direction: column; }
.tier.hot { outline: 3px solid var(--orange); position: relative; }
.tier .hot-badge { position: absolute; top: -14px; left: 22px; background: var(--orange); color: #fff; font-size: 13px; font-weight: 800; padding: 4px 14px; border-radius: 999px; }
.tier h3 { font-size: 19px; color: var(--navy); }
.tier .for { font-size: 13.5px; color: #6b7883; margin-top: 2px; }
.tier .t-price { margin: 14px 0 4px; color: #5b6773; font-size: 14.5px; }
.tier .t-price .num { font-size: 36px; font-weight: 900; color: var(--navy); }
.tier ul { list-style: none; margin-top: 10px; }
.tier li { padding: 8px 0 8px 28px; position: relative; font-size: 15px; color: #4c5863; border-top: 1px dashed #e6ecf2; }
.tier li::before { content: "✓"; position: absolute; left: 2px; color: var(--orange); font-weight: 800; }
.tier li.plus::before { content: "＋"; color: var(--navy); }
.tier .t-note { font-size: 12.5px; color: #8a95a0; margin-top: auto; padding-top: 12px; }
.custom-line { text-align: center; color: #b9c8d8; font-size: 15px; margin-top: 22px; }
.bridge-card {
  margin-top: 26px; background: #fff; border-radius: 16px; padding: 24px 26px;
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.bridge-card .bc-text { flex: 1; min-width: 260px; }
.bridge-card h3 { font-size: 18px; color: var(--navy); }
.bridge-card p { color: #4c5863; font-size: 15.5px; margin-top: 4px; }

/* 帳號安全＋誠實（沿用 .two-col／.list-card，補兩個變體） */
.list-card.safe li::before { content: "🔐"; position: absolute; left: 0; font-size: 15px; }
.list-card.honest { background: var(--paper); }
.list-card.honest li::before { content: "・"; position: absolute; left: 8px; color: var(--navy); font-weight: 800; }

/* 常見問題：沿用聯絡頁的 .faq 樣式；底色在 HTML 用 class="faq paper" 套用 */

/* 怎麼開始三步＋最終 CTA（深底） */
.start-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; counter-reset: st; margin-bottom: 44px; }
.st { background: rgba(255, 255, 255, .06); border: 1px solid #2c4a6b; border-radius: 16px; padding: 22px 20px 22px 66px; position: relative; counter-increment: st; }
.st::before {
  content: counter(st); position: absolute; left: 20px; top: 22px;
  width: 32px; height: 32px; background: var(--orange); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.st h3 { color: #fff; font-size: 17px; margin-bottom: 4px; }
.st p { color: #b9c8d8; font-size: 14.5px; }
.start .start-head { margin: 0 auto 36px; text-align: center; max-width: 720px; }
.start .start-cta { text-align: center; }
.start .start-cta h2 { font-size: 28px; }
.start .start-cta p { margin: 12px auto 26px; max-width: 560px; }
.start .start-cta .note { color: #8ba3bd; font-size: 14px; margin-top: 14px; }

/* ============================================================
   單買方案頁（packs.html）專用
   ============================================================ */

/* 頁內開場（深底）：共用定義在上方「訂閱方案頁專用」前的 .page-hero 區塊 */

/* 六包商品卡（淨白底上） */
.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 960px) { .pack-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .pack-grid { grid-template-columns: 1fr; } }
.pack-card {
  background: #fff; border: 1px solid var(--card-border); border-radius: 16px;
  padding: 24px 22px; box-shadow: 0 2px 8px rgba(22, 57, 92, .04);
  display: flex; flex-direction: column;
}
.pack-card h3 { font-size: 19px; }
.pack-card .pack-one { color: #5b6773; font-size: 14.5px; margin: 6px 0 12px; }
.pack-card ul { list-style: none; margin-bottom: 18px; }
.pack-card li {
  padding: 7px 0 7px 24px; position: relative; font-size: 14.5px;
  color: #4c5863; border-top: 1px dashed #eef2f6;
}
.pack-card li::before { content: "✓"; position: absolute; left: 2px; color: var(--orange); font-weight: 800; }
.pack-price { margin-top: auto; padding-top: 14px; border-top: 1px solid #eef2f6; }
.pack-price .was { color: #9aa5b0; text-decoration: line-through; font-size: 14.5px; margin-right: 10px; }
.pack-price .now { color: var(--navy); font-size: 15px; font-weight: 700; }
.pack-price .now b { font-size: 27px; font-weight: 900; }
.pack-price .now small { font-size: 13px; font-weight: 700; color: var(--orange); margin-left: 6px; }

/* 合購卡（深底上白卡） */
.bundle-card {
  background: #fff; border-radius: 18px; padding: 34px 30px;
  max-width: 640px; margin: 0 auto; text-align: center;
}
.bundle-card .bundle-tag { font-size: 13px; font-weight: 800; letter-spacing: 2px; color: var(--orange); }
.bundle-card h3 { font-size: 24px; margin: 6px 0 8px; color: var(--navy); }
.bundle-card .bundle-desc { color: #4c5863; font-size: 15.5px; margin-bottom: 18px; }
.bundle-card .pack-price { border-top: none; padding-top: 0; margin-top: 0; }
.bundle-card .pack-price .now b { font-size: 38px; }
.opening-note { text-align: center; color: #b9c8d8; font-size: 14.5px; margin-top: 22px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* 誠實門檻三卡（淨白底上） */
.fair-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .fair-grid { grid-template-columns: 1fr; } }
.fair-card { background: var(--paper); border: 1px solid var(--card-border); border-radius: 16px; padding: 22px; }
.fair-card h3 { font-size: 17px; margin-bottom: 8px; }
.fair-card p { color: #4c5863; font-size: 14.5px; }

/* 樓梯卡（淨白區塊內的藏青卡，避免連續同色區塊） */
.ladder-card {
  background: var(--dark-grad); border-radius: 18px; padding: 30px 26px;
  margin-top: 40px; text-align: center;
}
.ladder-card h3 { color: #fff; font-size: 21px; }
.ladder-card p { color: #c3d2e2; font-size: 15.5px; margin: 10px auto 18px; max-width: 520px; }

/* 購買流程三步（深底） */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step-card { background: rgba(255, 255, 255, .06); border: 1px solid #2c4a6b; border-radius: 16px; padding: 24px 22px; }
.step-card .step-no {
  width: 34px; height: 34px; border-radius: 50%; background: var(--orange); color: #fff;
  font-weight: 900; font-size: 16px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.step-card h3 { color: #fff; font-size: 17px; margin-bottom: 6px; }
.step-card p { color: #c3d2e2; font-size: 14.5px; }
.steps-cta { text-align: center; }
.steps-cta .note { color: #8ba3bd; font-size: 14px; margin-top: 14px; }
