/* 電影暗色調：整站深色氛圍、多層立體陰影 */
:root {
  --ink: #e7efe9;
  --ink-soft: #c4d0c9;
  --dark: #0a0e0c;
  --dark-2: #121814;
  --dark-3: #151c18;
  --paper: #0b100d;
  --surface: #121815;
  --soft: #0e1310;
  --metal: #9a948a;
  --metal-light: #6d675e;
  --accent: #79c9ba;
  --accent-deep: #56c3ad;
  --copper: #d2a377;
  --line: rgba(121, 201, 186, .14);
  --line-dark: rgba(255, 255, 255, .14);
  --muted: #8ba59a;
  --white-muted: rgba(255, 255, 255, .64);
  --shadow: 0 34px 80px rgba(0, 0, 0, .55), 0 6px 22px rgba(0, 0, 0, .35);
  --radius: 12px;
  --header-height: 78px;
  --signal-height: 36px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 34px);
  background: var(--dark);
}

body {
  margin: 0;
  background:
    radial-gradient(1100px 520px at 85% -180px, rgba(121, 201, 186, .055), transparent 60%),
    var(--paper);
  color: var(--ink);
  font-family: "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection { background: var(--accent); color: var(--dark); }

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.container {
  width: min(1240px, calc(100% - 56px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.signal-bar {
  position: relative;
  z-index: 80;
  height: var(--signal-height);
  display: flex;
  align-items: center;
  background: #0a0d0b;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .035em;
}

.signal-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.signal-bar span { display: flex; align-items: center; gap: 9px; }
.signal-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(112, 200, 192, .11);
}
.signal-bar a { color: var(--accent); font-family: "Space Grotesk", sans-serif; font-weight: 700; letter-spacing: .08em; }

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(16, 19, 16, .94);
  color: #fff;
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(14, 18, 15, .86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(121, 201, 186, .14);
  box-shadow: 0 16px 46px rgba(0, 0, 0, .25);
}

.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  min-width: 215px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 42px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(0, 0, 0, .3));
}

.brand > span:last-child { display: grid; gap: 2px; }
.brand strong { font-size: 15px; font-weight: 700; letter-spacing: .08em; }
.brand small { color: rgba(255, 255, 255, .48); font-family: "Space Grotesk", sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .18em; }

.site-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.5vw, 36px);
}

.site-menu a {
  position: relative;
  padding-block: 29px;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .03em;
  transition: color 180ms ease;
}

.site-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-menu a:hover, .site-menu a.is-active { color: #fff; }
.site-menu a:hover::after, .site-menu a.is-active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}
.menu-toggle > span:first-child { transform: translateY(-4px); }
.menu-toggle > span:nth-child(2) { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] > span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: rotate(-45deg); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .035em;
  cursor: pointer;
  transition: transform 160ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: scale(.98); }
.button span { font-size: 15px; transition: transform 180ms ease; }
.button:hover span { transform: translate(2px, -2px); }
.button--small { min-height: 44px; padding-inline: 20px; }
.button--accent { background: linear-gradient(135deg, var(--accent), #57b3a2); color: #10201d; box-shadow: 0 12px 30px rgba(40, 117, 105, .18), 0 0 22px rgba(121, 201, 186, .25); }
.button--accent:hover { box-shadow: 0 12px 30px rgba(40, 117, 105, .24), 0 0 34px rgba(121, 201, 186, .45); }
.button--accent:hover { background: #91d7ca; box-shadow: 0 16px 34px rgba(40, 117, 105, .24); }
.button--dark-outline { border-color: rgba(255, 255, 255, .26); color: #fff; }
.button--dark-outline:hover { border-color: rgba(255, 255, 255, .58); background: rgba(255, 255, 255, .08); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-deep);
  font-family: "Space Grotesk", "Noto Sans TC", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow--light { color: var(--accent); }

.section { padding-block: clamp(88px, 8vw, 118px); }
.section--dark {
  background:
    radial-gradient(720px 340px at 90% 0%, rgba(121, 201, 186, .07), transparent 60%),
    repeating-linear-gradient(90deg, transparent 0 55px, rgba(121, 201, 186, .035) 55px 56px),
    var(--dark);
  color: #fff;
}
.section--soft { background: var(--soft); }

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - 36px));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(112, 200, 192, .08), transparent 30%),
    linear-gradient(145deg, #171c19 0%, #0d100e 64%, #111613 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000, transparent 74%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .82fr);
  align-items: center;
  gap: clamp(52px, 7vw, 104px);
  padding-block: clamp(72px, 8vw, 112px) 122px;
}

.hero__copy { max-width: 650px; }
.hero h1 {
  margin: 0;
  font-size: clamp(58px, 6.2vw, 84px);
  line-height: 1.03;
  letter-spacing: -.055em;
  font-weight: 720;
}

.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero__statement {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 520;
  letter-spacing: .04em;
}

.hero__lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--white-muted);
  font-size: 16px;
  line-height: 1.9;
}

.hero__actions { margin-top: 34px; }

.hero__proof {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 54px;
}

.hero__proof > div {
  min-width: 225px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding-right: 34px;
}

.hero__proof > div + div {
  padding-left: 34px;
  border-left: 1px solid var(--line-dark);
}

.hero__proof strong {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  line-height: 1;
}

.hero__proof span { color: rgba(255, 255, 255, .78); font-size: 11px; font-weight: 650; line-height: 1.65; }
.hero__proof small { color: rgba(255, 255, 255, .42); font-size: 9px; font-weight: 500; }

.hero__visual {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: center;
  margin: 0;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

/* 科技感掃描框：LOGO 四角括號 */
.hero__frame { position: absolute; z-index: 2; inset: 2%; pointer-events: none; }
.hero__frame::before, .hero__frame::after,
.hero__frame i::before, .hero__frame i::after { content: ""; position: absolute; width: 26px; height: 26px; border: 0 solid rgba(121, 201, 186, .45); }
.hero__frame::before { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; border-top-left-radius: 6px; }
.hero__frame::after { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; border-top-right-radius: 6px; }
.hero__frame i { position: absolute; inset: 0; display: block; }
.hero__frame i::before { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; border-bottom-left-radius: 6px; }
.hero__frame i::after { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; border-bottom-right-radius: 6px; }

.hero__image-wrap::before {
  content: "";
  position: absolute;
  z-index: -2;
  /* 對齊圖中逗點主體（藝術品視覺中心約在 45%, 45%） */
  left: 8%;
  top: 8%;
  width: 74%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 44%, rgba(243, 239, 232, .23), rgba(184, 176, 165, .08) 48%, transparent 69%),
    radial-gradient(circle at 70% 28%, rgba(112, 200, 192, .16), transparent 32%);
  filter: blur(2px);
}

.hero__image-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 13%;
  top: 13%;
  width: 64%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(216, 210, 202, .19);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(112, 200, 192, .025), 0 0 0 92px rgba(216, 210, 202, .018);
  animation: orbit-drift 28s linear infinite;
}

.hero__image-wrap img {
  position: relative;
  z-index: 1;
  width: 94%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, .33));
  animation: emblem-in 680ms cubic-bezier(.2, .8, .2, 1) both;
}

.hero__visual figcaption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 6px;
  padding: 16px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
}
/* 圖說分隔線的科技光段 */
.hero__visual figcaption::before { content: ""; position: absolute; top: -1px; left: 0; width: 88px; height: 1px; background: linear-gradient(90deg, var(--accent), rgba(121, 201, 186, 0)); box-shadow: 0 0 10px rgba(121, 201, 186, .55); }

.hero__visual figcaption span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .6); font-family: "Space Grotesk", sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .18em; }
.hero__visual figcaption span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(121, 201, 186, .8); }
.hero__visual figcaption strong { max-width: 190px; font-size: 14px; text-align: right; }

