﻿/* ============================================================
   about-curriculum-v2.css — 課程規劃靜態頁 about-curriculum.aspx 新版套版專用
   - 對應 01-3 原型 about-curriculum.html
   - 全部 class 加 iv2- 前綴,scope 在 .iv2-root 內(不污染 Bootstrap/其他頁)
   - 字體統一 Noto Sans Traditional Chinese(同 about-v2 / about-faculty-v2)
   - 尺寸:.iv2-root 基準 17px,子元素用 em;clamp() 用 px
   - 中文文案全形標點;CSS 內一律半形
   - 本檔自帶完整 token/base/wrap/btn/crumb/eyebrow
   - RWD 斷點:1024(wrap 90%)/ 900 / 800 / 700 / 560
   ============================================================ */

.iv2-root {
  --iv2-brand-navy: #0a1530;
  --iv2-brand-navy-deep: #060d1f;
  --iv2-brand-navy-mid: #1a2a52;
  --iv2-primary: #5645d4;
  --iv2-primary-pressed: #4534b3;
  --iv2-primary-deep: #3a2a99;
  --iv2-primary-soft: #ece9fb;
  --iv2-accent-red: #ff385c;
  --iv2-accent-amber: #f5d75e;
  --iv2-success: #1aae39;
  --iv2-warning: #dd5b00;
  --iv2-canvas: #ffffff;
  --iv2-surface: #f6f5f4;
  --iv2-surface-soft: #fafaf9;
  --iv2-hairline: #e5e3df;
  --iv2-hairline-soft: #ede9e4;
  --iv2-hairline-strong: #c8c4be;
  --iv2-ink: #1a1a1a;
  --iv2-charcoal: #37352f;
  --iv2-slate: #5d5b54;
  --iv2-steel: #787671;
  --iv2-muted: #bbb8b1;
  --iv2-stone: #9b9892;
  --iv2-tint-peach: #ffe8d4;
  --iv2-tint-mint: #d9f3e1;
  --iv2-tint-lavender: #e6e0f5;
  --iv2-tint-sky: #dcecfa;
  --iv2-tint-yellow: #fef7d6;
  --iv2-r-sm: 10px;
  --iv2-r-md: 14px;
  --iv2-r-lg: 20px;
  --iv2-r-xl: 28px;
  --iv2-r-pill: 999px;
  --iv2-s-2: 8px;
  --iv2-s-3: 12px;
  --iv2-s-4: 16px;
  --iv2-s-5: 24px;
  --iv2-s-6: 32px;
  --iv2-s-7: 48px;
  --iv2-s-8: 64px;
  --iv2-s-9: 96px;
  /* v2.11: 陰影 token 微提升,全公開頁一致,卡片更有浮起深度感 */
  --iv2-shadow-sm: 0 2px 5px rgba(15,23,48,0.07);
  --iv2-shadow-md: 0 6px 16px rgba(15,23,48,0.10);
  --iv2-shadow-lg: 0 16px 40px rgba(15,23,48,0.15);
  --iv2-shadow-xl: 0 24px 60px rgba(15,23,48,0.18);
  --iv2-font: 'Noto Sans Traditional Chinese', 'Noto Sans TC', 'Noto Sans CJK TC', 'Microsoft JhengHei', PingFangTC, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-family: var(--iv2-font);
  font-size: 17px;
  color: var(--iv2-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.iv2-root * { box-sizing: border-box; }
.iv2-root img, .iv2-root svg { display: block; max-width: 100%; }
.iv2-root a { color: inherit; text-decoration: none; }
.iv2-root ul { padding: 0; margin: 0; list-style: none; }
.iv2-root h1, .iv2-root h2, .iv2-root h3, .iv2-root h4, .iv2-root p { margin: 0; }
.iv2-root button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* RWD 防溢位:本頁 body / nav / footer 一併套字體 */
html, body { overflow-x: hidden; }
body,
body button,
body input,
body select,
body textarea {
  font-family: 'Noto Sans Traditional Chinese', 'Noto Sans TC', 'Noto Sans CJK TC', 'Microsoft JhengHei', PingFangTC, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============ 容器 / 共用 ============ */
/* 寬度占比:電腦 80% / 平板 90% / 手機 100% */
.iv2-root .iv2-wrap { width: 80%; max-width: none; margin-inline: auto; padding-inline: var(--iv2-s-5); }
@media (max-width: 1024px) { .iv2-root .iv2-wrap { width: 90%; } }
@media (max-width: 560px) { .iv2-root .iv2-wrap { width: 100%; padding-inline: 14px; } }

.iv2-root .iv2-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 46px; padding: 0 24px; border-radius: var(--iv2-r-pill); font-weight: 600; font-size: 0.95em; transition: all .15s; white-space: nowrap; border: none; cursor: pointer; font-family: inherit; }
.iv2-root .iv2-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.iv2-root .iv2-btn-on-dark { background: #fff; color: var(--iv2-ink); }
.iv2-root .iv2-btn-on-dark:hover { background: var(--iv2-surface); }
.iv2-root .iv2-btn-outline-dark { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.32); }
.iv2-root .iv2-btn-outline-dark:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* 麵包屑 */
.iv2-root .iv2-crumb { font-size: 0.85em; color: var(--iv2-slate); }
.iv2-root .iv2-crumb a:hover { color: var(--iv2-primary); }
.iv2-root .iv2-crumb .iv2-sep { margin: 0 8px; color: var(--iv2-muted); }

/* 區塊抬頭(eyebrow / h2 / lead) */
.iv2-root .iv2-eyebrow { display: inline-block; font-size: 0.78em; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--iv2-primary); }
.iv2-root .iv2-cur-head { max-width: 680px; margin-bottom: var(--iv2-s-6); }
.iv2-root .iv2-cur-head h2 { font-size: clamp(1.5rem, 1rem + 1.4vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; color: var(--iv2-ink); margin-top: var(--iv2-s-3); }
.iv2-root .iv2-cur-head .iv2-lead { font-size: 1.05em; line-height: 1.7; color: var(--iv2-slate); margin-top: var(--iv2-s-3); }
.iv2-root .iv2-cur-head-center { max-width: 640px; margin-inline: auto; text-align: center; }

/* ============ HERO ============ */
.iv2-root .iv2-cur-hero { padding-block: var(--iv2-s-8) var(--iv2-s-7); background: linear-gradient(180deg, var(--iv2-surface) 0%, var(--iv2-canvas) 100%); border-bottom: 1px solid var(--iv2-hairline); }
.iv2-root .iv2-cur-hero .iv2-crumb { padding-bottom: var(--iv2-s-5); }
.iv2-root .iv2-hero-eyebrow { display: inline-block; font-size: 0.78em; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--iv2-primary); }
.iv2-root .iv2-cur-hero h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.6rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--iv2-ink); max-width: 880px; margin-top: var(--iv2-s-3); word-break: break-word; }
.iv2-root .iv2-cur-hero h1 .iv2-em { color: var(--iv2-primary); }
.iv2-root .iv2-cur-hero .iv2-lead { color: var(--iv2-slate); margin-top: var(--iv2-s-4); font-size: 1.1em; line-height: 1.8; max-width: 660px; word-break: break-word; }

