/* ============================================================
   CoEldery 85 | 老有聯盟85 — Brand Design System v2
   Theme: White Base · Forest Green #228B22 · Ferrari Red #FF2800
   Fonts: Montserrat (EN) | Noto Sans TC (繁中)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap');

/* ── CSS Variables ── */
:root {
  --green:        #228B22;
  --green-dark:   #1a6b1a;
  --green-light:  #2da52d;
  --green-pale:   #e8f5e9;
  --green-mid:    #3aaa3a;
  --red:          #FF2800;
  --red-dark:     #cc2000;
  --red-light:    #ff5533;
  --red-pale:     #fff0ee;
  --white:        #ffffff;
  --off-white:    #fafaf8;
  --gray-light:   #f4f4f0;
  --gray-mid:     #e0e0d8;
  --gray-dark:    #999990;
  --text-dark:    #1a1a1a;
  --text-body:    #3a3a3a;
  --text-muted:   #777770;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.14);
  --shadow-green: 0 8px 32px rgba(34,139,34,0.25);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --font-en:      'Montserrat', sans-serif;
  --font-tc:      'Noto Sans TC', sans-serif;
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-tc);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4 { line-height: 1.3; }

/* ══════════════════════════════════════
   NAVIGATION — 白底常駐，無透明態
   ══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 48px; height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
}
#navbar.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}
.nav-logo {
  display: flex; align-items: center;
  line-height: 0; transition: var(--transition);
}
.nav-logo img {
  height: 48px; width: auto;
  transition: var(--transition);
}
.nav-logo img:hover { opacity: 0.85; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--text-body); transition: var(--transition);
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px;
  font-weight: 700 !important;
  transition: var(--transition) !important;
  box-shadow: 0 2px 12px rgba(34,139,34,0.3);
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-green) !important;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px; transition: var(--transition);
}

/* ══════════════════════════════════════
   DROPDOWN MENU — 下拉菜單
   ══════════════════════════════════════ */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex; align-items: center; gap: 4px;
}
.nav-dropdown > a::after {
  content: '▾';
  font-size: 0.75rem;
  transition: transform 0.25s ease;
  display: inline-block;
}
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-mid);
  padding: 8px 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* 分隔線標題 */
.dropdown-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 20px 4px;
  margin-top: 4px;
}
.dropdown-section-title:first-child { margin-top: 0; }
.dropdown-divider {
  height: 1px;
  background: var(--gray-mid);
  margin: 6px 12px;
}
/* 每個下拉項目 */
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  transition: var(--transition);
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  background: var(--green-pale);
  color: var(--green);
  padding-left: 26px;
}
.dropdown-menu li a .drop-icon {
  font-size: 1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}
/* 榮譽顧問特殊樣式（紅色強調） */
.dropdown-menu li.drop-advisor a {
  color: var(--red);
  font-weight: 700;
}
.dropdown-menu li.drop-advisor a:hover {
  background: var(--red-pale);
  color: var(--red-dark);
}
/* 查看全部連結 */
.dropdown-menu li.drop-all a {
  color: var(--green);
  font-weight: 700;
  border-top: 1px solid var(--gray-mid);
  margin-top: 4px;
  padding-top: 10px;
}
.dropdown-menu li.drop-all a:hover {
  background: var(--green-pale);
}

/* ── 手機版下拉（展開/收合） ── */
@media (max-width: 900px) {
  .nav-dropdown > a::after { display: none; }
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    border-top: 1px solid var(--gray-mid) !important;
    border-radius: 0 !important;
    background: var(--gray-light) !important;
    padding: 4px 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.2s ease, max-height 0.3s ease, visibility 0.2s !important;
    pointer-events: none !important;
  }
  .nav-dropdown.mobile-open .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 600px;
    pointer-events: auto !important;
  }
  .dropdown-menu li a {
    padding: 10px 32px;
    font-size: 0.88rem;
  }
  .dropdown-menu li a:hover { padding-left: 36px; }
  .dropdown-section-title { padding: 8px 32px 2px; }
  .dropdown-divider { margin: 4px 16px; }
  .dropdown-menu li.drop-all a { border-top: none; margin-top: 0; }
}

/* ══════════════════════════════════════
   HERO — 白底，Logo 為視覺核心
   ══════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--white);
  display: flex; align-items: center;
  padding: 76px 24px 0; /* 76px = navbar height */
  position: relative; overflow: hidden;
  max-width: 100vw; box-sizing: border-box;
}

/* 右上角裝飾性大圓弧 */
#hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
  pointer-events: none;
}
/* 左下角法拉利紅裝飾 */
#hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,40,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 80px 0 80px;
}

/* 左側：文字 */
.hero-text { display: flex; flex-direction: column; gap: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 50px;
  background: var(--green-pale); border: 1px solid rgba(34,139,34,0.25);
  color: var(--green); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px; width: fit-content;
}
.hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.hero-headline {
  font-family: var(--font-tc);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 8px;
}
.hero-headline .green { color: var(--green); }
.hero-headline .red { color: var(--red); }

.hero-en-tagline {
  font-family: var(--font-en);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray-dark); margin-bottom: 28px;
}

.hero-desc {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--text-muted); line-height: 1.85;
  margin-bottom: 40px; max-width: 480px;
}
.hero-desc strong { color: var(--green); font-weight: 700; }

.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-divider {
  height: 1px; background: var(--gray-mid); margin-bottom: 36px;
}

.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
}
.hero-stat-item { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: var(--font-en); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900; color: var(--green); line-height: 1;
}
.hero-stat-num .unit { font-size: 0.55em; color: var(--green-mid); }
.hero-stat-label {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.4;
}

/* 右側：Logo 視覺 */
.hero-visual {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative;
}
.hero-logo-wrap {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.hero-logo-bg {
  position: absolute;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--green-pale) 0%, rgba(232,245,233,0.3) 60%, transparent 80%);
}
.hero-logo-main {
  width: clamp(280px, 38vw, 420px);
  height: auto; position: relative; z-index: 1;
  filter: drop-shadow(0 16px 48px rgba(34,139,34,0.2)) drop-shadow(0 4px 16px rgba(0,0,0,0.08));
  animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* 角標 */
.hero-logo-tag {
  position: absolute; background: var(--white);
  border-radius: var(--radius-md); padding: 12px 16px;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-mid);
  display: flex; flex-direction: column; gap: 2px;
}
.hero-logo-tag.tag-top-right {
  top: 16px; right: -16px;
}
.hero-logo-tag.tag-bottom-left {
  bottom: 24px; left: -16px;
}
.hero-logo-tag-num {
  font-family: var(--font-en); font-size: 1.4rem; font-weight: 900;
  color: var(--green); line-height: 1;
}
.hero-logo-tag-label {
  font-size: 0.72rem; color: var(--text-muted); white-space: nowrap;
}
.tag-red .hero-logo-tag-num { color: var(--red); }

/* 捲動提示 */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--gray-dark); font-size: 0.72rem; letter-spacing: 0.08em;
  animation: bounceScroll 2s infinite;
}
.scroll-indicator::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--green), transparent);
  border-radius: 1px;
}
@keyframes bounceScroll { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ══════════════════════════════════════
   BUTTONS — 全站
   ══════════════════════════════════════ */
.btn-primary {
  background: var(--green); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-tc); font-size: 1rem; font-weight: 700;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 2px 12px rgba(34,139,34,0.3);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-green); }

.btn-outline {
  background: transparent; color: var(--green);
  border: 2px solid var(--green);
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-tc); font-size: 1rem; font-weight: 700;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent; color: var(--text-dark);
  border: 2px solid var(--gray-mid);
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-tc); font-size: 1rem; font-weight: 600;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-dark:hover { border-color: var(--green); color: var(--green); }

