/* ============================================================
   BrandArk — 全站通用樣式表
   改色系 / 改樣式，請只修改這個檔案
   ============================================================ */

/* ── 配色變數（改這裡即可調整全站顏色）────────────────── */
:root {

  /* 【主色系 — 暖橘珊瑚（刺激下單）】 */
  --accent:         #d4622a;   /* 珊瑚橘 — 主色，CTA按鈕、重要標題 */
  --accent-dark:     #b8511f;   /* 深橘 — hover 狀態 */
  --accent-light:    #fdf0e8;   /* 淡橘 — 卡片背景、標籤 */

  /* 副色 */
  --accent2:        #c9963a;   /* 焦糖金 — 副標、點綴 */
  --accent2-light:  #fdf5e4;   /* 淡金 */

  /* 背景 */
  --bg:             #faf7f3;   /* 暖奶白 — 全站背景 */
  --surface:        #ffffff;    /* 卡片/區塊白底 */
  --surface2:       #f5efe8;    /* 奶油色 — 次要區塊 */
  --cream:          #f9f3ec;    /* 淺奶油 — Hero漸層底 */

  /* 邊框 */
  --border:         #e8dfd4;    /* 暖灰邊框 */

  /* 文字 */
  --text:           #2d2416;    /* 深棕 — 主要文字 */
  --text2:          #6b5a45;    /* 中棕 — 次要文字 */
  --muted:          #9e8e7e;    /* 淺棕 — 說明文字 */

  /* 功能色 */
  --green:          #4a7c59;      /* 森林綠 — 成功、核心服務標籤 */
  --green-light:    #eef5ee;     /* 淡綠 */
  --warm:           #8b5e3c;     /* 暖棕 — placeholder 文字 */

  /* 陰影 */
  --shadow:         0 2px 8px rgba(45,36,22,0.06);
  --shadow-md:      0 4px 20px rgba(45,36,22,0.10);

  /* 圓角 */
  --radius:         12px;
}

/* 如果想切換成「冷靜專業藍」，把上面註解掉，換成這組：
:root {
  --accent:         #2c5f8a;
  --accent-dark:    #1e4a6e;
  --accent-light:   #edf4fa;
  --accent2:        #5a8acc;
  --accent2-light: #f0f5fc;
  --bg:             #faf9f7;
  --surface:        #ffffff;
  --surface2:        #f4f3ef;
  --cream:           #f0f0f5;
  --border:          #e5e2db;
  --text:            #1a1814;
  --text2:           #4a4540;
  --muted:           #8a8480;
  --green:           #3a7a52;
  --green-light:     #eaf4ee;
  --warm:            #4a6580;
  --shadow:          0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:       0 4px 20px rgba(0,0,0,0.09);
  --radius:          12px;
}
*/

/* ── 全站 Reset ──────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', 'Noto Sans TC', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── 按鈕 ─────────────────────────────────────────── */
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(212,98,42,0.3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212,98,42,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text2);
  border: 1.5px solid var(--border);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-white {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-white:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-1px);
}

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 16px;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(212,98,42,0.3);
}
.btn-submit:hover { background: var(--accent-dark); }

/* ── Top Bar ────────────────────────────────────────── */
.topbar {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding: 7px 40px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: rgba(255,255,255,0.7); text-decoration: none; }

