@charset "UTF-8";
/* ==========================================================================
   香港維權落地頁 — 樣式表
   復刻參考站配色：深藍 #013d8f / 警示紅 #e80000 / 螢光黃 #fff15c
   行動優先，容器 640px；桌面置中並加背景襯底。
   ========================================================================== */

/* ---------- 1. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, li, dl, dt, dd, figure, blockquote {
  margin: 0; padding: 0;
}
ul, ol { list-style: none; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
legend { display: block; width: 100%; padding: 0; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; }

/* ---------- 2. Design tokens ---------- */
:root {
  --navy:        #013d8f;
  --navy-deep:   #012554;
  --navy-ink:    #061a3a;
  --blue-mid:    #2e69b8;
  --blue-bright: #178bd1;
  --red:         #e80000;
  --red-deep:    #b70000;
  --orange:      #ff5400;
  --yellow:      #fff15c;
  --gold:        #f5c518;
  --wa-green:    #25d366;
  --wa-green-dk: #128c47;

  --ink:         #14213d;
  --ink-soft:    #3d4a63;
  --line:        #d7dfea;
  --paper:       #ffffff;
  --paper-tint:  #eef4fb;
  --paper-cool:  #f2f5fa;

  --wrap:        640px;
  --pad:         20px;
  /* 內容欄置中用：窄螢幕保留 --pad，寬螢幕自動長出留白，讓每個區段的背景滿版 */
  --gutter:      max(var(--pad), calc((100% - var(--wrap)) / 2));
  --radius:      12px;
  --shadow-sm:   0 2px 8px rgba(6, 26, 58, .10);
  --shadow-md:   0 6px 20px rgba(6, 26, 58, .14);
  --shadow-lg:   0 14px 40px rgba(6, 26, 58, .22);

  --font: "Noto Sans HK", "Noto Sans TC", "PingFang HK", "PingFang TC",
          "Microsoft JhengHei", "Hiragino Sans", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 3. Base ---------- */
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: .01em;
  overflow-x: hidden;
  padding-bottom: 84px;            /* 讓出底部固定列 */
}
/* 版面：每個區段的背景滿版，內容欄由 --gutter 收在 640px 內 */
.wrapper { width: 100%; }
.inner { padding-inline: var(--gutter); }
.nowrap { white-space: nowrap; }

/* 強調用 inline 樣式 */
.em-bold   { font-weight: 800; }
.em-red    { color: var(--red); font-weight: 800; }
.em-navy   { color: var(--navy); font-weight: 800; }
.em-mark   {
  font-weight: 800;
  background: linear-gradient(transparent 58%, var(--yellow) 58%, var(--yellow) 94%, transparent 94%);
  padding-inline: 1px;
}
.em-under  { text-decoration: underline; text-decoration-color: var(--red); text-underline-offset: 4px; text-decoration-thickness: 2px; font-weight: 700; }

/* ---------- 4. Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 3px solid var(--navy);
}
.site-header__in {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px var(--gutter);
}
.logo { display: flex; align-items: center; gap: 9px; }
.logo__mark {
  width: 34px; height: 34px; flex: none;
  border-radius: 8px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--blue-bright) 100%);
  display: grid; place-items: center;
  color: #fff; font-weight: 900; font-size: 17px; letter-spacing: -.04em;
  box-shadow: var(--shadow-sm);
}
.logo__text { line-height: 1.25; min-width: 0; }
.logo__name { display: block; font-size: 14px; font-weight: 800; color: var(--navy); letter-spacing: 0; white-space: nowrap; }
.logo__sub  {
  display: block; font-size: 8px; color: var(--ink-soft);
  letter-spacing: .02em; line-height: 1.35; margin-top: 1px;
}
.header-cta {
  flex: none;
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--wa-green); color: #fff;
  font-size: 12px; font-weight: 800;
  padding: 7px 12px; border-radius: 999px;
  box-shadow: 0 2px 0 var(--wa-green-dk);
}
.header-cta svg { width: 14px; height: 14px; fill: currentColor; }

/* ---------- 5. First view ---------- */
.fv {
  position: relative;
  background:
    radial-gradient(120% 65% at 50% 0%, rgba(11,79,174,.42) 0%, transparent 62%),
    linear-gradient(178deg, #01142f 0%, var(--navy-deep) 62%, var(--navy) 100%);
  color: #fff;
  padding: 30px var(--gutter) 40px;
  overflow: hidden;
}
.fv::before {                       /* 斜紋底 */
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg,
    rgba(255,255,255,.035) 0 2px, transparent 2px 9px);
  pointer-events: none;
}
.fv::after {                        /* 底部香港天際線橫帶，兩端以遮罩淡出 */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 252px; pointer-events: none;
  background: url("../images/hero-bg.jpg") center 78% / cover no-repeat;
  opacity: .88;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 38%, #000 74%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 38%, #000 74%, transparent 100%);
}
.fv > * { position: relative; z-index: 1; }

