/* ==========================================================================
   滙富投資 (Huei Fu Investment) - web_v2.1 國際頂級管顧旗艦設計系統
   對標標準：PwC, KPMG, Deloitte Private, UBS Global Family Office
   設計核心：90% 極簡白灰基底 + 10% 滙富綠點綴 + 零 Emoji + 大留白
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+TC:wght@300;400;500;600;700&family=Noto+Serif+TC:wght@400;600;700;900&display=swap');

:root {
  /* 品牌標準綠色調（僅 5%~10% 點睛） */
  --brand-green: #2D5A27;          /* 沉穩經典深綠 */
  --brand-green-accent: #8DB824;   /* 亮草綠細線點綴 */
  --brand-green-subtle: #F0F6EC;   /* 極淡綠標籤背景 */
  --brand-green-dark: #1E3A24;     /* 頁尾深底 */

  /* 中性背景與表面色（90% 主體） */
  --bg-body: #FFFFFF;              /* 主體純白 */
  --bg-surface: #F8FAFC;           /* 次級區塊極淺冷白灰 */
  --bg-surface-alt: #F1F5F9;       /* 淺灰底 */
  --bg-card: #FFFFFF;

  /* 權威文字色彩 */
  --text-primary: #0F172A;         /* 頂級深炭墨黑 */
  --text-secondary: #334155;       /* 內文深灰 */
  --text-muted: #64748B;           /* 說明灰色 */
  --text-brand: #2D5A27;

  /* 邊框與分隔線 */
  --border-light: #E2E8F0;
  --border-subtle: #CBD5E1;
  --border-brand: #8DB824;

  /* 陰影（極致克制，避免浮誇） */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 12px 30px -4px rgba(15, 23, 42, 0.08);

  /* 字型設定 */
  --font-serif: 'Noto Serif TC', Georgia, serif;
  --font-sans: 'Noto Sans TC', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* 圓角 */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

/* 全域重設 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-secondary);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 96px 0;
}

/* 字型層次 */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

/* 區塊標題共用 */
.section-header {
  text-align: left;
  max-width: 840px;
  margin-bottom: 56px;
}

.section-header.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  background: var(--brand-green-subtle);
  color: var(--brand-green);
  border-left: 3px solid var(--brand-green);
}

.section-title {
  font-size: 2.25rem;
  line-height: 1.35;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* 統一導覽列頂部按鈕標準元件 (Header Action Buttons) */
.btn-nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1;
}

/* 1. VIP 深度評估按鈕 (淡雅綠底 + 墨綠邊框) */
.btn-nav-assessment {
  background: var(--brand-green-subtle);
  color: var(--brand-green);
  border: 1px solid var(--brand-green);
}
.btn-nav-assessment:hover {
  background: var(--brand-green);
  color: #FFFFFF;
}

/* 2. LINE 官方秘書按鈕 (白底 + LINE 綠邊框) */
.btn-nav-line {
  background: #FFFFFF;
  color: #06C755;
  border: 1px solid #06C755;
}
.btn-nav-line:hover {
  background: #06C755;
  color: #FFFFFF;
}

/* 3. 預約諮詢按鈕 (沉穩深墨綠實心) */
.btn-nav-booking {
  background: var(--brand-green);
  color: #FFFFFF;
  border: 1px solid var(--brand-green);
}
.btn-nav-booking:hover {
  background: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
}

/* 全域標準主按鈕 (用於頁面內部) */
.btn-primary-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 24px;
  background: var(--brand-green);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--brand-green);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-primary-brand:hover {
  background: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  color: #FFFFFF;
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 24px;
  background: #FFFFFF;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-secondary-outline:hover {
  border-color: var(--text-primary);
  background: var(--bg-surface);
}

/* ==========================================================================
   1. 導覽列 (Navbar) - 嚴格不換行與自適應
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.25s ease;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap; /* 絕對禁止換行 */
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap; /* 品牌名稱禁止換行 */
  flex-shrink: 0;
}