.hero__badge {
  position: absolute;
  z-index: 3;
  top: auto;
  bottom: 16%;
  left: -14px;
  min-width: 168px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 18px;
  border: 1px solid rgba(121, 201, 186, .32);
  border-radius: 12px;
  background: rgba(13, 18, 15, .82);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .3), 0 0 24px rgba(121, 201, 186, .12);
  backdrop-filter: blur(12px);
}
.hero__badge::after { content: ""; position: absolute; top: 7px; right: 7px; width: 10px; height: 10px; border-top: 1.5px solid rgba(121, 201, 186, .5); border-right: 1.5px solid rgba(121, 201, 186, .5); border-top-right-radius: 3px; }

.hero__badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(112, 200, 192, .14), 0 0 12px rgba(121, 201, 186, .8); animation: pulse-dot 2.4s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
.hero__badge span { font-size: 11px; font-weight: 700; line-height: 1.5; }
.hero__badge small { color: rgba(255, 255, 255, .45); font-family: "Space Grotesk", sans-serif; font-size: 7px; letter-spacing: .15em; }

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .34);
  font-family: "Space Grotesk", sans-serif;
  font-size: 7px;
  letter-spacing: .2em;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.hero__scroll span { width: 48px; height: 1px; background: rgba(255, 255, 255, .26); }

.trust-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-strip__grid > div { min-height: 116px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-content: center; gap: 2px 16px; padding: 24px 28px; border-left: 1px solid var(--line); }
.trust-strip__grid > div:last-child { border-right: 1px solid var(--line); }
.trust-strip__icon { grid-row: 1 / span 2; align-self: center; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(11, 110, 99, .22); border-radius: 11px; background: linear-gradient(150deg, rgba(121, 201, 186, .12), rgba(121, 201, 186, .03)); color: var(--accent-deep); }
.trust-strip__icon svg { width: 21px; height: 21px; }
.trust-strip strong { font-size: 14px; font-weight: 700; }
.trust-strip small { color: var(--muted); font-size: 11px; }

.services { background: var(--paper); }
.services__grid { display: grid; grid-template-columns: minmax(290px, .68fr) minmax(0, 1.32fr); gap: clamp(54px, 7vw, 96px); align-items: start; }
.services__intro { position: sticky; top: calc(var(--header-height) + 42px); }
.section-intro h2, .section-heading h2, .diagnosis h2, .story h2, .reviews h2, .visit h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.12;
  letter-spacing: -.05em;
  font-weight: 650;
}

.section-intro > p:not(.eyebrow), .section-heading > p, .diagnosis__copy > p:not(.eyebrow), .story__copy > p:not(.eyebrow), .reviews__copy > p:not(.eyebrow), .faq__grid > .section-intro > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .04em;
}

.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.service-list { display: grid; gap: 34px; }
.service-group { display: grid; gap: 16px; }
.service-group__heading { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px; }
.service-group__node { position: relative; width: 34px; height: 2px; background: linear-gradient(90deg, var(--accent-deep), rgba(11, 110, 99, 0)); }
.service-group__node::before { content: ""; position: absolute; left: -1px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(121, 201, 186, .22), 0 0 12px rgba(121, 201, 186, .55); }
.service-group__heading p { margin: 0 0 2px; color: var(--accent-deep); font-family: "Space Grotesk", sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.service-group__heading h3 { margin: 0; font-size: 16px; }
.service-group__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.service-row { min-width: 0; }
.service-row a {
  position: relative;
  min-height: 174px;
  display: grid;
  grid-template-columns: 48px 1fr 38px;
  align-items: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--surface) 55%, rgba(121, 201, 186, .05));
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
/* 科技感角落框線：右上角小括號，滑過時亮起 */
.service-row a::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  border-top: 2px solid rgba(11, 110, 99, .2);
  border-right: 2px solid rgba(11, 110, 99, .2);
  border-top-right-radius: 4px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.service-row:hover a::before { border-color: var(--accent-deep); }

