/* 全局 */
:root {
  --brand: #b3382b;
  --brand-dark: #84271e;
  --text: #2a211f;
  --accent: #f1b437;
  --white: #ffffff;
  --glass: rgba(49, 28, 8, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --header-height: 72px;
  --container: min(1280px, calc(100vw - 64px));
  --shadow: 0 16px 44px rgba(57, 24, 7, 0.18);
}
 * {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Microsoft JhengHei", "PingFang TC", "Noto Sans TC", sans-serif;
  color: var(--text);
  background: #f7f3ee;
  scrollbar-color: var(--brand) #f1e7e2;
  scrollbar-width: thin;
	  font-size:13px
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
 ::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
 ::-webkit-scrollbar-track {
  background: #f1e7e2;
}
 ::-webkit-scrollbar-thumb {
  background: var(--brand);
  border-radius: 999px;
  border: 2px solid #f1e7e2;
}
 ::-webkit-scrollbar-thumb:hover {
  background: #992f24;
}
 body {
  overflow-x: hidden;
}
.page {
  min-height: 100vh;
  background: #fff;
  --mobile-menu-offset: 0px;
}

/* 顶部 */
.header {
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid rgba(122, 68, 29, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 20;
}
 .header__inner {
  width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 94px;
}
.logo img {
  display: block;
  width: 84px;
  height: auto;
}
 .logo__word {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: lowercase;
}
 .logo__sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 4px;
  padding-left: 6px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 14px;
  font-weight: 700;
}
.nav a {
  color: #342827;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 8px;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #342827;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown__chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.2s ease;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 60%;
  transform: translateX(-50%);
  min-width: 170px;
  padding: 10px 0;
  border: 1px solid #e6ddd6;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(72, 38, 13, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}

.nav-dropdown__menu a {
  display: block;
  padding: 5px 15px;
  color: #161110;
  font-size: 14px;
  font-weight: 500;
}

.nav-dropdown__menu a:hover {
  color: var(--brand);
}

.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown:hover .nav-dropdown__trigger span:first-child {
  color: var(--brand);
}

.nav-dropdown:hover .nav-dropdown__chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown.is-open .nav-dropdown__trigger,
.nav-dropdown.is-open .nav-dropdown__trigger span:first-child {
  color: var(--brand);
}

.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav a.is-active {
  color: var(--brand);
}
 .actions {
  display: flex;
  align-items: center;
  gap: 12px;
 }
.header-status {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-right: 4px;
}
.header-status__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4a3a35;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.header-status__link:hover,
.header-status__link:focus,
.header-status__link:active {
  text-decoration: none;
}
.header-status__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.header-status__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  }
  .actions .btn {
  min-height: 34px;
  padding: 7px 14px;
  font-size: 10px;
  border-radius: 6px;
  gap: 6px;
  }
  .actions .btn--solid {
  min-width: 96px;
  }
 .actions .btn__icon {
  width: 12px;
  height: 12px;
}
 .btn {
  border: 1px solid var(--brand);
  border-radius: 8px;
  padding: 15px 28px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: 0.2s ease;
}
 .btn--ghost {
  background: #fff;
  color: var(--brand);
}
 .btn--solid {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}
 .btn:hover {
  transform: translateY(-1px);
}
 .btn__icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
 .btn__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
}
 .menu-btn {
  display: none;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 8px;
  background: #f4f1ef;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 31;
}
 .menu-btn svg {
  width: 26px;
  height: 26px;
  stroke: #2f2724;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
 .menu-btn .icon-close {
  display: none;
}
 .menu-btn.is-open {
  background: transparent;
}
 .menu-btn.is-open .icon-menu {
  display: none;
}
 .menu-btn.is-open .icon-close {
  display: block;
}
.mobile-menu {
  display: none;
}

/* 响应式：顶部 */
@media (max-width: 1120px) {
  .nav {
    gap: 24px;
    font-size: 14px;
  }

  .btn {
    padding-inline: 22px;
    font-size: 14px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 98px;
    --container: calc(100vw - 32px);
  }
   .header {
    position: relative;
  }
   .nav,
  .actions {
    display: none;
  }
   .menu-btn {
    display: inline-flex;
  }
   .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid rgba(122, 68, 29, 0.08);
    border-bottom: 1px solid rgba(122, 68, 29, 0.08);
    box-shadow: 0 18px 40px rgba(36, 20, 9, 0.08);
    z-index: 30;
  }
   .mobile-menu.is-open {
    display: block;
  }
   .mobile-menu__inner {
    padding: 22px 14px 18px;
  }
   .mobile-menu__list {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
   .mobile-menu__link,
  .mobile-menu__trigger {
    width: 100%;
    min-height: 40px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    border-radius: 8px;
  }
   .mobile-menu__trigger.is-open {
    background: #f3f0ef;
    color: var(--brand);
  }
   .mobile-menu__chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-right: 6px;
    flex: 0 0 auto;
  }
   .mobile-menu__trigger.is-open .mobile-menu__chevron {
    transform: rotate(-135deg);
  }
   .mobile-menu__submenu {
    display: none;
    padding: 12px 0 16px 30px;
  }
   .mobile-menu__submenu.is-open {
    display: block;
  }
   .mobile-menu__submenu a {
    display: block;
    padding: 8px 0;
    color: #726056;
    text-decoration: none;
    font-size: 16px;
   
  }
   .mobile-menu__actions {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
   .mobile-menu__actions .btn {
    width: 100%;
   
    font-size: 15px;
  }
   .logo__word {
    font-size: 32px;
  }
   .logo img {
    width: 72px;
   }
   .hero {
    min-height: clamp(420px, calc(100vh - var(--header-height) - 280px), 520px);
    margin-top: var(--mobile-menu-offset);
    transition: margin-top 0.25s ease;
  }
   .hero__inner {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 44px 0 40px;
    min-height: clamp(420px, calc(100vh - var(--header-height) - 280px), 520px);
  }
   .hero-card {
    width: calc(100vw - 56px);
    min-height: auto;
    margin: 120px auto 0;
    padding: 32px 26px 28px;
    border-radius: 22px;
  }
   .hero-card h1 {
    font-size: clamp(30px, 7.2vw, 46px);
    line-height: 1.06;
  }
   .hero-card p {
    margin: 22px 0 34px;
    font-size: clamp(13px, 3vw, 16px);
    line-height: 1.6;
  }
   .hero-card .btn--solid {
    min-height: 72px;
    font-size: clamp(16px, 3.8vw, 21px);
  }
   .calculator-section {
    padding: 36px 0 30px;
  }
   .process-section {
    padding: 44px 0 54px;
  }
   .about-section {
    padding: 30px 0 60px;
  }
   .advantage-section {
    padding: 54px 0 64px;
  }
   .reviews-section {
    padding: 54px 0 64px;
  }
   .faq-section {
    padding: 54px 0 64px;
  }
   .contact-section {
    padding: 54px 0 64px;
  }
   .site-footer {
    padding: 42px 0 24px;
  }
   .footer-shell {
    width: calc(100vw - 36px);
  }
   .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 28px;
  }
   .footer-logo-box {
    width: 68px;
    height: 60px;
    padding: 10px 8px;
    margin-bottom: 20px;
  }
   .contact-shell {
    width: calc(100vw - 36px);
  }
   .contact-head {
    margin-bottom: 34px;
  }
   .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
   .contact-form {
    gap: 10px;
  }
   .contact-input {
    height: 40px;
  }
   .contact-textarea {
    min-height: 110px;
  }
   .contact-submit {
    min-height: 50px;
  }
   .contact-map {
    min-height: 240px;
  }
   .faq-shell {
    width: calc(100vw - 36px);
  }
   .faq-head {
    margin-bottom: 30px;
  }
   .faq-list {
    gap: 14px;
  }
   .faq-question {
    padding: 18px 18px;
  }
   .faq-answer {
    line-height: 1.8;
  }
   .reviews-shell {
    width: calc(100vw - 36px);
  }
   .reviews-head {
    margin-bottom: 34px;
  }
   .reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
   .review-card {
    min-height: 0;
    padding: 26px 20px 24px;
    border-radius: 20px;
  }
   .review-stars {
    gap: 8px;
    margin-bottom: 10px;
  }
   .review-text {
    line-height: 1.85;
  }
   .advantage-shell {
    width: calc(100vw - 36px);
  }
   .advantage-head {
    margin-bottom: 34px;
  }
   .advantage-head p {
    margin-top: 14px;
  }
   .advantage-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
   .advantage-card {
    min-height: 0;
    padding: 26px 24px 28px;
    border-radius: 20px;
  }
   .advantage-icon {
    width: 82px;
    height: 82px;
    font-size: 2rem;
  }
   .advantage-title {
    margin-top: 28px;
  }
   .advantage-text {
    margin-top: 18px;
  }
   .advantage-cta {
    min-width: 100px;
    min-height: 40px;
    margin-top: 22px;
  }
   .about-shell {
    width: calc(100vw - 36px);
    grid-template-columns: 1fr;
    gap: 38px;
  }
   .about-title {
    font-size: 1.875rem;
  }
   .about-text {
    margin-top: 26px;
    font-size: 1.5rem;
    line-height: 1.8;
  }
   .about-actions {
    margin-top: 26px;
  }
   .about-cta {
    min-width: 136px;
    min-height: 72px;
    font-size: 1.5rem;
    padding: 0 32px;
  }
   .about-stats {
    gap: 16px;
  }
   .about-card {
    min-height: 160px;
    border-radius: 10px;
    padding: 18px;
  }
   .about-card__value {
    font-size: 1.5rem;
		font-weight: 700;
  }
   .about-card__label {
    margin-top: 10px;
    font-size: 1.5rem;
  }
   .process-shell {
    width: calc(100vw - 36px);
  }
   .process-head {
    margin-bottom: 34px;
  }
   .process-head h2 {
    font-size: 26px;
  }
   .process-head p {
    margin-top: 14px;
    font-size: 15px;
  }
   .process-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
   .process-item:not(:last-child)::after {
    display: none;
  }
   .process-icon {
    width: 76px;
    height: 76px;
    border-width: 3px;
  }
   .process-icon svg {
    width: 28px;
    height: 28px;
  }
   .process-step {
    margin-top: 14px;
    font-size: 14px;
  }
   .process-title {
    margin-top: 10px;
    font-size: 18px;
  }
   .process-text {
    margin-top: 10px;
    font-size: 14px;
  }
   .calculator-shell {
    width: calc(100vw - 24px);
    padding: 28px 18px 28px;
   
  }
   .calculator-row {
    margin-bottom: 18px;
  }
   .calculator-label {
    font-size: 22px;
  }
   .calculator-value {
    font-size: 28px;
  }
   .range-wrap {
    margin-bottom: 36px;
  }
   .range-input {
    height: 8px;
  }
   .range-input::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
  }
   .range-input::-moz-range-thumb {
    width: 16px;
    height: 16px;
  }
   .months-grid {
    gap: 9px;
    margin-bottom: 20px;
  }
   .month-chip {
    min-width: 0;
    width: 50px;
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
    font-size: 18px;
  }
   .calc-btn {
    height: 50px;
    font-size: 26px;
  }
   .result-box {
    min-height: 90px;
    gap: 4px;
    margin-bottom: 20px;
    padding: 8px 12px;
  }
   .result-box__label {
    font-size: 1rem;
  }
   .result-box__value {
    font-size: 1.5rem;
  }
   .calculator-notes {
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.6;
  }
   .figure {
    width: 280px;
    height: 482px;
    bottom: 16px;
  }
   .stacks {
    height: 180px;
  }
   .stack--1 { left: 8%; }
  .stack--2 { left: 27%; }
  .stack--3 { left: 55%; }
  .stack--4 { left: 72%; }
  .stack--5 { display: none; }
   .coin--1 { left: 3%; top: 18%; }
  .coin--2 { left: 36%; top: 10%; }
  .coin--3 { left: 76%; top: 18%; }
  .coin--4 { right: 8%; top: 34%; }
  .coin--5 { display: none; }
  .coin--6 { display: none; }
  .coin--7 { left: -2%; top: 42%; }
  .coin--8 { left: 12%; top: 70%; }
  .coin--9 { right: 4%; top: 62%; }
  .coin--10 { display: none; }
  .coin--11 { display: none; }
  .coin--12 { display: none; }
  .coin--13 { display: none; }
}