.btn-red {
  background: var(--red); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-tc); font-size: 1rem; font-weight: 700;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ══════════════════════════════════════
   SECTION LAYOUT
   ══════════════════════════════════════ */
section { padding: 100px 24px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; box-sizing: border-box; }
.section-label {
  display: inline-block; font-family: var(--font-en);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green);
  background: var(--green-pale); padding: 6px 16px; border-radius: 50px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-tc); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; color: var(--text-dark); margin-bottom: 16px; line-height: 1.25;
}
.section-title .accent { color: var(--green); }
.section-title .accent-red { color: var(--red); }
.section-subtitle {
  font-size: 1.02rem; color: var(--text-muted); max-width: 640px; line-height: 1.85;
}
.section-header { margin-bottom: 56px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ══════════════════════════════════════
   PROBLEM vs SOLUTION
   ══════════════════════════════════════ */
#about-section { background: var(--gray-light); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.compare-card {
  padding: 40px; border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.compare-card.bad {
  background: var(--white); border: 2px solid var(--gray-mid);
}
.compare-card.good {
  background: var(--green); color: var(--white);
  box-shadow: var(--shadow-green);
}
.compare-card-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 50px;
  margin-bottom: 20px; display: inline-block;
}
.compare-card.bad .compare-card-tag { background: var(--red-pale); color: var(--red); }
.compare-card.good .compare-card-tag { background: rgba(255,255,255,0.2); color: var(--white); }
.compare-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 20px; }
.compare-card.bad h3 { color: var(--text-dark); }
.compare-card.good h3 { color: var(--white); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.95rem; line-height: 1.6;
}
.compare-list li::before { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.compare-card.bad .compare-list li::before { content: '✕'; color: var(--red); }
.compare-card.good .compare-list li::before { content: '✓'; color: rgba(255,255,255,0.9); }
.compare-card.bad .compare-list li { color: var(--text-muted); }
.compare-card.good .compare-list li { color: rgba(255,255,255,0.88); }

/* ══════════════════════════════════════
   85% PROMISE
   ══════════════════════════════════════ */
#promise-section { background: var(--white); }
.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.promise-big-num {
  font-family: var(--font-en); font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900; color: var(--green); line-height: 0.9;
}
.promise-big-num::after { content: '%'; font-size: 0.4em; color: var(--green-mid); }
.promise-big-label { font-size: 1.15rem; font-weight: 700; color: var(--text-dark); margin-top: 8px; }
.promise-breakdown { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.promise-bar-item { display: flex; align-items: center; gap: 16px; }
.promise-bar-label { width: 170px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }
.promise-bar-track { flex: 1; height: 10px; background: var(--gray-light); border-radius: 5px; overflow: hidden; }
.promise-bar-fill { height: 100%; border-radius: 5px; }
.promise-bar-pct { width: 36px; text-align: right; font-family: var(--font-en); font-weight: 800; font-size: 0.9rem; color: var(--green); }
.promise-legal-note {
  margin-top: 28px; padding: 18px 22px;
  background: var(--green-pale); border-radius: var(--radius-sm);
  border-left: 4px solid var(--green);
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.7;
}

/* ══════════════════════════════════════
   ROLES
   ══════════════════════════════════════ */
#roles-section { background: var(--off-white); }
.roles-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.role-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 28px 20px; text-align: center;
  transition: var(--transition); border: 2px solid transparent;
  position: relative; overflow: hidden;
}
.role-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--green);
}
.role-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green); }
.role-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.role-en {
  font-family: var(--font-en); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 6px;
}
.role-name { font-size: 1.05rem; font-weight: 900; color: var(--text-dark); margin-bottom: 10px; }
.role-tagline { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.role-learn-more {
  font-size: 0.8rem; font-weight: 700; color: var(--green);
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.role-learn-more::after { content: '→'; transition: var(--transition); }
.role-card:hover .role-learn-more::after { transform: translateX(4px); }

/* ══════════════════════════════════════
   SPECTRUM
   ══════════════════════════════════════ */
#spectrum-section { background: var(--white); }
.spectrum-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--gray-mid);
}
.spectrum-item {
  padding: 36px 20px; text-align: center; transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--white); border-right: 1px solid var(--gray-mid);
}
.spectrum-item:last-child { border-right: none; }
.spectrum-item:hover { background: var(--green-pale); transform: translateY(-4px); z-index: 1; }
.spectrum-emoji { font-size: 2rem; }
.spectrum-type { font-size: 1rem; font-weight: 900; color: var(--green); }
.spectrum-age { font-size: 0.78rem; color: var(--text-muted); }
.spectrum-quote { font-size: 0.8rem; color: var(--text-body); font-style: italic; line-height: 1.5; }

/* ══════════════════════════════════════
   GOVERNANCE (深色區塊保留，用作對比)
   ══════════════════════════════════════ */
#governance-section { background: var(--green-pale); color: var(--text-dark); }
#governance-section .section-label { background: rgba(34,139,34,0.12); color: var(--green-dark); }
#governance-section .section-title { color: var(--text-dark); }
#governance-section .section-subtitle { color: var(--text-body); max-width: 640px; }
#governance-section .section-title .accent { color: var(--green); }
.committees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.committee-card {
  background: var(--white); border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md); padding: 28px; transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.committee-card:hover { background: var(--white); border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.committee-icon { font-size: 1.8rem; margin-bottom: 14px; }
.committee-name { font-size: 1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.committee-tagline { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }
.trust-strip {
  display: flex; gap: 36px; justify-content: center; flex-wrap: wrap;
  margin-top: 60px; padding-top: 48px; border-top: 1px solid var(--gray-mid);
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.trust-icon { font-size: 2rem; }
.trust-label { font-size: 0.82rem; color: var(--text-muted); max-width: 110px; }

/* ══════════════════════════════════════
   PARTNER
   ══════════════════════════════════════ */
#partner-section { background: var(--off-white); }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-card {
  background: var(--white); border-radius: var(--radius-md); padding: 32px;
  transition: var(--transition); border: 2px solid var(--gray-mid);
}
.partner-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.partner-type { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.partner-title { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.partner-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════════
   CTA BANNER — 森林綠底
   ══════════════════════════════════════ */
#cta-section {
  background: var(--green);
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
  text-align: center; padding: 100px 24px;
  position: relative; overflow: hidden;
}
#cta-section::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.06); pointer-events: none;
}
#cta-section .section-title { color: var(--white); }
#cta-section .section-subtitle { color: rgba(255,255,255,0.8); margin: 0 auto 40px; }
.btn-white {
  background: var(--white); color: var(--green);
  padding: 16px 44px; border-radius: 50px;
  font-family: var(--font-tc); font-size: 1.05rem; font-weight: 800;
  transition: var(--transition); display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 16px 44px; border-radius: 50px;
  font-family: var(--font-tc); font-size: 1.05rem; font-weight: 700;
  transition: var(--transition); display: inline-block;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
  background: #fff;
  color: var(--text-body);
  padding: 64px 24px 32px;
  border-top: 1px solid var(--gray-mid);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo-img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  /* 白底背景，無需 mix-blend-mode */
}
.footer-tagline { font-size: 0.88rem; line-height: 1.75; max-width: 260px; color: var(--text-secondary); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-secondary); transition: var(--transition); }
.footer-links a:hover { color: var(--green); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--gray-mid);
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 16px; font-size: 0.78rem; color: var(--text-secondary);
}
.footer-legal { max-width: 580px; line-height: 1.65; }

/* ══════════════════════════════════════
   INNER PAGE HERO — 白底風格
   ══════════════════════════════════════ */
