/* =========================================================
   PICKHOME 地產代理 — 樣式表
   配色：深海軍藍 / 金・琥珀 / 淺灰底 / 白卡
   移動優先 responsive，無外鏈圖片（圖標用 emoji / 內聯 SVG）
   ========================================================= */

:root {
  --navy:        #0E1B2C;
  --navy-2:      #12233A;
  --gold:        #D4A24E;
  --gold-hover:  #B9883A;
  --gray-bg:     #F7F8FA;
  --ink:         #1A1A1A;
  --ink-soft:    #5A6472;
  --white:       #FFFFFF;
  --line:        #E6E9EE;
  --radius:      14px;
  --radius-sm:   12px;
  --shadow:      0 6px 22px rgba(14, 27, 44, 0.08);
  --shadow-lg:   0 14px 40px rgba(14, 27, 44, 0.14);
  --maxw:        1140px;
  --font: 'Noto Sans TC', system-ui, -apple-system, 'PingFang TC', 'Microsoft JhengHei', sans-serif;
}

/* ---------- 基礎 ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- 通用按鈕 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .12s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: var(--gold-hover); box-shadow: 0 6px 18px rgba(212,162,78,.35); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--sm { padding: 9px 14px; font-size: 14px; }

/* 無障礙：鍵盤 focus 可見 */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- 1. 導航 ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 27, 44, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 1px;
}
.brand__mark { flex: none; }
.brand__name { font-size: 19px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav__links > a:not(.btn) {
  color: rgba(255,255,255,.86);
  font-weight: 500;
  font-size: 15px;
  transition: color .2s ease;
}
.nav__links > a:not(.btn):hover { color: var(--gold); }
.nav__links > a:not(.btn).is-active { color: var(--gold); position: relative; }
.nav__links > a:not(.btn).is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--gold); border-radius: 2px;
}

/* 返頂掣 */
.backtop {
  position: fixed; right: 20px; bottom: 84px; z-index: 200;
  width: 44px; height: 44px; border: none; cursor: pointer;
  border-radius: 50%; background: var(--navy); color: #fff;
  font-size: 22px; line-height: 1;
  box-shadow: 0 8px 20px rgba(14,27,44,.30);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.backtop:hover { background: var(--gold); }
.backtop.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 語言切換掣（中 / EN） */
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  margin-left: 6px; padding: 3px;
  background: rgba(255,255,255,.12); border-radius: 999px;
}
.lang-switch__btn {
  border: none; cursor: pointer; font: inherit; font-size: 13px; font-weight: 600;
  padding: 5px 11px; border-radius: 999px; line-height: 1;
  background: transparent; color: rgba(255,255,255,.82);
  transition: background .2s ease, color .2s ease;
}
.lang-switch__btn:hover { color: #fff; }
.lang-switch__btn.is-active { background: var(--gold); color: #16324f; }

/* ---------- 2. HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, #0a1626 100%);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  opacity: .9;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 92px 20px 120px;
  max-width: 820px;
}
.hero__eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
  margin: 0 0 14px;
}
.hero__title {
  font-size: clamp(38px, 7vw, 62px);
  font-weight: 900;
  margin: 0 0 18px;
  line-height: 1.1;
  letter-spacing: 1px;
}
.hero__sub {
  font-size: clamp(16px, 2.4vw, 19px);
  color: rgba(255,255,255,.82);
  margin: 0 0 30px;
  max-width: 640px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__search {
  display: flex;
  gap: 8px;
  max-width: 560px;
  margin: 0 0 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  backdrop-filter: blur(6px);
}
.hero__search input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
}
.hero__search input::placeholder { color: rgba(255,255,255,.55); }
.hero__search button {
  background: var(--gold);
  color: var(--navy);
  border: 0;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background .2s ease;
  white-space: nowrap;
}
.hero__search button:hover { background: var(--gold-hover); }

/* ---------- 3. 信任條 ---------- */
.trust {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 3px solid var(--gold);
}
.trust__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  padding: 16px 20px;
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}
.trust__icon { font-size: 18px; }

/* ---------- 區塊通用 ---------- */
.section { padding: 70px 0; }
.section--alt { background: var(--gray-bg); }

.section__head { text-align: center; margin-bottom: 38px; }
.section__title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: .5px;
}
.section__sub {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0;
}
.section__note {
  margin-top: 26px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
}