@media (max-width: 480px) {
  :root {
    --header-height: 70px;
  }
   .header__inner {
    gap: 12px;
  }
   .hero-card {
    width: calc(100vw - 48px);
    margin-top: 170px;
    padding: 28px 18px 22px;
  }
   .hero-card p {
    font-size: 12px;
  }
   .hero-card .btn--solid {
    min-height: 66px;
  }
   .calculator-shell {
    width: calc(100vw - 20px);
    padding: 24px 30px 24px;
  }
   .process-head h2 {
    font-size: 22px;
  }
   .about-shell {
    width: calc(100vw - 24px);
  }
   .advantage-shell {
    width: calc(100vw - 24px);
  }
   .reviews-shell {
    width: calc(100vw - 24px);
  }
   .faq-shell {
    width: calc(100vw - 24px);
  }
   .contact-shell {
    width: calc(100vw - 24px);
  }
   .footer-shell {
    width: calc(100vw - 24px);
  }
   .review-card {
    padding: 24px 18px 22px;
  }
   .advantage-card {
    padding: 18px 18px 24px;
  }
   .advantage-icon {
    width: 76px;
    height: 76px;
    font-size: 1.8rem;
  }
   .advantage-cta {
    min-width: 132px;
  }
   .about-title {
    font-size: 1.875rem;
  }
   .about-text {
    font-size: 1.5rem;
  }
   .about-cta {
    min-width: 128px;
    min-height: 54px;
    font-size: 1.5rem;
  }
   .about-stats {
    gap: 14px;
  }
   .about-card {
    min-height: 100px;
  }
   .about-card__value {
    font-size: 2rem;
  }
   .about-card__label {
    font-size: 1.5rem;
  }
   .process-head p {
    font-size: 13px;
  }
   .process-icon {
    width: 70px;
    height: 70px;
  }
   .process-step {
    font-size: 13px;
  }
   .process-title {
    font-size: 16px;
  }
   .process-text {
    font-size: 13px;
  }
   .calculator-label {
    font-size: 19px;
  }
   .calculator-value {
    font-size: 24px;
  }
   .month-chip {
    min-width: 0;
    width: auto;
    height: 34px;
    line-height: 34px;
    padding: 0 12px;
    font-size: 20px;
  }
   .calc-btn {
    font-size: 22px;
  }
   .result-box__label {
    font-size: 1rem;
  }
   .result-box__value {
    font-size: 1.5rem;
  }
}