.service-row__icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(11, 110, 99, .22); border-radius: 12px; background: linear-gradient(150deg, rgba(121, 201, 186, .13), rgba(121, 201, 186, .03)); color: var(--accent-deep); transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.service-row__icon svg { width: 23px; height: 23px; }
.service-row:hover .service-row__icon { border-color: var(--accent-deep); background: linear-gradient(150deg, var(--accent-deep), #0a5a51); color: #eafff9; box-shadow: 0 0 18px rgba(121, 201, 186, .45); }
.service-row p { margin: 0 0 8px; color: var(--accent-deep); font-family: "Space Grotesk", sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.service-row h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.35; letter-spacing: -.02em; font-weight: 650; }
.service-row small { color: var(--muted); font-size: 12px; line-height: 1.7; }
.service-row i { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; font-size: 15px; font-style: normal; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.service-row:hover a { border-color: rgba(121, 201, 186, .42); transform: translateY(-3px); box-shadow: 0 24px 44px -20px rgba(0, 0, 0, .6), 0 0 28px rgba(121, 201, 186, .16); }
.service-row:hover i { border-color: var(--accent-deep); background: var(--accent-deep); color: #fff; transform: translate(2px, -2px); }
.service-row--feature a { background: var(--soft); }

.diagnosis { position: relative; overflow: hidden; }
.diagnosis::before { content: ""; position: absolute; top: -260px; left: -260px; width: 620px; height: 620px; border: 1px solid rgba(112, 200, 192, .12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(112, 200, 192, .018), 0 0 0 140px rgba(112, 200, 192, .018); }
.diagnosis__grid { position: relative; display: grid; grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr); gap: clamp(58px, 8vw, 128px); align-items: start; }
.diagnosis__copy > p:not(.eyebrow) { color: var(--white-muted); }
.diagnosis__index { display: block; margin-top: 48px; color: rgba(255, 255, 255, .075); font-family: "Space Grotesk", sans-serif; font-size: 112px; line-height: .8; font-weight: 700; letter-spacing: -.08em; }
.diagnosis-panel { padding: clamp(28px, 4vw, 44px); border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255, 255, 255, .04); box-shadow: 0 28px 64px rgba(0, 0, 0, .2); }
.diagnosis-panel fieldset { margin: 0; padding: 0; border: 0; }
.diagnosis-panel fieldset + fieldset { margin-top: 34px; padding-top: 34px; border-top: 1px solid var(--line-dark); }
.diagnosis-panel legend { margin-bottom: 17px; color: rgba(255, 255, 255, .82); font-size: 12px; font-weight: 650; }
.legend-node { position: relative; display: inline-block; width: 26px; height: 2px; margin-right: 12px; vertical-align: middle; background: linear-gradient(90deg, var(--accent), rgba(121, 201, 186, 0)); }
.legend-node::before { content: ""; position: absolute; left: -1px; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(121, 201, 186, .18), 0 0 10px rgba(121, 201, 186, .6); }
.choice-group { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.choice-group--wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-group--wrap .choice:last-child { grid-column: 1 / -1; }
.choice { min-height: 46px; padding: 0 14px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 8px; background: transparent; color: rgba(255, 255, 255, .68); font-size: 12px; font-weight: 650; cursor: pointer; transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 160ms ease; }
.choice:hover { border-color: rgba(255, 255, 255, .4); color: #fff; }
.choice:active { transform: scale(.97); }
.choice.is-active { border-color: var(--accent); background: var(--accent); color: var(--dark); }
.diagnosis-result { display: grid; grid-template-columns: 1fr minmax(190px, auto); align-items: end; gap: 28px; margin-top: 40px; padding: 27px; border-radius: 10px; background: var(--paper); color: var(--ink); }
.diagnosis-result > div > span { color: var(--accent-deep); font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.diagnosis-result h3 { margin: 8px 0 8px; font-size: 21px; }
.diagnosis-result p { max-width: 540px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }

.story { background: var(--surface); }
.story__grid { display: grid; grid-template-columns: minmax(340px, .86fr) minmax(0, 1.14fr); gap: clamp(64px, 9vw, 144px); align-items: center; }
.story__media { position: relative; min-height: 620px; display: grid; place-items: center; margin: 0; padding: 68px 52px 132px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle at 50% 38%, rgba(121, 201, 186, .12) 0%, rgba(18, 24, 21, .9) 52%, #0c110e 100%); box-shadow: var(--shadow), inset 0 0 80px rgba(0, 0, 0, .4); }
.story__media::before { content: ","; position: absolute; right: -5%; bottom: -32%; color: rgba(121, 201, 186, .06); font-family: Georgia, serif; font-size: 560px; line-height: 1; }
.story__media::after { content: ""; position: absolute; left: 50%; top: 42%; width: min(76%, 440px); aspect-ratio: 1 / 1; transform: translate(-50%, -50%); border: 1px solid rgba(121, 201, 186, .14); border-radius: 50%; box-shadow: 0 0 60px rgba(121, 201, 186, .06) inset; }
.story__media img { position: relative; z-index: 1; width: min(76%, 420px); height: auto; object-fit: contain; filter: drop-shadow(0 30px 44px rgba(0, 0, 0, .55)); transition: transform 500ms cubic-bezier(.2,.8,.2,1); }
.story__media:hover img { transform: translateY(-4px); }
.story__media figcaption { position: absolute; z-index: 2; right: 34px; bottom: 32px; left: 34px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink); }
.story__media figcaption span { display: block; margin-bottom: 12px; color: var(--accent-deep); font-family: "Space Grotesk", sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .17em; }
.story__media figcaption strong { font-size: 21px; line-height: 1.55; }
.story__copy { max-width: 620px; }
.principle-list { margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.principle-list li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.principle-node { position: relative; display: block; width: 34px; height: 2px; margin-top: 9px; background: linear-gradient(90deg, var(--accent-deep), rgba(11, 110, 99, 0)); }
.principle-node::before { content: ""; position: absolute; left: -1px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(121, 201, 186, .22), 0 0 12px rgba(121, 201, 186, .55); }
.principle-list div { display: grid; gap: 5px; }
.principle-list strong { font-size: 14px; }
.principle-list small { color: var(--muted); font-size: 11px; line-height: 1.65; }

.process { background: var(--paper); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 62px; }
.section-heading > p { max-width: 440px; margin-bottom: 5px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; list-style: none; }
.process-grid li { position: relative; min-height: 232px; display: flex; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); background: var(--surface); }
.process-grid li:last-child { border-right: 0; }
.process-grid li::after { content: ""; position: absolute; top: 36px; right: -4px; z-index: 1; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-deep); }
.process-grid li:last-child::after { display: none; }
.process-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(11, 110, 99, .22); border-radius: 11px; background: linear-gradient(150deg, rgba(121, 201, 186, .13), rgba(121, 201, 186, .03)); color: var(--accent-deep); }
.process-icon svg { width: 21px; height: 21px; }
.process-grid strong { margin-top: auto; font-size: 20px; }
.process-grid p { margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.process__link { margin-top: 32px; }

.reviews__grid { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: clamp(70px, 10vw, 160px); align-items: center; }
.reviews__score { padding: clamp(34px, 4vw, 56px); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow); }
.reviews__score > .eyebrow { display: block; margin-bottom: 46px; }
.reviews__score > strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: clamp(100px, 11vw, 148px); line-height: .78; letter-spacing: -.08em; }
.stars { margin-top: 28px; color: var(--copper); font-size: 17px; letter-spacing: .16em; }
.reviews__score > p { margin: 14px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.reviews__score > p small { font-size: 9px; }
.reviews__copy > p:not(.eyebrow) { max-width: 650px; }
.review-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.review-tags span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(121, 201, 186, .07); color: var(--ink-soft); font-size: 10px; font-weight: 650; }

.faq { background: var(--surface); }
.faq__grid { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: clamp(64px, 9vw, 142px); align-items: start; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > button { width: 100%; min-height: 90px; display: grid; grid-template-columns: 48px 1fr 42px; align-items: center; gap: 14px; padding: 0; border: 0; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.faq-qmark { justify-self: start; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(11, 110, 99, .22); border-radius: 9px; background: linear-gradient(150deg, rgba(121, 201, 186, .12), rgba(121, 201, 186, .03)); color: var(--accent-deep); transition: background 180ms ease, color 180ms ease, border-color 180ms ease; }
.faq-qmark svg { width: 17px; height: 17px; }
.faq-item.is-open .faq-qmark, .faq-item button:hover .faq-qmark { border-color: var(--accent-deep); background: linear-gradient(150deg, var(--accent-deep), #0a5a51); color: #eafff9; }
.faq-item button > strong { font-size: 14px; font-weight: 650; }
.faq-item button > i { font-size: 22px; font-style: normal; font-weight: 300; text-align: center; transition: transform 200ms ease; }
.faq-item.is-open button > i { transform: rotate(45deg); }
.faq-answer { padding: 0 54px 28px 62px; }
.faq-answer p { max-width: 720px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.85; animation: answer-in 200ms ease both; }

.visit { position: relative; overflow: hidden; }
.visit::after { content: ""; position: absolute; right: -180px; bottom: -310px; width: 620px; height: 620px; border: 1px solid rgba(112, 200, 192, .1); border-radius: 50%; }
.visit__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(440px, .78fr); gap: clamp(60px, 8vw, 126px); align-items: center; }
.visit__facts { margin-top: 40px; border-top: 1px solid var(--line-dark); }
.visit__facts > div { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.visit__facts span { color: var(--accent); font-family: "Space Grotesk", sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .15em; }
.visit__facts strong { color: rgba(255, 255, 255, .86); font-size: 13px; font-weight: 550; line-height: 1.7; }
.visit__note { margin: 18px 0 0; color: rgba(255, 255, 255, .42); font-size: 10px; }
.visit .button-row { margin-top: 28px; }
.visit__map { position: relative; height: 590px; overflow: hidden; margin: 0; background: #d9d4cc; }
.visit__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(.95) sepia(.12); }
.visit__map > div { position: absolute; right: 24px; bottom: 24px; left: 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; background: rgba(16, 19, 16, .92); color: #fff; backdrop-filter: blur(10px); }
.visit__map span { display: flex; align-items: center; gap: 10px; color: var(--accent); font-family: "Space Grotesk", sans-serif; font-size: 7px; font-weight: 700; letter-spacing: .14em; }
.visit__map span i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.visit__map strong { font-size: 11px; }

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
  color: #fff;
}
.final-cta::before { content: ","; position: absolute; right: 3vw; bottom: -26vw; color: rgba(112, 200, 192, .06); font-family: Georgia, serif; font-size: 52vw; line-height: 1; }
.final-cta__inner { position: relative; z-index: 1; min-height: 460px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 88px; }
.final-cta h2 { max-width: 880px; font-size: clamp(48px, 6vw, 76px); }
.final-cta .button-row { margin-top: 38px; }

.site-footer { background: #090b09; color: rgba(255, 255, 255, .7); }
.site-footer__grid { display: grid; grid-template-columns: minmax(260px, 1.6fr) repeat(3, 1fr); gap: 42px; padding-block: 72px 62px; }
.brand--footer { color: #fff; align-self: start; }
.site-footer__grid > div > strong { display: block; margin-bottom: 16px; color: var(--accent); font-family: "Space Grotesk", "Noto Sans TC", sans-serif; font-size: 9px; letter-spacing: .14em; }
.site-footer__grid > div p { margin: 0; color: rgba(255, 255, 255, .48); font-size: 10px; line-height: 1.9; }
.site-footer__grid > div a:hover { color: #fff; }
.site-footer__bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255, 255, 255, .09); color: rgba(255, 255, 255, .3); font-size: 9px; letter-spacing: .08em; }

.mobile-actions { display: none; }
.toast { position: fixed; z-index: 120; left: 50%; bottom: 24px; min-height: 46px; display: flex; align-items: center; padding: 0 18px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; background: var(--dark); color: #fff; box-shadow: 0 18px 48px rgba(0, 0, 0, .26); font-size: 11px; opacity: 0; pointer-events: none; transform: translate(-50%, 16px); transition: opacity 180ms ease, transform 180ms ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal:not(.is-visible) { opacity: 0; transform: translateY(12px); transition: opacity 500ms cubic-bezier(.2,.8,.2,1), transform 500ms cubic-bezier(.2,.8,.2,1); }
.reveal-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

.sub-hero { padding-block: clamp(80px, 8vw, 124px); background: var(--dark); color: #fff; }
.sub-hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .65fr); gap: clamp(60px, 9vw, 150px); align-items: center; }
.back-link { display: inline-flex; margin-bottom: 56px; color: rgba(255, 255, 255, .58); font-size: 11px; font-weight: 700; letter-spacing: .04em; }
.back-link:hover { color: var(--accent); }
.sub-hero h1 { max-width: 760px; margin: 0; font-size: clamp(50px, 6vw, 84px); line-height: 1.04; letter-spacing: -.055em; font-weight: 680; }
.sub-hero__lead { max-width: 670px; margin: 30px 0 0; color: var(--white-muted); font-size: 16px; line-height: 1.9; }
.sub-hero .button-row { margin-top: 34px; }
.sub-hero__media { position: relative; width: 100%; aspect-ratio: 1 / 1; display: grid; place-items: center; margin: 0; isolation: isolate; }
.sub-hero__media::before { content: ""; position: absolute; z-index: -2; inset: 4%; border-radius: 50%; background: radial-gradient(circle at 48% 40%, rgba(243, 239, 232, .22), rgba(112, 200, 192, .08) 45%, transparent 70%); }
.sub-hero__media::after { content: ""; position: absolute; z-index: -1; inset: 14%; border: 1px solid rgba(216, 210, 202, .18); border-radius: 50%; box-shadow: 0 0 0 42px rgba(112, 200, 192, .02); }
.sub-hero__media img { width: 74%; height: auto; object-fit: contain; filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .34)); animation: emblem-in 600ms cubic-bezier(.2,.8,.2,1) both; }
.sub-hero__media figcaption { position: absolute; z-index: 1; right: 8%; bottom: 5%; left: 8%; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .68); font-family: "Space Grotesk", sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .15em; }
.detail-section { padding-block: clamp(92px, 9vw, 142px); background: var(--paper); }
.detail-section .section-intro { max-width: 810px; }
.detail-grid { display: grid; margin-top: 60px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.detail-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.detail-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.detail-card { position: relative; min-height: 274px; display: grid; grid-template-rows: auto auto 1fr; align-content: start; padding: 30px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.detail-card::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--accent-deep); opacity: .7; }
.detail-card > span { color: var(--copper); font-family: "Space Grotesk", sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .1em; }
.detail-card h2 { margin: 58px 0 0; font-size: 22px; line-height: 1.35; }
.detail-card p { margin: 16px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.notice { display: grid; grid-template-columns: 40px 230px 1fr; align-items: center; gap: 24px; margin-top: 38px; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; }
.notice > span { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--accent-deep); border-radius: 50%; color: var(--accent-deep); font-family: "Space Grotesk", sans-serif; font-size: 13px; font-weight: 700; }
.notice strong { font-size: 15px; }
.notice p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }

.error-page { min-height: 100svh; display: grid; place-items: center; padding: 30px; background: var(--dark); color: #fff; }
.error-page main { width: min(620px, 100%); text-align: center; }
.error-page img { width: 168px; height: auto; margin: 0 auto 34px; object-fit: contain; filter: drop-shadow(0 24px 32px rgba(0, 0, 0, .32)); }
.error-page .eyebrow { justify-content: center; color: var(--accent); }
.error-page h1 { margin: 0; font-size: clamp(42px, 7vw, 72px); line-height: 1.05; letter-spacing: -.05em; }
.error-page > main > p:not(.eyebrow) { color: var(--white-muted); }
.error-page .button-row { justify-content: center; margin-top: 30px; }

@keyframes emblem-in {
  from { opacity: 0; transform: scale(.965) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes orbit-drift {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.02); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes answer-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .site-menu { gap: 18px; }
  .site-menu a { font-size: 11px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr); gap: 48px; }
  .hero__proof > div { min-width: 190px; }
  .services__grid { grid-template-columns: minmax(270px, .7fr) minmax(0, 1.3fr); gap: 68px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:nth-child(2n) { border-right: 0; }
  .process-grid li:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .process-grid li:nth-child(2n)::after { display: none; }
  .detail-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  :root { --header-height: 70px; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: grid; }
  .header-cta { display: none; }
  .site-menu {
    position: fixed;
    z-index: -1;
    top: var(--menu-top, var(--header-height));
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--menu-top, var(--header-height)));
    display: grid;
    align-content: start;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    padding: 38px 28px 120px;
    background: rgba(16, 19, 16, .99);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }
  .site-menu.is-open { z-index: 65; opacity: 1; visibility: visible; transform: translateY(0); }
  .site-menu a { min-height: 66px; display: flex; align-items: center; padding: 0; border-bottom: 1px solid var(--line-dark); color: rgba(255, 255, 255, .8); font-size: 19px; }
  .site-menu a::after { display: none; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding-block: 82px 116px; }
  .hero__copy { max-width: 780px; }
  .hero__visual { width: min(620px, 100%); min-height: 0; margin-inline: auto; }
  .hero__image-wrap { max-width: 620px; margin-inline: auto; }
  .hero__badge { left: 12px; }
  .hero__scroll { display: none; }
  .trust-strip__grid { grid-template-columns: repeat(3, 1fr); }
  .services__grid, .diagnosis__grid, .story__grid, .reviews__grid, .faq__grid, .visit__grid, .sub-hero__grid { grid-template-columns: 1fr; }
  .services__intro { position: static; }
  .service-list { margin-top: 10px; }
  .diagnosis__index { display: none; }
  .story__media { width: min(620px, 100%); min-height: 0; }
  .story__media img { height: auto; }
  .story__copy { max-width: none; }
  .reviews__score { max-width: 500px; }
  .faq__grid, .visit__grid { gap: 68px; }
  .visit__map { height: 520px; }
  .site-footer__grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
  .site-footer__grid > div:last-child { grid-column: 2 / 3; }
  .sub-hero__media { width: min(540px, 100%); height: auto; margin-inline: auto; }
}

@media (max-width: 640px) {
  :root { --header-height: 66px; --signal-height: 32px; }
  html { scroll-padding-top: 76px; }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .container { width: min(100% - 32px, 1240px); }
  .signal-bar { height: 32px; font-size: 9px; }
  .signal-bar__inner > span { max-width: 68%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .brand { min-width: 0; gap: 9px; }
  .brand__mark { width: 34px; height: 40px; }
  .brand strong { font-size: 13px; letter-spacing: .05em; }
  .brand small { display: none; }
  .site-menu { padding-inline: 16px; }
  .section { padding-block: 78px; }
  .hero__grid { gap: 54px; padding-block: 68px 82px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero__statement { margin-top: 24px; font-size: 18px; line-height: 1.5; }
  .hero__lead { font-size: 14px; line-height: 1.82; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .button { width: 100%; }
  .hero__proof { display: grid; grid-template-columns: 1fr 1fr; margin-top: 42px; }
  .hero__proof > div { min-width: 0; grid-template-columns: 1fr; gap: 9px; padding-right: 18px; }
  .hero__proof > div + div { padding-left: 18px; }
  .hero__proof strong { font-size: 30px; }
  .hero__visual { width: 100%; min-height: 0; }
  .hero__image-wrap { width: 100%; aspect-ratio: 1 / 1; }
  .hero__image-wrap img { width: 94%; }
  .hero__badge { bottom: 10%; left: 8px; min-width: 150px; padding: 11px 14px; }
  .hero__visual figcaption { display: grid; margin-top: -2px; padding-inline: 2px; }
  .hero__visual figcaption strong { text-align: left; }
  .trust-strip__grid { width: 100%; grid-template-columns: 1fr; }
  .trust-strip__grid > div { min-height: 104px; grid-template-columns: 38px 1fr; gap: 1px 10px; padding: 18px 14px; }
  .trust-strip__icon { width: 34px; height: 34px; border-radius: 9px; }
  .trust-strip__icon svg { width: 17px; height: 17px; }
  .trust-strip__grid > div { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-strip__grid > div:last-child { border-bottom: 0; }
  .trust-strip strong { font-size: 12px; }
  .trust-strip small { font-size: 9px; }
  .section-intro h2, .section-heading h2, .diagnosis h2, .story h2, .reviews h2, .visit h2, .final-cta h2 { font-size: 34px; }
  .section-intro > p:not(.eyebrow), .section-heading > p, .diagnosis__copy > p:not(.eyebrow), .story__copy > p:not(.eyebrow), .reviews__copy > p:not(.eyebrow), .faq__grid > .section-intro > p:not(.eyebrow) { font-size: 13px; }
  .services__grid, .diagnosis__grid, .story__grid, .reviews__grid, .faq__grid, .visit__grid { gap: 54px; }
  .service-group__grid { grid-template-columns: 1fr; }
  .service-row a { min-height: 0; grid-template-columns: 42px 1fr 36px; gap: 12px; padding: 20px; }
  .service-row__icon { width: 40px; height: 40px; }
  .service-row__icon svg { width: 20px; height: 20px; }
  .service-row h3 { font-size: 19px; }
  .service-row small { font-size: 12px; line-height: 1.65; }
  .service-row i { width: 36px; height: 36px; }
  .diagnosis-panel { padding: 24px 17px; }
  .choice-group { display: grid; grid-template-columns: repeat(2, 1fr); }
  .choice-group:not(.choice-group--wrap) .choice:last-child { grid-column: 1 / -1; }
  .choice-group--wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice { padding-inline: 8px; font-size: 10px; }
  .diagnosis-result { grid-template-columns: 1fr; padding: 21px; }
  .diagnosis-result .button { width: 100%; }
  .story__media { min-height: 470px; padding: 48px 28px 122px; }
  .story__media img { width: min(74%, 320px); height: auto; }
  .story__media figcaption { right: 20px; bottom: 20px; left: 20px; }
  .story__media figcaption strong { font-size: 17px; }
  .section-heading { display: grid; gap: 18px; margin-bottom: 38px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li, .process-grid li:nth-child(2n) { min-height: 190px; padding: 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid li:last-child { border-bottom: 0; }
  .process-grid li::after { top: auto; right: auto; bottom: -4px; left: 28px; display: block; }
  .process-grid li:last-child::after { display: none; }
  .reviews__score { padding: 34px 24px; }
  .reviews__score > strong { font-size: 108px; }
  .faq-item > button { min-height: 82px; grid-template-columns: 34px 1fr 34px; gap: 8px; }
  .faq-item button > strong { font-size: 13px; }
  .faq-answer { padding: 0 40px 25px 42px; }
  .visit__facts > div { grid-template-columns: 80px 1fr; }
  .visit__map { height: 400px; }
  .visit__map > div { right: 12px; bottom: 12px; left: 12px; display: grid; padding: 14px; }
  .final-cta__inner { min-height: 370px; padding-block: 72px; }
  .final-cta h2 { font-size: clamp(40px, 11vw, 52px); }
  .final-cta .button-row { display: grid; width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 22px; padding-block: 52px 42px; }
  .site-footer__grid .brand { grid-column: 1 / -1; }
  .site-footer__grid > div:last-child { grid-column: auto; }
  .site-footer__bottom { min-height: 66px; display: grid; align-content: center; gap: 4px; }
  .mobile-actions {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: .75fr 1.4fr .75fr;
    gap: 7px;
    padding: 8px max(10px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: rgba(12, 15, 13, .94);
    backdrop-filter: blur(14px);
  }
  .mobile-actions a { min-height: 48px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .18); border-radius: 8px; color: rgba(255, 255, 255, .82); font-size: 11px; font-weight: 750; }
  .mobile-actions .is-primary { border-color: var(--accent); background: var(--accent); color: var(--dark); }
  body.is-menu-open .mobile-actions { opacity: 0; visibility: hidden; pointer-events: none; }
  .toast { bottom: 80px; }
  .sub-hero { padding-block: 64px 80px; }
  .sub-hero__grid { gap: 52px; }
  .back-link { margin-bottom: 42px; }
  .sub-hero h1 { font-size: 48px; }
  .sub-hero__lead { font-size: 14px; }
  .sub-hero .button-row { display: grid; }
  .sub-hero__media { height: auto; aspect-ratio: 1 / 1; }
  .detail-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .detail-card { min-height: 0; padding: 24px; }
  .detail-card h2 { margin-top: 34px; }
  .notice { grid-template-columns: 40px 1fr; gap: 12px 16px; padding: 24px 0; }
  .notice p { grid-column: 2; }
  .error-page img { width: 140px; height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== 2026-08 新增區塊（保固/價格/評價牆/預約/指南/相關連結/版型控制） ===== */

/* 頁首 LOGO 尺寸（後台「版型與排版」控制） */
body.logo-s .brand__mark { width: 34px; height: 38px; }
body.logo-l .brand__mark { width: 54px; height: 60px; }

/* 保固與承諾：沿用 detail-card，補 h3 標題層級 */
.detail-card h3 { margin: 58px 0 0; font-size: 22px; line-height: 1.35; }
.detail-grid--1 { grid-template-columns: minmax(0, 1fr); }
.detail-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* 參考價格 */
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 60px; }
.price-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); overflow: hidden; }
.price-card h3 { margin: 0; padding: 22px 26px 18px; border-bottom: 1px solid var(--line); font-size: 17px; letter-spacing: .02em; }
.price-card table { width: 100%; border-collapse: collapse; }
.price-card th { padding: 12px 16px; border-bottom: 1px solid var(--line); color: var(--copper); font-family: "Space Grotesk", "Noto Sans TC", sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-align: left; }
.price-card td { padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 13px; vertical-align: top; }
.price-card tr:last-child td { border-bottom: 0; }
.price-card td:first-child { font-weight: 650; }
.price-card td:nth-child(2) { color: var(--accent-deep); font-weight: 700; white-space: nowrap; }
.price-card td:nth-child(3) { color: var(--muted); font-size: 11px; }

/* 評價牆 */
.review-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 46px; }
.review-card { margin: 0; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.review-card .stars { margin-top: 0; font-size: 13px; }
.review-card p { flex: 1; margin: 16px 0 0; color: var(--ink-soft); font-size: 13px; line-height: 1.85; }
.review-card footer { display: flex; justify-content: space-between; align-items: baseline; margin-top: 20px; padding-top: 14px; border-top: 1px solid var(--line); }
.review-card footer strong { font-size: 12px; }
.review-card footer span { color: var(--muted); font-size: 10px; font-family: "Space Grotesk", sans-serif; letter-spacing: .08em; }

/* 首頁指南區 */
.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 60px; }
.guide-card { display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); transition: transform 220ms ease, border-color 220ms ease; }
.guide-card:hover { transform: translateY(-4px); border-color: var(--accent-deep); }
.guide-card .eyebrow { margin: 0; }
.guide-card h3 { margin: 18px 0 0; font-size: 20px; line-height: 1.4; letter-spacing: -.02em; }
.guide-card__intro { flex: 1; margin: 14px 0 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.guide-card .text-link { margin-top: 22px; }

/* 線上預約 */
.booking__grid { display: grid; grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); gap: clamp(60px, 8vw, 120px); align-items: start; }
.booking__copy > p:not(.eyebrow) { margin: 28px 0 0; color: var(--white-muted); font-size: 15px; line-height: 1.9; }
.booking__note { color: var(--accent) !important; font-size: 13px !important; }
.booking__copy .button-row { margin-top: 34px; }
.booking-form { display: grid; gap: 18px; padding: clamp(28px, 4vw, 44px); border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255, 255, 255, .045); }
.booking-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.booking-form label { display: grid; gap: 9px; color: var(--white-muted); font-size: 12px; font-weight: 650; letter-spacing: .04em; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line-dark); border-radius: 8px; background: rgba(0, 0, 0, .28); color: #fff; font-size: 14px; }
.booking-form input::placeholder, .booking-form textarea::placeholder { color: rgba(255, 255, 255, .32); }
.booking-form input:focus-visible, .booking-form select:focus-visible, .booking-form textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.booking-form button { justify-self: start; }
.booking-form small { color: rgba(255, 255, 255, .4); font-size: 10px; line-height: 1.7; }
.booking-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.booking-success { margin: 0; padding: 14px 18px; border: 1px solid var(--accent); border-radius: 8px; background: rgba(121, 201, 186, .12); color: var(--accent); font-size: 14px; font-weight: 650; }

/* 子頁相關連結（內部連結區） */
.related-section { padding-block: clamp(64px, 6vw, 92px); background: var(--soft); }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 48px; }
.related-link { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 6px 14px; padding: 24px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: transform 200ms ease, border-color 200ms ease; }
.related-link:hover { transform: translateY(-3px); border-color: var(--accent-deep); }
.related-link span { grid-column: 1; color: var(--copper); font-family: "Space Grotesk", sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.related-link strong { grid-column: 1; font-size: 15px; line-height: 1.5; }
.related-link i { grid-column: 2; grid-row: 1 / span 2; font-style: normal; color: var(--accent-deep); }

@media (max-width: 1080px) {
  .price-grid, .review-cards, .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .booking__grid { grid-template-columns: 1fr; gap: 44px; }
  .detail-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .price-grid, .review-cards, .guide-grid, .related-grid { grid-template-columns: 1fr; }
  .booking-form__row { grid-template-columns: 1fr; }
}

/* Google 評論標註 */
.review-card footer { gap: 10px; }
.review-card footer a { border-bottom: 1px solid var(--line); }
.review-card footer a:hover { color: var(--accent-deep); border-color: var(--accent-deep); }
.review-card__source { display: inline-flex; align-items: center; gap: 5px; color: var(--muted); font-size: 9px; font-family: "Space Grotesk", sans-serif; font-weight: 700; letter-spacing: .08em; }
.review-card__source::before { content: "G"; display: grid; place-items: center; width: 14px; height: 14px; border: 1px solid var(--line); border-radius: 50%; font-size: 8px; color: var(--accent-deep); }

/* 卡片光點裝飾（取代舊編號） */
.detail-card__node { position: relative; display: block; width: 34px; height: 2px; background: linear-gradient(90deg, var(--accent-deep), rgba(11, 110, 99, 0)); }
.detail-card__node::before { content: ""; position: absolute; left: -1px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(121, 201, 186, .22), 0 0 12px rgba(121, 201, 186, .55); }

/* ===== 速度優勢帶 ===== */
.speed-strip {
  position: relative;
  padding-block: clamp(54px, 6vw, 80px);
  background:
    radial-gradient(620px 300px at 88% 0%, rgba(121, 201, 186, .1), transparent 60%),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(121, 201, 186, .05) 47px 48px),
    linear-gradient(150deg, #141a17 0%, #0d120f 70%, #101613 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.speed-strip__grid { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(36px, 5vw, 72px); align-items: center; }
.speed-strip h2 { margin: 18px 0 0; font-size: clamp(26px, 2.8vw, 36px); line-height: 1.25; letter-spacing: -.03em; font-weight: 650; }
.speed-strip__intro > p:not(.eyebrow) { margin: 16px 0 0; color: var(--white-muted); font-size: 14px; line-height: 1.85; }
.speed-strip__note { display: block; margin-top: 14px; color: rgba(255, 255, 255, .34); font-size: 10px; letter-spacing: .04em; }
.speed-strip__items { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.speed-item { position: relative; padding: 26px 22px 24px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255, 255, 255, .045); overflow: hidden; transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.speed-item::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: linear-gradient(180deg, var(--accent), rgba(121, 201, 186, .1)); }
.speed-item::after { content: ""; position: absolute; top: 10px; right: 10px; width: 14px; height: 14px; border-top: 2px solid rgba(121, 201, 186, .28); border-right: 2px solid rgba(121, 201, 186, .28); border-top-right-radius: 4px; transition: border-color 180ms ease; }
.speed-item:hover { transform: translateY(-3px); border-color: rgba(121, 201, 186, .45); box-shadow: 0 0 26px rgba(121, 201, 186, .16); }
.speed-item:hover::after { border-color: var(--accent); }
.speed-item strong { display: block; font-family: "Space Grotesk", "Noto Sans TC", sans-serif; font-size: clamp(34px, 3.4vw, 46px); font-weight: 700; line-height: 1.05; letter-spacing: -.04em; color: var(--accent); text-shadow: 0 0 26px rgba(121, 201, 186, .5); }
.speed-item strong i { margin-left: 4px; font-style: normal; font-size: .44em; font-weight: 700; letter-spacing: 0; }
.speed-item > span { display: block; margin-top: 12px; font-size: 14px; font-weight: 700; letter-spacing: .02em; }
/* 數字動畫的 <span data-count> 在 strong 內，必須跟著 strong 的大字級 */
.speed-item strong span { display: inline; margin: 0; font: inherit; letter-spacing: inherit; }
.speed-item small { display: block; margin-top: 8px; color: var(--white-muted); font-size: 11px; line-height: 1.7; }

@media (max-width: 1080px) {
  .speed-strip__grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 680px) {
  .speed-strip__items { grid-template-columns: 1fr; }
  .speed-item { display: grid; grid-template-columns: auto 1fr; gap: 2px 18px; align-items: center; padding: 18px 18px 16px; }
  .speed-item strong { grid-row: 1 / span 2; font-size: 34px; }
  .speed-item > span { margin-top: 0; }
  .speed-item small { margin-top: 2px; }
}

/* ===== 2026-08 科技感升級補充 ===== */
/* 快速判斷面板：光暈邊框 */
.diagnosis-panel { border: 1px solid rgba(121, 201, 186, .2); border-radius: var(--radius); box-shadow: 0 0 34px rgba(121, 201, 186, .08); }

/* 結尾 CTA：加上網格與光暈層 */
.final-cta {
  background:
    radial-gradient(640px 320px at 12% 10%, rgba(121, 201, 186, .08), transparent 60%),
    repeating-linear-gradient(90deg, transparent 0 55px, rgba(121, 201, 186, .03) 55px 56px),
    var(--dark-3);
}

/* 預約表單：聚焦時卡片微光 */
.booking-form:focus-within { border-color: rgba(121, 201, 186, .38); box-shadow: 0 0 30px rgba(121, 201, 186, .1); }

/* 淺色區塊 section 小標的節點光暈統一 */
.eyebrow > span:first-child { box-shadow: 0 0 8px rgba(121, 201, 186, .5); }

/* ===== 電影感深度：標題陰影與層次 ===== */
h1, h2 { text-shadow: 0 3px 30px rgba(0, 0, 0, .5); }
.section-intro h2, .section-heading h2 { color: var(--ink); }

/* 深色卡片浮起時的立體光影統一 */
.guide-card:hover, .related-link:hover { box-shadow: 0 26px 50px -22px rgba(0, 0, 0, .65), 0 0 26px rgba(121, 201, 186, .14); }
.price-card { backdrop-filter: blur(4px); }

/* 淺轉深後的細節修正 */
.faq-list { border-top-color: var(--line-strong, rgba(121, 201, 186, .38)); }
.mobile-actions { border-top: 1px solid rgba(121, 201, 186, .16); }

/* 尊重系統「減少動態」設定 */
@media (prefers-reduced-motion: reduce) {
  .hero__badge i, .signal-bar i, .eyebrow > span:first-child { animation: none !important; }
  .reveal { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== 完整價目表頁（/pricing/）===== */
.ptable-section { padding-block: clamp(56px, 6vw, 84px); }
.ptable { margin-bottom: 34px; }
.ptable__head { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px; margin-bottom: 14px; }
.ptable__node { position: relative; width: 34px; height: 2px; background: linear-gradient(90deg, var(--accent-deep), rgba(11, 110, 99, 0)); }
.ptable__node::before { content: ""; position: absolute; left: -1px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(121, 201, 186, .22), 0 0 12px rgba(121, 201, 186, .55); }
.ptable__head h2 { margin: 0; font-size: 20px; letter-spacing: .02em; color: var(--ink); }
.ptable__scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
/* 表格寬度＝項目欄 + 機型欄數×單欄寬；欄少的系列在手機上可完整顯示，不強制橫向捲動 */
.ptable table { width: 100%; min-width: calc(150px + var(--pt-cols, 4) * 98px); border-collapse: collapse; }
.ptable th { padding: 13px 16px; background: rgba(121, 201, 186, .08); color: var(--accent-deep); font-family: "Space Grotesk", "Noto Sans TC", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.ptable td { padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 13px; white-space: nowrap; }
.ptable tbody tr:last-child td { border-bottom: 0; }
.ptable tbody tr { transition: background 120ms ease; }
.ptable tbody tr:hover { background: rgba(121, 201, 186, .05); }
.ptable .sticky-col { position: sticky; left: 0; background: var(--surface); font-weight: 650; box-shadow: 6px 0 12px -8px rgba(0, 0, 0, .4); }
.ptable th.sticky-col { background: #10201c; }
.ptable td:not(.sticky-col) { color: var(--accent-deep); font-weight: 650; font-family: "Space Grotesk", "Noto Sans TC", sans-serif; }

/* ===== 科幻質感元素第三輪 ===== */
/* 終端機面板頂列（快速判斷） */
.term-bar { display: flex; align-items: center; gap: 7px; margin: -6px -4px 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line-dark); }
.term-bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, .16); }
.term-bar i:first-child { background: rgba(255, 107, 94, .6); }
.term-bar i:nth-child(2) { background: rgba(255, 180, 84, .6); }
.term-bar i:nth-child(3) { background: rgba(121, 201, 186, .7); }
.term-bar span { margin-left: auto; color: rgba(255, 255, 255, .3); font-family: "Space Grotesk", sans-serif; font-size: 8px; font-weight: 700; letter-spacing: .22em; }

/* 卡片全息光澤掃過（hover） */
.service-row a::after, .guide-card::after, .price-card::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 50%;
  background: linear-gradient(105deg, transparent, rgba(121, 201, 186, .07), transparent);
  transform: skewX(-18deg); transition: left 600ms ease; pointer-events: none;
}
.guide-card, .price-card { position: relative; overflow: hidden; }
.service-row:hover a::after, .guide-card:hover::after, .price-card:hover::after { left: 130%; }

/* 主按鈕掃光 */
.button--accent { position: relative; overflow: hidden; }
.button--accent::after { content: ""; position: absolute; top: 0; bottom: 0; left: -70%; width: 40%; background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .28), transparent); transform: skewX(-18deg); transition: left 500ms ease; }
.button--accent:hover::after { left: 140%; }

/* 小標掃描底線 */
.section-intro .eyebrow, .section-heading .eyebrow { position: relative; }

@media (prefers-reduced-motion: reduce) {
  .service-row a::after, .guide-card::after, .price-card::after, .button--accent::after { display: none; }
}

/* ===== 公告跑馬燈（header 下方資訊帶）===== */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(121, 201, 186, .07), transparent 28%, transparent 72%, rgba(121, 201, 186, .07)),
    var(--dark-2);
}
.ticker__inner { display: flex; width: max-content; animation: marquee-left 34s linear infinite; }
.ticker__run { display: flex; align-items: center; gap: 26px; padding: 9px 13px; padding-right: 26px; }
.ticker__item { white-space: nowrap; font-size: .82rem; letter-spacing: .08em; color: var(--ink-soft); }
.ticker__sep { color: var(--accent); font-size: .5rem; opacity: .7; }

/* ===== 品牌捲動帶（無限滾動內部連結）===== */
.brands { overflow: hidden; padding: 26px 0; border-bottom: 1px solid var(--line); background: var(--dark-3); }
.brands__inner { display: flex; width: max-content; animation: marquee-left 44s linear infinite; }
.brands:hover .brands__inner { animation-play-state: paused; }
.brands__run { display: flex; align-items: center; gap: 14px; padding-right: 14px; }
.brand-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 24px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(18, 24, 21, .82); color: var(--ink-soft);
  font-size: .94rem; letter-spacing: .06em; white-space: nowrap;
  transition: border-color .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.brand-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.brand-chip:hover { border-color: rgba(121, 201, 186, .5); color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, .42); }

@keyframes marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== 常見案例卡片 ===== */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.case-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--surface), var(--soft));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px 18px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.case-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(121, 201, 186, .55), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.case-card:hover { transform: translateY(-4px); border-color: rgba(121, 201, 186, .4); box-shadow: var(--shadow); }
.case-card:hover::before { opacity: 1; }
.case-card__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 10px; }
.case-card__top strong { font-size: 1.02rem; letter-spacing: .02em; }
.case-card__time {
  flex-shrink: 0; font-size: .78rem; color: var(--accent);
  border: 1px solid rgba(121, 201, 186, .3); border-radius: 999px;
  padding: 3px 10px; background: rgba(121, 201, 186, .08); white-space: nowrap;
}
.case-card p { margin: 0 0 14px; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.case-card__done { font-size: .78rem; letter-spacing: .14em; color: var(--accent-deep); }
@media (max-width: 960px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .case-grid { grid-template-columns: 1fr; } }

/* ===== LINE 浮動諮詢鈕（桌機；手機已有底部快速列）===== */
.float-line {
  position: fixed; right: 26px; bottom: 26px; z-index: 60;
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(160deg, #10231d, #0b100d);
  border: 1px solid rgba(121, 201, 186, .45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .5), 0 0 24px rgba(121, 201, 186, .16);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.float-line strong { font-size: .82rem; letter-spacing: .08em; color: var(--accent); }
.float-line small { font-size: .6rem; letter-spacing: .05em; color: var(--white-muted); }
.float-line i { position: absolute; inset: -1px; border-radius: 50%; border: 1px solid rgba(121, 201, 186, .5); animation: float-ping 2.6s ease-out infinite; pointer-events: none; }
.float-line:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 24px 54px rgba(0, 0, 0, .55), 0 0 34px rgba(121, 201, 186, .3); }
@keyframes float-ping { 0% { transform: scale(1); opacity: .8; } 70% { transform: scale(1.45); opacity: 0; } 100% { transform: scale(1.45); opacity: 0; } }
@media (min-width: 920px) { .float-line { display: flex; } }

@media (prefers-reduced-motion: reduce) {
  .ticker__inner, .brands__inner { animation: none; }
  .ticker, .brands { overflow-x: auto; }
  .float-line i { animation: none; }
}

/* ===== 完整價目表醒目 CTA（首頁價格區）===== */
.ptable-cta {
  position: relative; overflow: hidden;
  display: flex; align-items: center; gap: 18px;
  margin: 34px 0 44px; padding: 22px 26px;
  border: 1px solid rgba(121, 201, 186, .38); border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(121, 201, 186, .13), rgba(18, 24, 21, .9) 45%), var(--surface);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .45), inset 0 0 34px rgba(121, 201, 186, .05);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.ptable-cta::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -70%; width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .14), transparent);
  transform: skewX(-18deg); transition: left 600ms ease;
}
.ptable-cta:hover { transform: translateY(-3px); border-color: rgba(121, 201, 186, .65); box-shadow: 0 26px 60px rgba(0, 0, 0, .5), 0 0 30px rgba(121, 201, 186, .18); }
.ptable-cta:hover::after { left: 140%; }
.ptable-cta__icon {
  flex-shrink: 0; display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(121, 201, 186, .5); color: var(--accent);
  font-size: 1.3rem; font-weight: 700;
  background: rgba(121, 201, 186, .1); box-shadow: 0 0 18px rgba(121, 201, 186, .2);
}
.ptable-cta__text { flex: 1; min-width: 0; }
.ptable-cta__text strong { display: block; font-size: 1.22rem; letter-spacing: .04em; color: var(--ink); }
.ptable-cta__text small { display: block; margin-top: 3px; font-size: .88rem; color: var(--muted); }
.ptable-cta__arrow { flex-shrink: 0; font-size: 1.5rem; color: var(--accent); transition: transform .3s ease; }
.ptable-cta:hover .ptable-cta__arrow { transform: translateX(6px); }
@media (max-width: 620px) {
  .ptable-cta { padding: 18px; gap: 14px; }
  .ptable-cta__icon { width: 44px; height: 44px; }
  .ptable-cta__text strong { font-size: 1.05rem; }
}
@media (prefers-reduced-motion: reduce) { .ptable-cta::after { display: none; } }