.fv__ribbon {
  display: flex; justify-content: center; gap: 6px; margin-bottom: 14px;
}
.fv__ribbon span {
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
  padding: 4px 11px; border-radius: 3px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.32);
  color: #d8e7ff;
}
.fv__kicker {
  display: inline-block; margin: 0 auto 12px;
  position: relative; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-size: 14px; font-weight: 900; letter-spacing: .05em;
  padding: 5px 20px 6px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.fv__title {
  text-align: center;
  font-size: 33px; font-weight: 900; line-height: 1.3;
  letter-spacing: -.01em;
  text-shadow: 0 3px 14px rgba(0,0,0,.5);
}
.fv__title .hl {
  color: var(--yellow);
  font-size: 1.16em;
  text-shadow: 0 0 22px rgba(255, 241, 92, .45), 0 3px 12px rgba(0,0,0,.55);
}
.fv__title .sm { font-size: .68em; font-weight: 800; }
.fv__title em {
  font-style: normal;
  background: var(--red); border-radius: 4px;
  padding: 0 8px 2px; margin-inline: 2px; display: inline-block;
}
.fv__lead {
  text-align: center; margin-top: 14px;
  font-size: 14px; line-height: 1.8; color: #d7e5fa;
  text-shadow: 0 2px 10px rgba(0,0,0,.75);
}
.fv__badges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 20px;
}
.fv-badge {
  background: rgba(255,255,255,.96);
  border-radius: 10px; padding: 11px 6px 10px; text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.30);
}
.fv-badge__num {
  display: block; color: var(--navy);
  font-size: 25px; font-weight: 900; line-height: 1.1; letter-spacing: -.02em;
}
.fv-badge__num small { font-size: 13px; font-weight: 800; }
.fv-badge__lb { display: block; font-size: 10.5px; font-weight: 700; color: var(--ink-soft); margin-top: 2px; }
.fv__note {
  margin-top: 16px; text-align: center;
  font-size: 11px; color: #9db4d6;
}