.page-hero {
  padding: 140px 24px 80px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,40,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-tc {
  font-family: var(--font-en); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-tc); font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--text-dark); margin-bottom: 20px; line-height: 1.15;
}
.page-hero-title .accent { color: var(--green); }
.page-hero-title .accent-red { color: var(--red); }
.page-hero-sub {
  font-size: 1.05rem; color: var(--text-muted); max-width: 560px;
  margin: 0 auto; line-height: 1.85;
}

/* ══════════════════════════════════════
   INNER PAGE COMPONENTS
   ══════════════════════════════════════ */
.committees-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.committee-full-card {
  background: var(--white); border-radius: var(--radius-md); padding: 36px;
  border: 2px solid var(--gray-mid); transition: var(--transition);
}
.committee-full-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.committee-full-icon { font-size: 2.2rem; margin-bottom: 14px; }
.committee-full-name { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.committee-full-tagline { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 18px; }
.committee-powers { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.committee-powers li { font-size: 0.86rem; color: var(--text-body); display: flex; gap: 8px; }

/* Charter */
.charter-content { max-width: 800px; margin: 0 auto; }
.charter-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--gray-mid); }
.charter-section:last-child { border-bottom: none; }
.charter-section h3 { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.charter-section p,
.charter-section li { font-size: 0.95rem; color: var(--text-body); line-height: 1.85; }
.charter-section ul,
.charter-section ol { padding-left: 24px; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.charter-highlight {
  background: var(--green-pale); border-left: 4px solid var(--green);
  padding: 18px 22px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 18px 0;
}
.charter-highlight p { font-weight: 600; color: var(--green-dark); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item-label { font-weight: 700; color: var(--text-dark); margin-bottom: 4px; font-size: 0.9rem; }
.contact-item-value { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); }
.form-input, .form-select, .form-textarea {
  padding: 13px 16px; border-radius: var(--radius-sm);
  border: 2px solid var(--gray-mid);
  font-family: var(--font-tc); font-size: 0.95rem; color: var(--text-dark);
  transition: var(--transition); width: 100%; background: var(--white);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,139,34,0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  background: var(--green); color: var(--white);
  padding: 15px 40px; border-radius: 50px;
  font-family: var(--font-tc); font-size: 1rem; font-weight: 700;
  transition: var(--transition); width: 100%;
  box-shadow: 0 2px 12px rgba(34,139,34,0.3);
}
.btn-submit:hover { background: var(--green-dark); }

/* ══════════════════════════════════════
   VISUAL MODULES — 視覺化整合系統 v2
   ══════════════════════════════════════ */

/* ── 1. 數字證據卡 (Evidence Cards) ── */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 48px 0;
}
.evidence-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--gray-mid);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.evidence-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--green);
}
.evidence-card.accent-red::before { background: var(--red); }
.evidence-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.evidence-num {
  font-family: var(--font-en);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.evidence-card.accent-red .evidence-num { color: var(--red); }
.evidence-unit {
  font-size: 0.55em;
  color: var(--green-mid);
  font-weight: 700;
}
.evidence-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.evidence-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── 2. 流程圖 (Process Flow) ── */
.process-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 48px 0;
  overflow-x: auto;
  padding-bottom: 8px;
}
.process-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.process-step::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 32px;
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 900;
  z-index: 1;
}
.process-step:last-child::after { display: none; }
.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(34,139,34,0.3);
}
.process-step-num {
  position: absolute;
  top: -8px;
  right: calc(50% - 36px);
  width: 20px;
  height: 20px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-label {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.process-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── 3. 橫向流程條 (Horizontal Steps) ── */
.steps-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 40px 0;
}
.step-bar-item {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.step-bar-item:hover { background: var(--green-pale); }
.step-bar-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  opacity: 0.25;
  margin-bottom: 8px;
}
.step-bar-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.step-bar-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── 4. 角色識別卡 (Role Identity Cards) ── */
.role-identity-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 48px 0;
}
.role-id-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  border: 2px solid var(--gray-mid);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.role-id-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: var(--transition);
}
.role-id-card:hover::after { transform: scaleX(1); }
.role-id-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-green);
}
.role-id-card.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}
.role-id-card.active .role-id-name { color: var(--white); }
.role-id-card.active .role-id-en { color: rgba(255,255,255,0.7); }
.role-id-card.active .role-id-pct { color: var(--white); }
.role-id-emoji { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.role-id-en {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.role-id-name {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.role-id-pct {
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green);
}
.role-id-pct-label { font-size: 0.65rem; color: var(--text-muted); }

/* ── 5. 利潤分配環形圖 (Donut Chart Module) ── */
.donut-module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin: 48px 0;
}
.donut-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}
.donut-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.donut-center-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.donut-center-num {
  font-family: var(--font-en);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.donut-center-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
}
.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.donut-legend-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.donut-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.donut-legend-bar {
  flex: 1;
  height: 6px;
  background: var(--gray-light);
  border-radius: 3px;
  overflow: hidden;
}
.donut-legend-fill {
  height: 100%;
  border-radius: 3px;
}
.donut-legend-label {
  min-width: 100px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.donut-legend-pct {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-dark);
  min-width: 38px;
  text-align: right;
}

/* ── 6. Sankey 簡化流向圖 ── */
.sankey-module {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 48px 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  overflow-x: auto;
}
.sankey-inner {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 700px;
}
.sankey-source {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  min-width: 140px;
}
.sankey-source-label { font-size: 0.82rem; opacity: 0.7; margin-bottom: 4px; }
.sankey-source-val {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
}
.sankey-flows {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 24px;
}
.sankey-flow {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sankey-flow-line {
  height: 8px;
  border-radius: 4px;
  transition: var(--transition);
}
.sankey-flow-end {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  min-width: 140px;
}
.sankey-flow-pct {
  font-family: var(--font-en);
  font-size: 0.8rem;
  font-weight: 900;
  min-width: 36px;
  color: var(--text-muted);
}

/* ── 7. 生態系統圖 (Ecosystem Map) ── */
.ecosystem-map {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gray-mid);
}
.ecosystem-center {
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 48px;
  text-align: center;
  box-shadow: var(--shadow-green);
  position: relative;
  z-index: 2;
}
.ecosystem-center-label {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-bottom: 4px;
}
.ecosystem-center-name {
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.2;
}
.ecosystem-spokes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ecosystem-node {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  border: 2px solid var(--gray-mid);
  transition: var(--transition);
  position: relative;
}
.ecosystem-node:hover {
  border-color: var(--green);
  background: var(--green-pale);
  transform: scale(1.02);
}
.ecosystem-node-icon { font-size: 1.8rem; margin-bottom: 8px; }
.ecosystem-node-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.ecosystem-node-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.ecosystem-connector {
  position: absolute;
  background: var(--green);
  opacity: 0.15;
}

/* ── 8. FAQ 摺疊區塊 ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 40px auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid var(--gray-mid);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--green); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}
.faq-q-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-toggle {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ── 9. 引言/見證卡 (Quote Cards) ── */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 48px 0;
}
.quote-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 2px solid var(--gray-mid);
  position: relative;
  transition: var(--transition);
}
.quote-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.quote-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--green-pale);
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 20px;
  font-weight: 900;
}
.quote-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 24px;
}
.quote-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.quote-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
}
.quote-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── 10. 品牌時間軸 (Brand Timeline) ── */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 48px auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--green-pale));
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
}
.timeline-dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-dot.red {
  background: var(--red);
  box-shadow: 0 0 0 2px var(--red);
}
.timeline-year {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 6px;
}
.timeline-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.timeline-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── 11. 比較表 (Comparison Table) ── */
.compare-table-wrap {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: var(--radius-md);
  border: 2px solid var(--gray-mid);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.compare-table th {
  padding: 16px 20px;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: left;
  background: var(--gray-light);
  color: var(--text-dark);
  border-bottom: 2px solid var(--gray-mid);
}
.compare-table th.highlight {
  background: var(--green);
  color: var(--white);
}
.compare-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-light);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.highlight { background: var(--green-pale); font-weight: 700; color: var(--green-dark); }
.compare-table .check { color: var(--green); font-weight: 900; }
.compare-table .cross { color: var(--red); }

