/* ============================================================
   行業場景頁（程序化 SEO）— v3 Neo-Brutalism
   共用 landing.css 的 nav / footer；本檔只管頁面主體。
   規範：public-page-brutal skill（token only、硬陰影、貼紙卡）
   ============================================================ */

/* ---------- Hero：痛點共鳴 ---------- */
.ind-hero {
  padding: 96px 0 72px;
  position: relative;
}

.ind-hero-inner,
.ind-chat-inner,
.ind-vs-inner,
.ind-features-inner,
.ind-steps-inner,
.ind-faq-inner,
.ind-cta-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Hero 帶門面視覺 → 放寬雙欄（圖是主角，右欄吃較大比例） */
.ind-hero-inner {
  max-width: 1240px;
}

.ind-hero-grid.has-visual {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

/* 無展示圖的行業：文字欄維持閱讀寬度 */
.ind-hero-grid:not(.has-visual) .ind-hero-copy {
  max-width: 760px;
}

.ind-eyebrow {
  display: inline-flex;
  gap: 8px;
  font-family: var(--brand-v3-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand-v3-navy);
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand-v3-butter);
  border: 1.5px solid var(--brand-v3-navy);
  box-shadow: var(--brand-v3-shadow-sm);
}

/* 中文標題行距（同 landing 定調：拉丁密排、中文 1.12） */
:lang(zh-TW) .ind-title,
:lang(zh-TW) .ind-cta-title {
  line-height: 1.12;
}

.ind-title {
  font-family: var(--brand-v3-display);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  color: var(--brand-v3-navy);
  margin: 20px 0 32px;
  text-wrap: balance;
}

/* 痛點引文：細橘線 + 素文字（有門面圖後卡片退場，讓圖當主角） */
.ind-pain {
  border-left: 3px solid var(--brand-v3-orange);
  padding-left: 20px;
}

.ind-pain-line {
  font-family: var(--brand-v3-sans);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--brand-v3-ink-soft);
  margin: 0 0 6px;
}

.ind-pain-line:last-child {
  margin-bottom: 0;
  color: var(--brand-v3-navy);
  font-weight: 600;
}

.ind-turn {
  margin-top: 32px;
}

.ind-turn-line {
  font-family: var(--brand-v3-sans);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  line-height: 1.55;
  color: var(--brand-v3-navy);
  margin: 0;
}

/* ---------- 區塊標題 ---------- */
.ind-section-title {
  font-family: var(--brand-v3-display);
  font-size: clamp(26px, 3.6vw, 38px);
  color: var(--brand-v3-navy);
  margin: 0 0 28px;
}

/* ---------- 對話示範（寫死腳本，手機殼 mockup） ---------- */
.ind-chat {
  padding: 72px 0;
  background: var(--brand-v3-cream-2);
  border-top: 2.5px solid var(--brand-v3-navy);
  border-bottom: 2.5px solid var(--brand-v3-navy);
}

.ind-chat-mockup {
  max-width: 400px;
  margin: 0 auto;
  border: 2.5px solid var(--brand-v3-navy);
  border-radius: 36px;
  box-shadow: var(--brand-v3-shadow-lg);
  overflow: hidden;
  background: var(--brand-v3-paper);
}

.ind-chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--brand-v3-butter);
  border-bottom: 2px solid var(--brand-v3-navy);
}

.ind-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid var(--brand-v3-navy);
  object-fit: cover;
  background: var(--brand-v3-cream);
  flex: none;
}

.ind-chat-name {
  display: block;
  font-family: var(--brand-v3-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-v3-navy);
  line-height: 1.3;
}

.ind-chat-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--brand-v3-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brand-v3-ink-soft);
}

.ind-chat-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-v3-orange);
  animation: v3Pulse 1.8s ease-in-out infinite;
}

.ind-chat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 16px 22px;
}

.ind-chat-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 88%;
}

.ind-chat-msg--ai {
  align-self: flex-start;
}

.ind-chat-msg--visitor {
  align-self: flex-end;
}