/* 價目表：窄螢幕的橫向滑動提示 */
.ptable__hint {
  display: none;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: .8rem;
  letter-spacing: .06em;
  text-align: center;
}
.ptable__hint span { color: var(--accent); font-weight: 700; }
@media (max-width: 860px) { .ptable__hint { display: block; } }

/* ===== 機型系列卡片（首頁價格區）===== */
.series-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 34px 0 26px; }
.series-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 8px;
  padding: 22px 20px 18px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface), var(--soft));
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.series-card__glow {
  position: absolute; inset: -40% 50% 60% -40%;
  background: radial-gradient(circle, rgba(121, 201, 186, .16), transparent 70%);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.series-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0); transform-origin: 50% 50%; transition: transform .35s ease;
}
.series-card:hover { transform: translateY(-4px); border-color: rgba(121, 201, 186, .45); box-shadow: 0 20px 44px rgba(0, 0, 0, .45); }
.series-card:hover::after { transform: scaleX(1); }
.series-card:hover .series-card__glow { opacity: 1; }
.series-card h3 { margin: 0; font-size: 1.12rem; letter-spacing: .02em; color: var(--ink); }
.series-card__models { margin: 0; font-size: .78rem; letter-spacing: .04em; color: var(--accent); }
.series-card__items { margin: 0; flex: 1; font-size: .8rem; line-height: 1.65; color: var(--muted); }
.series-card__cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; font-size: .82rem; font-weight: 700; color: var(--accent); }
.series-card__cta i { font-style: normal; transition: transform .3s ease; }
.series-card:hover .series-card__cta i { transform: translateX(5px); }