/* ── 12. 保障條款卡 (Charter Clause Cards) ── */
.clause-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.clause-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border-left: 4px solid var(--green);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.clause-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.clause-card.red { border-left-color: var(--red); }
.clause-num {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 8px;
}
.clause-card.red .clause-num { color: var(--red); }
.clause-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.clause-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── 13. 生態圖節點 (Node Map) ── */
.node-map {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin: 48px 0;
}
.node-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.node-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 2px solid var(--gray-mid);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
}
.node-item:hover { border-color: var(--green); background: var(--green-pale); }
.node-icon { font-size: 1.6rem; flex-shrink: 0; }
.node-name { font-size: 0.9rem; font-weight: 800; color: var(--text-dark); }
.node-desc { font-size: 0.75rem; color: var(--text-muted); }
.node-center {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  color: var(--white);
  min-width: 140px;
  box-shadow: var(--shadow-green);
}
.node-center-icon { font-size: 2rem; margin-bottom: 8px; }
.node-center-label { font-size: 0.8rem; opacity: 0.75; margin-bottom: 4px; }
.node-center-name { font-size: 1rem; font-weight: 900; }

/* ── 14. 視覺高亮段落 (Visual Callout) ── */
.visual-callout {
  background: linear-gradient(135deg, var(--green-pale) 0%, rgba(232,245,233,0.4) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 48px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(34,139,34,0.2);
}
.visual-callout-num {
  font-family: var(--font-en);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.visual-callout-num sup { font-size: 0.35em; vertical-align: top; margin-top: 0.5em; }
.visual-callout-body h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.visual-callout-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ── 15. 圖標說明列 (Icon Feature Row) ── */
.icon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin: 48px 0;
}
.icon-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.icon-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.icon-feature h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}
.icon-feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── 16. 分節標題 (Section Divider) ── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 64px 0 40px;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-mid);
}
.section-divider-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-dark);
  white-space: nowrap;
  padding: 0 8px;
}

/* ── 17. 委員會視覺卡 (Committee Visual Card) ── */
.committee-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.committee-visual-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gray-mid);
  transition: var(--transition);
  position: relative;
}
.committee-visual-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.committee-vc-header {
  background: var(--green);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.committee-vc-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.committee-vc-name {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
}
.committee-vc-body {
  padding: 24px;
}
.committee-vc-power {
  display: inline-block;
  background: var(--red-pale);
  color: var(--red);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.committee-vc-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.committee-vc-tasks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}
.committee-vc-tasks li {
  font-size: 0.82rem;
  color: var(--text-body);
  display: flex;
  gap: 8px;
}
.committee-vc-tasks li::before { content: '▸'; color: var(--green); flex-shrink: 0; }

/* ── 18. 互動分頁標籤 (Tab System) ── */
.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--gray-mid);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font-tc);
}
.tab-btn:hover { color: var(--green); }
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ── 19. 85% 視覺鎖 (85 Promise Lock) ── */
.promise-lock {
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  margin: 48px 0;
}
.promise-lock::before {
  content: '🔒';
  font-size: 1.8rem;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 0 8px;
}
.promise-lock-num {
  font-family: var(--font-en);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.promise-lock-num::after { content: '%'; font-size: 0.4em; }
.promise-lock-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 8px;
}
.promise-lock-legal {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.6;
}

/* ── 20. 圖文並排 (Image-Text Split) ── */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin: 48px 0;
}
.split-block.reverse { direction: rtl; }
.split-block.reverse > * { direction: ltr; }
.split-visual {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.split-visual-placeholder {
  text-align: center;
  color: var(--green);
}
.split-visual-placeholder p {
  font-size: 0.75rem;
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  margin-top: 8px;
  opacity: 0.6;
}
.split-body .section-label { margin-bottom: 12px; }
.split-body h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}
.split-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ── 21. 榮譽顧問卡 (Honor Advisor Cards) ── */
.advisor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin: 48px 0;
}
.advisor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 2px solid var(--gray-mid);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.advisor-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
}
.advisor-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.advisor-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-pale), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(34,139,34,0.2);
}
.advisor-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  padding: 4px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.advisor-name {
  font-size: 1.2rem; font-weight: 900;
  color: var(--text-dark); margin-bottom: 4px;
}
.advisor-title {
  font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 16px; line-height: 1.5;
}
.advisor-scope {
  font-size: 0.88rem; color: var(--text-body);
  line-height: 1.75; margin-bottom: 16px;
}
.advisor-contributions {
  list-style: none; display: flex;
  flex-direction: column; gap: 8px;
}
.advisor-contributions li {
  font-size: 0.82rem; color: var(--text-muted);
  display: flex; gap: 8px; align-items: flex-start;
}
.advisor-contributions li::before {
  content: '◆'; color: var(--green);
  font-size: 0.55rem; flex-shrink: 0; margin-top: 5px;
}

/* ── 22. 委員會詳細頁 (Committee Detail Page) ── */
.committee-header-band {
  background: var(--green);
  color: var(--white);
  padding: 140px 24px 60px;
  position: relative; overflow: hidden;
}
.committee-header-band::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.05); pointer-events: none;
}
.committee-header-band::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(255,40,0,0.08); pointer-events: none;
}
.committee-header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: 48px;
}
.committee-header-icon {
  width: 96px; height: 96px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  display: flex; align-items: center;
  justify-content: center; font-size: 3rem;
  flex-shrink: 0;
}
.committee-header-label {
  font-family: var(--font-en);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  opacity: 0.7; margin-bottom: 10px;
}
.committee-header-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; margin-bottom: 8px; line-height: 1.15;
}
.committee-header-sub {
  font-size: 1rem; opacity: 0.8;
  line-height: 1.7; max-width: 560px;
}
.committee-header-meta {
  display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap;
}
.committee-meta-item {
  display: flex; flex-direction: column; gap: 4px;
}
.committee-meta-num {
  font-family: var(--font-en); font-size: 1.8rem;
  font-weight: 900; line-height: 1; color: var(--white);
}
.committee-meta-label {
  font-size: 0.75rem; opacity: 0.65;
}

/* 委員卡片 (Member Cards) */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; margin: 48px 0;
}
.member-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 2px solid var(--gray-mid);
  transition: var(--transition);
  text-align: center;
}
.member-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.member-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-pale), rgba(34,139,34,0.3));
  display: flex; align-items: center;
  justify-content: center; font-size: 1.8rem;
  margin: 0 auto 16px;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(34,139,34,0.15);
}
.member-name {
  font-size: 1.05rem; font-weight: 900;
  color: var(--text-dark); margin-bottom: 6px;
}
.member-role-badge {
  display: inline-block;
  background: var(--green-pale); color: var(--green);
  padding: 4px 14px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
  margin-bottom: 10px;
}
.member-role-badge.red { background: var(--red-pale); color: var(--red); }
.member-title {
  font-size: 0.82rem; color: var(--text-muted);
  line-height: 1.5; margin-bottom: 12px;
}
.member-bio {
  font-size: 0.82rem; color: var(--text-body);
  line-height: 1.7;
  padding-top: 12px;
  border-top: 1px solid var(--gray-light);
}