.ind-chat-msg-avatar {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1.5px solid var(--brand-v3-navy);
  object-fit: cover;
  background: var(--brand-v3-cream);
  flex: none;
}

.ind-chat-bubble {
  margin: 0;
  font-family: var(--brand-v3-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--brand-v3-ink);
  padding: 10px 14px;
  border: 2px solid var(--brand-v3-navy);
  border-radius: 14px;
}

.ind-chat-msg--ai .ind-chat-bubble {
  background: var(--brand-v3-cream);
  border-bottom-left-radius: 4px;
}

.ind-chat-msg--visitor .ind-chat-bubble {
  background: var(--brand-v3-orange-soft);
  border-bottom-right-radius: 4px;
}

.ind-chat-note {
  align-self: center;
  font-family: var(--brand-v3-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brand-v3-navy);
  background: var(--brand-v3-butter);
  border: 1.5px solid var(--brand-v3-navy);
  border-radius: 999px;
  padding: 6px 14px;
  box-shadow: var(--brand-v3-shadow-sm);
  margin-top: 4px;
}

/* 訊息逐則進場（v3CardReveal 用獨立 translate 屬性，不吃 transform） */
.ind-chat-mockup.in-view .ind-chat-body > * {
  animation: v3CardReveal 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.ind-chat-mockup.in-view .ind-chat-body > *:nth-child(1) { animation-delay: 0.05s; }
.ind-chat-mockup.in-view .ind-chat-body > *:nth-child(2) { animation-delay: 0.17s; }
.ind-chat-mockup.in-view .ind-chat-body > *:nth-child(3) { animation-delay: 0.29s; }
.ind-chat-mockup.in-view .ind-chat-body > *:nth-child(4) { animation-delay: 0.41s; }
.ind-chat-mockup.in-view .ind-chat-body > *:nth-child(5) { animation-delay: 0.53s; }
.ind-chat-mockup.in-view .ind-chat-body > *:nth-child(6) { animation-delay: 0.65s; }
.ind-chat-mockup.in-view .ind-chat-body > *:nth-child(7) { animation-delay: 0.77s; }
.ind-chat-mockup.in-view .ind-chat-body > *:nth-child(8) { animation-delay: 0.89s; }

.ind-chat-disclaimer {
  font-family: var(--brand-v3-mono);
  font-size: 11.5px;
  color: var(--brand-v3-muted);
  text-align: center;
  margin: 12px 0 0;
}

.ind-chat-notes {
  margin-top: 24px;
}

.ind-chat-notes p {
  font-family: var(--brand-v3-sans);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--brand-v3-ink-soft);
  margin: 0 0 6px;
}

.ind-chat-try {
  font-family: var(--brand-v3-sans);
  font-size: 14.5px;
  color: var(--brand-v3-ink-soft);
  margin: 16px 0 0;
}

.ind-chat-try a {
  color: var(--brand-v3-orange-deep);
  font-weight: 700;
  text-decoration: none;
}

.ind-chat-try a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Hero 門面視覺：模板截圖（桌面＋手機雙裝置） ---------- */
.ind-showcase-stage {
  position: relative;
  /* 手機截圖右下外溢的空間 */
  padding: 0 12px 44px 0;
}

.ind-showcase-desktop {
  display: block;
  width: 94%;
  border: 2.5px solid var(--brand-v3-navy);
  border-radius: 16px;
  box-shadow: var(--brand-v3-shadow-lg);
  background: var(--brand-v3-paper);
}

.ind-showcase-mobile {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24%;
  border: 2.5px solid var(--brand-v3-navy);
  border-radius: 16px;
  box-shadow: var(--brand-v3-shadow-lg);
  background: var(--brand-v3-paper);
}

.ind-showcase-caption {
  font-family: var(--brand-v3-sans);
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--brand-v3-ink-soft);
  margin: 14px 0 0;
}

.ind-showcase-disclaimer {
  text-align: left;
  margin-top: 6px;
}

