/* ==========================================================================
   獵豹資訊 InfoCheetah — 官方網站樣式系統
   Light mode / 白底。單一樣式表，依區塊分節。
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* base */
  --bg:            #FFFFFF;
  --bg-soft:       #F7F8FA;
  --bg-tint:       #FDF8F1;      /* 極淡的品牌暖底 */
  --surface:       #FFFFFF;
  --line:          rgba(18, 22, 34, 0.10);
  --line-soft:     rgba(18, 22, 34, 0.06);
  --line-strong:   rgba(18, 22, 34, 0.18);

  /* text */
  --text:          #14182A;
  --body:          #4C5568;
  --muted:         #6B748A;
  --dim:           #8E96A8;

  /* brand — 取自 CI 標誌 */
  --orange:        #E5811E;
  --orange-deep:   #C96A12;
  --orange-soft:   #F6A83E;
  --red:           #DE2E26;
  --blue:          #3F8CAE;
  --green:         #7C9C1A;

  /* 產品識別色 — 取自各服務的實際 logo */
  --kol:           #C90B90;   /* KOL Agent 洋紅 */
  --leap:          #EE8000;   /* LeapReply 橘 */
  --ez:            #317E7E;   /* EzBrand2 青綠 */

  --grad-brand: linear-gradient(100deg, #F6A83E 0%, #E5811E 42%, #DE2E26 100%);
  --grad-warm:  linear-gradient(120deg, #F2952B 0%, #E5811E 100%);

  /* geometry */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --container: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 124px);

  --nav-h: 70px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-sm: 0 1px 2px rgba(18, 22, 34, 0.04), 0 4px 12px -6px rgba(18, 22, 34, 0.07);
  --shadow:    0 1px 2px rgba(18, 22, 34, 0.04), 0 12px 32px -14px rgba(18, 22, 34, 0.16);
  --shadow-lg: 0 2px 4px rgba(18, 22, 34, 0.03), 0 28px 64px -24px rgba(18, 22, 34, 0.22);

  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto,
               "Helvetica Neue", "PingFang TC", "Noto Sans TC", "Microsoft JhengHei",
               system-ui, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto,
               "PingFang TC", "Noto Sans TC", system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 680;
  letter-spacing: -0.022em;
  line-height: 1.22;
  margin: 0;
  text-wrap: balance;
  color: var(--text);
}

p { margin: 0; text-wrap: pretty; }

::selection { background: rgba(229, 129, 30, 0.22); }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. Atmosphere
   -------------------------------------------------------------------------- */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.5;
}

.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(18,22,34,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(18,22,34,0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 32%, #000 12%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 32%, #000 12%, transparent 74%);
}

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 2;
}
.wrap--wide { max-width: 1280px; }
.wrap--narrow { max-width: 800px; }

section { position: relative; overflow-x: clip; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 6.5vw, 88px); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }

.rule { height: 1px; border: 0; margin: 0; background: var(--line-soft); }

.stack   { display: grid; gap: 18px; }
.stack-s { display: grid; gap: 10px; }

.grid { display: grid; gap: clamp(16px, 2vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------------------
   5. Typography
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 640;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--orange);
}

.h-display { font-size: clamp(2.35rem, 5.4vw, 4.1rem); line-height: 1.12; letter-spacing: -0.033em; font-weight: 700; }
.h1 { font-size: clamp(1.95rem, 3.9vw, 2.95rem); letter-spacing: -0.028em; }
.h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); letter-spacing: -0.024em; }
.h3 { font-size: clamp(1.1rem, 1.7vw, 1.32rem); letter-spacing: -0.016em; }
.h4 { font-size: 1.02rem; letter-spacing: -0.008em; font-weight: 660; }