/* 委員會職責清單 */
.charter-powers {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 48px 0;
  border: 1px solid rgba(34,139,34,0.2);
}
.charter-powers h3 {
  font-size: 1.15rem; font-weight: 900;
  color: var(--green-dark); margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.powers-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.power-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 12px;
  border: 1px solid rgba(34,139,34,0.15);
}
.power-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center;
  justify-content: center; font-size: 0.9rem;
  flex-shrink: 0;
}
.power-text {
  font-size: 0.88rem; color: var(--text-body);
  line-height: 1.65;
}

/* 委員會活動記錄 */
.activity-log {
  display: flex;
  flex-direction: column;
  gap: 16px; margin: 40px 0;
}
.activity-item {
  display: flex; gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid var(--gray-mid);
  transition: var(--transition);
}
.activity-item:hover { border-color: var(--green); }
.activity-date {
  min-width: 90px;
  font-family: var(--font-en); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.08em;
  color: var(--green); text-align: center;
  padding-top: 2px;
}
.activity-badge {
  display: inline-block;
  background: var(--green-pale); color: var(--green);
  padding: 3px 10px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700;
  margin-bottom: 6px;
}
.activity-title {
  font-size: 0.95rem; font-weight: 800;
  color: var(--text-dark); margin-bottom: 4px;
}
.activity-desc {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.65;
}

/* ── 23. 六委員會總覽 (Committee Overview Grid) ── */
.committee-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin: 48px 0;
}
.committee-ov-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gray-mid);
  transition: var(--transition);
  text-decoration: none; color: inherit;
  display: block;
}
.committee-ov-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.committee-ov-header {
  padding: 24px;
  display: flex; align-items: center; gap: 16px;
}
.committee-ov-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem;
  flex-shrink: 0;
}
.committee-ov-en {
  font-family: var(--font-en); font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.7;
  margin-bottom: 4px;
}
.committee-ov-name {
  font-size: 0.95rem; font-weight: 900;
  color: var(--text-dark); line-height: 1.3;
}
.committee-ov-body {
  padding: 0 24px 24px;
  border-top: 1px solid var(--gray-light);
  padding-top: 16px;
}
.committee-ov-desc {
  font-size: 0.84rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 14px;
}
.committee-ov-powers {
  display: flex; flex-direction: column; gap: 6px;
}
.committee-ov-power {
  font-size: 0.78rem; color: var(--text-body);
  display: flex; gap: 8px; align-items: flex-start;
}
.committee-ov-power::before { content: '▸'; color: var(--green); flex-shrink: 0; }
.committee-ov-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: var(--green-pale);
  font-size: 0.82rem; font-weight: 700;
  color: var(--green);
  border-top: 1px solid rgba(34,139,34,0.15);
}
.committee-ov-cta::after { content: '→'; transition: var(--transition); }
.committee-ov-card:hover .committee-ov-cta::after { transform: translateX(6px); }

/* ── 24. 互助基金視覺模組 ── */
.mutual-fund-visual {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px; align-items: center;
  background: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 48px; margin: 48px 0;
  color: var(--white);
}
.mutual-fund-num {
  font-family: var(--font-en); font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900; color: var(--green-light);
  line-height: 1;
}
.mutual-fund-num .unit { font-size: 0.35em; }
.mutual-fund-label { font-size: 1rem; font-weight: 700; margin-top: 8px; }
.mutual-fund-sub { font-size: 0.82rem; opacity: 0.6; margin-top: 6px; }
.mutual-fund-steps {
  display: flex; flex-direction: column; gap: 16px;
}
.mutual-fund-step {
  display: flex; gap: 16px; align-items: flex-start;
}
.mf-step-num {
  width: 32px; height: 32px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 0.85rem; font-weight: 900;
  flex-shrink: 0; color: var(--white);
}
.mf-step-title {
  font-size: 0.95rem; font-weight: 800; margin-bottom: 4px;
}
.mf-step-desc { font-size: 0.82rem; opacity: 0.65; line-height: 1.65; }

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .roles-grid { grid-template-columns: repeat(3, 1fr); }
  .role-identity-grid { grid-template-columns: repeat(3, 1fr); }
  .committee-visual-grid { grid-template-columns: repeat(2, 1fr); }
  .committee-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .donut-module { grid-template-columns: 1fr; }
  .donut-wrap { width: 220px; height: 220px; }
  .node-map { grid-template-columns: 1fr; }
  .node-center { min-width: unset; }
  .mutual-fund-visual { grid-template-columns: 1fr; }
  .committee-header-inner { flex-direction: column; gap: 24px; }
}
@media (max-width: 768px) {
  #navbar { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--gray-mid);
    flex-direction: column; gap: 0; padding: 12px 0;
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: var(--transition); box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 28px; color: var(--text-body) !important; border-bottom: 1px solid var(--gray-light); }
  .nav-cta { margin: 12px 20px !important; border-radius: var(--radius-sm) !important; text-align: center; padding: 14px !important; }

  /* Hero mobile — stack vertically */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px 0 60px; text-align: center; width: 100%; box-sizing: border-box; overflow: hidden; }
  .hero-visual { order: -1; }
  .hero-logo-main { width: clamp(200px, 60vw, 300px); }
  .hero-logo-bg { width: 300px; height: 300px; }
  .hero-logo-tag { display: none; } /* 小屏隱藏角標 */
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-badge { margin: 0 auto 28px; }

  .compare-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .spectrum-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .spectrum-item:last-child { grid-column: span 2; }
  .committees-grid { grid-template-columns: 1fr; }
  .committees-full-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 64px 20px; }
  .page-hero { padding: 120px 20px 60px; }
  .role-identity-grid { grid-template-columns: repeat(2, 1fr); }
  .committee-visual-grid { grid-template-columns: 1fr; }
  .visual-callout { grid-template-columns: 1fr; text-align: center; }
  .split-block { grid-template-columns: 1fr; gap: 32px; }
  .split-block.reverse { direction: ltr; }
  .donut-module { gap: 32px; }
  .process-flow { gap: 8px; }
  .process-step::after { display: none; }
  .steps-bar { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ecosystem-spokes { grid-template-columns: repeat(2, 1fr); }
  .node-col { flex-direction: row; flex-wrap: wrap; }
  .node-item { min-width: 120px; flex: 1; }
  .sankey-inner { flex-direction: column; min-width: unset; }
  .sankey-flows { padding: 12px 0; }
  .sankey-source { width: 100%; }
  .committee-overview-grid { grid-template-columns: 1fr; }
  .committee-header-meta { gap: 20px; }
  .powers-list { grid-template-columns: 1fr; }
  .advisor-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .roles-grid { grid-template-columns: 1fr; }
  .spectrum-grid { grid-template-columns: 1fr !important; }
  .spectrum-item:last-child { grid-column: auto; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .footer-bottom { flex-direction: column; }
}



/* ══════════════════════════════════════
   COMMITTEE PAGES REVAMP — 六大委員會重設計
   ══════════════════════════════════════ */

/* 委員會英雄區塊 */
.committee-hero {
  padding: 120px 24px 60px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  position: relative;
  overflow: hidden;
}
.committee-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
  pointer-events: none;
}
.committee-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.committee-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.committee-hero-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.committee-hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 28px;
}
/* 右側信息塊 */
.committee-info-panel {
  background: var(--white);
  border: 2px solid var(--green-pale);
  border-radius: var(--radius-md);
  padding: 28px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.committee-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-mid);
}
.committee-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.info-row-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.info-row-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: right;
}
.charter-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green);
  color: var(--white);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-en);
}

