/* ============================================================
   房狸 FUNLI 品牌官網 — 設計系統
   七分專業、三分可愛。奶油白底、焦糖棕主色、活力橘 CTA。
   ============================================================ */

:root {
  /* 品牌色 */
  --cream: #FDF9F1;        /* 大背景 */
  --cream-2: #F8EFDF;      /* 交錯區塊背景 */
  --cream-3: #FFF6E8;      /* 卡片內淺底 */
  --caramel: #9C5B1D;      /* 品牌主色（焦糖棕，加深提高對比） */
  --caramel-deep: #7A4413; /* 深焦糖（hover、標題重點） */
  --camel: #D9A86A;        /* 暖駝色（裝飾、邊框） */
  --camel-soft: #EDD9BC;   /* 極淺駝（分隔線、tag 底） */
  --ink: #2B2521;          /* 深炭灰文字 */
  --ink-soft: #5C534A;     /* 次要文字 */
  --orange: #F96D1F;       /* 活力橘 CTA */
  --orange-deep: #DE5A10;  /* CTA hover */
  --orange-tint: #FFEDE0;  /* 橘色淺底（提示、badge） */
  --white: #FFFFFF;

  /* 功能色（台灣慣例：紅漲綠跌） */
  --up-red: #D6453D;       /* 上漲、旺、新訂單數字 */
  --ok-green: #2E9E6B;     /* 完成勾、同步成功 */
  --warn: #E8A13C;

  /* 版面 */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 6px 24px rgba(122, 68, 19, .08);
  --shadow-lift: 0 12px 32px rgba(122, 68, 19, .14);
  --maxw: 1120px;
  --header-h: 68px;

  --font: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

/* sticky header 鐵律：用 clip 不用 hidden，避免殺掉 sticky */
html, body { overflow-x: clip; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--caramel); text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- 通用文字 ---------- */
h1, h2, h3, h4 { line-height: 1.35; font-weight: 800; letter-spacing: .01em; }
.section { padding: 76px 0; }
.section-alt { background: var(--cream-2); }

.kicker {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--caramel);
  background: var(--camel-soft);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: .08em;
}

.section-title { font-size: clamp(1.6rem, 3.6vw, 2.3rem); color: var(--ink); margin-bottom: 14px; }
.section-lead { color: var(--ink-soft); font-size: 1.05rem; max-width: 640px; }
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }
.hl { color: var(--orange); }
.hl-caramel { color: var(--caramel); }