.lead { font-size: clamp(1.02rem, 1.45vw, 1.16rem); color: var(--body); line-height: 1.82; }
.body { color: var(--body); }
.small { font-size: 0.895rem; color: var(--muted); line-height: 1.75; }
.tiny  { font-size: 0.8rem; color: #5F6880; }

.mono { font-family: var(--font-mono); font-size: 0.85em; }

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-orange { color: var(--orange); }
.text-blue   { color: var(--blue); }
.text-green  { color: var(--green); }
.text-red    { color: var(--red); }
.text-dark   { color: var(--text); }

.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::before { display: none; }

.section-head { max-width: 720px; display: grid; gap: 16px; margin-bottom: clamp(34px, 4.5vw, 58px); }
.section-head.center { margin-inline: auto; }

/* --------------------------------------------------------------------------
   6. Buttons, chips
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: var(--text);
  transition: transform 0.26s var(--ease), border-color 0.26s var(--ease),
              background 0.26s var(--ease), box-shadow 0.26s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); border-color: var(--text); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }

.btn--primary {
  border-color: transparent;
  background: var(--grad-warm);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(229, 129, 30, 0.75);
}
.btn--primary:hover {
  border-color: transparent;
  background: var(--grad-warm);
  box-shadow: 0 14px 32px -10px rgba(229, 129, 30, 0.85);
}

.btn--ghost { background: transparent; border-color: var(--line); }
.btn--sm { padding: 9px 18px; font-size: 0.875rem; }

.btn .arw { transition: transform 0.3s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12.5px;
  font-weight: 560;
  color: var(--muted);
  white-space: nowrap;
}
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.chip--live  { color: #4E7A12; border-color: rgba(124,156,26,.34); background: rgba(124,156,26,.09); }
.chip--beta  { color: #2C7392; border-color: rgba(63,140,174,.34); background: rgba(63,140,174,.09); }
.chip--build { color: #B96A11; border-color: rgba(229,129,30,.34); background: rgba(229,129,30,.09); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* --------------------------------------------------------------------------
   7. Navigation
   -------------------------------------------------------------------------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 0;
  z-index: 60;
  background: var(--grad-brand);
  transition: width 0.1s linear;
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 50;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line-soft); box-shadow: 0 4px 20px -12px rgba(18,22,34,.2); }

.nav__inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark { width: 34px; height: 34px; }
.brand__name { display: grid; line-height: 1.15; }
.brand__zh { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.brand__en { font-size: 9.5px; letter-spacing: 0.17em; color: var(--dim); text-transform: uppercase; font-weight: 620; }

.nav__links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__link {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.91rem;
  font-weight: 560;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--text); background: var(--bg-soft); }
.nav__link.is-active { color: var(--text); font-weight: 640; }
.nav__link.is-active::after {
  content: "";
  display: block;
  height: 2px;
  margin: 3px auto -7px;
  width: 18px;
  border-radius: 2px;
  background: var(--orange);
}

.nav__cta { margin-left: 10px; }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 12px;
  width: 18px; height: 1.8px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 20px; }
.nav__toggle span:nth-child(3) { top: 25px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(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(-5px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 45;
  background: #fff;
  padding: 22px var(--gutter) 40px;
  display: grid;
  align-content: start;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer a {
  padding: 16px 4px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 620;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.drawer a .tiny { font-weight: 400; }
.drawer a.btn {
  margin-top: 22px;
  padding: 15px 24px;
  border-bottom: 0;
  justify-content: center;
  font-size: 0.98rem;
}
.drawer a.btn--primary { color: #fff; }

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: calc(var(--nav-h) + clamp(56px, 8vw, 104px)) clamp(56px, 8vw, 96px);
  overflow: hidden;
  background: linear-gradient(180deg, #FFFDFA 0%, #FFFFFF 62%);
}
.hero--home { min-height: min(92svh, 860px); }

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.85;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 50% at 42% 45%, rgba(255,255,255,.94) 0%, rgba(255,255,255,.55) 55%, rgba(255,255,255,0) 100%),
    linear-gradient(to bottom, rgba(255,255,255,.7) 0%, transparent 26%, transparent 68%, #fff 100%);
}

.hero__inner { position: relative; z-index: 3; }
.hero__content { max-width: 880px; display: grid; gap: 26px; }

.hero__title { font-size: clamp(2.3rem, 5.6vw, 4.15rem); line-height: 1.1; letter-spacing: -0.035em; font-weight: 700; }
.hero__sub { max-width: 640px; font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--body); line-height: 1.84; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 8px;
  font-size: 0.86rem;
  color: var(--muted);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta span::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

/* 指標帶 */
.statbar {
  position: relative;
  z-index: 3;
  margin-top: clamp(44px, 6vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.statbar__item {
  padding: 26px 26px;
  display: grid;
  gap: 5px;
  border-left: 1px solid var(--line-soft);
}
.statbar__item:first-child { border-left: 0; }
.statbar__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--orange);
}
.statbar__lbl { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

@media (max-width: 860px) {
  .statbar { grid-template-columns: repeat(2, 1fr); }
  .statbar__item:nth-child(odd) { border-left: 0; }
  .statbar__item:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
}

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  padding: clamp(22px, 2.5vw, 30px);
  transition: border-color 0.34s var(--ease), transform 0.34s var(--ease), box-shadow 0.34s var(--ease);
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow); }