/* ---------- 一般 AI vs 你的 AI（品類教育：資料是你的 → 特殊的 AI） ---------- */
.ind-vs {
  padding: 72px 0;
}

.ind-vs-lead {
  font-family: var(--brand-v3-sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--brand-v3-ink-soft);
  margin: -12px 0 32px;
}

.ind-vs-question {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.ind-vs-q-bubble {
  font-family: var(--brand-v3-sans);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--brand-v3-ink);
  background: var(--brand-v3-orange-soft);
  border: 2px solid var(--brand-v3-navy);
  border-radius: 16px;
  border-bottom-right-radius: 4px;
  padding: 12px 20px;
  box-shadow: var(--brand-v3-shadow-sm);
  max-width: 520px;
  text-align: center;
}

.ind-vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.ind-vs-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 26px;
  border-radius: 24px;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.ind-vs-card--generic {
  background: var(--brand-v3-paper);
  border: 2px dashed var(--brand-v3-muted);
}

.ind-vs-card--yours {
  background: var(--brand-v3-butter);
  border: 2.5px solid var(--brand-v3-navy);
  box-shadow: var(--brand-v3-shadow-lg);
}

.ind-vs-card--yours:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--brand-v3-navy);
}

.ind-vs-label {
  align-self: flex-start;
  font-family: var(--brand-v3-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 12px;
}

.ind-vs-card--generic .ind-vs-label {
  color: var(--brand-v3-muted);
  border: 1.5px solid var(--brand-v3-muted);
  background: var(--brand-v3-cream);
}

.ind-vs-card--yours .ind-vs-label {
  color: var(--brand-v3-cream);
  border: 1.5px solid var(--brand-v3-navy);
  background: var(--brand-v3-navy);
  box-shadow: var(--brand-v3-shadow-sm);
}

.ind-vs-answer {
  flex: 1;
  font-family: var(--brand-v3-sans);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.ind-vs-card--generic .ind-vs-answer {
  color: var(--brand-v3-muted);
}

.ind-vs-card--yours .ind-vs-answer {
  color: var(--brand-v3-ink);
  font-weight: 600;
}

.ind-vs-note {
  font-family: var(--brand-v3-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
}

.ind-vs-note--generic {
  color: var(--brand-v3-muted);
}

.ind-vs-note--yours {
  color: var(--brand-v3-orange-deep);
}

/* vs 雙卡 stagger：一般 AI 先進、你的 AI 跟上 */
.ind-vs-grid.in-view > .ind-vs-card {
  animation: v3CardReveal 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.ind-vs-grid.in-view > .ind-vs-card:nth-child(1) { animation-delay: 0.05s; }
.ind-vs-grid.in-view > .ind-vs-card:nth-child(2) { animation-delay: 0.2s; }

.ind-vs-kicker {
  margin-top: 32px;
  text-align: center;
}

.ind-vs-kicker-line {
  font-family: var(--brand-v3-display);
  font-size: clamp(20px, 2.8vw, 26px);
  color: var(--brand-v3-navy);
  margin: 0 0 16px;
}

.ind-vs-kicker-line em {
  font-family: var(--brand-v3-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brand-v3-orange);
  font-variation-settings: "opsz" 144;
}

.ind-vs-knows {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.ind-vs-knows-lead {
  font-family: var(--brand-v3-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-v3-ink-soft);
}

.ind-vs-chip {
  font-family: var(--brand-v3-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--brand-v3-navy);
  background: var(--brand-v3-butter);
  border: 1.5px solid var(--brand-v3-navy);
  border-radius: 999px;
  padding: 6px 13px;
  box-shadow: var(--brand-v3-shadow-sm);
}

/* ---------- 功能 × 行業場景 ---------- */
.ind-features {
  padding: 72px 0;
}

.ind-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ind-feature-card {
  background: var(--brand-v3-paper);
  border: 2.5px solid var(--brand-v3-navy);
  border-radius: 24px;
  padding: 24px 26px;
  box-shadow: var(--brand-v3-shadow-lg);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.ind-feature-card:nth-child(2) { background: var(--brand-v3-butter); }
.ind-feature-card:nth-child(3) { background: var(--brand-v3-orange-soft); }

.ind-feature-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--brand-v3-navy);
}

.ind-feature-card h3 {
  font-family: var(--brand-v3-display);
  font-size: 20px;
  line-height: 1.2;
  color: var(--brand-v3-navy);
  margin: 0 0 8px;
}

.ind-feature-card p {
  font-family: var(--brand-v3-sans);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--brand-v3-ink-soft);
  margin: 0;
}

/* 功能卡 stagger 進場 */
.ind-features-grid.in-view > .ind-feature-card {
  animation: v3CardReveal 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.ind-features-grid.in-view > .ind-feature-card:nth-child(1) { animation-delay: 0.05s; }
.ind-features-grid.in-view > .ind-feature-card:nth-child(2) { animation-delay: 0.15s; }
.ind-features-grid.in-view > .ind-feature-card:nth-child(3) { animation-delay: 0.25s; }
.ind-features-grid.in-view > .ind-feature-card:nth-child(4) { animation-delay: 0.35s; }

/* ---------- 3 分鐘步驟 ---------- */
.ind-steps {
  padding: 72px 0;
}

.ind-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ind-step-card {
  background: var(--brand-v3-paper);
  border: 2.5px solid var(--brand-v3-navy);
  border-radius: 24px;
  padding: 24px 26px;
  box-shadow: var(--brand-v3-shadow-lg);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.ind-step-card:nth-child(2) { background: var(--brand-v3-butter); }

.ind-step-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--brand-v3-navy);
}

.ind-step-num {
  font-family: var(--brand-v3-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-v3-cream);
  background: var(--brand-v3-orange);
  border: 1.5px solid var(--brand-v3-navy);
  border-radius: 999px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ind-step-card h3 {
  font-family: var(--brand-v3-display);
  font-size: 19px;
  line-height: 1.2;
  color: var(--brand-v3-navy);
  margin: 12px 0 6px;
}

.ind-step-card p {
  font-family: var(--brand-v3-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--brand-v3-ink-soft);
  margin: 0;
}

.ind-trust-note {
  font-family: var(--brand-v3-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-v3-muted);
  text-align: center;
  margin: 24px 0 0;
}

/* ---------- FAQ ---------- */
.ind-faq {
  padding: 72px 0;
  background: var(--brand-v3-cream-2);
  border-top: 2.5px solid var(--brand-v3-navy);
}

.ind-faq-item {
  background: var(--brand-v3-paper);
  border: 2px solid var(--brand-v3-navy);
  border-radius: 16px;
  box-shadow: var(--brand-v3-shadow-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.ind-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--brand-v3-sans);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--brand-v3-navy);
  text-align: left;
}

.ind-faq-icon {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--brand-v3-orange-deep);
  transition: transform 0.25s ease;
}

.ind-faq-item.open .ind-faq-icon {
  transform: rotate(180deg);
}

.ind-faq-answer {
  display: none;
  padding: 0 20px 16px;
}

.ind-faq-item.open .ind-faq-answer {
  display: block;
}

.ind-faq-answer p {
  font-family: var(--brand-v3-sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--brand-v3-ink-soft);
  margin: 0;
}

/* ---------- Final CTA ---------- */
.ind-cta {
  padding: 88px 0;
  background: var(--brand-v3-navy);
}

.ind-cta-inner {
  text-align: center;
}

.ind-cta-title {
  font-family: var(--brand-v3-display);
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.1;
  color: var(--brand-v3-cream);
  margin: 0 0 12px;
  text-wrap: balance;
}

.ind-cta-sub {
  font-family: var(--brand-v3-sans);
  font-size: 16px;
  color: var(--brand-v3-cream);
  opacity: 0.85;
  margin: 0 0 28px;
}

.ind-cta-btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  border: 2px solid var(--brand-v3-cream);
  background: var(--brand-v3-orange);
  color: #FFFFFF;
  font-family: var(--brand-v3-sans);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--brand-v3-orange-deep);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ind-cta-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--brand-v3-orange-deep);
}