/* ---------- 按鈕 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(249, 109, 31, .35);
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(249, 109, 31, .4); }

.btn-secondary {
  background: transparent;
  color: var(--caramel);
  border-color: var(--camel);
}
.btn-secondary:hover { background: var(--camel-soft); border-color: var(--caramel); transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255, 255, 255, .16);
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, .28); }

.btn-lg { padding: 16px 38px; font-size: 1.08rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 249, 241, .92);
  border-bottom: 1px solid var(--camel-soft);
}
/* 毛玻璃放偽元素：backdrop-filter 若放在 .site-header 本體，
   會把 .main-nav 的 position:fixed 困在 header 內（containing block） */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  z-index: -1;
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-logo {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--caramel);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  overflow: hidden;
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-logo:has(img) { background: var(--cream-3); }
.brand-name { font-weight: 900; font-size: 1.2rem; color: var(--ink); line-height: 1.2; }
.brand-name small { display: block; font-size: .68rem; font-weight: 700; color: var(--caramel); letter-spacing: .18em; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 13px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .95rem;
  transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a.active { background: var(--camel-soft); color: var(--caramel-deep); }
.main-nav .nav-login { color: var(--caramel); border: 1.5px solid var(--camel); border-radius: 999px; padding: 7px 18px; margin-left: 6px; }
.main-nav .nav-login:hover { background: var(--camel-soft); }
.main-nav .nav-cta {
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 8px 20px;
  margin-left: 4px;
  box-shadow: 0 4px 12px rgba(249, 109, 31, .3);
}
.main-nav .nav-cta:hover { background: var(--orange-deep); color: #fff; }

/* 漢堡（≤1020px 收合，JS 閾值同數字） */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none;
  position: relative;
  z-index: 1102;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 3px;
  margin: 5px auto;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
    z-index: 1100;
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav a { font-size: 1.15rem; padding: 12px 28px; }
  .main-nav .nav-login, .main-nav .nav-cta { margin-left: 0; margin-top: 6px; }
  body.nav-locked { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero { padding: 72px 0 84px; position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(1.9rem, 4.6vw, 3rem); margin-bottom: 20px; color: var(--ink); }
.hero h1 .hl { position: relative; }
.hero-sub { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 30px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-note { font-size: .88rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-note .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--camel); }

@media (max-width: 860px) {
  .hero { padding: 44px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero > .container > .hero-grid > * { min-width: 0; }
}

/* ---------- 品牌插圖 ---------- */
.hero-media { display: flex; justify-content: center; }
.hero-media img {
  max-width: min(420px, 100%);
  border-radius: var(--radius);
  filter: drop-shadow(0 14px 30px rgba(122, 68, 19, .18));
}
.mascot-img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  background: var(--cream-3);
}
.cta-mascot {
  max-width: 230px;
  margin: 0 auto 24px;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
}

/* ---------- AI 生圖佔位框 ---------- */
.img-slot {
  border: 2px dashed var(--camel);
  border-radius: var(--radius);
  background: var(--cream-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--caramel);
  font-weight: 700;
  text-align: center;
  padding: 18px;
  min-height: 180px;
}
.img-slot .slot-emoji { font-size: 2.4rem; line-height: 1; }
.img-slot .slot-spec { font-size: .78rem; font-weight: 500; color: var(--ink-soft); }
.img-slot img { border-radius: calc(var(--radius) - 4px); }

.generated-visual {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius);
  background: var(--cream-3);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}
.generated-visual-ui { aspect-ratio: 10 / 7; }
.generated-visual-phone { aspect-ratio: 2 / 3; max-height: 520px; object-fit: contain; }
.generated-visual-illustration { aspect-ratio: 9 / 7; }
.generated-visual-photo { aspect-ratio: 1 / 1; }
.generated-visual-scenario { aspect-ratio: 8 / 7; }
.compare-visual-wide {
  max-width: 760px;
  margin: 0 auto 40px;
  aspect-ratio: 1200 / 620;
}
.compare-visual-square {
  max-width: 420px;
  margin: 32px auto 0;
  aspect-ratio: 1 / 1;
}
.final-cta .cta-mascot-wide {
  width: min(100%, 980px);
  height: auto;
  max-height: 390px;
  object-fit: cover;
  object-position: left center;
  border-radius: var(--radius);
}

/* ---------- 卡片 ---------- */
.cards { display: grid; gap: 22px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 960px) { .cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cards-3, .cards-2 { grid-template-columns: 1fr; } }
.cards > * { min-width: 0; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(217, 168, 106, .25);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--orange-tint);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--ink); }
.card p { color: var(--ink-soft); font-size: .95rem; }
.card .card-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-tint);
  border-radius: 999px;
  padding: 2px 10px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- 痛點清單 ---------- */
.pain-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 34px 0; }
@media (max-width: 680px) { .pain-list { grid-template-columns: 1fr; } }
.pain-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(217, 168, 106, .3);
  box-shadow: var(--shadow);
  font-size: .96rem;
  color: var(--ink-soft);
  min-width: 0;
}
.pain-item .pain-x { color: var(--up-red); font-weight: 900; flex-shrink: 0; margin-top: 1px; }
.pain-answer {
  margin-top: 30px;
  background: var(--caramel);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 30px;
  font-size: 1.08rem;
  font-weight: 600;
  display: flex;
  gap: 16px;
  align-items: center;
}
.pain-answer .pa-emoji { font-size: 1.9rem; flex-shrink: 0; }