.card__icon {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(229,129,30,.10);
  color: var(--orange);
  margin-bottom: 18px;
}
.card__icon--blue    { background: rgba(63,140,174,.11); color: var(--blue); }
.card__icon--green   { background: rgba(124,156,26,.12); color: var(--green); }
.card__icon--magenta { background: rgba(201,11,144,.10); color: var(--kol); }
.card__icon--orange  { background: rgba(238,128,0,.11);  color: var(--leap); }
.card__icon--teal    { background: rgba(49,126,126,.11); color: var(--ez); }

.card h3 { margin-bottom: 9px; }
.card p { color: var(--body); font-size: 0.95rem; }
.card--flush { padding: 0; }
.card--soft { background: var(--bg-soft); border-color: transparent; box-shadow: none; }
.card--soft:hover { box-shadow: var(--shadow-sm); }

/* 產品大卡 */
.pcard {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 20px;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pcard::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent, var(--orange));
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }

.pcard__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.pcard__name { font-size: clamp(1.24rem, 1.9vw, 1.52rem); letter-spacing: -0.024em; }
.pcard__tag { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent, var(--orange)); }

/* 產品識別鎖定組：小 icon ＋ 字標 */
.lockup { display: flex; align-items: center; gap: 12px; min-width: 0; }
.lockup--lg { gap: 15px; }

.pmark {
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--accent, var(--orange)) 12%, #fff);
  color: var(--accent, var(--orange));
}
.lockup--lg .pmark { width: 52px; height: 52px; border-radius: 15px; }
.lockup--lg .pmark svg { width: 28px; height: 28px; }
.lockup--sm .pmark { width: 32px; height: 32px; border-radius: 9px; }
.lockup--sm .pmark svg { width: 19px; height: 19px; }

/* 產品字標（使用各服務的實際 logo）
   三個字標的留白與字重不同，逐一做視覺補正，讓它們看起來一樣大。 */
.plogo { height: 30px; width: auto; }
.plogo--kol  { height: 26px; }
.plogo--leap { height: 34px; }
.plogo--ez   { height: 34px; }

.plogo--lg            { height: clamp(40px, 5.2vw, 52px); }
.plogo--lg.plogo--kol { height: clamp(32px, 4.2vw, 42px); }
.plogo--lg.plogo--leap,
.plogo--lg.plogo--ez  { height: clamp(42px, 5.6vw, 56px); }

.plogo--sm            { height: 22px; }
.plogo--sm.plogo--kol { height: 19px; }
.plogo--sm.plogo--leap,
.plogo--sm.plogo--ez  { height: 25px; }
.pcard__desc { color: var(--body); font-size: 0.95rem; }

.pcard__list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.pcard__list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--body);
  line-height: 1.65;
}
.pcard__list li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent, var(--orange));
  margin-top: 9px;
  margin-left: 5px;
}

.pcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.pcard__go {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.92rem; font-weight: 640;
  color: var(--accent, var(--orange));
}
.pcard__go svg { transition: transform 0.3s var(--ease); }
.pcard:hover .pcard__go svg { transform: translateX(5px); }

/* --------------------------------------------------------------------------
   10. Split / feature list
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.split--rev > *:first-child { order: 2; }
.split--top { align-items: start; }
@media (max-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr); }
  .split--rev > *:first-child { order: 0; }
}

.featlist { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.featlist li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: start;
}
.featlist li:first-child { border-top: 1px solid var(--line-soft); }
.featlist .n {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  padding-top: 4px;
  letter-spacing: 0.04em;
}
.featlist strong { display: block; font-weight: 660; font-size: 1rem; margin-bottom: 3px; }
.featlist span.d { color: var(--body); font-size: 0.915rem; line-height: 1.7; }

/* 步驟 */
.steps { counter-reset: s; display: grid; gap: clamp(16px, 2vw, 24px); }
.step {
  position: relative;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  display: grid;
  gap: 8px;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step__n {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-warm);
  color: #fff;
  font-size: 13px; font-weight: 700;
  margin-bottom: 4px;
}
.step h3 { font-size: 1.02rem; }
.step p { font-size: 0.9rem; color: var(--body); line-height: 1.7; }