.brand-logo-svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-main-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-sub-text {
  font-size: 0.65rem;
  color: var(--brand-green);
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  white-space: nowrap;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.mobile-drawer-item {
  display: none;
}

.mobile-nav-controls {
  display: none;
}

.mobile-toggle {
  display: none;
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 1.2rem;
  height: 38px;
  padding: 0 12px;
  cursor: pointer;
  line-height: 1;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* ==========================================================================
   2. Hero 視覺核心 (國際管顧沉穩大器)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 115px 0 50px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-main-title {
  font-size: 2.85rem;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

/* Hero 右側：滙富投資生態圈夥伴關係圖 */
.hero-ecosystem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-ecosystem-image {
  width: 100%;
  max-width: 95%;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* 官方四大服務優勢 (極簡條塊) */
.advantages-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.advantage-item-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.advantage-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-green);
  background: var(--brand-green-subtle);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.advantage-title {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-weight: 700;
}

.advantage-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   3. 三大發力點核心服務展廳 (Pillars Matrix)
   ========================================================================== */
.pillars-section {
  background-color: #FFFFFF;
}

.pillar-nav-wrapper {
  display: flex;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

.pillar-nav-btn {
  padding: 14px 28px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.pillar-nav-btn.active {
  color: var(--brand-green);
  font-weight: 700;
}

.pillar-nav-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--brand-green);
}

.pillar-panel {
  display: none;
}

.pillar-panel.active {
  display: block;
}

.pillar-overview-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.pillar-overview-text h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pillar-overview-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 760px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.service-item-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-item-card:hover {
  border-color: var(--brand-green);
  box-shadow: var(--shadow-card);
}

.service-card-header {
  margin-bottom: 16px;
}

.service-card-title {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.service-card-summary {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-card-list {
  list-style: none;
  margin-bottom: 20px;
}

.service-card-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--bg-surface);
  position: relative;
  padding-left: 14px;
}

.service-card-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: bold;
}

.link-service-cta {
  color: var(--brand-green);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.link-service-cta:hover {
  gap: 10px;
}

/* 特約高階預防醫學與健檢網絡展區 */
.partner-feature-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--brand-green);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.partner-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-green);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

/* 尊榮生活管家標籤過濾 */
.lifestyle-filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.lifestyle-tab-btn {
  padding: 6px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lifestyle-tab-btn.active, .lifestyle-tab-btn:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #FFFFFF;
}

/* ==========================================================================
   4. 智識洞察與深度研究報告專欄 (Insights & Publications)
   ========================================================================== */
.insights-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.insight-article-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.insight-article-card:hover {
  border-color: var(--brand-green);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8rem;
}

.insight-category-tag {
  background: var(--brand-green-subtle);
  color: var(--brand-green);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.insight-date {
  color: var(--text-muted);
}

.insight-title {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.insight-summary {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.insight-footer {
  padding-top: 16px;
  border-top: 1px solid var(--bg-surface);
}

.btn-read-article {
  background: none;
  border: none;
  color: var(--brand-green);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: gap 0.2s ease;
}

.btn-read-article:hover {
  gap: 10px;
}

/* ==========================================================================
   5. VIP 家族需求線上尊榮評估器 (Assessment Tool)
   ========================================================================== */
.assessment-section {
  background-color: #FFFFFF;
}

.assessment-container-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  box-shadow: var(--shadow-sm);
}

.assessment-left-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.assessment-q-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.q-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.q-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.q-option-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.q-option-label:hover {
  background: #EDF2F7;
}

.q-option-label.selected {
  background: var(--brand-green-subtle);
  border-color: var(--brand-green);
}

.q-option-label input[type="radio"] {
  display: none;
}

.custom-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  margin-top: 3px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.q-option-label.selected .custom-radio {
  border-color: var(--brand-green);
  background: var(--brand-green);
}

.opt-text {
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.assessment-right-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 28px;
  border: 1px solid var(--border-light);
}

.radar-canvas-box {
  width: 280px;
  height: 280px;
  margin-bottom: 16px;
}

#assessment-radar-canvas {
  width: 100%;
  height: 100%;
}

.assessment-result-summary {
  width: 100%;
  text-align: center;
}

.result-badge {
  font-size: 0.75rem;
  color: var(--brand-green);
  background: var(--brand-green-subtle);
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-bottom: 8px;
}

.result-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.result-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.rec-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: 20px;
}

.rec-tag {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* ==========================================================================
   6. 官方四層價值金字塔 (Philosophy & Pyramid)
   ========================================================================== */
.philosophy-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
}

.pyramid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.pyramid-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: left;
  border-top: 3px solid var(--brand-green);
}

.pyramid-step-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 6px;
}