.ptable-all {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 26px; border: 1px solid rgba(121, 201, 186, .4); border-radius: 999px;
  color: var(--accent); font-weight: 700; font-size: .95rem;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.ptable-all:hover { border-color: var(--accent); box-shadow: 0 0 22px rgba(121, 201, 186, .22); transform: translateY(-2px); }
.pricing__note { margin: 22px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.7; }

/* 系列頁底部：切換其他機型 */
.series-nav { margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); }
.series-nav p { margin: 0 0 14px; color: var(--muted); font-size: .82rem; letter-spacing: .1em; }
.series-nav div { display: flex; flex-wrap: wrap; gap: 10px; }
.series-nav a {
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink-soft); font-size: .88rem;
  transition: border-color .3s ease, color .3s ease, box-shadow .3s ease;
}
.series-nav a:hover { border-color: rgba(121, 201, 186, .5); color: var(--accent); box-shadow: 0 0 16px rgba(121, 201, 186, .16); }

@media (max-width: 980px) { .series-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .series-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .series-card { padding: 16px 14px 14px; } .series-card h3 { font-size: 1rem; } }

/* ===== 機型系列頁：主視覺、機型插圖、維修流程 ===== */
.series-hero { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 40px; align-items: center; }
.series-hero__art { margin: 0; display: grid; place-items: center; }
.device-art { width: min(240px, 60%); height: auto; filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .55)) drop-shadow(0 0 30px rgba(121, 201, 186, .12)); animation: device-float 6s ease-in-out infinite; }
.device-photo { width: min(300px, 78%); height: auto; border-radius: 18px; filter: drop-shadow(0 26px 54px rgba(0, 0, 0, .5)); }
@keyframes device-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.series-brand { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 6px; color: var(--muted); font-size: .86rem; letter-spacing: .04em; }
.series-brand strong { color: var(--ink); font-weight: 700; }
.series-brand span { color: var(--accent); }
.series-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.series-badges span {
  padding: 5px 14px; border: 1px solid var(--line); border-radius: 999px;
  background: rgba(121, 201, 186, .06); color: var(--accent);
  font-size: .74rem; letter-spacing: .06em;
}