/* 委員會主體內容佈局 */
.committee-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* 左欄：功能介紹 + 職責 */
.committee-main {}
.committee-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 8px;
}
.committee-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.committee-intro-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 32px;
}
/* 職責清單 */
.duties-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.duties-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  transition: var(--transition);
}
.duties-list li:hover {
  background: var(--green-pale);
}
.duties-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* 右欄：信息側邊欄 */
.committee-sidebar {}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-mid);
}
/* 個人責任 */
.responsibility-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.responsibility-list li {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}
.responsibility-list li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 900;
}
/* 背景要求標籤 */
.background-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.background-tag {
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
}
/* 委員名單區 */
.member-slots {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.member-slot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1.5px dashed var(--gray-mid);
  transition: var(--transition);
}
.member-slot.filled {
  border-style: solid;
  border-color: var(--green-pale);
  background: var(--off-white);
}
.member-slot:hover { border-color: var(--green); }
.member-slot-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.member-slot-avatar svg { width: 28px; height: 28px; color: var(--gray-dark); }
.member-slot-avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-slot-info {}
.member-slot-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
}
.member-slot-name.pending {
  color: var(--text-muted);
  font-style: italic;
}
.member-slot-role {
  font-size: 0.72rem;
  color: var(--text-muted);
}
/* 長者代表角標 */
.elder-badge {
  font-size: 0.62rem;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 4px;
  padding: 1px 6px;
  font-weight: 700;
  margin-left: 4px;
  white-space: nowrap;
}
/* FAQ 嵌入式 */
.committee-faq {
  margin-top: 48px;
}

/* CTA 委任邀請 */
.committee-cta-band {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
}
.committee-cta-band h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.committee-cta-band p {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 480px;
}
.committee-cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ── 響應式 ── */
@media (max-width: 900px) {
  .district-stats { grid-template-columns: repeat(2, 1fr); }
  .value-cards { grid-template-columns: 1fr; }
  .councillor-steps { grid-template-columns: 1fr; }
  .councillor-steps::before { display: none; }
  .phase-timeline { grid-template-columns: 1fr 1fr; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-list { grid-template-columns: 1fr; }
  .entry-cards { grid-template-columns: repeat(2, 1fr); }
  .districts-grid { grid-template-columns: repeat(3, 1fr); }
  .committee-hero-inner { grid-template-columns: 1fr; }
  .committee-info-panel { min-width: unset; }
  .committee-body { grid-template-columns: 1fr; }
  .committee-cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .districts-grid { grid-template-columns: repeat(2, 1fr); }
  .phase-timeline { grid-template-columns: 1fr; }
  .district-stats { grid-template-columns: 1fr 1fr; }
  .entry-cards { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   COMMITTEE PAGES v2 — 章程依據、職責、FAQ、CTA
   ══════════════════════════════════════ */

/* ── 章程依據卡 ── */
.committee-charter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.committee-charter-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: var(--transition);
  border-top: 4px solid var(--green);
}
.committee-charter-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.committee-charter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.committee-charter-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.committee-charter-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.committee-charter-tag {
  display: inline-block;
  background: var(--gray-light);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  font-family: var(--font-en);
  letter-spacing: 0.02em;
}

/* ── 個人職責網格 ── */
.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.responsibility-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-mid);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
}
.responsibility-item:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.responsibility-icon {
  font-size: 1.6rem;
  display: block;
}
.responsibility-item h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);
}
.responsibility-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FAQ (details/summary 版本) ── */
.committee-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.committee-faq-list details.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.committee-faq-list details.faq-item[open] {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.committee-faq-list .faq-q {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}
.committee-faq-list .faq-q::-webkit-details-marker { display: none; }
.committee-faq-list .faq-q::after {
  content: '＋';
  font-family: var(--font-en);
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
  transition: var(--transition);
}
.committee-faq-list details[open] .faq-q::after { content: '－'; }
.committee-faq-list .faq-q:hover { color: var(--green); background: var(--green-pale); }
.committee-faq-list .faq-a {
  padding: 0 24px 18px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--gray-light);
  margin-top: 0;
}

/* ── 委任邀請 CTA ── */
.committee-invite-cta {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 64px 24px;
}

/* ── 響應式補充 ── */
@media (max-width: 900px) {
  .committee-charter-grid { grid-template-columns: 1fr; }
  .responsibility-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .responsibility-grid { grid-template-columns: 1fr; }
  .committee-charter-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   DISTRICT PAGE v2 — 全新版面樣式
   十八區區議員長者同行計劃 district.html
   ══════════════════════════════════════ */

/* ── Hero 區塊 ── */
.district-hero {
  padding: 140px 24px 80px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  position: relative;
  overflow: hidden;
}
.district-hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 65%);
  pointer-events: none;
}
.district-hero::after {
  content: '';
  position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, var(--red-pale) 0%, transparent 70%);
  pointer-events: none;
}
.district-hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.district-hero-headline {
  font-family: var(--font-tc);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 16px 0 12px;
}
.district-hero-sub {
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 16px;
}
.district-hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* 裝飾地圖盒 */
.district-hero-map {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hk-map-deco {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-green);
  min-width: 300px;
}
.hk-map-title {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.85;
}
.hk-districts-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.hk-districts-mini span {
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 6px 4px;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  transition: var(--transition);
  cursor: default;
}
.hk-districts-mini span:hover {
  background: rgba(255,255,255,0.3);
}
.hk-map-stat {
  font-family: var(--font-en);
  font-size: 0.82rem;
  opacity: 0.75;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 14px;
  letter-spacing: 0.04em;
}

/* ── 數字帶 ── */
.district-stats-band {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 40px 24px;
}
.district-stats-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.district-stat-card {
  text-align: center;
  padding: 16px 24px;
  position: relative;
}
.district-stat-card:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--gray-mid);
}
.district-stat-num {
  font-family: var(--font-en);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  display: block;
}
.district-stat-num.red { color: var(--red); }
.district-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── 三大價值卡 ── */
.district-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.district-value-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  border-top: 4px solid var(--green);
}
.district-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.district-value-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.district-value-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.district-value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.district-value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.district-value-list li {
  font-size: 0.82rem;
  color: var(--text-body);
  padding: 6px 10px;
  background: var(--green-pale);
  border-radius: 6px;
}

/* ── 區議員步驟條（新版含箭頭） ── */
.councillor-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 40px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 8px;
}
.councillor-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  min-width: 140px;
}
.councillor-step-num {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.councillor-step-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(34,139,34,0.25);
  flex-shrink: 0;
}
.councillor-step h4 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.councillor-step p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.councillor-step-arrow {
  font-size: 1.6rem;
  color: var(--green);
  opacity: 0.4;
  flex-shrink: 0;
  padding-top: 28px;
  font-family: var(--font-en);
}

/* ── 支援表格包裝 ── */
.support-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: 32px;
}
.support-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.support-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.support-table thead th {
  padding: 16px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.04em;
}
.support-table thead th:first-child { background: var(--green); color: var(--white); }
.support-table thead th:nth-child(2) { background: var(--green-pale); color: var(--green-dark); }
.support-table thead th:nth-child(3) { background: #e3f2fd; color: #1565c0; }
.support-table thead th:nth-child(4) { background: var(--off-white); color: var(--text-muted); }
.support-table tbody tr:nth-child(odd) { background: var(--off-white); }
.support-table tbody tr:nth-child(even) { background: var(--white); }
.support-table tbody tr:hover { background: var(--green-pale); transition: var(--transition); }
.support-table td {
  padding: 14px 20px;
  font-size: 0.86rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--gray-mid);
  vertical-align: top;
  line-height: 1.6;
}