/* ---------- 4. 房源卡片 + 篩選 tab ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}
.tab {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.tab:hover { border-color: var(--gold); color: var(--navy); }
.tab.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid--cards { grid-template-columns: 1fr; }   /* 手機 1 列 */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card__thumb {
  position: relative;
  height: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px;
}
.card__thumb--buy  { background: linear-gradient(135deg, #1c3a5e, #0E1B2C); }
.card__thumb--rent { background: linear-gradient(135deg, #2a6b5e, #103a33); }
.card__thumb--shop { background: linear-gradient(135deg, #6b4a1c, #2a1c0a); }
.card__thumb--new  { background: linear-gradient(135deg, #3a2a5e, #161033); }
/* PARK SILICON 官方 logo：maroon 底配 logo（contain 居中，與底色融合） */
.card__thumb--park {
  background-color: #4a1e1c;
  background-image: url('assets/park-silicon-logo.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.card__tag {
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
}
.card__cat {
  align-self: flex-start;
  color: rgba(255,255,255,.9);
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.4);
  padding: 4px 10px;
  border-radius: 999px;
}

.card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__name { font-size: 18px; font-weight: 800; color: var(--navy); margin: 0; }
.card__district { color: var(--ink-soft); font-size: 14px; margin: 0; }
.card__price { color: var(--gold); font-size: 24px; font-weight: 900; margin: 8px 0 2px; }
.card__price small { font-size: 14px; font-weight: 700; color: var(--ink-soft); }
.card__meta { color: var(--ink-soft); font-size: 13px; margin: 0 0 12px; }
.card__btn { align-self: flex-start; }

/* ---------- 5 / 6. 服務、為何揀我 ---------- */
.grid--4 { grid-template-columns: 1fr; }   /* 手機 1 列 */

.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.section--alt .feature { background: var(--white); }
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.feature__icon { font-size: 34px; line-height: 1; margin-bottom: 14px; }
.feature__title { font-size: 18px; font-weight: 800; color: var(--navy); margin: 0 0 8px; }
.feature__text { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ---------- 7. 三步搞掂 ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 14px;
}
.step__title { font-size: 18px; font-weight: 800; color: var(--navy); margin: 0 0 8px; }
.step__text { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ---------- 8. 估價 CTA 橫幅 ---------- */
.cta-banner {
  margin: 70px auto;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}
.cta-banner__title { color: var(--white); font-size: clamp(22px, 3.5vw, 30px); font-weight: 900; margin: 0 0 8px; }
.cta-banner__sub { color: rgba(255,255,255,.8); font-size: 15px; margin: 0; }

/* ---------- 9. FAQ 手風琴 ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
}
.faq__icon { flex: none; position: relative; width: 16px; height: 16px; }
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.faq__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq__icon::after  { top: 0; left: 7px; width: 2px; height: 16px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); opacity: 0; }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq__a > p { margin: 0; padding: 0 20px; color: var(--ink-soft); font-size: 15px; }
.faq__a > p:first-child { padding-top: 4px; }
.faq__disclaimer { padding-bottom: 18px !important; margin-top: 10px !important; font-size: 13px; color: var(--ink-soft); opacity: .85; border-top: 1px dashed var(--line); padding-top: 12px !important; }

/* ---------- 10. 表單 ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  max-width: 920px;
  margin: 0 auto;
}
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}
.form__row { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form label { font-weight: 700; font-size: 14px; color: var(--navy); }
.form input,
.form textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--gray-bg);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  resize: vertical;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,162,78,.18);
}
.form__submit { width: 100%; margin-top: 4px; }
.form__hint { text-align: center; color: var(--ink-soft); font-size: 14px; margin: 14px 0 0; }
.form__hint a { color: var(--gold-hover); font-weight: 700; }

.contact__aside {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}
.contact__title { font-size: 18px; font-weight: 800; margin: 0 0 14px; color: var(--gold); }
.contact__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.contact__list li { font-size: 15px; display: flex; gap: 10px; align-items: baseline; }
.contact__list a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,.3); }
.contact__list a:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- 11. Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,.85); padding-top: 48px; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 36px;
}
.footer__title { font-size: 16px; font-weight: 800; color: var(--white); margin: 0 0 14px; }
.footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__contact a { color: var(--gold); }
.footer__contact a:hover { color: var(--gold-hover); }
.footer__text { font-size: 14px; color: rgba(255,255,255,.72); margin: 0 0 10px; line-height: 1.7; }
.footer__text strong { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-align: center;
}

/* ---------- 12. 浮動 WhatsApp 按鈕 ---------- */
.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .15s ease, box-shadow .2s ease;
}
.fab:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37, 211, 102, .55); }
.fab__text { display: inline; }

/* =========================================================
   響應式斷點
   ========================================================= */

/* 平板：2 列 */
@media (min-width: 600px) {
  .grid--cards { grid-template-columns: repeat(2, 1fr); }
  .grid--4     { grid-template-columns: repeat(2, 1fr); }
  .steps       { grid-template-columns: repeat(3, 1fr); }
  .contact     { grid-template-columns: 1.4fr 1fr; }
  .footer__inner { grid-template-columns: repeat(3, 1fr); }
}

/* 桌面：房源 4 列、服務/優勢 4 列 */
@media (min-width: 980px) {
  .grid--cards { grid-template-columns: repeat(4, 1fr); }
  .grid--4     { grid-template-columns: repeat(4, 1fr); }
}

/* 手機：摺疊為漢堡選單 */
@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 8px 20px 18px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links > a:not(.btn) {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 16px;
  }
  .nav__cta { margin-top: 12px; text-align: center; }
}

/* 收細浮動按鈕文字，避免遮擋手機底部 */
@media (max-width: 420px) {
  .fab__text { display: none; }
  .fab { padding: 14px; }
}

/* ---------- 4b. 2026 新盤速遞（卡片格，按區分拆） ---------- */
.plist__region {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.plist__region::before {
  content: "";
  width: 6px;
  height: 24px;
  background: var(--gold);
  border-radius: 3px;
  display: inline-block;
}
.plist__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 8px;
}
.pcard {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(14, 27, 44, .05);
  transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease;
}
.pcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(14, 27, 44, .14);
  border-color: rgba(212, 162, 78, .45);
}
.pcard__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.pcard__name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.pcard__dist {
  font-size: .76rem;
  color: var(--ink-soft);
  background: var(--gray-bg);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.pcard__price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-hover);
  margin: 2px 0 0;
}
.pcard__price sup { font-size: .62rem; font-weight: 600; color: var(--ink-soft); }
.pcard__price--na { font-size: 1rem; font-weight: 700; color: var(--ink-soft); }
.pcard__date {
  font-size: .82rem;
  color: var(--ink-soft);
  margin: 0;
}
.pcard__date span {
  display: inline-block;
  min-width: 56px;
  color: var(--navy);
  font-weight: 600;
}
.pcard__btn { margin-top: auto; text-align: center; }

/* ---------- 4b. 新盤速遞 卡片細項 ---------- */
.pcard__meta {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pcard__meta li {
  font-size: .82rem;
  color: var(--ink-soft);
  display: flex;
  gap: 8px;
  line-height: 1.4;
}
.pcard__meta li span {
  flex: 0 0 64px;
  color: var(--navy);
  font-weight: 600;
}

/* ---------- 4b. 新盤目錄：LOGO / 狀態 / 篩選 ---------- */
.pcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 52px;
}
.pcard__logo {
  max-height: 48px;
  max-width: 62%;
  width: auto;
  object-fit: contain;
  object-position: left center;
}
.pcard__logo--ph {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.15rem;
  flex: 0 0 auto;
}
.pcard__status {
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.pcard__status.is-onsale  { background: #e8f7ee; color: #14854b; }
.pcard__status.is-coming  { background: #e8f0ff; color: #1c5fd6; }
.pcard__status.is-intent  { background: #fff1e0; color: #b9740a; }
.pcard__status.is-soldout { background: #f0f1f3; color: #8a93a0; }

.pcard__name--en {
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin: -4px 0 0;
}
/* 英文名優先時，下方顯示嘅中文副名 */
.pcard__name--zh {
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 2px 0 0;
}
.pcard__addr {
  font-size: .78rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}
.pcard__vr {
  font-size: .78rem;
  color: var(--gold-hover);
  font-weight: 600;
  text-decoration: none;
}
.pcard__vr:hover { text-decoration: underline; }

/* 篩選控制列 */
.np-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 6px 0 18px;
}
.np-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.np-tab {
  border: 1px solid #dfe4ea;
  background: #fff;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .15s ease;
}
.np-tab:hover { border-color: var(--gold); }
.np-tab.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.np-search {
  flex: 1 1 200px;
  min-width: 160px;
  border: 1px solid #dfe4ea;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: .9rem;
  color: var(--navy);
  background: #fff;
}
.np-search:focus { outline: none; border-color: var(--gold); }
.np-tools { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.np-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .84rem; color: var(--ink-soft); cursor: pointer; user-select: none;
}
.np-sort {
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: .86rem;
  color: var(--navy);
  background: #fff;
}
.np-count { font-size: .82rem; color: var(--ink-soft); margin: 0 0 14px; }
.np-note  { font-size: .76rem; color: var(--ink-soft); margin: 18px 0 0; }
.np-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  padding: 40px 0;
  font-size: .95rem;
}

/* ---------- 5.5 按揭計算機 ---------- */
.calc {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.calc__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.calc__field { display: flex; flex-direction: column; gap: 6px; }
.calc__field--full { grid-column: 1 / -1; }
.calc__field--check {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.calc__field--check input { width: 18px; height: 18px; accent-color: var(--gold); }
.calc__field label {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.calc__field input,
.calc__field select {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--gray-bg);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.calc__field input:focus,
.calc__field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,162,78,.18);
}

.calc__results {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.calc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.calc__cell {
  background: var(--gray-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calc__k { font-size: 13px; color: var(--ink-soft); font-weight: 600; }
.calc__v {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  word-break: keep-all;
  font-variant-numeric: tabular-nums;
}
.calc__v:first-letter { color: var(--gold-hover); }
.calc__note { font-size: 12px; color: var(--ink-soft); }
.calc__empty { color: var(--ink-soft); font-size: 14px; margin: 0; text-align: center; padding: 20px 0; }

/* ---------- 8.5 新盤攻略 ---------- */
.guides {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.guide {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.guide > summary.guide__q {
  list-style: none;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 48px 18px 20px;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  user-select: none;
}
.guide > summary.guide__q::-webkit-details-marker { display: none; }
/* 加號圖示（展開後變減號） */
.guide > summary.guide__q::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--white), var(--white)) center/3px 12px no-repeat,
    linear-gradient(var(--white), var(--white)) center/12px 3px no-repeat,
    var(--gold);
  border-radius: 4px;
  transition: background .2s ease;
}
.guide[open] > summary.guide__q::after {
  background:
    linear-gradient(var(--white), var(--white)) center/12px 3px no-repeat,
    var(--gold);
}
.guide__a {
  padding: 0 20px 18px;
  color: var(--ink-soft);
  font-size: 15px;
}
.guide__a p { margin: 0 0 10px; }
.guide__a p:last-child { margin-bottom: 0; }
.guide__a a { color: var(--gold-hover); font-weight: 700; }
.guide__a a:hover { text-decoration: underline; }

/* 響應式：計算機桌面雙欄 */
@media (min-width: 860px) {
  .calc { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .calc__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 8.6 抽一手新盤 5 步流程 ---------- */
.proc {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  counter-reset: proc;
}
.proc__step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px 22px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.proc__step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.proc__no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 12px;
}
.proc__icon { display: block; font-size: 30px; line-height: 1; margin-bottom: 10px; }
.proc__title { font-size: 17px; font-weight: 800; color: var(--navy); margin: 0 0 8px; }
.proc__text { color: var(--ink-soft); font-size: 14px; margin: 0; line-height: 1.6; }

.proc__assure {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 26px;
}
.proc__assure-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}
.proc__assure-ico { font-size: 26px; line-height: 1; flex: none; }
.proc__assure-t { font-size: 16px; font-weight: 800; color: var(--gold); margin: 0 0 6px; }
.proc__assure-x { font-size: 14px; color: rgba(255,255,255,.82); margin: 0; line-height: 1.6; }

.proc__cta { text-align: center; margin-bottom: 18px; }

@media (min-width: 720px) {
  .proc__assure { grid-template-columns: 1fr 1fr; }
}

/* ---------- 13. 樓盤詳情彈窗 ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 27, 44, .62);
  backdrop-filter: blur(2px);
}
.modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 26px 24px 28px;
  animation: modalIn .2s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px; height: 36px;
  border: none;
  background: var(--gray-bg);
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background .15s ease;
}
.modal__close:hover { background: var(--line); }
.modal__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 48px; }
.modal__logo { max-height: 44px; max-width: 60%; object-fit: contain; object-position: left center; }
.modal__name { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin: 14px 0 2px; line-height: 1.2; }
.modal__en { color: var(--ink-soft); font-size: .85rem; margin: 0 0 8px; }
.modal__price { font-size: 1.6rem; font-weight: 900; color: var(--gold-hover); margin: 4px 0 16px; }
.modal__price sup { font-size: .6rem; font-weight: 600; color: var(--ink-soft); }
.modal__price--na { font-size: 1.1rem; font-weight: 700; color: var(--ink-soft); }
.modal__rows { margin: 0 0 20px; border-top: 1px solid var(--line); }
.modal__row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.modal__row dt { flex: 0 0 76px; color: var(--navy); font-weight: 700; font-size: .9rem; }
.modal__row dd { margin: 0; color: var(--ink-soft); font-size: .92rem; line-height: 1.5; }
.modal__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.modal__actions .btn { flex: 1 1 auto; }

/* 詳情彈窗 — 示範單位相簿 */
.modal__gallery-wrap { margin: 4px 0 22px; }
.modal__subtitle {
  font-size: .82rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--navy);
  margin: 0 0 10px; padding-left: 10px; border-left: 3px solid var(--gold);
}
.modal__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 8px;
}
.modal__thumb {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 10px; border: 1px solid var(--line);
  cursor: pointer; background: #f2f3f5;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.modal__thumb:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(14,27,44,.16); border-color: var(--gold); }
.modal__thumb--err { opacity: .35; }
.modal__thumb--err::after { content: "圖片載入失敗"; }

/* 示範單位放大燈箱（lightbox） */
.lb {
  position: fixed; inset: 0; z-index: 400;
  display: none; align-items: center; justify-content: center;
  background: rgba(8, 14, 24, .92);
  padding: 24px; cursor: zoom-out;
}
.lb.is-open { display: flex; }
.lb__img {
  max-width: 92vw; max-height: 92vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

/* 卡片可點擊提示 */
.pcard { cursor: pointer; }
.pcard:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* 響應式網格：手機1 / 平板2 / 桌面3 */
@media (min-width: 600px) {
  .plist__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .plist__grid { grid-template-columns: repeat(3, 1fr); }
}


/* ===== 新增頁面樣式（2026-08-19）===== */
.crumbs{font-size:.85rem;color:#6b7684;padding:18px 0 0;max-width:1200px;margin:0 auto;padding-left:20px;padding-right:20px}
.crumbs a{color:#0E1B2C;text-decoration:none;border-bottom:1px solid transparent}
.crumbs a:hover{border-bottom-color:#D4A24E}
.article{max-width:820px;margin:0 auto;line-height:1.9;font-size:1.02rem}
.article h2{font-size:1.45rem;margin:2.2em 0 .6em;color:#0E1B2C}
.article h3{font-size:1.15rem;margin:1.6em 0 .4em;color:#0E1B2C}
.article p{margin:.6em 0}
.article ul,.article ol{margin:.8em 0 .8em 1.4em;padding:0}
.article li{margin:.35em 0}
.article__head{margin-bottom:1.6em}
.article__tag{display:inline-block;background:#D4A24E;color:#fff;font-size:.8rem;font-weight:700;padding:4px 12px;border-radius:20px;margin-bottom:14px}
.article__intro{font-size:1.15rem;color:#374151;font-weight:500}
.article__note{margin-top:2.4em;font-size:.9rem;color:#6b7684}
.article__cta{background:linear-gradient(135deg,#0E1B2C,#1c3a5e);color:#fff;border-radius:16px;padding:36px 28px;text-align:center;margin-top:2.4em}
.article__cta h2{color:#fff;margin:0 0 .4em}
.article__cta p{color:#d7dfe9;margin:0 0 1.2em}
.guide-card-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:16px}
.guide-card{display:flex;flex-direction:column;gap:8px;background:#fff;border:1px solid #e5e7eb;border-radius:14px;padding:20px;text-decoration:none;color:#0E1B2C;transition:box-shadow .2s,transform .2s}
.guide-card:hover{box-shadow:0 8px 24px rgba(14,27,44,.12);transform:translateY(-2px)}
.guide-card__tag{align-self:flex-start;font-size:.72rem;font-weight:700;color:#0E1B2C;background:#f3ead9;border:1px solid #e0cfae;padding:2px 10px;border-radius:12px}
.guide-card__title{font-size:1.05rem;font-weight:700;line-height:1.45}
.guide-card__excerpt{font-size:.88rem;color:#6b7684;line-height:1.6}
.guide-card__more{font-size:.85rem;font-weight:700;color:#b8860b}
.grid--2{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:20px}
.pf__head{margin-bottom:18px}
.pf__title{font-size:2rem;margin:.4em 0}
.pf__sub{color:#374151;font-size:1.05rem}
.pf__price{font-size:1.6rem;font-weight:900;color:#b8860b;margin:.6em 0}
.pf__facts{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:12px;margin:20px 0}
.pf__cell{background:#f7f8fa;border:1px solid #e5e7eb;border-radius:12px;padding:12px 14px}
.pf__cell dt{font-size:.78rem;color:#6b7684;margin-bottom:4px}
.pf__cell dd{font-size:.95rem;font-weight:600;margin:0;color:#0E1B2C}
.pf__actions{display:flex;flex-wrap:wrap;gap:12px;margin:18px 0 8px}
.pf__gallery{margin-top:28px}
.pf__gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:10px;margin-top:14px}
.pf__thumb{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:10px;border:1px solid #e5e7eb}
.pf__note{background:#fff8ec;border:1px solid #f0dfc0;border-radius:14px;padding:20px;margin-top:24px}
.pf__note h2{font-size:1.2rem}
.pf__related{margin-top:32px}
.pf__rel-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:12px;margin-top:14px}
.pf__rel-card{display:block;background:#fff;border:1px solid #e5e7eb;border-radius:12px;padding:14px;text-decoration:none;color:#0E1B2C}
.pf__rel-card:hover{border-color:#D4A24E}
.pf__rel-name{display:block;font-weight:700;margin-bottom:4px}
.pf__rel-price{display:block;color:#b8860b;font-weight:700;font-size:.95rem}
.pf__rel-dist{display:block;font-size:.8rem;color:#6b7684;margin-top:4px}
.pf__rel-more{margin-top:14px}
.contact__list{list-style:none;margin:0;padding:0}
.contact__list li{margin:.6em 0}

/* ---------- 深度內容章節（樓盤頁） ---------- */
.pf__points-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.pf__points-list li {
  background: var(--gray-bg); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 16px; padding-left: 38px; position: relative;
}
.pf__points-list li::before { content: "✓"; position: absolute; left: 14px; top: 10px; color: var(--gold); font-weight: 900; }

.pf__pay-table, .pf__compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); }
.pf__pay-table th, .pf__pay-table td, .pf__compare-table th, .pf__compare-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; font-size: 14px; }
.pf__pay-table th, .pf__compare-table th { background: var(--navy); color: var(--white); font-weight: 700; }
.pf__pay-table tr:last-child td, .pf__compare-table tr:last-child td { border-bottom: 0; }
.pf__compare-table td:first-child a { font-weight: 700; color: var(--navy); }
.pf__compare-table td:first-child a:hover { color: var(--gold-hover); }

.pf__mortgage p { max-width: 60ch; }
.pf__mortgage .btn { margin-top: 4px; }

.pf__area-info p { max-width: 70ch; }

.pf__faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 8px; }
.pf__faq-item summary { cursor: pointer; font-weight: 700; padding: 12px 16px; list-style: none; }
.pf__faq-item summary::before { content: "＋ "; color: var(--gold); }
.pf__faq-item[open] summary::before { content: "－ "; }
.pf__faq-item p { margin: 0; padding: 0 16px 14px; color: var(--ink-soft); }

@media (max-width: 720px) {
  .pf__pay-table, .pf__compare-table { font-size: 13px; }
  .pf__pay-table th, .pf__pay-table td, .pf__compare-table th, .pf__compare-table td { padding: 9px 10px; }
}

/* ---------- 樓盤銷售概況（樓盤頁） ---------- */
.pf__sales-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; margin-bottom: 12px; }
.pf__sales-cell { background: var(--gray-bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; }
.pf__sales-k { display: block; font-size: 12px; color: var(--ink-soft); margin-bottom: 4px; }
.pf__sales-v { display: block; font-weight: 800; font-size: 16px; color: var(--navy); }
.pf__sales-bar { height: 10px; background: var(--line); border-radius: 999px; overflow: hidden; margin-bottom: 6px; }
.pf__sales-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-hover)); border-radius: 999px; }


/* ---------- 列表卡銷售資訊 ---------- */
.pcard__sales { margin: 8px 0 0; font-size: 13px; color: var(--ink-soft); }
.pcard__sales {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pcard__sales { margin: 2px 0 0; font-size: 12px; color: var(--navy); font-weight: 600; }
.pcard__sales::before { content: none; }
.pcard__sales b { color: var(--navy); }


/* ---------- WhatsApp 浮動按鈕（全站） ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
  transition: transform .15s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37, 211, 102, .5); }
@media (max-width: 720px) {
  .wa-float { padding: 15px; border-radius: 50%; }
  .wa-float__label { display: none; }
}

/* ---------- 通用精緻化 ---------- */
.section__head { margin-bottom: 34px; }
.section__title {
  position: relative;
  padding-bottom: 10px;
}
.section__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
}
.feature {
  transition: transform .18s ease, box-shadow .25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}


/* ---------- 卡片新設計 ---------- */
.pcard__media {
  position: relative;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  margin: 0;
}
.pcard__img { width: 100%; height: 100%; object-fit: cover; }
.pcard__ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
}
.pcard__ph span { font-size: 36px; font-weight: 900; color: var(--gold); }
.pcard__ph small { font-size: 13px; font-weight: 700; }
.pcard__status { position: absolute; top: 10px; left: 10px; }
.pcard__body { display: flex; flex-direction: column; gap: 10px; }
.pcard__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--gray-bg);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  white-space: nowrap;
}
.chip--psf { background: #FFF7E8; color: #9A6B1F; border-color: #F0DFC0; }
.chip--launch { background: #EAF3FF; color: #1D4ED8; border-color: #C7D9F5; }
.chip--tender { background: #FFF1F0; color: #B42318; border-color: #F5C9C5; }
.pcard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  border-top: 1px dashed var(--line);
  padding-top: 10px;
}
.pcard__cell { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.pcard__cell span { font-size: 11px; color: var(--ink-soft); }
.pcard__cell b { font-size: 13px; color: var(--navy); font-weight: 700; overflow-wrap: anywhere; }


/* ---------- 樓盤頁資訊 Hero ---------- */
.pf-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, #0a1626 100%);
  color: #fff;
  padding: 46px 0 30px;
}
.pf-hero__top {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pf-hero__head { flex: 1 1 360px; }
.pf-hero__side { flex: 0 1 430px; text-align: right; }
.pf-hero .pf__title { color: #fff; margin: 10px 0 6px; font-size: clamp(26px, 4vw, 38px); }
.pf-hero .pf__sub { color: rgba(255,255,255,.82); margin: 0 0 4px; font-size: 16px; }
.pf-hero .pf__meta-line { color: rgba(255,255,255,.6); font-size: 13px; margin: 0; }
.pf-hero .pf__price { color: var(--gold); font-size: clamp(30px, 5vw, 44px); font-weight: 900; margin: 0 0 2px; }
.pf-hero .pf__price--na { font-size: 22px; color: rgba(255,255,255,.72); }
.pf-hero .pf__price-note { color: rgba(255,255,255,.55); font-size: 12px; margin: 0 0 14px; }
.pf-hero .pf__actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.pf-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 36px;
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.pf-hero__stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 11px 2px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: transparent;
  border-radius: 0;
}
.pf-hero__stat span { display: block; font-size: 12.5px; color: rgba(255,255,255,.6); flex: 0 0 auto; }
.pf-hero__stat b { display: block; font-size: 14.5px; color: #fff; font-weight: 700; text-align: right; overflow-wrap: anywhere; }

/* ---------- 頁內快速導覽 ---------- */
.pf-nav {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 14px rgba(14, 27, 44, .06);
}
.pf-nav .container {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 20px;
}
.pf-nav a {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  padding: 7px 14px;
  border-radius: 999px;
}
.pf-nav a:hover { color: var(--navy); background: var(--gray-bg); }

@media (max-width: 720px) {
  .pf-hero__side { text-align: left; flex-basis: 100%; }
  .pf-hero .pf__actions { justify-content: flex-start; }
  .pf-hero__stats { grid-template-columns: 1fr; }
}


/* ===== 樓盤頁「去格仔」乾淨排版 ===== */
/* 基本資料 spec 表 */
.pf-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 40px; }
.pf-facts__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 12px 2px;
  border-bottom: 1px solid var(--line);
}
.pf-facts__row span { color: var(--ink-soft); font-size: 13px; flex: 0 0 auto; }
.pf-facts__row b { color: var(--navy); font-weight: 700; font-size: 14px; text-align: right; overflow-wrap: anywhere; }

/* 賣點：無框剔號清單 */
.pf__points-list { gap: 0; }
.pf__points-list li {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 10px 0 10px 28px;
  border-bottom: 1px dashed var(--line);
}
.pf__points-list li:last-child { border-bottom: 0; }
.pf__points-list li::before { left: 2px; top: 11px; }

/* 銷售概況：無框 */
.pf__sales-grid { gap: 0; margin-bottom: 12px; }
.pf__sales-cell {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 10px 4px;
  border-bottom: 1px dashed var(--line);
}

/* 表格：更輕 */
.pf__pay-table, .pf__compare-table { box-shadow: none; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.pf__pay-table th, .pf__compare-table th { background: var(--gray-bg); color: var(--navy); }

/* FAQ：無框，底部分隔線 */
.pf__faq-item {
  background: none;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.pf__faq-item summary { padding: 13px 2px; }
.pf__faq-item p { padding: 0 2px 14px; }

/* 攻略：行內連結 */
.pf__guide-links { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.pf__guide-links a { font-weight: 700; color: var(--navy); border-bottom: 2px solid transparent; padding-bottom: 2px; }
.pf__guide-links a:hover { border-bottom-color: var(--gold); }

@media (max-width: 720px) {
  .pf-facts { grid-template-columns: 1fr; }
}


/* ---------- PICKHOME 分析 ---------- */
.pf__analysis { max-width: 780px; }
.pf-an__block { margin-bottom: 16px; }
.pf-an__block h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pf-an__block h3::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.pf-an__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.pf-an__list li { padding-left: 24px; position: relative; font-size: 15px; line-height: 1.6; }
.pf-an__pros li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #2E9E5B; font-weight: 900; }
.pf-an__cons li::before { content: "!"; position: absolute; left: 1px; top: 0; color: #B42318; font-weight: 900; }
.pf-an__block p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--ink); }
.pf-an__summary {
  background: #FFF9EC;
  border: 1px solid #F0DFC0;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px;
}
.pf-an__summary h3 { margin-top: 0; }
.pf-an__summary p { margin: 0; font-weight: 600; }


/* ===== 全站卡片風格統一（與樓盤卡片一致） ===== */
.feature, .step, .guide-card, .why-card, .process-card {
  border-radius: 16px !important;
  transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease !important;
}
.feature:hover, .step:hover, .guide-card:hover, .why-card:hover, .process-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 30px rgba(14, 27, 44, .12) !important;
}
/* FAQ 手風琴（首頁）去框統一 */
.faq-item {
  background: none !important;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}


/* ---------- 現樓徽章 ---------- */
.pcard__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  background: #E7F6EC;
  color: #1E7A46;
  border: 1px solid #BFE3CC;
}
.pf-hero .pcard__badge {
  position: static;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  font-size: 12px;
  padding: 4px 12px;
}

/* 樓市報告 */
.report-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; }
.report-table th, .report-table td { border: 1px solid #E5E0D6; padding: 8px 12px; text-align: left; }
.report-table th { background: #F4F0E8; font-weight: 700; }
.report-table tr:nth-child(even) td { background: #FAF8F3; }
.report-cta { background: #F4F0E8; border-left: 4px solid #D4A24E; padding: 16px 18px; margin: 22px 0; border-radius: 4px; }
.report-cta .btn { margin-top: 10px; }