/* ---------- OTA logo 區 ---------- */
.ota-strip { text-align: center; }
.ota-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}
.ota-logo {
  background: var(--white);
  border: 1px solid rgba(217, 168, 106, .35);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 62px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: .01em;
  transition: transform .2s ease;
}
.ota-logo:hover { transform: translateY(-3px); }
/* 各家品牌字色（正式 logo 圖檔可直接換入 .ota-logo img） */
.ota-agoda   { color: #262C6D; }
.ota-agoda .agoda-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 3px; }
.ota-booking { color: #003580; }
.ota-booking .bk-blue { color: #009FE3; }
.ota-tobeyo img { display: block; width: 142px; max-width: 100%; height: auto; }
.ota-airbnb  { color: #FF5A5F; }
.ota-expedia { color: #191E3B; }
.ota-expedia .exp-yellow { color: #FFC94C; }
.ota-klook   { color: #FF5722; }
.ota-trip    { color: #287DFA; }
.ota-more    { color: var(--ink-soft); font-size: .95rem; font-weight: 600; border-style: dashed; }
.ota-note { margin-top: 18px; font-size: .85rem; color: var(--ink-soft); }
@media (max-width: 560px) {
  .ota-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .ota-logo {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 14px 10px;
    font-size: 1rem;
  }
  .ota-tobeyo img { width: 116px; }
  .ota-more { grid-column: 1 / -1; }
}

/* ---------- 三種客戶情境 ---------- */
.scenario-num {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--caramel);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

/* ---------- 使用流程 ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 40px; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  text-align: center;
  border: 1px solid rgba(217, 168, 106, .3);
  box-shadow: var(--shadow);
  min-width: 0;
}
.step-num {
  width: 40px; height: 40px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--orange-tint);
  color: var(--orange);
  font-weight: 900;
  display: grid; place-items: center;
  font-size: 1.05rem;
}
.step h3 { font-size: .98rem; margin-bottom: 6px; }
.step p { font-size: .84rem; color: var(--ink-soft); }

/* ---------- 通路匯流動畫 ---------- */
.flow-wrap {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  max-width: 820px;
  margin-inline: auto;
}
.flow-sources { display: flex; flex-direction: column; gap: 12px; }
.flow-chip {
  background: var(--white);
  border: 1px solid var(--camel-soft);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 700;
  font-size: .92rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}
.flow-lines { width: 130px; height: 100%; min-height: 220px; }
.flow-lines path { stroke: var(--camel); stroke-width: 2; fill: none; opacity: .55; }
.flow-lines .flow-dot { fill: var(--orange); }
.flow-hub {
  background: var(--caramel);
  color: #fff;
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
  box-shadow: var(--shadow-lift);
}
.flow-hub .hub-emoji { font-size: 2rem; }
.flow-hub h3 { font-size: 1.15rem; margin: 8px 0 4px; color: #fff; }
.flow-hub p { font-size: .85rem; opacity: .85; }
.flow-out {
  margin-top: 14px;
  font-size: .88rem;
  color: var(--ok-green);
  font-weight: 700;
  text-align: center;
}
@media (max-width: 720px) {
  .flow-wrap { grid-template-columns: 1fr; }
  .flow-lines { display: none; }
  .flow-sources { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .flow-hub { margin-top: 10px; }
}

/* ---------- 後台畫面示意（Dashboard Mockup） ---------- */
.dash {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(217, 168, 106, .3);
  overflow: hidden;
  max-width: 980px;
  margin: 44px auto 0;
}
.dash-topbar {
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: .85rem;
}
.dash-topbar .win-dots { display: flex; gap: 6px; }
.dash-topbar .win-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dash-topbar .win-dots span:nth-child(1) { background: #FF5F57; }
.dash-topbar .win-dots span:nth-child(2) { background: #FEBC2E; }
.dash-topbar .win-dots span:nth-child(3) { background: #28C840; }
.dash-topbar .dash-title { opacity: .8; margin-left: 6px; }
.dash-sync {
  margin-left: auto;
  background: rgba(46, 158, 107, .18);
  color: #7FD8AC;
  border-radius: 999px;
  padding: 3px 12px;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
}
.dash-body { padding: 22px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; }
@media (max-width: 820px) { .dash-body { grid-template-columns: 1fr; } }
.dash-body > * { min-width: 0; }

.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
@media (max-width: 520px) { .dash-stats { grid-template-columns: repeat(2, 1fr); } }
.dash-stat {
  background: var(--cream-3);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  min-width: 0;
}
.dash-stat b { display: block; font-size: 1.35rem; color: var(--ink); }
.dash-stat b.stat-new { color: var(--up-red); }
.dash-stat span { font-size: .74rem; color: var(--ink-soft); }
.dash-stat .stat-trend-up { font-size: .7rem; color: var(--up-red); font-weight: 700; }

.dash-cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.dash-cal-head h4 { font-size: .92rem; }
.dash-cal-head .cal-legend { font-size: .7rem; color: var(--ink-soft); display: flex; gap: 10px; flex-wrap: wrap; }
.cal-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 3px; margin-right: 3px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-cell {
  aspect-ratio: 1 / .8;
  border-radius: 8px;
  background: var(--cream-2);
  font-size: .72rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  min-width: 0;
}
.cal-cell small { font-size: .62rem; }
.cal-full { background: var(--up-red); color: #fff; }
.cal-busy { background: var(--warn); color: #fff; }
.cal-open { background: #E6F4EC; color: var(--ok-green); font-weight: 700; }
.cal-closed { background: #E7E2DB; color: #9B928A; text-decoration: line-through; }

.dash-orders h4 { font-size: .92rem; margin-bottom: 10px; }
.order-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream-3);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: .8rem;
  min-width: 0;
}
.order-row .o-src {
  font-size: .66rem;
  font-weight: 800;
  border-radius: 6px;
  padding: 2px 8px;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}
.o-src-agoda { background: #262C6D; }
.o-src-booking { background: #003580; }
.o-src-airbnb { background: #FF5A5F; }
.o-src-web { background: var(--caramel); }
.o-src-klook { background: #FF5722; }
.order-row .o-name { font-weight: 700; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.order-row .o-meta { color: var(--ink-soft); margin-left: auto; white-space: nowrap; flex-shrink: 0; }
.o-paid { color: var(--ok-green); font-weight: 700; }
.o-unpaid { color: var(--warn); font-weight: 700; }
.o-new-badge {
  background: var(--up-red);
  color: #fff;
  font-size: .6rem;
  border-radius: 999px;
  padding: 1px 7px;
  font-weight: 800;
  flex-shrink: 0;
}
.dash-room-left { margin-top: 14px; font-size: .78rem; }
.dash-room-left li {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 6px 2px; border-bottom: 1px dashed var(--camel-soft);
  color: var(--ink-soft);
}
.dash-room-left b { color: var(--ink); }
.room-low { color: var(--up-red); font-weight: 800; }

/* ---------- 吉祥物互動區 ---------- */
.mascot-states { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 820px) { .mascot-states { grid-template-columns: 1fr; } }
.mascot-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  border: 1px solid rgba(217, 168, 106, .3);
  box-shadow: var(--shadow);
  min-width: 0;
}
.mascot-card .img-slot { min-height: 200px; margin-bottom: 18px; }
.mascot-bubble {
  background: var(--cream-3);
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
  color: var(--caramel-deep);
  position: relative;
  font-size: .95rem;
}
.mascot-bubble::before {
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--cream-3);
  border-top: none;
}

/* ---------- 信任區 ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
@media (max-width: 860px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(217, 168, 106, .3);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: .95rem;
  min-width: 0;
}
.trust-item .t-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--camel-soft);
  display: grid; place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---------- 收費方案 ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; align-items: stretch; }
@media (max-width: 920px) { .plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }
.plan {
  background: var(--white);
  border-radius: 22px;
  padding: 34px 28px;
  border: 1.5px solid rgba(217, 168, 106, .35);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  transition: transform .22s ease, box-shadow .22s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.plan-featured { border-color: var(--orange); border-width: 2px; }
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 4px 18px;
  white-space: nowrap;
}
.plan h3 { font-size: 1.3rem; color: var(--caramel-deep); }
.plan .plan-for { color: var(--ink-soft); font-size: .9rem; margin: 6px 0 18px; }
.plan .plan-price { font-size: 1.5rem; font-weight: 900; color: var(--ink); margin-bottom: 20px; }
.plan .plan-price small { font-size: .82rem; color: var(--ink-soft); font-weight: 500; }
.plan ul { flex: 1; margin-bottom: 26px; }
.plan ul li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--camel-soft);
  font-size: .93rem;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
}
.plan ul li::before { content: "✓"; color: var(--ok-green); font-weight: 900; flex-shrink: 0; }
/* li 內文包一層 span，避免 strong/em 被當成 flex 項目拆成多欄 */
.plan ul li > span { flex: 1; min-width: 0; }
.plan .btn { width: 100%; }

/* ---------- 收費：房間數即時試算機 ---------- */
.calc {
  background: var(--white);
  border: 1.5px solid rgba(217, 168, 106, .38);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 26px 30px;
  max-width: 760px;
  margin: 44px auto 0;
}
.calc-controls { display: flex; flex-wrap: wrap; gap: 24px 44px; align-items: flex-start; }
.calc-field { flex: 1 1 260px; min-width: 0; }
.calc-field-rooms { flex: 0 1 auto; }
.calc-field > label { display: block; font-weight: 700; color: var(--ink); font-size: .95rem; margin-bottom: 12px; }
.type-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.type-pill {
  background: var(--cream-3);
  border: 1.5px solid var(--camel-soft);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: .88rem;
  font-weight: 600;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.type-pill:hover { border-color: var(--camel); }
.type-pill.is-active { background: var(--caramel); border-color: var(--caramel); color: #fff; }
.stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--camel-soft);
  border-radius: 14px;
  background: var(--cream-3);
  overflow: hidden;
}
.step-btn {
  width: 48px; height: 50px;
  background: none; border: none;
  font-size: 1.5rem; font-weight: 700; color: var(--caramel);
  transition: background .15s ease;
}
.step-btn:hover { background: var(--camel-soft); }
.stepper input {
  width: 66px; height: 50px;
  border: none; background: none;
  text-align: center;
  font-size: 1.25rem; font-weight: 900; color: var(--ink);
  -moz-appearance: textfield; appearance: textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.stepper-unit { padding: 0 16px 0 2px; color: var(--ink-soft); font-size: .95rem; white-space: nowrap; }

/* 兩欄方案 + 大字價格 */
.plans-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }
@media (max-width: 920px) { .plans-2 { grid-template-columns: 1fr; max-width: 460px; } }
.plans-2 .plan-price {
  font-size: 1rem; font-weight: 700; color: var(--ink-soft);
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
  margin-bottom: 14px;
}
.plans-2 .plan-price .price-num {
  font-size: 2.4rem; font-weight: 900; color: var(--caramel-deep); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan-diff { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 20px; }
.plan-diff span {
  background: var(--orange-tint);
  color: var(--orange-deep);
  font-size: .8rem; font-weight: 800;
  border-radius: 999px;
  padding: 4px 12px;
}
.calc-note { text-align: center; color: var(--ink-soft); font-size: .92rem; max-width: 700px; margin: 22px auto 0; }
.calc-note strong { color: var(--caramel-deep); }

/* 「官網訂單一律 0 抽成」— 放大 + 螢光筆掃過特效 */
.calc-note .zero-fee {
  display: inline-block;
  font-size: 1.3em;
  font-weight: 900;
  color: var(--caramel-deep);
  padding: 1px 8px;
  margin: 0 2px;
  border-radius: 8px;
  /* 預設（不支援動畫/無 JS）：螢光底直接全亮 */
  background-image: linear-gradient(100deg, rgba(249, 109, 31, .32), rgba(249, 109, 31, .14));
  background-repeat: no-repeat;
  background-size: 100% 78%;
  background-position: 0 62%;
}
@media (prefers-reduced-motion: no-preference) {
  /* 進場時螢光筆從左掃到右 */
  html.js .calc-note.reveal .zero-fee { background-size: 0% 78%; }
  html.js .calc-note.reveal.in .zero-fee {
    background-size: 100% 78%;
    transition: background-size .8s cubic-bezier(.25, .8, .3, 1) .5s;
  }
}

/* 多館・客製 */
.custom-strip {
  background: var(--cream-2);
  border: 1.5px dashed var(--camel);
  border-radius: 18px;
  padding: 26px 32px;
  margin-top: 34px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.custom-strip .cs-text { min-width: 0; }
.custom-strip .cs-text h3 { color: var(--caramel-deep); font-size: 1.15rem; margin-bottom: 4px; }
.custom-strip .cs-text p { color: var(--ink-soft); font-size: .92rem; }
.custom-strip .btn { flex-shrink: 0; }

/* 方案數由後台決定；第三、第四種方案會自動換行，不綁死兩欄。 */
.plans-dynamic {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1120px;
  margin-inline: auto;
}
.plans-dynamic .plan-price-dynamic {
  min-height: 2.5rem;
  color: var(--caramel-deep);
  font-size: 1.55rem;
}
.plan-price-components {
  margin: -6px 0 16px;
  padding-left: 12px;
  border-left: 3px solid var(--camel-soft);
  color: var(--ink-soft);
  font-size: .82rem;
}
.plan-more { margin: -12px 0 22px; }
.plan-more summary {
  cursor: pointer;
  color: var(--caramel-deep);
  font-size: .88rem;
  font-weight: 800;
}
.plan-more ul { margin: 10px 0 0; }
.catalog-status {
  min-height: 1.5em;
  margin-top: 14px;
  text-align: center;
  color: var(--ink-soft);
  font-size: .82rem;
}
@media (max-width: 920px) {
  .plans-dynamic { grid-template-columns: 1fr; max-width: 460px; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(217, 168, 106, .3);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 22px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-q .faq-arrow { transition: transform .25s ease; color: var(--caramel); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  color: var(--ink-soft);
  font-size: .95rem;
}
.faq-a-inner { padding: 0 22px 20px; }

/* ---------- 最終 CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--caramel-deep), var(--caramel));
  color: #fff;
  border-radius: 26px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); margin-bottom: 14px; color: #fff; }
.final-cta p { opacity: .9; max-width: 560px; margin: 0 auto 30px; }
.final-cta .img-slot {
  max-width: 300px;
  margin: 0 auto 26px;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .45);
  color: #FFE3C8;
}
.final-cta .img-slot .slot-spec { color: rgba(255, 245, 230, .75); }

/* ---------- 頁面標頭（內頁 hero） ---------- */
.page-hero {
  padding: 64px 0 52px;
  background: var(--cream-2);
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 14px; }
.page-hero p { color: var(--ink-soft); max-width: 620px; margin: 0 auto; }

/* ---------- 功能頁模組 ---------- */
.feature-block { padding: 60px 0; border-bottom: 1px solid var(--camel-soft); }
.feature-block:last-of-type { border-bottom: none; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.feature-grid.reverse > .feature-media { order: 2; }
@media (max-width: 820px) {
  .feature-grid, .feature-grid.reverse { grid-template-columns: 1fr; gap: 28px; }
  .feature-grid.reverse > .feature-media { order: 0; }
}
.feature-grid > * { min-width: 0; }
.feature-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--camel-soft);
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
  font-size: .97rem;
}
.feature-list li::before { content: "✓"; color: var(--ok-green); font-weight: 900; flex-shrink: 0; }
.feature-list li .soon {
  font-size: .7rem;
  font-weight: 800;
  color: var(--orange);
  background: var(--orange-tint);
  border-radius: 999px;
  padding: 1px 9px;
  margin-left: 8px;
  white-space: nowrap;
  align-self: center;
}

/* ---------- 表單 ---------- */
.form-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(217, 168, 106, .3);
  padding: 40px 36px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 560px) { .form-card { padding: 28px 20px; } }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: .9rem; color: var(--ink); }
.form-field label .req { color: var(--up-red); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: .95rem;
  padding: 11px 14px;
  border: 1.5px solid var(--camel-soft);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--caramel);
  background: #fff;
}
.form-checks { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.form-checks label {
  font-weight: 500;
  font-size: .9rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-checks input { accent-color: var(--orange); width: 16px; height: 16px; }
.form-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
}
.form-success .fs-emoji { font-size: 3rem; }
.form-success h3 { font-size: 1.3rem; margin: 14px 0 8px; color: var(--caramel-deep); }
.form-success p { color: var(--ink-soft); }

/* honeypot 防垃圾 */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ---------- 登入頁 ---------- */
.login-wrap { min-height: calc(100vh - var(--header-h) - 320px); display: grid; place-items: center; padding: 70px 20px; }
.login-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(217, 168, 106, .3);
  padding: 44px 38px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}
.login-card .brand-logo { width: 60px; height: 60px; margin: 0 auto 16px; font-size: 1.8rem; border-radius: 16px; }
.login-card h1 { font-size: 1.4rem; margin-bottom: 6px; }
.login-card .login-sub { color: var(--ink-soft); font-size: .9rem; margin-bottom: 28px; }
.login-card .form-field { text-align: left; margin-bottom: 16px; }
.login-note { margin-top: 22px; font-size: .82rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #CFC7BF;
  padding: 56px 0 30px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(217, 168, 106, .2);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid > * { min-width: 0; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: .88rem; margin-top: 12px; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.footer-col a { display: block; color: #CFC7BF; font-size: .88rem; padding: 4px 0; }
.footer-col a:hover { color: var(--camel); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: #9B928A;
}

/* ---------- 進場動畫（僅在 JS 可用時隱藏，避免無 JS 內容消失） ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  html.js .reveal.in { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: .08s; }
  .reveal-d2 { transition-delay: .16s; }
  .reveal-d3 { transition-delay: .24s; }
}

/* ---------- 內文頁（隱私、條款） ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 20px 80px; }
.legal h1 { font-size: 1.8rem; margin-bottom: 8px; }
.legal .legal-date { color: var(--ink-soft); font-size: .85rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.2rem; margin: 34px 0 12px; color: var(--caramel-deep); }
.legal p, .legal li { color: var(--ink-soft); font-size: .95rem; margin-bottom: 10px; }
.legal ul { list-style: disc; padding-left: 22px; }

/* 唯讀表格若有，一律可橫滑 */
.table-wrap { overflow-x: auto; }

/* ---------- 創辦故事 section（部落格風格） ---------- */
.founder-blog {
  max-width: 720px;
  margin: 40px auto;
}

.founder-blog h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 20px;
  color: var(--ink);
}

.founder-blog > p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 20px;
  color: var(--ink);
}

.founder-blog > p.intro {
  font-size: 1.08rem;
  margin-bottom: 32px;
  color: var(--ink-soft);
}

/* 圖片區塊 */
.founder-blog-img {
  width: 100%;
  height: auto;
  margin: 40px 0;
  border-radius: var(--radius-sm);
}

/* 強調色 */
.hl-warning {
  color: var(--orange);
  font-weight: 600;
}

.hl-green {
  color: var(--ok-green);
  font-weight: 600;
}

/* 痛點卡片 */
.pain-moment {
  margin: 28px 0;
  padding: 20px;
  background: rgba(249, 109, 31, 0.08);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
}

.pain-moment p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  color: var(--ink);
}

.pain-moment p:first-child {
  font-weight: 600;
  margin-bottom: 8px;
}

.pain-moment p:last-child {
  font-size: .95rem;
  color: var(--ink-soft);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .founder-blog h2 { font-size: 1.5rem; }
  .founder-blog > p { font-size: 1rem; }
  .founder-blog-img { aspect-ratio: auto; min-height: 260px; }
}

/* ---------- 同業比較表（compare.html） ---------- */
.cmp-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  background: var(--cream-3);
  border: 1px solid var(--camel-soft);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.cmp-intro h3 { font-size: 1.05rem; color: var(--caramel-deep); margin-bottom: 10px; }
.cmp-intro p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 10px; }
.cmp-intro p:last-child { margin-bottom: 0; }

.cmp-group { margin-bottom: 44px; }
.cmp-group > h3 {
  font-size: 1.15rem;
  color: var(--caramel-deep);
  margin-bottom: 4px;
  padding-left: 12px;
  border-left: 4px solid var(--camel);
}
.cmp-group > .cmp-group-lead {
  color: var(--ink-soft);
  font-size: .92rem;
  margin: 0 0 16px 16px;
}

.cmp-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cmp-table th, .cmp-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--camel-soft);
  vertical-align: top;
  font-size: .93rem;
}
.cmp-table tr:last-child th, .cmp-table tr:last-child td { border-bottom: 0; }
.cmp-table thead th {
  background: var(--cream-2);
  color: var(--ink);
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
}
.cmp-table thead th.cmp-col-us { color: var(--caramel-deep); }
.cmp-table tbody th {
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
  position: sticky;
  left: 0;
  min-width: 190px;
}
.cmp-table tbody th small {
  display: block;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: .82rem;
  margin-top: 3px;
  line-height: 1.5;
}
.cmp-table td.cmp-col-us { background: #FFFBF4; color: var(--ink); }
.cmp-table td.cmp-col-them { color: var(--ink-soft); }

/* 三張表欄寬統一，避免自動配寬造成前後不一致 */
.cmp-table th:nth-child(1), .cmp-table td:nth-child(1) { width: 24%; }
.cmp-table th:nth-child(2), .cmp-table td:nth-child(2) { width: 39%; }
.cmp-table th:nth-child(3), .cmp-table td:nth-child(3) { width: 37%; }

.mark { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; }
.mark-yes { color: var(--ok-green); }
.mark-soon { color: var(--orange-deep); }
.mark-no { color: #9A9088; }
.mark-info { color: var(--ink-soft); font-weight: 600; }
.cmp-table td span.mark + span { display: block; margin-top: 3px; font-weight: 400; font-size: .85rem; color: var(--ink-soft); line-height: 1.55; }

.cmp-honest {
  background: var(--orange-tint);
  border: 1px solid #F6C9A8;
  border-radius: var(--radius);
  padding: 26px 28px;
  max-width: 760px;
  margin: 0 auto;
}
.cmp-honest h3 { color: var(--caramel-deep); font-size: 1.1rem; margin-bottom: 12px; }
.cmp-honest ul { list-style: none; }
.cmp-honest li { color: var(--ink-soft); font-size: .95rem; padding: 8px 0 8px 26px; position: relative; line-height: 1.7; }
.cmp-honest li::before { content: "・"; position: absolute; left: 6px; color: var(--orange); font-weight: 900; }
.cmp-honest p { color: var(--ink-soft); font-size: .95rem; margin-top: 12px; }

.cmp-source {
  max-width: 760px;
  margin: 40px auto 0;
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.8;
  border-top: 1px solid var(--camel-soft);
  padding-top: 18px;
}

@media (max-width: 768px) {
  .cmp-table th, .cmp-table td { padding: 12px 13px; font-size: .89rem; }
  .cmp-table tbody th { min-width: 150px; }
  .cmp-intro, .cmp-honest { padding: 20px 18px; }
}

/* 比較表：手機改成卡片式，避免第三欄被推到螢幕外看不到 */
@media (max-width: 640px) {
  .cmp-table, .cmp-table tbody, .cmp-table tr, .cmp-table th, .cmp-table td { display: block; width: auto; }
  .cmp-table { min-width: 0; background: transparent; box-shadow: none; border-radius: 0; }
  .cmp-table thead { display: none; }
  .cmp-table th:nth-child(1), .cmp-table td:nth-child(1),
  .cmp-table th:nth-child(2), .cmp-table td:nth-child(2),
  .cmp-table th:nth-child(3), .cmp-table td:nth-child(3) { width: auto; }
  .cmp-table tr {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    margin-bottom: 14px;
    overflow: hidden;
  }
  .cmp-table tbody th {
    position: static;
    min-width: 0;
    background: var(--cream-2);
    border-bottom: 0;
    padding: 13px 16px;
    font-size: 1rem;
  }
  .cmp-table tbody td { border-bottom: 0; padding: 13px 16px 15px; }
  .cmp-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--ink-soft);
    margin-bottom: 6px;
  }
  .cmp-table tbody td.cmp-col-us { background: #FFFBF4; }
  .cmp-table tbody td.cmp-col-us::before { color: var(--caramel); }
  .cmp-table tbody td.cmp-col-them { border-top: 1px solid var(--camel-soft); }
  .table-wrap { overflow-x: visible; }
}

/* 「開發中」小徽章（compare.html 路線圖卡片） */
.soon-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--orange-deep);
  background: var(--orange-tint);
  border: 1px solid #F6C9A8;
  border-radius: 999px;
  padding: 2px 9px;
  margin-left: 7px;
  vertical-align: middle;
  white-space: nowrap;
}

/* 方案卡內的「即將推出」小字（pricing.html） */
.plan li .soon-inline {
  display: inline-block;
  font-style: normal;
  font-size: .72rem;
  font-weight: 700;
  color: var(--orange-deep);
  background: var(--orange-tint);
  border: 1px solid #F6C9A8;
  border-radius: 999px;
  padding: 1px 8px;
  margin-left: 4px;
  vertical-align: middle;
  white-space: nowrap;
}