/* ── 四階段時間線（全新版） ── */
.phases-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.phase-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-mid);
  padding: 28px 20px;
  transition: var(--transition);
  position: relative;
}
.phase-item:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.phase-num {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.phase-connector {
  display: none;
}
.phase-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.phase-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.phase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.phase-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.phase-list li::before {
  content: '·';
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 900;
}
.phase-timing {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-pale);
  border-radius: 20px;
  padding: 4px 12px;
  display: inline-block;
}

/* ── 七大成效指標 ── */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.kpi-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
}
.kpi-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.kpi-card.kpi-highlight {
  border-color: var(--red);
  background: var(--red-pale);
}
.kpi-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
}
.kpi-num {
  font-family: var(--font-en);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  display: inline;
}
.kpi-card.kpi-highlight .kpi-num { color: var(--red); }
.kpi-plus {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green);
  display: inline;
  vertical-align: top;
  line-height: 1.5;
}
.kpi-card.kpi-highlight .kpi-plus { color: var(--red); }
.kpi-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.4;
}
.kpi-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 20px;
  font-style: italic;
}

/* ── 三大合作原則 ── */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.principle-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border-left: 5px solid var(--green);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.principle-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.principle-num {
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--green-pale);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.principle-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}
.principle-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.principle-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── 首階段活動卡 ── */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.activity-entry-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.activity-entry-card:hover {
  border-color: var(--green);
  background: var(--green-pale);
  transform: translateY(-3px);
}
.activity-entry-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}
.activity-entry-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.activity-entry-card p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.activity-entry-tag {
  display: inline-block;
  background: var(--gray-light);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── 18區地圖網格（v2） ── */
.district-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.legend-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
}

.district-region-group {
  margin-bottom: 48px;
}
.district-region-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
  display: flex;
  align-items: center;
  gap: 8px;
}

.district-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.district-card {
  background: var(--white);
  border: 2px dashed var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.district-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.district-card.active {
  border-style: solid;
  border-color: var(--green);
  background: var(--green-pale);
}
.district-card-header {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.district-silhouette {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 2px dashed var(--gray-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gray-dark);
  margin-bottom: 8px;
  filter: grayscale(1);
  opacity: 0.5;
}
.district-card.active .district-silhouette {
  filter: none;
  opacity: 1;
  background: var(--green-pale);
  border-color: var(--green);
}
.district-status-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.pending-badge {
  background: var(--gray-light);
  color: var(--text-muted);
}
.active-badge {
  background: var(--green-pale);
  color: var(--green-dark);
}
.district-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 4px 0 2px;
  line-height: 1.3;
}
.district-en {
  font-family: var(--font-en);
  font-size: 0.62rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.district-placeholder-msg {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
  flex: 1;
}
.district-cta-btn {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  margin-top: 6px;
  transition: var(--transition);
}
.district-cta-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.district-map-note {
  background: var(--off-white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 32px;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── District CTA Block ── */
.district-cta-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 80px 24px;
}
.district-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.district-cta-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.district-cta-text p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 520px;
}
.district-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 200px;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
  background: transparent;
  text-align: center;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--green);
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── District 響應式 ── */
@media (max-width: 1100px) {
  .district-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .district-hero-map { justify-content: flex-start; }
  .district-cards-grid { grid-template-columns: repeat(4, 1fr); }
  .activities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .district-stats-row { justify-content: center; gap: 8px; }
  .district-stat-card::after { display: none; }
  .district-values-grid { grid-template-columns: 1fr; }
  .councillor-steps { overflow-x: auto; padding-bottom: 12px; }
  .councillor-step-arrow { display: none; }
  .councillor-step { min-width: 120px; }
  .phases-timeline { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: repeat(3, 1fr); }
  .principles-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .district-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .district-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .district-cta-actions { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .phases-timeline { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr 1fr; }
  .district-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hk-districts-mini { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .activities-grid { grid-template-columns: 1fr; }
  .district-cards-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ══════════════════════════════════════════════════════
   VISUAL POLISH v2 — 全站美觀優化 2026-05-07
   ══════════════════════════════════════════════════════ */

/* ── 1. 標題換行控制：防止關鍵詞孤立 ── */
/* 內頁 Hero 標題：不讓最後幾個字單獨成行 */
.page-hero-title,
.hero-headline,
.section-title {
  word-break: keep-all;          /* 中文：以詞為單位換行 */
  overflow-wrap: break-word;
}
/* 英文 tagline：桌面不換行，手機正常換行 */
.hero-en-tagline {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 主標題第二行 span：桌面不換行 */
.hero-headline-wrap {
  white-space: nowrap;
  display: inline;
}
@media (max-width: 900px) {
  /* 手機版：全部允許換行，移除 nowrap */
  .hero-en-tagline {
    white-space: normal;
    text-overflow: unset;
    overflow: visible;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
  .hero-headline {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .hero-headline-wrap {
    white-space: normal;   /* 手機版允許換行 */
  }
  .hero-desc {
    max-width: 100%;
  }
}

/* ── 2. Hero 視覺升級 ── */
/* 主標題綠字：無底線，保持純色 */
.hero-headline .green {
  position: relative;
  display: inline;
}

/* Hero 數字欄加強視覺分隔 */
.hero-stat-item {
  padding-right: 40px;
  border-right: 1px solid var(--gray-mid);
}
.hero-stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

/* ── 3. Section Header 間距與節奏優化 ── */
.section-header { margin-bottom: 64px; }
.section-label {
  letter-spacing: 0.18em;
  margin-bottom: 24px;
}
/* section-title 加大行距讓閱讀更舒適 */
.section-title {
  line-height: 1.3;
  margin-bottom: 20px;
}

/* ── 4. 卡片陰影與 hover 統一提升 ── */
.role-card,
.committee-full-card,
.compare-card,
.partner-card,
.committee-card {
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.role-card:hover,
.committee-full-card:hover,
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ── 5. 按鈕加強感 ── */
.btn-primary,
.btn-outline,
.btn-red,
.btn-white {
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}
/* ripple 光效 */
.btn-primary::after,
.btn-red::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.btn-primary:active::after,
.btn-red:active::after {
  width: 200px; height: 200px;
  opacity: 1;
}

/* ── 6. Page Hero 底部裝飾線 ── */
.page-hero {
  padding-bottom: 88px;
}
/* 漸層分隔線 */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--green-pale), var(--green), var(--green-pale));
  border-radius: 2px;
}

/* ── 7. 比較表格視覺優化 ── */
.compare-table {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table thead th {
  padding: 18px 20px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.compare-table tbody td {
  padding: 16px 20px;
  font-size: 0.9rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--gray-mid);
  vertical-align: middle;
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--green-pale); transition: background 0.2s ease; }
.compare-table .highlight { background: rgba(34,139,34,0.04); }
.compare-table .check { color: var(--green); font-weight: 700; margin-right: 4px; }
.compare-table .cross { color: var(--red); font-weight: 700; margin-right: 4px; }

/* ── 8. 流程步驟視覺優化 ── */
/* 橫向全寬拉闊，4步驟平均分配，文字不換行 */
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  width: 100%;
}
.process-step {
  text-align: center;
  padding: 36px 16px;
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-right: none;
  transition: var(--transition);
}
.process-step:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.process-step:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; border-right: 1px solid var(--gray-mid); }
.process-step:hover { background: var(--green-pale); z-index: 1; }
/* 步驟編號圓圈 */
.process-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-family: var(--font-en); font-size: 0.78rem; font-weight: 800;
  margin: 8px auto 12px;
}
.process-icon { font-size: 2rem; margin-bottom: 4px; }
/* 標籤和描述：允許單行顯示，字體適當縮小 */
.process-label {
  font-size: 0.9rem; font-weight: 800;
  color: var(--text-dark); margin-bottom: 8px;
  white-space: nowrap;
}
.process-desc {
  font-size: 0.76rem; color: var(--text-muted);
  line-height: 1.55;
}
/* 連接箭頭 */
.process-step::after {
  content: '›';
  position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; color: var(--green);
  z-index: 2; font-weight: 700;
}
.process-step:last-child::after { display: none; }

/* ── 9. Donut 圖圖例優化 ── */
/* 圖例文字用深色，百分比用各自的色塊顏色，避免全綠難分辨 */
.donut-legend-label {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-body);   /* 深灰，清晰可讀 */
}
.donut-legend-pct {
  font-family: var(--font-en);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);   /* 深黑，不跟圖例顏色混淆 */
  min-width: 36px;
  text-align: right;
}
/* 圖例色點加大，增強辨識度 */
.donut-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;        /* 方形比圓形更易區分 */
  flex-shrink: 0;
}
/* 進度條加高，更明顯 */
.donut-legend-bar {
  flex: 1;
  height: 8px;
  background: var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
}
.donut-legend-fill {
  height: 100%;
  border-radius: 4px;
  opacity: 0.85;
}