/* ============ 方法 intro ============ */
.iv2-root .iv2-cur-intro-sec { padding-block: var(--iv2-s-8); }
.iv2-root .iv2-cur-intro { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--iv2-s-7); align-items: start; }
@media (max-width: 800px) { .iv2-root .iv2-cur-intro { grid-template-columns: 1fr; gap: var(--iv2-s-5); } }
.iv2-root .iv2-cur-intro-head h2 { font-size: clamp(1.6rem, 1rem + 1.6vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: var(--iv2-ink); margin-top: var(--iv2-s-3); }
.iv2-root .iv2-cur-intro-body p { color: var(--iv2-charcoal); font-size: 1.05em; line-height: 1.85; margin-top: var(--iv2-s-4); }
.iv2-root .iv2-cur-intro-body .iv2-lead-strong { margin-top: 0; font-size: 1.18em; color: var(--iv2-ink); line-height: 1.7; }
.iv2-root .iv2-cur-intro-body strong { color: var(--iv2-ink); font-weight: 700; }

/* ============ 4 班型 ============ */
.iv2-root .iv2-cur-plan-sec { padding-block: var(--iv2-s-7); background: var(--iv2-surface-soft); border-block: 1px solid var(--iv2-hairline-soft); }
.iv2-root .iv2-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--iv2-s-5); }
@media (max-width: 900px) { .iv2-root .iv2-plan-grid { grid-template-columns: 1fr; } }
.iv2-root .iv2-plan-card { background: var(--iv2-canvas); border: 1px solid var(--iv2-hairline); border-radius: var(--iv2-r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.iv2-root .iv2-plan-card:hover { transform: translateY(-4px); box-shadow: var(--iv2-shadow-lg); }
.iv2-root .iv2-plan-top { padding: var(--iv2-s-5); }
.iv2-root .iv2-plan-top-lavender { background: var(--iv2-tint-lavender); }
.iv2-root .iv2-plan-top-sky { background: var(--iv2-tint-sky); }
.iv2-root .iv2-plan-top-peach { background: var(--iv2-tint-peach); }
.iv2-root .iv2-plan-top-mint { background: var(--iv2-tint-mint); }
.iv2-root .iv2-ptag { display: inline-flex; padding: 4px 10px; border-radius: var(--iv2-r-pill); font-size: 0.68em; font-weight: 700; color: #fff; }
.iv2-root .iv2-ptag-primary { background: var(--iv2-primary); }
.iv2-root .iv2-ptag-sky { background: #0a4880; }
.iv2-root .iv2-ptag-warning { background: var(--iv2-warning); }
.iv2-root .iv2-ptag-success { background: var(--iv2-success); }
.iv2-root .iv2-plan-top h3 { font-size: 1.35em; font-weight: 700; color: var(--iv2-ink); margin-top: var(--iv2-s-3); }
.iv2-root .iv2-psub { font-size: 0.85em; color: var(--iv2-slate); margin-top: 6px; line-height: 1.5; }
.iv2-root .iv2-plan-body { padding: 0 var(--iv2-s-5) var(--iv2-s-5); flex: 1; }
.iv2-root .iv2-pmeta { font-size: 0.72em; color: var(--iv2-steel); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin: var(--iv2-s-4) 0 10px; }
.iv2-root .iv2-plan-body ul { display: flex; flex-direction: column; gap: 9px; }
.iv2-root .iv2-plan-body li { display: flex; gap: 8px; font-size: 0.88em; color: var(--iv2-charcoal); line-height: 1.5; }
.iv2-root .iv2-plan-body li svg { flex-shrink: 0; width: 16px; height: 16px; stroke: var(--iv2-primary); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; margin-top: 3px; }

/* ============ 學習路徑 6 步 ============ */
.iv2-root .iv2-cur-path-sec { padding-block: var(--iv2-s-8); }
.iv2-root .iv2-path { position: relative; max-width: 760px; margin: var(--iv2-s-6) auto 0; }
.iv2-root .iv2-path::before { content: ""; position: absolute; left: 23px; top: 28px; bottom: 28px; width: 2px; background: var(--iv2-hairline); }
.iv2-root .iv2-path-step { display: grid; grid-template-columns: 48px 1fr; gap: var(--iv2-s-4); padding: var(--iv2-s-4) 0; position: relative; }
.iv2-root .iv2-path-dot { width: 48px; height: 48px; border-radius: 50%; background: var(--iv2-canvas); border: 2px solid var(--iv2-hairline-strong); display: grid; place-items: center; font-weight: 700; font-size: 0.85em; color: var(--iv2-ink); position: relative; z-index: 1; }
.iv2-root .iv2-path-step.iv2-is-key .iv2-path-dot { background: var(--iv2-primary); border-color: var(--iv2-primary); color: #fff; box-shadow: 0 0 0 6px var(--iv2-primary-soft); }
.iv2-root .iv2-path-phase { font-size: 0.72em; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--iv2-primary); }
.iv2-root .iv2-path-step h4 { font-size: 1.12em; font-weight: 700; color: var(--iv2-ink); margin-top: 2px; }
.iv2-root .iv2-path-step p { color: var(--iv2-slate); font-size: 0.9em; margin-top: 6px; line-height: 1.6; }
.iv2-root .iv2-path-tag { display: inline-block; margin-top: 10px; padding: 3px 10px; border-radius: var(--iv2-r-pill); background: var(--iv2-surface); font-size: 0.7em; font-weight: 600; color: var(--iv2-charcoal); }

/* ============ 三種考生 ============ */
.iv2-root .iv2-cur-aud-sec { padding-block: var(--iv2-s-7); background: var(--iv2-surface-soft); border-block: 1px solid var(--iv2-hairline-soft); }
.iv2-root .iv2-aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--iv2-s-5); }
@media (max-width: 900px) { .iv2-root .iv2-aud-grid { grid-template-columns: 1fr; } }
.iv2-root .iv2-aud-card { background: var(--iv2-canvas); border: 1px solid var(--iv2-hairline); border-radius: var(--iv2-r-lg); padding: var(--iv2-s-6); transition: transform .2s, box-shadow .2s; }
.iv2-root .iv2-aud-card:hover { transform: translateY(-4px); box-shadow: var(--iv2-shadow-lg); }
.iv2-root .iv2-aud-h { display: flex; align-items: center; gap: 12px; }
.iv2-root .iv2-aud-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; font-weight: 700; }
.iv2-root .iv2-aud-ic-sky { background: var(--iv2-tint-sky); color: #0a4880; }
.iv2-root .iv2-aud-ic-lavender { background: var(--iv2-tint-lavender); color: var(--iv2-primary-deep); }
.iv2-root .iv2-aud-ic-peach { background: var(--iv2-tint-peach); color: #7a3f0e; }
.iv2-root .iv2-aud-card h3 { font-size: 1.25em; font-weight: 700; color: var(--iv2-ink); line-height: 1.2; }
.iv2-root .iv2-arec { font-size: 0.85em; color: var(--iv2-primary); font-weight: 600; margin-top: 3px; }
.iv2-root .iv2-aud-card p { color: var(--iv2-slate); margin-top: var(--iv2-s-4); line-height: 1.7; font-size: 0.92em; }

/* ============ 堅持四件事 ============ */
.iv2-root .iv2-cur-commit-sec { padding-block: var(--iv2-s-8); }
.iv2-root .iv2-commit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--iv2-s-4); }
@media (max-width: 700px) { .iv2-root .iv2-commit-grid { grid-template-columns: 1fr; } }
.iv2-root .iv2-commit-item { display: flex; gap: var(--iv2-s-4); padding: var(--iv2-s-5); background: var(--iv2-surface-soft); border: 1px solid var(--iv2-hairline-soft); border-radius: var(--iv2-r-md); }
.iv2-root .iv2-commit-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--iv2-primary-soft); color: var(--iv2-primary); display: grid; place-items: center; flex-shrink: 0; }
.iv2-root .iv2-commit-ic svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.iv2-root .iv2-commit-item h4 { font-size: 1.05em; font-weight: 700; color: var(--iv2-ink); }
.iv2-root .iv2-commit-item p { color: var(--iv2-slate); font-size: 0.9em; margin-top: 6px; line-height: 1.65; }