/* --------------------------------------------------------------------------
   11. Metrics
   -------------------------------------------------------------------------- */
.metric {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  display: grid;
  gap: 7px;
}
.metric__v {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1;
  color: var(--orange);
}
.metric__k { font-size: 0.94rem; font-weight: 640; }
.metric__d { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* --------------------------------------------------------------------------
   12. Panel（取代終端機區塊的白底資訊面板）
   -------------------------------------------------------------------------- */
.panel {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.panel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.panel__title { font-weight: 660; font-size: 0.93rem; }
.panel__body { padding: 8px 20px 18px; }

.prow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}
.prow:last-child { border-bottom: 0; }
.prow__k { font-size: 0.9rem; color: var(--body); }
.prow__k small { display: block; font-size: 0.79rem; color: var(--dim); margin-top: 2px; }
.prow__v { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; white-space: nowrap; }
.prow__v--good { color: var(--green); }
.prow__v--warn { color: var(--orange); }

/* 引用示意 */
.quotebox {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-soft);
  padding: 16px 18px;
  font-size: 0.92rem;
  color: var(--body);
  line-height: 1.75;
}
.quotebox__src {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 12px; padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.cite {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--blue);
  background: rgba(63,140,174,.09);
  border-radius: 100px;
  padding: 4px 11px;
}

/* --------------------------------------------------------------------------
   13. Diagram
   -------------------------------------------------------------------------- */
.diagram {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  padding: clamp(20px, 3vw, 34px);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.diagram svg { width: 100%; height: auto; }
.flow-dash { stroke-dasharray: 5 7; animation: dash 1.8s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -24; } }

/* --------------------------------------------------------------------------
   14. Marquee
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  padding: 20px 0;
  background: var(--bg-soft);
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: slide 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 40px; padding-right: 40px; }
.marquee__item {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.marquee__item::after { content: "●"; font-size: 5px; color: var(--orange); }
@keyframes slide { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   15. Timeline
   -------------------------------------------------------------------------- */
.timeline { display: grid; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 6px; top: 10px; bottom: 20px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(229,129,30,.2));
}
.tl { position: relative; padding: 0 0 28px 30px; display: grid; gap: 5px; }
.tl::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
}
.tl__when { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--orange); text-transform: uppercase; }
.tl__what { font-weight: 660; font-size: 1.02rem; }
.tl__desc { color: var(--body); font-size: 0.91rem; line-height: 1.72; }

/* --------------------------------------------------------------------------
   16. Tables
   -------------------------------------------------------------------------- */