/* ── 10. 角色卡片 ID Grid 優化 ── */
.role-identity-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.role-id-card {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.role-id-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.role-id-emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
.role-id-en {
  font-family: var(--font-en);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 4px;
}
.role-id-name { font-size: 0.92rem; font-weight: 900; color: var(--text-dark); margin-bottom: 10px; }
.role-id-pct {
  font-family: var(--font-en);
  font-size: 1.4rem; font-weight: 900;
  color: var(--green); line-height: 1;
}
.role-id-pct-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }

/* ── 11. Quote Cards 優化 ── */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.quote-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: var(--transition);
}
.quote-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.quote-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}
.quote-text::before { content: '"'; color: var(--green); font-size: 1.4rem; font-style: normal; line-height: 0; vertical-align: -0.3em; margin-right: 2px; }
.quote-person { display: flex; align-items: center; gap: 12px; }
.quote-avatar { font-size: 1.8rem; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--green-pale); border-radius: 50%; flex-shrink: 0; }
.quote-name { font-size: 0.88rem; font-weight: 800; color: var(--text-dark); }
.quote-role { font-size: 0.76rem; color: var(--text-muted); }

/* ── 12. Steps Bar 優化（治理四重保障）── */
/* 淺色背景：白色卡片，頂部綠線，整齊排列 */
.steps-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: transparent;
  border: none;
  overflow: visible;
  margin-top: 48px;
}
.step-bar-item {
  padding: 28px 20px;
  text-align: center;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.step-bar-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
}
.step-bar-item:last-child { border-right: 1px solid var(--gray-mid); }
.step-bar-item:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-bar-num { font-size: 2rem; margin-bottom: 12px; }
.step-bar-title { font-size: 0.92rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.step-bar-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ── 13. FAQ 列表優化 ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item.open,
.faq-item:hover { border-color: var(--green); }
.faq-item button {
  width: 100%; text-align: left;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-tc); font-size: 0.95rem; font-weight: 700;
  color: var(--text-dark); gap: 16px;
}
.faq-item button::after {
  content: '+';
  font-size: 1.3rem; font-weight: 300;
  color: var(--green); flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-item.open button::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ── 14. Icon Features 優化 ── */
.icon-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.icon-feature {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.icon-feature:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.icon-feature-icon { font-size: 2.4rem; margin-bottom: 18px; display: block; }
.icon-feature h4 {
  font-size: 1rem; font-weight: 800;
  color: var(--text-dark); margin-bottom: 12px;
  line-height: 1.4;
}
.icon-feature p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ── 15. 全站 Reveal 動畫更滑順 ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── 16. 響應式補充 ── */
@media (max-width: 900px) {
  /* 流程步驟：平板改 2 欄 */
  .process-flow { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-right: none !important; border-bottom: none; }
  .process-step:nth-child(2) { border-radius: 0 var(--radius-md) 0 0 !important; border-right: 1px solid var(--gray-mid) !important; }
  .process-step:nth-child(3) { border-radius: 0 0 0 var(--radius-md) !important; }
  .process-step:nth-child(4) { border-radius: 0 0 var(--radius-md) 0 !important; border-right: 1px solid var(--gray-mid) !important; }
  .process-step:first-child { border-radius: var(--radius-md) 0 0 0 !important; }
  .process-step::after { display: none; }
  .process-label { white-space: normal; }
}
@media (max-width: 768px) {
  .role-identity-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .quote-grid { grid-template-columns: 1fr; }
  .icon-features { grid-template-columns: 1fr; gap: 16px; }
  .steps-bar { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 480px) {
  .role-identity-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-bar { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: 1fr; }
  .process-step { border-radius: var(--radius-sm) !important; border: 1px solid var(--gray-mid) !important; }
  .process-step:first-child { border-radius: var(--radius-sm) !important; }
  .process-step:last-child  { border-radius: var(--radius-sm) !important; }
  .hero-en-tagline { font-size: 0.72rem; letter-spacing: 0.03em; }
}

/* ══════════════════════════════════════════════════════
   SOCIAL ENTERPRISE STANDARDS — 社企標準對照區段
   ══════════════════════════════════════════════════════ */

/* ── 免責聲明橫幅 ── */
.se-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fffbe6;
  border: 1px solid #f0d050;
  border-left: 4px solid #e6b800;
  border-radius: var(--radius-sm);
  padding: 18px 24px;
  margin: 0 0 52px;
  font-size: 0.88rem;
  color: #6b5800;
  line-height: 1.7;
}
.se-disclaimer-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.se-disclaimer p { margin: 0; }

/* ── 分類標頭（經濟 / 社會）── */
.se-category { margin-bottom: 0; }
.se-category-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  padding: 24px 32px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  border-left: 5px solid var(--green);
}
.se-category-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.se-category-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 6px;
  font-family: var(--font-tc);
}
.se-category-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ── 標準卡片網格 ── */
.se-standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.se-standard-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.se-standard-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
/* 第 5 張（限制利潤分配）跨兩欄 */
.se-standard-card-wide {
  grid-column: 1 / -1;
}

/* ── 標準卡片內容 ── */
.se-standard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.se-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
  flex-shrink: 0;
}
.se-standard-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
  font-family: var(--font-tc);
}
.se-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.se-badge-full {
  background: #e8f5e9;
  color: var(--green-dark);
  border: 1px solid var(--green-light);
}
.se-standard-def {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 10px;
  padding: 10px 14px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gray-mid);
}
.se-standard-how {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.75;
  margin: 0;
}

/* ── 總結卡片 ── */
.se-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 52px;
  padding: 40px 48px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(34,139,34,0.3);
}
.se-summary-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}
.se-summary-num {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.se-summary-den {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
}
.se-summary-body { flex: 1; }
.se-summary-body h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--white);
}
.se-summary-body p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin: 0 0 24px;
}
.se-summary-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.se-summary-links .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  padding: 10px 20px;
}
.se-summary-links .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ── SE 響應式 ── */
@media (max-width: 900px) {
  .se-standards-grid { grid-template-columns: 1fr; }
  .se-standard-card-wide { grid-column: 1; }
  .se-summary { flex-direction: column; gap: 24px; padding: 32px; text-align: center; }
  .se-summary-links { justify-content: center; }
}
@media (max-width: 600px) {
  .se-category-header { flex-direction: column; gap: 12px; padding: 20px; }
  .se-summary-num { font-size: 4rem; }
  .se-summary-body h3 { font-size: 1.2rem; }
}