.pyramid-name {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pyramid-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   7. 常見問題 (FAQ)
   ========================================================================== */
.faq-section {
  background-color: #FFFFFF;
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item.open {
  border-color: var(--brand-green);
  background: #FFFFFF;
}

.faq-question {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 600;
  user-select: none;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: var(--brand-green);
  font-weight: bold;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ==========================================================================
   8. 頁尾與整合預約諮詢 (Option D: 午夜深海藏青 Midnight Navy)
   ========================================================================== */
.footer-cta-panel {
  background: #112240;
  border: 1px solid #233554;
  border-radius: var(--radius-md);
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 56px;
  box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

.footer-cta-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: #CCD6F6;
  margin-bottom: 12px;
}

.footer-cta-desc {
  color: #94A3B8;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.footer-cta-btns-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 16px;
  flex-wrap: nowrap;
}

.footer {
  background-color: #0A192F;
  color: #8892B0;
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand-info p {
  color: #8892B0;
  font-size: 0.88rem;
  margin-top: 14px;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-serif);
  color: #CCD6F6;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #8892B0;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #8DB824;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: #8892B0;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #1B2B48;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #717D9A;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-disclaimer-box {
  background: #061120;
  border: 1px solid #1B2B48;
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.75rem;
  color: #717D9A;
  line-height: 1.6;
}

/* ==========================================================================
   9. 行事曆時段選擇器 (Calendar Date & Time Picker Widget)
   ========================================================================== */
.time-picker-widget {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 14px 12px;
  background: var(--bg-surface);
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cal-month-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.cal-nav-btn {
  background: none;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--text-muted);
  transition: all 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav-btn:hover {
  background: var(--brand-green-accent);
  color: #fff;
  border-color: var(--brand-green-accent);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.cal-weekdays span {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  padding: 2px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 12px;
}

.cal-cell {
  text-align: center;
  padding: 5px 1px;
  font-size: 0.78rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-primary);
  line-height: 1.5;
  transition: background 0.12s, color 0.12s;
  user-select: none;
}

.cal-cell:not(.cal-past):not(.cal-empty):hover {
  background: rgba(141, 184, 36, 0.18);
  color: var(--text-primary);
}

.cal-cell.cal-selected {
  background: var(--brand-green-accent);
  color: #fff;
  font-weight: 600;
}

.cal-cell.cal-today:not(.cal-selected) {
  border: 1px solid var(--brand-green-accent);
  font-weight: 600;
  color: var(--brand-green);
}

.cal-cell.cal-past {
  color: var(--border-subtle);
  cursor: default;
}

.cal-cell.cal-empty {
  cursor: default;
}

.time-slots-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.time-slot-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--text-secondary);
  transition: all 0.15s;
  user-select: none;
}

.time-slot-pill:hover {
  border-color: var(--brand-green-accent);
  color: var(--brand-green);
}

.time-slot-pill input[type="checkbox"] {
  display: none;
}

.time-slot-pill:has(input:checked) {
  background: var(--brand-green-accent);
  border-color: var(--brand-green-accent);
  color: #fff;
  font-weight: 600;
}

.cal-summary {
  font-size: 0.78rem;
  color: var(--brand-green);
  min-height: 1.1em;
  font-weight: 500;
  line-height: 1.5;
}

/* ==========================================================================
   10. 彈窗系統 (Modals)
   ========================================================================== */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.custom-modal-overlay.active {
  display: flex;
  animation: modalFadeIn 0.2s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.modal-dialog {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-hover);
}

.modal-dialog.large-dialog {
  max-width: 780px;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--text-primary);
}

.modal-header {
  margin-bottom: 20px;
  text-align: left;
}

.modal-header h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* 表單元件 */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.92rem;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-green);
  background: #FFFFFF;
}

textarea.form-control {
  min-height: 80px;
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* 文章全文彈窗內部排版 */
.article-modal-title {
  font-size: 1.6rem;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.article-modal-summary-box {
  background: var(--bg-surface);
  border-left: 3px solid var(--brand-green);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.article-section-block {
  margin-bottom: 24px;
}

.article-sec-heading {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.article-paragraph {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 12px;
}

.article-cta-box {
  background: var(--brand-green-subtle);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  margin-top: 32px;
}

.article-cta-box h4 {
  font-size: 1.15rem;
  color: var(--brand-green);
  margin-bottom: 6px;
}

.article-cta-box p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}


/* ==========================================================================
   11. web_v2.1 專屬模組樣式 (年度方案 Services + 核心團隊 Team)
   ========================================================================== */

/* --- 頁面通用 Secondary Hero --- */
.page-hero-section {
  position: relative;
  padding: 120px 0 60px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.page-hero-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-green);
  background: var(--brand-green-subtle);
  border: 1px solid var(--border-brand);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-hero-title {
  font-size: 2.5rem;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-family: var(--font-serif);
}

.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 28px;
}

/* --- 年度方案卡片網格 (Pricing Cards) --- */
.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 60px;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-brand);
}