/* ── Nav ────────────────────────────────────────────── */
nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
nav .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { font-weight: 700; font-size: 19px; display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.logo span { color: var(--accent); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ── Info Bar ───────────────────────────────────────── */
.info-bar {
  background: var(--accent-light);
  border-top: 1px solid rgba(212,98,42,0.12);
  border-bottom: 1px solid rgba(212,98,42,0.12);
  padding: 20px 40px;
}
.info-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.info-item { display: flex; align-items: center; gap: 10px; }
.info-item .ii-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.info-item .ii-icon svg { width: 16px; height: 16px; }
.info-item .ii-title { font-size: 12px; font-weight: 600; color: var(--text); }
.info-item .ii-sub { font-size: 11px; color: var(--muted); }

/* ── Page Header ───────────────────────────────────── */
.page-header {
  background: linear-gradient(160deg, var(--surface) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
  padding: 56px 40px 48px;
}
.page-header .inner { max-width: 1200px; margin: 0 auto; }
.page-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
}
.page-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 12px;
}
.page-desc {
  color: var(--text2);
  font-size: 16px;
  max-width: 580px;
  line-height: 1.75;
}

/* ── Sections ───────────────────────────────────────── */
section { padding: 64px 40px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  margin-bottom: 12px;
}
.section-desc {
  color: var(--text2);
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--accent);
  display: block;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--surface) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px 72px;
}
.hero-inner { max-width: 1200px; margin: 0 auto; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--accent);
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.hero-desc {
  color: var(--text2);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.trust-item { }
.trust-item .ti-n { font-size: 22px; font-weight: 700; color: var(--text); }
.trust-item .ti-n span { color: var(--accent); }
.trust-item .ti-l { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Hero visual */
.hero-visual { position: relative; }
.hv-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hv-header {
  background: var(--surface2);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hv-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.hv-url { font-size: 11px; color: var(--muted); margin-left: 6px; font-family: monospace; }
.hv-body { padding: 18px; }
.hv-row { display: flex; gap: 10px; margin-bottom: 12px; }
.hv-card {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.hv-card .hc-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.hv-card .hc-l { font-size: 11px; color: var(--muted); }
.hv-card .hc-v { font-size: 13px; font-weight: 600; margin-top: 2px; }
.hv-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hv-m {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.hv-m .hm-n { font-size: 19px; font-weight: 700; }
.hv-m .hm-l { font-size: 11px; color: var(--muted); margin-top: 2px; }
.float-pill {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow);
}
.fp-a { bottom: -10px; left: -18px; }
.fp-b { top: -10px; right: -12px; }
.fp-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── About image ─────────────────────────────────────── */
.about-img {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent2-light) 100%);
  border: 1px solid rgba(212,98,42,0.15);
  border-radius: var(--radius);
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--warm);
  font-size: 13px;
}
.about-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.about-list li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.about-list li .al-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-list li .al-icon svg { width: 12px; height: 12px; }

/* ── Service Cards ─────────────────────────────────── */
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.25s;
}
.svc-card:hover {
  border-color: rgba(212,98,42,0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.svc-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.svc-icon svg { width: 18px; height: 18px; }
.svc-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.svc-card p { font-size: 12px; color: var(--text2); line-height: 1.65; }
.svc-tag {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 8px;
  font-weight: 500;
}

/* ── Info Cards ─────────────────────────────────────── */
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s;
}
.info-card:hover {
  border-color: rgba(212,98,42,0.3);
  box-shadow: var(--shadow);
}
.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; }
.info-card .ic-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 2px;
}
.info-card .ic-value { font-size: 14px; font-weight: 600; color: var(--text); }
.info-card .ic-sub { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ── Form ───────────────────────────────────────────── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-title { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.form-desc { font-size: 13px; color: var(--text2); margin-bottom: 24px; line-height: 1.6; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--surface);
}
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 16px;
  padding: 12px;
  background: var(--surface2);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.form-note a { color: var(--accent); text-decoration: none; }

/* ── Portfolio Cards ───────────────────────────────── */
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
}
.portfolio-card:hover {
  border-color: rgba(212,98,42,0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.portfolio-thumb {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

/* ── Pricing Cards ─────────────────────────────────── */
.pricing-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
  position: relative;
}
.pricing-card:hover {
  border-color: rgba(212,98,42,0.35);
  box-shadow: var(--shadow-md);
}
.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(212,98,42,0.04) 0%, var(--surface) 60%);
}