/* ============ CTA ============ */
.iv2-root .iv2-cur-cta-sec { padding-block: var(--iv2-s-7) var(--iv2-s-9); }
.iv2-root .iv2-cur-cta { background: linear-gradient(135deg, var(--iv2-primary-deep) 0%, var(--iv2-brand-navy) 80%); color: #fff; border-radius: var(--iv2-r-xl); padding: clamp(40px, 5vw, 72px); text-align: center; position: relative; overflow: hidden; }
.iv2-root .iv2-cur-cta-eye { display: inline-block; font-size: 0.8em; font-weight: 700; letter-spacing: 0.1em; color: var(--iv2-accent-amber); }
.iv2-root .iv2-cur-cta h2 { font-size: clamp(1.6rem, 1rem + 1.8vw, 2.6rem); font-weight: 700; line-height: 1.25; margin-top: var(--iv2-s-3); color: #fff; }
.iv2-root .iv2-cur-cta p { color: rgba(255,255,255,0.82); margin-top: var(--iv2-s-3); max-width: 520px; margin-inline: auto; line-height: 1.7; }
.iv2-root .iv2-cur-cta-btns { display: flex; gap: var(--iv2-s-3); justify-content: center; margin-top: var(--iv2-s-6); flex-wrap: wrap; }

/* ============ 淺底按鈕(諮詢 / 商品) ============ */
.iv2-root .iv2-btn-primary { background: var(--iv2-primary); color: #fff; }
.iv2-root .iv2-btn-primary:hover { background: var(--iv2-primary-pressed); }
.iv2-root .iv2-btn-outline { background: var(--iv2-canvas); color: var(--iv2-primary); border: 1px solid var(--iv2-hairline-strong); }
.iv2-root .iv2-btn-outline:hover { border-color: var(--iv2-primary); background: var(--iv2-primary-soft); }

/* ============ 實體 vs 線上 ============ */
.iv2-root .iv2-cur-mode-sec { padding-block: var(--iv2-s-8); }
.iv2-root .iv2-mode-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--iv2-s-5); }
@media (max-width: 800px) { .iv2-root .iv2-mode-grid { grid-template-columns: 1fr; } }
.iv2-root .iv2-mode-card { background: var(--iv2-canvas); border: 1px solid var(--iv2-hairline); border-radius: var(--iv2-r-lg); padding: var(--iv2-s-6); border-top: 4px solid var(--iv2-primary); }
.iv2-root .iv2-mode-card-online { border-top-color: #0a4880; }
.iv2-root .iv2-mode-badge { display: inline-flex; padding: 5px 14px; border-radius: var(--iv2-r-pill); font-size: 0.78em; font-weight: 700; color: #fff; }
.iv2-root .iv2-mode-badge-onsite { background: var(--iv2-primary); }
.iv2-root .iv2-mode-badge-online { background: #0a4880; }
.iv2-root .iv2-mode-card h3 { font-size: 1.2em; font-weight: 700; color: var(--iv2-ink); line-height: 1.4; margin-top: var(--iv2-s-4); }
.iv2-root .iv2-mode-desc { color: var(--iv2-slate); font-size: 0.95em; line-height: 1.75; margin-top: var(--iv2-s-3); }
.iv2-root .iv2-mode-block { margin-top: var(--iv2-s-5); }
.iv2-root .iv2-mode-blocktitle { font-size: 0.72em; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--iv2-steel); padding-bottom: 10px; margin-bottom: 12px; border-bottom: 1px solid var(--iv2-hairline-soft); }
.iv2-root .iv2-mode-list { display: flex; flex-direction: column; gap: 9px; }
.iv2-root .iv2-mode-list li { display: flex; gap: 8px; font-size: 0.9em; color: var(--iv2-charcoal); line-height: 1.55; }
.iv2-root .iv2-mode-list li svg { flex-shrink: 0; width: 16px; height: 16px; stroke: var(--iv2-primary); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; margin-top: 3px; }
.iv2-root .iv2-mode-card-online .iv2-mode-list li svg { stroke: #0a4880; }
.iv2-root .iv2-mode-list-dot li { position: relative; padding-left: 18px; }
.iv2-root .iv2-mode-list-dot li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--iv2-hairline-strong); }

/* ============ 課程類型比較表 ============ */
.iv2-root .iv2-cur-type-sec { padding-block: var(--iv2-s-8); background: var(--iv2-surface-soft); border-block: 1px solid var(--iv2-hairline-soft); }
.iv2-root .iv2-type-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.iv2-root .iv2-type-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--iv2-canvas); border: 1px solid var(--iv2-hairline); border-radius: var(--iv2-r-lg); overflow: hidden; }
.iv2-root .iv2-type-table th { text-align: left; font-size: 0.82em; font-weight: 700; letter-spacing: 0.04em; color: #fff; background: var(--iv2-brand-navy); padding: 16px 18px; }
.iv2-root .iv2-type-table td { font-size: 0.92em; color: var(--iv2-charcoal); line-height: 1.6; padding: 16px 18px; border-top: 1px solid var(--iv2-hairline-soft); vertical-align: middle; }
.iv2-root .iv2-type-table tbody tr:nth-child(even) td { background: var(--iv2-surface-soft); }
.iv2-root .iv2-type-name { display: inline-flex; font-weight: 700; color: var(--iv2-ink); font-size: 1.05em; }
.iv2-root .iv2-type-mode { display: inline-flex; padding: 4px 12px; border-radius: var(--iv2-r-pill); background: var(--iv2-tint-mint); color: #0f7a2e; font-size: 0.85em; font-weight: 600; white-space: nowrap; }
@media (max-width: 760px) {
  .iv2-root .iv2-type-table { border: none; background: transparent; }
  .iv2-root .iv2-type-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .iv2-root .iv2-type-table tbody tr { display: block; background: var(--iv2-canvas); border: 1px solid var(--iv2-hairline); border-radius: var(--iv2-r-md); padding: 6px 16px; margin-bottom: var(--iv2-s-4); }
  .iv2-root .iv2-type-table tbody tr:nth-child(even) td { background: transparent; }
  .iv2-root .iv2-type-table td { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 11px 0; border-top: 1px solid var(--iv2-hairline-soft); text-align: right; }
  .iv2-root .iv2-type-table tr td:first-child { border-top: none; }
  .iv2-root .iv2-type-table td::before { content: attr(data-label); flex-shrink: 0; font-size: 0.78em; font-weight: 700; color: var(--iv2-steel); }
}

/* ============ 推薦學習組合 ============ */
.iv2-root .iv2-cur-pkg-sec { padding-block: var(--iv2-s-8); }
.iv2-root .iv2-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--iv2-s-5); }
@media (max-width: 900px) { .iv2-root .iv2-pkg-grid { grid-template-columns: 1fr; } }
.iv2-root .iv2-pkg-card { background: var(--iv2-canvas); border: 1px solid var(--iv2-hairline); border-radius: var(--iv2-r-lg); padding: var(--iv2-s-6); transition: transform .2s, box-shadow .2s; }
.iv2-root .iv2-pkg-card:hover { transform: translateY(-4px); box-shadow: var(--iv2-shadow-lg); }
.iv2-root .iv2-pkg-card-featured { border-color: var(--iv2-primary); box-shadow: var(--iv2-shadow-md); }
.iv2-root .iv2-pkg-tag { display: inline-flex; padding: 4px 12px; border-radius: var(--iv2-r-pill); font-size: 0.72em; font-weight: 700; color: #fff; }
.iv2-root .iv2-pkg-tag-primary { background: var(--iv2-primary); }
.iv2-root .iv2-pkg-tag-sky { background: #0a4880; }
.iv2-root .iv2-pkg-tag-warning { background: var(--iv2-warning); }
.iv2-root .iv2-pkg-card h3 { font-size: 1.3em; font-weight: 700; color: var(--iv2-ink); margin-top: var(--iv2-s-4); }
.iv2-root .iv2-pkg-combo { display: inline-block; margin-top: 10px; padding: 8px 14px; border-radius: var(--iv2-r-sm); background: var(--iv2-primary-soft); color: var(--iv2-primary-deep); font-size: 0.9em; font-weight: 600; line-height: 1.4; }
.iv2-root .iv2-pkg-card p { color: var(--iv2-slate); font-size: 0.92em; line-height: 1.75; margin-top: var(--iv2-s-4); }

/* ============ 我該怎麼選 ============ */
.iv2-root .iv2-cur-choice-sec { padding-block: var(--iv2-s-8); background: var(--iv2-surface-soft); border-block: 1px solid var(--iv2-hairline-soft); }
.iv2-root .iv2-choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--iv2-s-4); }
@media (max-width: 900px) { .iv2-root .iv2-choice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .iv2-root .iv2-choice-grid { grid-template-columns: 1fr; } }
.iv2-root .iv2-choice-item { background: var(--iv2-canvas); border: 1px solid var(--iv2-hairline); border-radius: var(--iv2-r-md); padding: var(--iv2-s-5); border-left: 3px solid var(--iv2-primary); }
.iv2-root .iv2-choice-q { font-size: 1.05em; font-weight: 700; color: var(--iv2-ink); }
.iv2-root .iv2-choice-item p { color: var(--iv2-slate); font-size: 0.92em; line-height: 1.7; margin-top: 8px; }
.iv2-root .iv2-choice-item strong { color: var(--iv2-primary); font-weight: 700; }
.iv2-root .iv2-choice-item-cta { background: var(--iv2-brand-navy); border-color: var(--iv2-brand-navy); border-left-color: var(--iv2-accent-amber); }
.iv2-root .iv2-choice-item-cta .iv2-choice-q { color: #fff; }
.iv2-root .iv2-choice-item-cta p { color: rgba(255,255,255,0.82); }
.iv2-root .iv2-choice-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--iv2-s-4); }
@media (max-width: 560px) { .iv2-root .iv2-choice-btns .iv2-btn { width: 100%; } }