.pricing-card.featured {
  border: 2px solid var(--brand-green);
  box-shadow: 0 8px 24px rgba(45, 90, 39, 0.08);
}

.pricing-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-green);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-card-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-en-name {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brand-green);
  line-height: 1;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-target-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-target-box strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features-list li {
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-check-icon {
  color: var(--brand-green);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.pricing-card-footer {
  margin-top: auto;
}

.pricing-card-footer .btn-primary-brand,
.pricing-card-footer .btn-secondary-outline {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* --- 詳細方案比較表 (Comparison Table) --- */
.comparison-section {
  padding: 60px 0 80px;
  background: #FFFFFF;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 680px;
  background: #FFFFFF;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  line-height: 1.5;
}

.comparison-table th {
  background: var(--bg-surface);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border-light);
}

.comparison-table th.col-feature {
  width: 34%;
}

.comparison-table th.col-tier {
  width: 22%;
  text-align: center;
}

.comparison-table th.col-tier.featured-header {
  background: #EAF3E7;
  color: var(--brand-green);
  border-bottom: 2px solid var(--brand-green);
}

.comparison-table td.cell-center {
  text-align: center;
}

.comparison-table td.featured-cell {
  background: #FAFDF9;
  font-weight: 600;
}

.comparison-table tr:hover td {
  background: #F8FAF6;
}

.comparison-table tr.category-row td {
  background: var(--bg-surface);
  font-weight: 700;
  color: var(--brand-green);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 10px;
}

.table-check {
  color: var(--brand-green);
  font-weight: 800;
  font-size: 1.1rem;
}

.table-dash {
  color: #CBD5E1;
  font-size: 1.1rem;
}

.table-quota {
  font-weight: 700;
  color: var(--text-primary);
}

/* --- 服務流程四部曲 (Service Flow) --- */
.service-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.flow-step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  position: relative;
}

.flow-step-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-green);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.8;
}

.flow-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.flow-step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- 核心團隊與策略合作夥伴 (Team & Partners) --- */
.team-section-block {
  margin-bottom: 64px;
}

.team-block-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-block-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--brand-green);
  border-radius: 2px;
}

.team-block-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.team-cards-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.team-profile-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-profile-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.team-avatar-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1F401B 0%, #2D5A27 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 3px solid #EAF3E7;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.team-avatar-placeholder.partner-avatar {
  background: linear-gradient(135deg, #112240 0%, #233554 100%);
  border-color: #E2E8F0;
}

.team-info-box {
  flex: 1;
}

.team-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.team-tag.core {
  background: #EAF3E7;
  color: var(--brand-green);
  border: 1px solid var(--border-brand);
}

.team-tag.partner {
  background: #F1F5F9;
  color: #334155;
  border: 1px solid #CBD5E1;
}

.team-person-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-person-title {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-person-focus {
  font-size: 0.85rem;
  color: var(--brand-green);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-person-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

/* 策略合作網絡方塊 (Partner Network Grid) */
.partner-network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.partner-network-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  border-top: 3px solid var(--brand-green);
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.partner-network-item h5 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.partner-network-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* 大型生態圈夥伴圖展示區 */
.team-ecosystem-section {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 48px 36px;
  text-align: center;
  margin-top: 40px;
}

.team-ecosystem-img {
  width: 100%;
  max-width: 820px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* 首頁精簡版方案與團隊卡片 */
.home-section-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-green);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.home-section-cta-link:hover {
  gap: 10px;
  text-decoration: underline;
}

/* ==========================================================================
   手機側邊抽屜選單 (Mobile Drawer)
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #FFFFFF;
  box-shadow: -6px 0 24px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer-overlay.active .mobile-drawer-panel {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-surface);
}

.drawer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mobile-drawer-close {
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-drawer-close:hover {
  color: var(--text-primary);
  background: #FFFFFF;
}

.mobile-drawer-links {
  list-style: none;
  padding: 16px 0;
  margin: 0;
  flex: 1;
}

.mobile-drawer-links li {
  width: 100%;
}

.drawer-link {
  display: block;
  padding: 13px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

.drawer-link:hover {
  background: var(--bg-surface);
  color: var(--brand-green);
  padding-left: 28px;
}

.drawer-divider {
  height: 1px;
  background: var(--border-light);
  margin: 10px 20px;
}

.drawer-link.highlight-link {
  color: var(--brand-green);
}

.drawer-link.cta-link {
  color: #FFFFFF;
  background: var(--brand-green);
  margin: 8px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
}

.drawer-link.cta-link:hover {
  background: var(--brand-green-dark);
  color: #FFFFFF;
  padding-left: 24px;
}

.drawer-link.line-link {
  color: #06C755;
}

.mobile-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-surface);
}

/* ==========================================================================
   導覽列專屬標準化雙按鈕 (完全等高、等字級、等圓角、等內邊距)
   ========================================================================== */
.nav-actions-desktop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions-desktop .nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  min-height: 38px;
  max-height: 38px;
  padding: 0 16px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  border: 1px solid transparent;
  outline: none;
  margin: 0;
}

/* 左側次要按鈕：白底、精緻邊框、深色文字 */
.nav-actions-desktop .nav-btn-secondary {
  background: #FFFFFF;
  color: var(--text-primary);
  border-color: #CBD5E1;
}

.nav-actions-desktop .nav-btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--brand-green);
  color: var(--brand-green);
}