.series-flow { padding: 20px 0 10px; }
.series-flow h2 { margin: 6px 0 30px; font-size: clamp(1.4rem, 2.6vw, 2rem); }
.flow-line { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 0; padding: 0; position: relative; }
.flow-line::before { content: ""; position: absolute; top: 18px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(121, 201, 186, .4), transparent); }
.flow-line li { position: relative; text-align: center; padding: 0 6px; }
.flow-line__dot {
  position: relative; z-index: 1;
  display: grid; place-items: center; width: 36px; height: 36px; margin: 0 auto 14px;
  border: 1px solid rgba(121, 201, 186, .45); border-radius: 50%;
  background: var(--paper); color: var(--accent);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: .9rem;
  box-shadow: 0 0 18px rgba(121, 201, 186, .18);
}
.flow-line strong { display: block; margin-bottom: 6px; font-size: .98rem; color: var(--ink); }
.flow-line small { display: block; color: var(--muted); font-size: .8rem; line-height: 1.65; }

@media (max-width: 900px) {
  .series-hero { grid-template-columns: 1fr; gap: 24px; }
  /* 手機上價目表才是重點：插圖縮小並排在文字之後，不讓它佔掉第一屏 */
  .series-hero__art { order: 1; }
  .device-art { width: 104px; }
  .device-photo { width: 150px; }
  .flow-line { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .flow-line::before { display: none; }
}

/* 窄螢幕的價目表：縮小內距與字級，並讓項目欄可換行，避免長品名把價格擠出畫面 */
@media (max-width: 620px) {
  .ptable table { min-width: calc(120px + var(--pt-cols, 4) * 74px); }
  .ptable th, .ptable td { padding: 10px 9px; font-size: 12.5px; }
  .ptable .sticky-col { max-width: 132px; white-space: normal; line-height: 1.45; }
  .ptable td:not(.sticky-col), .ptable th:not(.sticky-col) { min-width: 70px; text-align: center; }
}