.tablewrap {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow-x: auto;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
table.t { width: 100%; border-collapse: collapse; min-width: 620px; font-size: 0.91rem; }
table.t th, table.t td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  color: var(--body);
}
table.t thead th {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 700;
  background: var(--bg-soft);
  white-space: nowrap;
}
table.t tbody tr:last-child td { border-bottom: 0; }
table.t tbody tr:hover { background: #FCFCFD; }
table.t td strong { font-weight: 660; color: var(--text); }
table.t td.num { font-variant-numeric: tabular-nums; white-space: nowrap; }
.yes { color: var(--green); font-weight: 620; }
.mid { color: var(--orange); font-weight: 620; }
.no  { color: var(--dim); font-weight: 560; }

/* --------------------------------------------------------------------------
   17. Pricing
   -------------------------------------------------------------------------- */
.plan {
  display: grid;
  gap: 18px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  align-content: start;
  transition: border-color 0.32s var(--ease), transform 0.32s var(--ease), box-shadow .32s var(--ease);
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan--hot { border-color: var(--orange); box-shadow: 0 12px 34px -18px rgba(229,129,30,.6); }
.plan__name { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.plan__price { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
.plan__price small { font-size: 0.8rem; font-weight: 500; color: var(--dim); letter-spacing: 0; }
.plan__for { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.plan__feat { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 0.875rem; color: var(--body); }
.plan__feat li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; align-items: start; }
.plan__feat li::before { content: "✓"; color: var(--green); font-size: 12px; font-weight: 700; line-height: 1.6; }

/* --------------------------------------------------------------------------
   18. FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  padding: 22px 42px 22px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-weight: 620;
  font-size: 1.02rem;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 29px;
  width: 10px; height: 10px;
  border-right: 2px solid var(--dim);
  border-bottom: 2px solid var(--dim);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease), border-color 0.2s;
}
.faq details[open] summary { color: var(--orange); }
.faq details[open] summary::after { transform: rotate(-135deg); border-color: var(--orange); }
.faq .faq__a { padding: 0 42px 24px 0; color: var(--body); font-size: 0.945rem; line-height: 1.82; }

/* --------------------------------------------------------------------------
   19. Note
   -------------------------------------------------------------------------- */
.note {
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--r) var(--r) 0;
  background: #FFFBF5;
  padding: 18px 22px;
  font-size: 0.92rem;
  color: var(--body);
  line-height: 1.78;
}
.note strong { color: var(--text); }
.note--blue  { border-left-color: var(--blue);  background: #F5FAFC; }
.note--green { border-left-color: var(--green); background: #F8FBF0; }

/* --------------------------------------------------------------------------
   20. CTA
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(38px, 6vw, 76px) clamp(24px, 5vw, 62px);
  background:
    radial-gradient(ellipse 70% 120% at 88% 110%, rgba(222,46,38,.10), transparent 60%),
    radial-gradient(ellipse 60% 100% at 10% -20%, rgba(229,129,30,.14), transparent 62%),
    var(--bg-tint);
  border: 1px solid rgba(229,129,30,.20);
  text-align: center;
}
.cta__inner { position: relative; z-index: 2; display: grid; gap: 20px; justify-items: center; max-width: 680px; margin-inline: auto; }

/* --------------------------------------------------------------------------
   21. Forms
   -------------------------------------------------------------------------- */
.field { display: grid; gap: 8px; }
.field label { font-size: 0.87rem; font-weight: 620; }
.field label .req { color: var(--red); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 15px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 0.94rem;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.field textarea { resize: vertical; min-height: 132px; line-height: 1.7; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(229,129,30,.15);
}
.field input::placeholder, .field textarea::placeholder { color: #A9B0BE; }

/* --------------------------------------------------------------------------
   22. Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-soft);
  padding-block: clamp(44px, 6vw, 68px) 32px;
  margin-top: clamp(56px, 8vw, 104px);
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 38px;
  padding-bottom: 38px;
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: minmax(0, 1fr); } }

.footer h4 {
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 700;
  margin-bottom: 15px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer li a { font-size: 0.9rem; color: var(--muted); transition: color 0.2s; }
.footer li a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--dim);
}

/* --------------------------------------------------------------------------
   23. Reveal
   -------------------------------------------------------------------------- */
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  transition-delay: var(--d, 0ms);
}
.rv.is-in { opacity: 1; transform: none; }

.hero__content > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.95s var(--ease) forwards;
}
.hero__content > *:nth-child(1) { animation-delay: 0.08s; }
.hero__content > *:nth-child(2) { animation-delay: 0.18s; }
.hero__content > *:nth-child(3) { animation-delay: 0.30s; }
.hero__content > *:nth-child(4) { animation-delay: 0.42s; }
.hero__content > *:nth-child(5) { animation-delay: 0.52s; }
.hero__content > *:nth-child(6) { animation-delay: 0.62s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .rv, .hero__content > * { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   24b. 情境照系統（index-photo.html 使用；不影響既有頁面）
   --------------------------------------------------------------------------
   每個情境區塊都是「底層漸層 + 上層照片」。照片沒放進來時只會畫漸層，
   不會出現破圖。

   ⚠ 照片路徑必須寫在這個 CSS 檔裡（下面的 .scene__bg--* ），
     不能透過 HTML 的 CSS 變數傳進來 —— 瀏覽器會把變數裡的相對路徑
     當成相對於樣式表解析，路徑會跑掉。

   要換上照片：把檔案放進 assets/img/scenes/，再把對應那行的註解拿掉。
   -------------------------------------------------------------------------- */
.scene { position: relative; isolation: isolate; }

.scene__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--scene-grad, linear-gradient(115deg, #FDF4E8 0%, #F6F1EA 44%, #EEF3F1 100%));
  background-size: cover;
  background-position: var(--scene-pos, center);
  background-repeat: no-repeat;
  opacity: var(--scene-op, 1);
}

/* ── 情境照圖層 ───────────────────────────────────────────────────────
   第一層＝照片，第二層＝漸層（照片缺席時的底）。 */
.scene__bg--street {
  background-image: url("../img/scenes/hero-street.jpg"),
                    var(--scene-grad, linear-gradient(115deg, #FDF4E8 0%, #F6F1EA 44%, #EEF3F1 100%));
  background-size: cover, cover;
  background-position: var(--scene-pos, center), center;
}

/* ↓↓ 照片備妥後，刪掉下面三段的註解符號即可生效 ↓↓ */

/* .scene__bg--counter {
  background-image: url("../img/scenes/band-counter.jpg"),
                    var(--scene-grad, linear-gradient(115deg, #FDF4E8 0%, #F6F1EA 44%, #EEF3F1 100%));
  background-size: cover, cover;
  background-position: var(--scene-pos, center), center;
} */

/* .scene__bg--team {
  background-image: url("../img/scenes/bg-team.jpg"),
                    var(--scene-grad, linear-gradient(115deg, #FDF4E8 0%, #F6F1EA 44%, #EEF3F1 100%));
  background-size: cover, cover;
  background-position: var(--scene-pos, center), center;
} */

/* .scene__bg--meeting {
  background-image: url("../img/scenes/band-meeting.jpg"),
                    var(--scene-grad, linear-gradient(115deg, #FDF4E8 0%, #F6F1EA 44%, #EEF3F1 100%));
  background-size: cover, cover;
  background-position: var(--scene-pos, center), center;
} */

/* 白紗：讓文字在照片上仍然清楚 */
.scene__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: var(--veil, linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.86) 34%, rgba(255,255,255,.42) 62%, rgba(255,255,255,.14) 100%));
}
.scene > .wrap, .scene__inner { position: relative; z-index: 2; }

/* 照片版 hero */
.hero--photo {
  background: none;
  min-height: min(90svh, 840px);
  padding-block: calc(var(--nav-h) + clamp(56px, 8vw, 104px)) clamp(76px, 10vw, 128px);
}
.hero--photo .hero__content { max-width: 610px; }
.hero--photo .hero__actions .btn:not(.btn--primary) {
  border-color: rgba(20, 24, 42, 0.42);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) {
  .hero--photo .scene__veil {
    --veil: linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.93) 54%, rgba(255,255,255,.78) 100%);
  }
}

/* 浮貼在 hero 下緣的指標帶 */
.statbar--float {
  margin-top: calc(-1 * clamp(38px, 6vw, 78px));
  z-index: 6;
  box-shadow: var(--shadow-lg);
}

/* 滿橫版情境帶 */
.band {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(300px, 40vw, 440px);
  overflow: hidden;
}
.band__quote {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.1vw, 2.4rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.026em;
  max-width: 19ch;
}
.band__by { margin-top: 16px; font-size: 0.92rem; color: var(--muted); }

/* 帶淡照片背景的一般區塊 */
.section--scene .scene__bg { opacity: var(--scene-op, .2); }
.section--scene .scene__veil {
  --veil: linear-gradient(180deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.72) 40%, rgba(255,255,255,.9) 100%);
}

/* --------------------------------------------------------------------------
   24. Utilities
   -------------------------------------------------------------------------- */
.skip {
  position: absolute;
  left: -9999px; top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--orange);
  color: #fff;
  border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.mt-s { margin-top: 14px; }
.mt   { margin-top: 26px; }
.mt-l { margin-top: 44px; }
.full { grid-column: 1 / -1; }
.flex { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* --------------------------------------------------------------------------
   25. Coming soon（未正式發佈產品的優雅遮罩）
   -------------------------------------------------------------------------- */
.pcard--soon { position: relative; }
.pcard--soon .pcard__desc,
.pcard--soon .pcard__list {
  filter: blur(4.5px);
  opacity: 0.5;
  user-select: none;
  pointer-events: none;
}
.soon-badge {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 24px;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid color-mix(in srgb, var(--accent, #317E7E) 42%, transparent);
  color: var(--accent, #317E7E);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 34px -14px rgba(18, 23, 41, 0.3);
}
.soon-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: soonPulse 2s ease-in-out infinite;
}
@keyframes soonPulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .soon-badge i { animation: none; } }

/* --------------------------------------------------------------------------
   26. Language switcher
   -------------------------------------------------------------------------- */
.lang { display: flex; align-items: center; gap: 2px; margin-left: 4px; }
.lang a {
  padding: 6px 9px;
  font-size: 0.78rem;
  font-weight: 650;
  border-radius: 8px;
  color: var(--muted);
  white-space: nowrap;
}
.lang a:hover { color: var(--text); }
.lang a.is-on { color: var(--text); background: rgba(18, 23, 41, 0.07); }
.drawer .lang { margin: 10px 0 0; gap: 6px; }
.drawer .lang a { font-size: 0.86rem; padding: 8px 12px; }
@media (max-width: 640px) { .nav__inner > .lang { display: none; } }

/* --------------------------------------------------------------------------
   27. Mystery product（發表前保密的產品卡）
   -------------------------------------------------------------------------- */
.pcard--mystery { position: relative; }
.mystery-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.2em;
  color: var(--accent, #317E7E);
  opacity: 0.7;
}
.pcard__list--redact li { list-style: none; }
.redact {
  display: inline-block;
  height: 12px;
  border-radius: 6px;
  vertical-align: middle;
  background: linear-gradient(90deg, #DEE2EA, #EEF0F4);
}
.redact--name { width: 96px; height: 14px; border-radius: 7px; }

/* --------------------------------------------------------------------------
   28. Testimonial wall（客戶回饋牆）
   -------------------------------------------------------------------------- */
.tm-wall {
  columns: 3;
  column-gap: 18px;
}
.tm-card {
  break-inside: avoid;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.tm-card:hover {
  border-color: rgba(201, 11, 144, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.tm-card::before {
  content: '“';
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.1rem;
  line-height: 0.6;
  color: var(--kol);
  opacity: 0.55;
  margin-bottom: 10px;
}
.tm-ask {
  font-size: 0.8rem;
  color: var(--dim);
  margin-bottom: 8px;
}
.tm-quote {
  font-size: 0.95rem;
  line-height: 1.88;
  color: var(--text);
  overflow-wrap: anywhere;
}
.tm-quote + .tm-quote { margin-top: 10px; }
.tm-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px dashed var(--line);
}
.tm-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 620;
  color: #A00973;
  background: rgba(201, 11, 144, 0.07);
  border: 1px solid rgba(201, 11, 144, 0.2);
  border-radius: 100px;
  padding: 4px 11px;
  white-space: nowrap;
}
.tm-type .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.7; }
.tm-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green);
  white-space: nowrap;
}
.tm-stat--hot { color: var(--orange); }

/* 精選卡（大張） */
.tm-feature {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
  display: grid;
  align-content: start;
  gap: 14px;
}
.tm-feature--tint {
  background: linear-gradient(160deg, #FFF7FC 0%, #FFFFFF 58%);
  border-color: rgba(201, 11, 144, 0.18);
}
.tm-feature .tm-quote { font-size: 1.02rem; }
.tm-feature__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--kol);
}
.tm-feature__num small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 4px;
}
.tm-mini { display: grid; gap: 12px; }
.tm-mini .tm-quote { font-size: 0.93rem; }
.tm-mini__item {
  border-left: 3px solid rgba(201, 11, 144, 0.35);
  padding-left: 14px;
}
.tm-mini__who { font-size: 0.78rem; color: var(--dim); margin-top: 5px; }

@media (max-width: 1024px) { .tm-wall { columns: 2; } }
@media (max-width: 640px)  { .tm-wall { columns: 1; } }

/* 客戶回饋輪播帶（首頁） */
.tm-slider {
  overflow: hidden;
  padding-block: 10px;
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.tm-slider__track {
  display: flex;
  width: max-content;
  animation: slide 64s linear infinite;
}
.tm-slider:hover .tm-slider__track { animation-play-state: paused; }
.tm-slider__group {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding-right: 18px;
}
.tm-slider .tm-card {
  width: min(360px, 80vw);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.tm-slider .tm-card .tm-meta { margin-top: auto; }
@media (prefers-reduced-motion: reduce) {
  .tm-slider__track { animation: none; }
  .tm-slider { mask-image: none; -webkit-mask-image: none; overflow-x: auto; }
}