/* ---------- Hub 總覽頁（/for） ---------- */
.ind-hub-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

.ind-hub-hero {
  padding: 88px 0 40px;
}

.ind-hub-intro {
  font-family: var(--brand-v3-sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--brand-v3-ink-soft);
  margin: 0;
  max-width: 620px;
}

.ind-hub-list {
  padding: 32px 0 88px;
}

/* ---------- Hub：搜尋 ---------- */
.ind-hub-inner-wide {
  max-width: 1080px;
}

.ind-hub-search {
  position: relative;
  max-width: 420px;
  margin: 0 0 40px;
}

.ind-hub-search-icon {
  position: absolute;
  left: 17px;
  top: 50%;
  translate: 0 -50%;
  width: 17px;
  height: 17px;
  color: var(--brand-v3-navy);
  pointer-events: none;
}

.ind-hub-search-input {
  width: 100%;
  box-sizing: border-box;
  font-family: var(--brand-v3-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-v3-ink);
  background: var(--brand-v3-paper);
  border: 2.5px solid var(--brand-v3-navy);
  border-radius: 999px;
  padding: 12px 20px 12px 44px;
  box-shadow: var(--brand-v3-shadow-sm);
  transition: box-shadow 0.25s ease, translate 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.ind-hub-search-input:focus {
  outline: none;
  box-shadow: var(--brand-v3-shadow-md);
  translate: -1px -1px;
}

.ind-hub-search-input::placeholder {
  color: var(--brand-v3-muted);
  font-weight: 500;
}

/* ---------- Hub：族群分組 ---------- */
.ind-hub-group {
  margin: 0 0 44px;
}

.ind-hub-group:last-of-type {
  margin-bottom: 0;
}

.ind-hub-group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}