.price-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
  position: relative;
}
.price-card:hover {
  border-color: rgba(212,98,42,0.35);
  box-shadow: var(--shadow-md);
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(212,98,42,0.04) 0%, var(--surface) 60%);
}
.price-card.featured::before {
  content: '熱門方案';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pc-badge { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.pc-name { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.pc-desc { font-size: 12px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.pc-price { font-size: 28px; font-weight: 700; color: var(--accent); margin-bottom: 2px; }
.pc-price span { font-size: 13px; font-weight: 400; color: var(--muted); }
.pc-note { font-size: 11px; color: var(--muted); margin-bottom: 16px; }
.pc-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.pc-features li { font-size: 13px; color: var(--text2); display: flex; align-items: flex-start; gap: 8px; }
.pc-features li svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ── FAQ ────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.faq-a { font-size: 13px; color: var(--text2); line-height: 1.7; }

/* ── Notice ─────────────────────────────────────────── */
.notice {
  background: var(--accent-light);
  border: 1px solid rgba(212,98,42,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--accent-dark);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.notice svg { flex-shrink: 0; }

/* ── Proof ─────────────────────────────────────────── */
.proof-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.proof-card .pc-n { font-size: 32px; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.proof-card .pc-l { font-size: 13px; color: var(--text2); }
.proof-card .pc-d { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── Team ────────────────────────────────────────────── */
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.team-photo {
  height: 200px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent2-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm);
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.team-info { padding: 16px; }
.team-info h3 { font-size: 14px; font-weight: 600; }
.team-info .role { font-size: 12px; color: var(--accent); margin-bottom: 6px; }
.team-info p { font-size: 12px; color: var(--text2); line-height: 1.6; }

/* ── Placeholder Card ───────────────────────────────── */
.placeholder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.placeholder-card:hover {
  border-color: rgba(212,98,42,0.3);
  box-shadow: var(--shadow);
}
.pc-img {
  height: 200px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent2-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--warm);
  font-size: 12px;
  border-bottom: 1px solid var(--border);
}
.pc-info { padding: 14px; }
.pc-cat { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 4px; }
.pc-name { font-size: 14px; font-weight: 600; }
.pc-desc { font-size: 12px; color: var(--text2); margin-top: 4px; }

/* ── Map / Placeholder ───────────────────────────────── */
.map-placeholder {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent2-light) 100%);
  border: 1px solid rgba(212,98,42,0.15);
  border-radius: var(--radius);
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--warm);
  font-size: 13px;
  margin-top: 4px;
}

/* ── Construction ────────────────────────────────────── */
.construction {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.construction svg { margin-bottom: 16px; opacity: 0.5; }
.construction h2 { font-family: 'DM Serif Display', serif; font-size: 24px; margin-bottom: 10px; }
.construction p { font-size: 14px; color: var(--text2); margin-bottom: 20px; line-height: 1.7; }

/* ── Comparison Table ───────────────────────────────── */
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th, .comp-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.comp-table th {
  color: var(--muted);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--surface2);
}
.comp-table td:first-child { font-weight: 600; color: var(--text); }
.comp-table .check { color: var(--green); }
.comp-table .cross { color: var(--muted); }

/* ── Pay Card ────────────────────────────────────────── */
.pay-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.pay-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.pay-card h3 { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.pay-card p { font-size: 12px; color: var(--text2); line-height: 1.6; }

/* ── Promo / CTA Band ───────────────────────────────── */
.promo-band {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  padding: 56px 40px;
}
.promo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.promo-band h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  color: #fff;
  margin-bottom: 6px;
}
.promo-band p { color: rgba(255,255,255,0.82); font-size: 14px; }

/* ── Footer ─────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  padding: 48px 40px 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .logo { font-size: 17px; color: rgba(255,255,255,0.9); margin-bottom: 10px; }
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-col h4 { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p, .footer-bottom a { font-size: 11px; }
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ── Divider ─────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid, .values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .promo-inner { flex-direction: column; text-align: center; }
  nav .nav-links { display: none; }
  section { padding: 48px 20px; }
  .page-header { padding: 40px 20px; }
  .hero { padding: 60px 20px 52px; }
  .promo-band { padding: 40px 20px; }
  .topbar { padding: 7px 20px; }
  .info-bar { padding: 16px 20px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid, .proof-grid, .values-grid, .team-grid, .placeholder-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  nav { padding: 0 20px; }
  .topbar { padding: 7px 20px; }
}


/* ── UI 細節增強 ─────────────────────────────────────── */

/* 滾動條美化 */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* 選取文字 */
::selection { background: rgba(212,98,42,0.2); color: var(--text); }

/* 平滑滾動 */
html { scroll-behavior: smooth; }

/* 連結過渡 */
a { transition: color 0.2s; }

/* 按鈕過渡增強 */
button { transition: all 0.2s; }

/* 圖片加載漸顯 */
img { opacity: 1; transition: opacity 0.3s; }
img[src$=".jpg"]:not([src*="placeholder"]) { animation: imgFadeIn 0.5s ease-out; }
@keyframes imgFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* 卡片 hover 上浮陰影增強 */
.svc-card:hover .svc-icon,
.price-card:hover .svc-icon { transform: scale(1.08); }
.svc-icon { transition: transform 0.25s ease; }

/* nav active 下劃線動畫 */
.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* 優惠碼高亮 */
code {
  background: var(--accent-light);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Outfit', monospace;
  font-size: 0.9em;
}

/* FAQ 動畫 */
.faq-item { transition: all 0.2s; }

/* 表格加強 */
table td, table th { transition: background 0.15s; }
tbody tr:hover td { background: rgba(212,98,42,0.03); }

/* 聯絡卡片 hover 效果增強 */
.contact-card {
  transition: all 0.25s ease;
  cursor: default;
}

/* 區塊標題左側裝飾線動畫 */
.section-eyebrow span,
.page-eyebrow::before {
  transition: width 0.3s ease;
}
.section-eyebrow:hover span,
.page-header:hover .page-eyebrow::before {
  width: 28px;
}

/* 浮動元素動畫 */
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
.float-pill { animation: floatY 3s ease-in-out infinite; }
.fp-a { animation-delay: 0s; }
.fp-b { animation-delay: 1.5s; }

/* 按鈕點擊回饋 */
.btn-primary:active, .btn-outline:active { transform: scale(0.97); }

/* 價格卡片頂部標籤 */
.pc-badge { display: flex; align-items: center; gap: 4px; }

/* Hero 瀏覽器框架陰影 */
.hv-frame { transition: box-shadow 0.3s; }
.hv-frame:hover { box-shadow: var(--shadow-md), 0 0 0 1px rgba(212,98,42,0.1); }

/* 篩選按鈕群組 */
.filter-btn-group { display: flex; gap: 8px; flex-wrap: wrap; }

/* 作品集圖片覆蓋層 hover */
.portfolio-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-thumb::after { opacity: 1; }

/* 表單 focus ring */
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* 手機選單漢堡按鈕預留（未來擴展） */
@media (max-width: 768px) {
  .logo span:not(.logo span) { display: none; }
  .hero-grid { gap: 32px; }
  .promo-inner { gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