/* ---------- 6. 區段標題 ---------- */
.sec { padding: 40px var(--gutter) 8px; }
.sec--tint { background: var(--paper-cool); }
.sec--ink  { background: var(--navy-ink); color: #fff; }

.sec-head { text-align: center; margin-bottom: 22px; }
.sec-head__eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: .16em;
  color: var(--blue-mid); margin-bottom: 8px;
}
.sec-head__eyebrow::before,
.sec-head__eyebrow::after {
  content: ""; width: 20px; height: 1px; background: currentColor;
}
.sec-head__title {
  font-size: 24px; font-weight: 900; line-height: 1.4; color: var(--navy);
  letter-spacing: -.01em;
}
.sec--ink .sec-head__title { color: #fff; }
.sec--ink .sec-head__eyebrow { color: var(--gold); }
.sec-head__title .hl {
  background: linear-gradient(transparent 60%, var(--yellow) 60%);
  padding-inline: 2px;
}
.sec-head__title .red { color: var(--red); }
.sec-head__sub {
  margin-top: 10px; font-size: 13.5px; line-height: 1.8; color: var(--ink-soft);
}
.sec--ink .sec-head__sub { color: #b9cbe8; }

/* 帶編號的深藍橫幅標題 */
.band-title {
  background: linear-gradient(100deg, var(--navy) 0%, var(--blue-mid) 100%);
  color: #fff; font-size: 16.5px; font-weight: 800; line-height: 1.55;
  padding: 12px 16px 12px 14px;
  border-radius: 8px 8px 0 0;
  display: flex; align-items: flex-start; gap: 10px;
}
.band-title__no {
  flex: none; background: var(--yellow); color: var(--navy-deep);
  font-size: 11px; font-weight: 900; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 4px; margin-top: 3px;
}

/* ---------- 7. CTA 區塊 ---------- */
.cta {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: 30px var(--gutter) 34px;
  position: relative;
}
.cta__title {
  text-align: center; color: #fff;
  font-size: 20px; font-weight: 900; line-height: 1.5; margin-bottom: 6px;
}
.cta__title .hl { color: var(--yellow); }
.cta__title .red-chip {
  display: inline-block; background: var(--red); border-radius: 4px;
  padding: 0 8px 2px; margin-bottom: 4px;
}
.cta__sub { text-align: center; color: #bed4f2; font-size: 12.5px; margin-bottom: 18px; }

.cta__card {
  background: #fff; border-radius: var(--radius);
  padding: 18px 16px 16px; box-shadow: var(--shadow-lg);
}
.cta__label {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 800; color: var(--navy);
  margin-bottom: 10px;
}
.cta__label::before, .cta__label::after {
  content: ""; width: 26px; height: 2px; background: var(--navy); opacity: .35;
}

/* 主要按鈕 */
.btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; text-align: center;
  font-weight: 900; letter-spacing: .02em;
  border-radius: 10px;
  padding: 15px 12px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:active { transform: translateY(2px); }
.btn svg { width: 22px; height: 22px; fill: currentColor; flex: none; }
.btn i { font-size: 19px; line-height: 1; flex: none; }

/* WhatsApp 圖標（static/images/whatsapp.png） */
.ico-wa { width: 26px; height: 26px; flex: none; }
.header-cta .ico-wa { width: 15px; height: 15px; }
.fixed-bar .btn .ico-wa { width: 20px; height: 20px; }
.ico-wa--dt {
  display: inline-block; width: 14px; height: 14px;
  vertical-align: -2px; margin-right: 6px;
}

.btn--wa {
  background: linear-gradient(180deg, #34e07a 0%, var(--wa-green) 100%);
  color: #06331a; font-size: 20px;
  box-shadow: 0 4px 0 var(--wa-green-dk), var(--shadow-md);
}
.btn--wa:active { box-shadow: 0 2px 0 var(--wa-green-dk); }
.btn--wa .btn__sub { display: block; font-size: 11px; font-weight: 800; opacity: .8; }

.btn--form {
  background: linear-gradient(180deg, #ff8a3d 0%, var(--orange) 100%);
  color: #fff; font-size: 19px;
  box-shadow: 0 4px 0 #b93b00, var(--shadow-md);
}
.btn--form:active { box-shadow: 0 2px 0 #b93b00; }

.btn--tel {
  background: #fff; color: var(--navy); font-size: 24px; letter-spacing: .02em;
  border: 2px solid var(--navy);
  box-shadow: 0 4px 0 rgba(1,61,143,.35);
}
.btn__stack { display: grid; gap: 11px; }
.cta__divider {
  display: flex; align-items: center; gap: 10px; margin: 15px 0 12px;
  color: #9aa8bd; font-size: 11.5px; font-weight: 700;
}
.cta__divider::before, .cta__divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.cta__hours {
  margin-top: 12px; text-align: center;
  font-size: 12px; color: var(--ink-soft); line-height: 1.7;
}
.cta__hours strong { color: var(--navy); }
.cta__urgent {
  margin-top: 14px; background: #fff6e6; border: 1px dashed var(--orange);
  border-radius: 8px; padding: 10px 12px;
  font-size: 12px; line-height: 1.75; color: #7a3b00; text-align: center;
}

/* ---------- 8. 案例卡 ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  margin: 0 0 18px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.card__body { padding: 14px 15px 16px; }
.card__text { font-size: 13.5px; line-height: 1.9; color: var(--ink-soft); }
.card__figure { position: relative; overflow: hidden; background: var(--paper-tint); }
.card__figure img {
  width: 100%; height: 138px; object-fit: cover; object-position: center 38%;
}
.card__figure::after {              /* 與下方文字銜接的漸層，避免硬邊 */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 34px;
  background: linear-gradient(transparent, rgba(255,255,255,.85));
  pointer-events: none;
}

/* 滿版說明照 */
.band-photo {
  margin: 0 0 20px; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm); position: relative;
}
.band-photo img { width: 100%; height: 186px; object-fit: cover; object-position: center 45%; }
.band-photo--sm { margin-bottom: 18px; }
.band-photo--sm img { height: 152px; }
.band-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 14px 11px;
  background: linear-gradient(transparent, rgba(1,17,44,.88));
  color: #e6eefc; font-size: 12px; font-weight: 700; line-height: 1.6;
}

/* ---------- 9. 注意事項 ---------- */
.caution-lead {
  font-size: 14px; line-height: 1.95; margin-bottom: 18px;
}
.caution-box {
  background: #fff; border: 3px solid var(--red); border-radius: 12px;
  padding: 18px 16px 16px; position: relative;
}
.caution-box__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff; white-space: nowrap;
  font-size: 12.5px; font-weight: 900; letter-spacing: .04em;
  padding: 3px 16px; border-radius: 999px;
}
.check-list { display: grid; gap: 10px; }
.check-list li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 14px; font-weight: 700; line-height: 1.7;
}
.check-list li::before {
  content: "✓"; flex: none;
  width: 21px; height: 21px; margin-top: 3px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-size: 12px; font-weight: 900;
  display: grid; place-items: center;
}
.caution-box__foot {
  margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line);
  font-size: 13.5px; font-weight: 800; color: var(--navy); text-align: center; line-height: 1.7;
}