.ind-hub-group-name {
  font-family: var(--brand-v3-display);
  font-size: 22px;
  line-height: 1.1;
  color: var(--brand-v3-navy);
  margin: 0;
}

.ind-hub-group-count {
  font-family: var(--brand-v3-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand-v3-navy);
  background: var(--brand-v3-butter);
  border: 1.5px solid var(--brand-v3-navy);
  border-radius: 999px;
  padding: 2px 9px;
}

.ind-hub-group-rule {
  flex: 1;
  height: 0;
  border-top: 2px dashed var(--brand-v3-line);
}

/* ---------- Hub：掃視型卡片網格 ---------- */
.ind-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
  gap: 18px;
}

.ind-hub-card {
  display: flex;
  flex-direction: column;
  background: var(--brand-v3-paper);
  border: 2px solid var(--brand-v3-navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--brand-v3-shadow-md);
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}


.ind-hub-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--brand-v3-navy);
}

.ind-hub-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  border-bottom: 2px solid var(--brand-v3-navy);
  background: var(--brand-v3-cream-2);
}

.ind-hub-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.ind-hub-card-body {
  display: block;
  padding: 14px 16px 16px;
}

.ind-hub-name {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--brand-v3-display);
  font-size: 17.5px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--brand-v3-navy);
}

.ind-hub-arrow {
  flex: none;
  font-size: 16px;
  color: var(--brand-v3-orange-deep);
  transition: translate 0.25s ease;
}

.ind-hub-card:hover .ind-hub-arrow {
  translate: 4px 0;
}

.ind-hub-hook {
  display: block;
  margin-top: 5px;
  font-family: var(--brand-v3-sans);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--brand-v3-muted);
}

/* ---------- Hub：看更多 / 搜尋過濾狀態 ---------- */
.ind-hub-card-overflow {
  display: none;
}

.ind-hub-group.expanded .ind-hub-card-overflow,
body.ind-hub-searching .ind-hub-card-overflow {
  display: flex;
}

.ind-hub-card-filtered {
  display: none !important;
}

.ind-hub-group-filtered {
  display: none;
}