/* 右側主要按鈕：品牌綠底、白字 */
.nav-actions-desktop .nav-btn-primary {
  background: var(--brand-green);
  color: #FFFFFF;
  border-color: var(--brand-green);
}

.nav-actions-desktop .nav-btn-primary:hover {
  background: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  color: #FFFFFF;
}

.team-monogram-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1F401B 0%, #2D5A27 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 3px solid #EAF3E7;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   核心服務 Bullet 列表樣式 (嚴格對齊，禁止 overflow:hidden 遮問題)
   ========================================================================== */
.service-detail-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.service-detail-list li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.service-detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-green);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* 家族治理三大面向 3 欄排版 */
.services-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ==========================================================================
   簡化版年度方案卡 (視覺權重完全一致，無差別引導)
   ========================================================================== */
.pricing-cards-grid-equal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card-equal {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card-equal:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-brand);
}

.pricing-card-header-simple {
  margin-bottom: 16px;
}

.pricing-card-badge-simple {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-green);
  background: var(--brand-green-subtle);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.pricing-card-name-simple {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pricing-card-price-simple {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-card-price-simple span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: normal;
}

.pricing-card-target-simple {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 12px 0 18px;
  min-height: 42px;
}

.pricing-card-highlights-simple {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.pricing-card-highlights-simple li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.pricing-card-highlights-simple li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-green);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* 方案按鈕：微幅色階實心按鈕，權重相同 */
.btn-plan-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-plan-a {
  background: #1F401B;
  border-color: #1F401B;
  color: #FFFFFF;
}
.btn-plan-a:hover {
  background: #152C12;
  border-color: #152C12;
  color: #FFFFFF;
}

.btn-plan-b {
  background: #2D5A27;
  border-color: #2D5A27;
  color: #FFFFFF;
}
.btn-plan-b:hover {
  background: #23471E;
  border-color: #23471E;
  color: #FFFFFF;
}

.btn-plan-c {
  background: #3B6B34;
  border-color: #3B6B34;
  color: #FFFFFF;
}
.btn-plan-c:hover {
  background: #2D5A27;
  border-color: #2D5A27;
  color: #FFFFFF;
}

/* ==========================================================================
   策略合作與專業網絡三級視覺 (Level 1 / 2 / 3)
   ========================================================================== */
.partner-network-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.partner-item-clean {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  border-top: 3px solid var(--brand-green);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-item-clean:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.partner-level1-category {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-green);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.partner-level2-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.partner-level3-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

.team-person-title-list {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 6px;
}

.team-person-title-list div {
  margin-bottom: 4px;
}

/* 核心服務 Card 容器樣式 (恢復精緻白底卡片與對齊) */
.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-brand);
}

.service-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 14px;
  flex: 0 0 auto;
}

.service-detail-list {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  border-top: 1px dashed var(--border-light);
  padding-top: 12px;
}

.service-detail-list li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-size: 0.86rem;
}

.service-detail-list li:last-child {
  margin-bottom: 0;
}

.service-detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-green);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* 方案卡按鈕統一為同一種標準品牌綠色 */
.btn-plan-inquiry, .btn-plan-a, .btn-plan-b, .btn-plan-c {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  background: var(--brand-green) !important;
  border: 1px solid var(--brand-green) !important;
  color: #FFFFFF !important;
}

.btn-plan-inquiry:hover, .btn-plan-a:hover, .btn-plan-b:hover, .btn-plan-c:hover {
  background: var(--brand-green-dark) !important;
  border-color: var(--brand-green-dark) !important;
  color: #FFFFFF !important;
}

.nav-btn-line {
  background: #F0FDF4;
  border: 1px solid #06C755;
  color: #06C755;
}
.nav-btn-line:hover {
  background: #06C755;
  border-color: #06C755;
  color: #FFFFFF;
}