/* ---------- 10. 選擇理由 ---------- */
.merit { margin: 0 0 18px; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.merit__body { background: #fff; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 10px 10px; padding: 14px 15px 16px; }
.merit__text { font-size: 13.5px; line-height: 1.9; color: var(--ink-soft); }
.merit__img {
  position: relative; overflow: hidden;
  background: var(--paper-tint); border-inline: 1px solid var(--line);
}
.merit__img img { width: 100%; height: 134px; object-fit: cover; object-position: center 42%; }
.merit__img::after {                /* 與白底文字區銜接，避免硬邊 */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 40px;
  background: linear-gradient(transparent, #fff);
}
.merit__badge {
  position: absolute; right: 12px; bottom: 12px; z-index: 1;
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(150deg, var(--navy) 0%, var(--blue-bright) 100%);
  color: #fff; font-size: 16px;
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(1, 20, 50, .45);
}

/* ---------- 11. 費用 ---------- */
.cost-card {
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 22px 18px 20px; text-align: center;
  border-top: 6px solid var(--navy);
}
.cost-card__lb { font-size: 15px; font-weight: 800; color: var(--navy); }
.cost-card__free {
  font-size: 76px; font-weight: 900; line-height: 1; color: var(--red);
  letter-spacing: -.05em; margin: 6px 0 2px;
  text-shadow: 3px 3px 0 rgba(232,0,0,.14);
}
.cost-card__free small { font-size: 28px; letter-spacing: 0; }
.cost-card__note { font-size: 13px; line-height: 1.85; color: var(--ink-soft); margin-top: 8px; }
.cost-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  margin-top: 18px; padding: 12px 14px;
  background: var(--paper-tint); border-radius: 8px; text-align: left;
}
.cost-row__lb { font-size: 14px; font-weight: 800; color: var(--navy); }
.cost-row__val { font-size: 15px; font-weight: 900; color: var(--ink); }
.cost-row__val b { font-size: 26px; color: var(--red); }
.cost-fine { margin: 12px 0 0; font-size: 11.5px; line-height: 1.8; color: #6b7789; }

/* ---------- 12. 流程 ---------- */
.flow { padding: 0; }
.flow__item { position: relative; padding-left: 46px; padding-bottom: 26px; }
.flow__item:last-child { padding-bottom: 4px; }
.flow__item::before {          /* 直線 */
  content: ""; position: absolute; left: 15px; top: 34px; bottom: 0;
  width: 2px; background: linear-gradient(var(--blue-mid), rgba(46,105,184,.25));
}
.flow__item:last-child::before { display: none; }
.flow__no {
  position: absolute; left: 0; top: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 900;
  display: grid; place-items: center;
  box-shadow: 0 0 0 4px rgba(1,61,143,.14);
}
.flow__title { font-size: 16px; font-weight: 900; color: var(--navy); line-height: 1.5; margin-bottom: 6px; }
.flow__title i { color: var(--blue-bright); margin-right: 8px; font-size: .95em; }
.flow__text { font-size: 13.5px; line-height: 1.9; color: var(--ink-soft); }
.flow__chip {
  display: inline-block; margin-top: 8px;
  background: var(--paper-tint); color: var(--navy);
  font-size: 11.5px; font-weight: 800; padding: 3px 10px; border-radius: 999px;
}

/* ---------- 13. 客戶心聲 ---------- */
.voice { margin: 0 0 18px; background: #fff; border-radius: 12px; box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid var(--line); }
.voice__head { background: var(--paper-tint); padding: 14px 15px; border-bottom: 1px solid var(--line); }
.voice__title { font-size: 15.5px; font-weight: 900; color: var(--navy); line-height: 1.55; }
.voice__meta { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.voice__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: linear-gradient(150deg, var(--blue-mid), var(--navy));
  color: #fff; font-size: 16px; font-weight: 900;
  display: grid; place-items: center;
}
.voice__tags { font-size: 11.5px; line-height: 1.6; }
.voice__tag {
  display: inline-block; background: var(--navy); color: #fff;
  font-weight: 800; padding: 1px 8px; border-radius: 3px; margin-bottom: 3px;
}
.voice__who { color: var(--ink-soft); }
.voice__body { padding: 14px 15px 0; position: relative; }
.voice__body p { font-size: 13.5px; line-height: 1.95; color: var(--ink-soft); margin-bottom: 12px; }
.voice__clip { max-height: 168px; overflow: hidden; transition: max-height .35s ease; }
.voice__clip.is-open { max-height: 3000px; }
.voice__more {
  display: block; width: 100%; padding: 11px;
  font-size: 13px; font-weight: 800; color: var(--navy);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 40%);
  border-top: 1px solid var(--line);
  margin-top: -30px; position: relative;
}
.voice__more::after { content: " ▼"; font-size: 10px; }
.voice__more.is-open::after { content: " ▲"; }
.voice-fine { margin: 4px 0 0; font-size: 11.5px; line-height: 1.8; color: #6b7789; }

/* ---------- 14. FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.faq__q {
  display: flex; gap: 10px; align-items: flex-start; width: 100%; text-align: left;
  padding: 13px 40px 13px 14px; position: relative;
  font-size: 14.5px; font-weight: 800; line-height: 1.6; color: var(--navy);
}
.faq__q::before {
  content: "Q"; flex: none;
  width: 23px; height: 23px; border-radius: 5px; margin-top: 1px;
  background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 900; display: grid; place-items: center;
}
.faq__q::after {
  content: ""; position: absolute; right: 16px; top: 21px;
  width: 9px; height: 9px; border-right: 2px solid var(--navy); border-bottom: 2px solid var(--navy);
  transform: rotate(45deg); transition: transform .25s ease;
}
.faq__item.is-open .faq__q::after { transform: rotate(-135deg); }
.faq__a {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease;
  background: var(--paper-tint);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 13px 14px; font-size: 13.5px; line-height: 1.9; color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

/* ---------- 15. 表單 ---------- */
.form-intro {
  background: linear-gradient(180deg, #fff7d6 0%, #ffe9a8 100%);
  padding: 24px var(--gutter) 22px; text-align: center;
}
.form-intro__t1 { font-size: 15px; font-weight: 900; color: var(--red); }
.form-intro__t2 { font-size: 23px; font-weight: 900; color: var(--navy); line-height: 1.45; margin-top: 6px; }
.form-intro__t2 .hl { background: linear-gradient(transparent 62%, #fff 62%); padding-inline: 3px; }
.form-intro__note { margin-top: 10px; font-size: 12.5px; line-height: 1.8; color: #6a5200; }

.form-sec {
  background:
    linear-gradient(180deg, rgba(6,26,58,.93) 0%, rgba(3,17,42,.86) 50%, rgba(6,26,58,.96) 100%),
    url("../images/form-bg.jpg") center / cover no-repeat,
    var(--navy-ink);
  padding: 28px var(--gutter) 34px;
}
.form-sec__head { text-align: center; margin-bottom: 20px; }
.form-sec__badge {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 12px; font-weight: 900; letter-spacing: .1em;
  padding: 4px 14px; border-radius: 999px; margin-bottom: 10px;
}
.form-sec__title { color: #fff; font-size: 27px; font-weight: 900; line-height: 1.35; }
.form-sec__title .hl { color: var(--yellow); }
.form-sec__sub { color: #b9cbe8; font-size: 12.5px; margin-top: 8px; line-height: 1.75; }

.form-card { background: #fff; border-radius: 14px; padding: 20px 16px 22px; box-shadow: var(--shadow-lg); }

.q-block { margin-bottom: 22px; }
.q-block__label {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 15px; font-weight: 900; color: var(--navy); line-height: 1.55;
  margin-bottom: 10px;
}
.q-block__no {
  flex: none; background: var(--navy); color: #fff;
  font-size: 11px; font-weight: 900; letter-spacing: .02em;
  padding: 3px 8px; border-radius: 4px; margin-top: 3px;
}
.req {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 10px; font-weight: 800; padding: 1px 6px; border-radius: 3px;
  margin-left: 6px; vertical-align: 3px;
}
.opt {
  display: inline-block; background: #8b98ab; color: #fff;
  font-size: 10px; font-weight: 800; padding: 1px 6px; border-radius: 3px;
  margin-left: 6px; vertical-align: 3px;
}

.opts { display: grid; gap: 8px; }
.opts--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.opts label {
  display: flex; align-items: center; gap: 7px;
  border: 2px solid var(--line); border-radius: 9px;
  padding: 11px 9px; cursor: pointer; min-width: 0;
  font-size: 13.5px; font-weight: 700; line-height: 1.35;
  letter-spacing: -.01em;
  background: #fff; transition: border-color .15s, background .15s, color .15s;
}
.opts label > span { min-width: 0; }
.opts input { position: absolute; opacity: 0; width: 0; height: 0; }
.opts label::before {
  content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #b9c4d4; background: #fff; transition: inherit;
}
.opts input:checked + span { color: var(--navy); }
.opts label:has(input:checked) {
  border-color: var(--navy); background: var(--paper-tint); color: var(--navy);
}
.opts label:has(input:checked)::before {
  border-color: var(--navy); border-width: 5px;
}
.opts input:focus-visible + span { outline: 2px solid var(--blue-bright); outline-offset: 3px; }

.field { margin-bottom: 16px; }
.field__label { display: block; font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.field__hint  { display: block; font-size: 11.5px; font-weight: 600; color: #7b8798; margin-top: 3px; line-height: 1.6; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="number"],
.field textarea {
  width: 100%; border: 2px solid var(--line); border-radius: 9px;
  padding: 12px 13px; font-size: 16px;   /* 16px 防 iOS 自動放大 */
  background: #fbfcfe; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus {
  outline: 0; border-color: var(--navy); background: #fff;
  box-shadow: 0 0 0 3px rgba(1,61,143,.12);
}
.field input::placeholder, .field textarea::placeholder { color: #a9b4c4; font-size: 14px; }
.field textarea { min-height: 84px; resize: vertical; line-height: 1.7; }

.wa-input { display: flex; }
.wa-input__cc {
  flex: none; display: grid; place-items: center;
  padding: 0 12px; font-size: 15px; font-weight: 800; color: var(--ink-soft);
  background: var(--paper-tint); border: 2px solid var(--line); border-right: 0;
  border-radius: 9px 0 0 9px;
}
.wa-input input { border-radius: 0 9px 9px 0 !important; }

.form-lead {
  background: var(--paper-tint); border-radius: 9px; padding: 12px 13px;
  font-size: 13px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 18px;
}
.form-error {
  display: none; background: #fff0f0; border: 1px solid var(--red); color: var(--red-deep);
  border-radius: 8px; padding: 10px 12px; font-size: 13px; font-weight: 700; margin-bottom: 14px;
}
.form-error.is-on { display: block; }
.privacy {
  font-size: 11.5px; line-height: 1.8; color: #6b7789; text-align: center; margin: 12px 0 14px;
}
.privacy a { color: var(--navy); text-decoration: underline; }
.submit-btn {
  width: 100%; border-radius: 10px; padding: 17px 12px;
  background: linear-gradient(180deg, #ff8a3d 0%, var(--orange) 100%);
  color: #fff; font-size: 20px; font-weight: 900; letter-spacing: .04em;
  box-shadow: 0 5px 0 #b93b00, var(--shadow-md);
  transition: transform .12s, box-shadow .12s;
}
.submit-btn:active { transform: translateY(3px); box-shadow: 0 2px 0 #b93b00; }
.submit-btn[disabled] { opacity: .6; }
.form-alt {
  margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); text-align: center;
}
.form-alt__t { font-size: 13.5px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }

/* ---------- 16. 公司資訊 ---------- */
.company { padding: 30px var(--gutter) 26px; background: var(--paper-cool); }
.company__logo { text-align: center; margin-bottom: 16px; }
.company__name { font-size: 19px; font-weight: 900; color: var(--navy); }
.company__en { font-size: 10.5px; letter-spacing: .12em; color: var(--ink-soft); margin-top: 2px; }
.company dl {
  display: grid; grid-template-columns: 118px 1fr;
  border-top: 1px solid var(--line); font-size: 12.5px;
}
.company dl:last-of-type { border-bottom: 1px solid var(--line); }
.company dt { padding: 11px 10px; font-weight: 800; color: var(--navy); background: #e8eff8; }
.company dt i { width: 15px; margin-right: 6px; text-align: center; opacity: .7; }
.company dd { padding: 11px 10px; color: var(--ink-soft); line-height: 1.7; }

/* ---------- 17. 底部固定列 ---------- */
.fixed-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(2, 21, 48, .95);
  backdrop-filter: blur(6px);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 18px rgba(0,0,0,.28);
  transform: translateY(110%); transition: transform .3s ease;
}
.fixed-bar.is-on { transform: translateY(0); }
.fixed-bar__in {
  max-width: var(--wrap); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.fixed-bar .btn { padding: 11px 8px; font-size: 15px; border-radius: 9px; }
.fixed-bar .btn svg { width: 18px; height: 18px; }

/* ---------- 18. 彈窗 ---------- */
.popup {
  position: fixed; inset: 0; z-index: 120;
  display: none; align-items: center; justify-content: center; padding: 18px;
}
.popup.is-on { display: flex; }
.popup__bg { position: absolute; inset: 0; background: rgba(2, 12, 30, .78); }
.popup__box {
  position: relative; width: 100%; max-width: 420px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 16px; padding: 26px 18px 20px; text-align: center;
  box-shadow: var(--shadow-lg);
  animation: pop .28s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes pop { from { transform: scale(.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup__close {
  position: absolute; top: -13px; right: -8px;
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; color: var(--navy-deep); font-size: 19px; font-weight: 900;
  box-shadow: var(--shadow-md); display: grid; place-items: center; line-height: 1;
}
.popup__kicker {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 12px; font-weight: 900; letter-spacing: .08em;
  padding: 4px 14px; border-radius: 999px; margin-bottom: 10px;
}
.popup__title { color: #fff; font-size: 22px; font-weight: 900; line-height: 1.45; }
.popup__title .hl { color: var(--yellow); }
.popup__text { color: #bed4f2; font-size: 12.5px; line-height: 1.8; margin: 10px 0 16px; }
.popup .btn { margin-bottom: 10px; }
.popup__later { color: #8ea6c9; font-size: 12px; text-decoration: underline; }

/* ---------- 19. Footer ---------- */
.site-footer { background: var(--navy-ink); color: #93a9c9; padding: 22px var(--gutter) 26px; text-align: center; }
.site-footer ul { display: flex; justify-content: center; gap: 18px; margin-bottom: 12px; flex-wrap: wrap; }
.site-footer a { font-size: 12.5px; text-decoration: underline; }
.site-footer small { font-size: 11px; display: block; line-height: 1.8; }
.site-footer__disclaimer {
  font-size: 11px; line-height: 1.8; color: #6d84a6;
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 14px; padding-top: 12px;
  text-align: left;
}

/* ---------- 20. 桌面微調 ---------- */
@media (min-width: 700px) {
  body { padding-bottom: 96px; }
  .fv__title { font-size: 38px; }
  .sec-head__title { font-size: 26px; }
}
@media (max-width: 360px) {
  .fv__title { font-size: 28px; }
  .cost-card__free { font-size: 62px; }
  .opts--2 { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