.ind-hub-more-btn {
  margin-top: 14px;
  font-family: var(--brand-v3-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-v3-navy);
  background: var(--brand-v3-butter);
  border: 2px solid var(--brand-v3-navy);
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
  box-shadow: var(--brand-v3-shadow-sm);
  transition: box-shadow 0.25s ease, translate 0.25s ease;
}

.ind-hub-more-btn:hover {
  box-shadow: var(--brand-v3-shadow-md);
  translate: -1px -1px;
}

.ind-hub-empty {
  font-family: var(--brand-v3-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--brand-v3-ink-soft);
  background: var(--brand-v3-cream-2);
  border: 2px dashed var(--brand-v3-navy);
  border-radius: 18px;
  padding: 22px 24px;
  margin: 8px 0 0;
}

/* Hub 卡片 stagger 進場 */
.ind-hub-grid.in-view > .ind-hub-card {
  animation: v3CardReveal 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.ind-hub-grid.in-view > .ind-hub-card:nth-child(1) { animation-delay: 0.05s; }
.ind-hub-grid.in-view > .ind-hub-card:nth-child(2) { animation-delay: 0.13s; }
.ind-hub-grid.in-view > .ind-hub-card:nth-child(3) { animation-delay: 0.21s; }
.ind-hub-grid.in-view > .ind-hub-card:nth-child(4) { animation-delay: 0.29s; }
.ind-hub-grid.in-view > .ind-hub-card:nth-child(n+5) { animation-delay: 0.37s; }

/* ---------- RWD ---------- */
@media (max-width: 960px) {
  /* Hero 收單欄：痛點文字先讀、門面圖接在轉折句後當證據 */
  .ind-hero-grid.has-visual {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .ind-hero-visual {
    max-width: 560px;
  }
}

@media (max-width: 820px) {
  .ind-hero { padding: 64px 0 48px; }
  .ind-chat, .ind-vs, .ind-features, .ind-steps, .ind-faq { padding: 48px 0; }
  .ind-vs-grid { grid-template-columns: 1fr; }
  .ind-vs-card { margin-top: 4px; }
  .ind-features-grid { grid-template-columns: 1fr; }
  .ind-feature-card { margin-top: 4px; }
  .ind-steps-grid { grid-template-columns: 1fr; }
  .ind-step-card { margin-top: 4px; }
}

@media (max-width: 640px) {
  .ind-hero-inner, .ind-chat-inner, .ind-vs-inner, .ind-features-inner, .ind-steps-inner, .ind-faq-inner, .ind-cta-inner, .ind-hub-inner {
    padding: 0 20px;
  }
  .ind-vs-q-bubble { font-size: 14.5px; }
  .ind-vs-card { padding: 20px 20px; }
  .ind-hub-hero { padding: 56px 0 28px; }
  .ind-hub-list { padding: 20px 0 56px; }
  .ind-hub-search { margin-bottom: 28px; }
  .ind-hub-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .ind-hub-group { margin-bottom: 32px; }
  .ind-hub-group-name { font-size: 19px; }
  .ind-hub-card { border-radius: 16px; }
  .ind-hub-card-body { padding: 11px 12px 13px; }
  .ind-hub-name { font-size: 15px; }
  .ind-hub-hook { font-size: 11.5px; margin-top: 4px; }
  .ind-pain { padding-left: 16px; }
  .ind-pain-line { font-size: 15px; }
  .ind-showcase-stage { padding: 0 0 36px; }
  .ind-showcase-desktop { width: 100%; }
  .ind-showcase-mobile { width: 28%; right: -6px; }
  .ind-showcase-caption { font-size: 13px; }
  .ind-chat-mockup { border-radius: 28px; }
  .ind-chat-body { padding: 16px 12px 18px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .ind-chat-dot { animation: none; }
  .ind-chat-mockup.in-view .ind-chat-body > *,
  .ind-vs-grid.in-view > .ind-vs-card,
  .ind-features-grid.in-view > .ind-feature-card,
  .ind-hub-grid.in-view > .ind-hub-card {
    animation: none;
  }
}
