/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'Noto Sans TC', sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================
   TOKENS
============================================ */
/* Palette
  --ink:      #1C1C1E   deep charcoal (text)
  --slate:    #3A3D42   secondary text
  --mist:     #F5F4F0   warm off-white bg
  --linen:    #EDE9E1   section bg alt
  --gold:     #B8965A   brand accent (warm gold = "蒔光")
  --gold-lt:  #D4AF76   hover/light gold
  --sage:     #7A8C7E   soft sage accent
  --white:    #FFFFFF
*/

/* ============================================
   TYPOGRAPHY SCALE
============================================ */
.serif-display { font-family: 'Cormorant Garamond', 'Noto Serif TC', serif; }
.sans-body { font-family: 'Noto Sans TC', sans-serif; }
.mono-label { font-family: 'Inter', sans-serif; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.7rem; }

/* ============================================
   UTILITIES
============================================ */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B8965A;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #B8965A;
}
.section-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 28px;
  font-weight: 500;
  color: #1C1C1E;
  line-height: 1.4;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: #5A5A5A;
  line-height: 1.8;
  max-width: 540px;
}
.gold { color: #B8965A; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #B8965A;
  color: #fff;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.28s, transform 0.2s;
  letter-spacing: 0.04em;
}
.btn-primary:hover { background: #9A7A44; transform: translateY(-2px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #B8965A;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 13px 30px;
  border: 1.5px solid #B8965A;
  cursor: pointer;
  transition: all 0.28s;
  letter-spacing: 0.04em;
}
.btn-outline:hover { background: #B8965A; color: #fff; transform: translateY(-2px); }
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  color: #fff;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.28s, transform 0.2s;
  letter-spacing: 0.04em;
  border-radius: 2px;
}
.btn-line:hover { background: #05a848; transform: translateY(-2px); }

/* Animate on scroll */
.aos {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.aos.visible {
  opacity: 1;
  transform: translateY(0);
}
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }
.aos-delay-4 { transition-delay: 0.4s; }
.aos-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.aos-left.visible { opacity: 1; transform: translateX(0); }
.aos-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.aos-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0;
  transition: all 0.35s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 24px rgba(0,0,0,0.08);
}
.navbar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-zh {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.35s;
  letter-spacing: 0.08em;
}
.navbar.scrolled .nav-logo-zh { color: #1C1C1E; }
.nav-logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.22em;
  transition: color 0.35s;
}
.navbar.scrolled .nav-logo-en { color: #B8965A; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.06em;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #B8965A;
  transition: width 0.28s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a { color: #3A3D42; }
.navbar.scrolled .nav-links a:hover { color: #B8965A; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-tel {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  transition: color 0.35s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.navbar.scrolled .nav-tel { color: #5A5A5A; }
.nav-cta-btn {
  background: #B8965A;
  color: #fff;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.82rem;
  padding: 9px 20px;
  letter-spacing: 0.04em;
  transition: background 0.25s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-cta-btn:hover { background: #9A7A44; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: #1C1C1E; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 998;
  padding: 20px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 40px;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.95rem;
  color: #1C1C1E;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #B8965A; background: #fafafa; }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(18,16,14,0.72) 0%,
    rgba(18,16,14,0.45) 55%,
    rgba(18,16,14,0.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: #D4AF76;
  letter-spacing: 0.28em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #D4AF76;
}
.hero-title {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.hero-title em {
  font-style: normal;
  color: #D4AF76;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-style: italic;
  letter-spacing: 0.04em;
}
.hero-body {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  max-width: 420px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero-stats {
  position: absolute;
  right: 40px;
  bottom: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-stat {
  text-align: right;
  border-right: 2px solid #B8965A;
  padding-right: 16px;
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}


/* ============================================
   VALUE PROPOSITIONS
============================================ */
.values-section {
  background: #F5F4F0;
  padding: 100px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.values-text { padding-right: 80px; }
.values-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e0ddd5;
}
.value-card {
  background: #F5F4F0;
  padding: 36px 28px;
  transition: background 0.3s;
  cursor: default;
}
.value-card:hover { background: #fff; }
.value-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,150,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}
.value-card:hover .value-card-icon { background: rgba(184,150,90,0.22); }
.value-card-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 8px;
}
.value-card-body {
  font-size: 0.88rem;
  color: #5A5A5A;
  line-height: 1.75;
}
.values-promise {
  margin-top: 36px;
  padding: 24px;
  background: #fff;
  border-left: 3px solid #B8965A;
}
.values-promise p {
  font-family: 'Noto Serif TC', serif;
  font-size: 0.95rem;
  color: #3A3D42;
  line-height: 1.8;
  font-style: italic;
}

/* ============================================
   SERVICE APPROACH
============================================ */
.approach-section {
  padding: 100px 0;
  background: #fff;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}
.approach-card {
  position: relative;
  overflow: hidden;
  background: #F5F4F0;
}
.approach-card-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.approach-card:hover .approach-card-img { transform: scale(1.04); }
.approach-card-body {
  padding: 40px 40px 44px;
}
.approach-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B8965A;
  margin-bottom: 10px;
}
.approach-card-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 14px;
}
.approach-card-desc {
  color: #5A5A5A;
  line-height: 1.85;
}
.approach-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.approach-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #3A3D42;
}
.approach-feat iconify-icon { color: #B8965A; flex-shrink: 0; margin-top: 3px; }

/* ============================================
   PLANS / PRICING
============================================ */
.plans-section {
  padding: 100px 0;
  background: #1C1C1E;
}
.plans-header { text-align: center; margin-bottom: 60px; }
.plans-header .section-label { justify-content: center; }
.plans-header .section-label::before { display: none; }
.plans-header .section-label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #B8965A;
}
.plans-header .section-title { color: #fff; }
.plans-header .section-subtitle { color: rgba(255,255,255,0.55); max-width: 600px; margin: 0 auto; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.plan-card {
  background: #252525;
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
}
.plan-card:hover { background: #2C2C2C; }
.plan-card.featured {
  background: #B8965A;
}
.plan-card.featured:hover { background: #C9A56A; }
.plan-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #D4AF76;
  color: #1C1C1E;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 600;
}
.plan-badge-dark {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(184,150,90,0.2);
  color: #D4AF76;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 600;
}
.plan-tag {
  font-family: 'Inter', sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B8965A;
  margin-bottom: 10px;
  font-weight: 700;
}
.plan-card.featured .plan-tag { color: rgba(255,255,255,0.8); }
.plan-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.plan-card.featured .plan-name { color: #fff; }
.plan-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  font-style: italic;
}
.plan-card.featured .plan-en { color: rgba(255,255,255,0.6); }
.plan-price {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.plan-card.featured .plan-price { border-bottom-color: rgba(255,255,255,0.25); }
.plan-price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: #D4AF76;
  line-height: 1;
}
.plan-card.featured .plan-price-num { color: #fff; }
.plan-price-unit {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.plan-card.featured .plan-price-unit { color: rgba(255,255,255,0.7); }
.plan-pitch {
  font-family: 'Noto Serif TC', serif;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.plan-card.featured .plan-pitch { color: rgba(255,255,255,0.88); }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 20px;
}
.plan-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.plan-card.featured .plan-feat { color: rgba(255,255,255,0.9); }
.plan-feat iconify-icon { color: #B8965A; flex-shrink: 0; margin-top: 2px; }
.plan-card.featured .plan-feat iconify-icon { color: rgba(255,255,255,0.9); }
.plan-cta {
  display: block;
  text-align: center;
  background: transparent;
  color: #B8965A;
  border: 1px solid rgba(184,150,90,0.4);
  padding: 11px;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.28s;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.plan-cta:hover {
  background-color: hsla(38,40%,54%,0.40);
  color: #fff;
  border-color: #B8965A;
}
.plan-card.featured .plan-cta {
  color: #FFFFFF;
  border-color: #fff;
}
.plan-card.featured .plan-cta:hover {
  background-color: rgba(255,255,255,0.30);
}
.plan-cta-secondary {
  margin-top: 8px;
}
.plan-card.featured .plan-cta-secondary {
  margin-top: 8px;
}
.plan-special {
  margin-top: 2px;
  background: linear-gradient(135deg, #2A2316 0%, #1C1C1E 100%);
  border: 1px solid rgba(184,150,90,0.25);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.plan-special-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.plan-special-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}
.plan-special-pitch {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #D4AF76;
  font-style: italic;
  line-height: 1.65;
  border-left: 2px solid #B8965A;
  padding-left: 20px;
}

/* ============================================
   GUARANTEES
============================================ */
.guarantees-section {
  padding: 100px 0;
  background: #F5F4F0;
}
.guarantees-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.guarantees-left {}
.guarantees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.guarantee-card {
  background: #fff;
  padding: 32px 28px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.guarantee-card:hover {
  border-bottom-color: #B8965A;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}
.guarantee-icon {
  width: 48px;
  height: 48px;
  background: rgba(184,150,90,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.guarantee-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 8px;
}
.guarantee-desc {
  color: #5A5A5A;
  line-height: 1.75;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: relative;
  background-image: url(/images/pc/bg.jpg);
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  padding: 120px 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,28,30,0.88) 0%, rgba(28,28,30,0.65) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 16px;
}
.cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SERVICES PAGE SECTION
============================================ */
.services-section {
  padding-top: 160px;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 100px;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.services-swiper {
  overflow: hidden;
  position: relative;
}
.service-slide {
  background: #F5F4F0;
  overflow: hidden;
}
.service-slide-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.service-slide:hover .service-slide-img { transform: scale(1.06); }
.service-slide-body {
  padding: 28px 28px 32px;
}
.service-slide-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B8965A;
  margin-bottom: 8px;
}
.service-slide-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 8px;
}
.service-slide-desc {
  font-size: 0.85rem;
  color: #5A5A5A;
  line-height: 1.75;
}
.swiper-btns {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  justify-content: flex-end;
}
.swiper-btn-custom {
  width: 44px;
  height: 44px;
  border: 1px solid #D0CCC4;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  color: #3A3D42;
}
.swiper-btn-custom:hover { background: #B8965A; border-color: #B8965A; color: #fff; }

/* ============================================
   WORKFLOW
============================================ */
.workflow-section {
  padding-top: 160px;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 100px;
  background: #1C1C1E;
}
.workflow-header { text-align: center; margin-bottom: 70px; }
.workflow-header .section-label { justify-content: center; }
.workflow-header .section-label::before { display: none; }
.workflow-header .section-label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #B8965A;
}
.workflow-header .section-title { color: #fff; }
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.workflow-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,150,90,0.4), rgba(184,150,90,0.4), transparent);
  z-index: 0;
}
.workflow-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.workflow-step-num {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(184,150,90,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #B8965A;
  background: #1C1C1E;
  transition: all 0.35s;
}
.workflow-step:hover .workflow-step-num {
  background: #B8965A;
  color: #fff;
  border-color: #B8965A;
}
.workflow-step-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.workflow-step-desc {
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.workflow-row2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.workflow-row2::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,150,90,0.4), rgba(184,150,90,0.4), transparent);
  z-index: 0;
}

/* ============================================
   ABOUT
============================================ */
.about-section {
  padding-top: 160px;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 100px;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-block {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.about-text {}
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: #B8965A;
  font-style: italic;
  line-height: 1.65;
  margin: 20px 0 28px;
  border-left: 3px solid #B8965A;
  padding-left: 20px;
}
.about-body {
  font-size: 0.95rem;
  color: #5A5A5A;
  line-height: 1.9;
  margin-bottom: 20px;
}
.about-values-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0 32px;
}
.about-val {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #3A3D42;
}
.about-val iconify-icon { color: #B8965A; }
.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.team-card {
  background: #F5F4F0;
  text-align: center;
  padding: 32px 20px;
  transition: background 0.3s;
}
.team-card:hover { background: #EDE9E1; }
.team-icon {
  width: 64px;
  height: 64px;
  background: rgba(184,150,90,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.team-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 6px;
}
.team-desc {
  color: #5A5A5A;
  line-height: 1.7;
}

/* ============================================
   CONTACT
============================================ */
.contact-section {
  padding-top: 160px;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 100px;
  background: #F5F4F0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,150,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B8965A;
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 20px;
  color: #1C1C1E;
  font-family: 'Noto Sans TC', sans-serif;
}
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}
.contact-soc-btn {
  width: 44px;
  height: 44px;
  border: 1px solid #D0CCC4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A5A5A;
  transition: all 0.25s;
}
.contact-soc-btn:hover { background: #B8965A; color: #fff; border-color: #B8965A; }
.contact-form-area {
  background: #fff;
  padding: 44px 40px;
}
.contact-form-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-label {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.82rem;
  color: #5A5A5A;
  letter-spacing: 0.04em;
}
.form-input, .form-select, .form-textarea {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.9rem;
  color: #1C1C1E;
  background: #F5F4F0;
  border: 1px solid transparent;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #B8965A;
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  background: #1C1C1E;
  color: #fff;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.95rem;
  padding: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.28s;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover { background: #B8965A; }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #111;
  padding: 60px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-zh {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
}
.footer-brand-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  color: #B8965A;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-col-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  
}
.footer-links span ,.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: #B8965A; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.footer-contact-item iconify-icon { color: #B8965A; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
}
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-soc {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.25s;
}
.footer-soc:hover { border-color: #B8965A; color: #B8965A; }

/* ============================================
   PAGE SECTIONS (non-home pages)
============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: #1C1C1E;
  text-align: center;
}
.page-hero .section-label { justify-content: center; }
.page-hero .section-label::before { display: none; }
.page-hero .section-title { color: #fff; font-size: 2.6rem; }

/* ============================================
   BACK TO TOP
============================================ */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: #B8965A;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: #9A7A44; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .plan-special { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .container { padding: 0 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-text { padding-right: 0; margin-bottom: 40px; }
  .approach-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-accent { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .news-grid { grid-template-columns: 1fr; }
  .guarantees-inner { grid-template-columns: 1fr; gap: 40px; }
  .workflow-steps, .workflow-row2 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .workflow-steps::before, .workflow-row2::before { display: none; }
  .hero-stats { display: none; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .team-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-tel { display: none; }
  .hamburger { display: flex; }
  .section-title { font-size: 1.7rem; }
  .hero-title { font-size: 1.3rem; }
  .plans-grid { grid-template-columns: 1fr; }
  .values-cards { grid-template-columns: 1fr; }
  .guarantees-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-area { padding: 28px 20px; }
  .team-cards { grid-template-columns: 1fr; }
  .workflow-steps, .workflow-row2 { grid-template-columns: 1fr; }
  .hero-body {
    font-size: 15px;
}
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .navbar-inner { padding: 0 16px; }
  .hero-content { padding: 0 16px; }
  .back-top { right: 16px; bottom: 16px; }
}

/* ============================================
   VALUE PROPOSITION SECTION
============================================ */
.value-prop-section {
  background: #F5F4F0;
  padding: 96px 0 80px;
  border-top: 1px solid #EDE9E1;
}
.value-prop-intro {
  max-width: 920px;
  margin: 0 auto 64px;
  text-align: center;
}
.value-prop-intro .section-label {
  justify-content: center;
}
.value-prop-intro .section-label::before { display: none; }
.value-prop-intro .section-title {
  margin-bottom: 24px;
}
.value-prop-lead {
  font-size: 1.05rem;
  color: #3A3D42;
  line-height: 1.9;
}
.value-prop-tagline {
  font-family: 'Noto Serif TC', serif;
  font-style: normal;
  font-size: 1.05rem;
  color: #1C1C1E;
  display: inline-block;
  margin-top: 12px;
  border-left: 3px solid #B8965A;
  padding-left: 16px;
  text-align: left;
  line-height: 1.8;
}
.value-prop-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: stretch;
}
.vp-block-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif TC', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
/* Pain points */
.pain-points-block {
  background: #fff;
  border: 1px solid #EDE9E1;
  padding: 40px 44px;
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pain-item {
  display: grid;
  grid-template-columns: 1fr 28px 2fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #EDE9E1;
}
.pain-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pain-problem, .pain-solution {
  display: flex;
  gap: 10px;
  line-height: 1.7;
  color: #3A3D42;
  align-items: flex-start;
  min-width: 0;
}
.pain-problem iconify-icon,
.pain-solution iconify-icon {
  flex-shrink: 0;
  margin-top: 3px;
}
.pain-problem {
  color: #555;
}

.pain-solution { color: #1C1C1E; }
.pain-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: #B8965A;
  font-size: 1rem;
}
/* Brand promise */
.brand-promise-block {
  background: #1C1C1E;
  padding: 40px 36px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-promise-block .vp-block-label {
  color: rgba(255,255,255,0.9);
}
.promise-pills {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.promise-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.promise-pill:last-child { border-bottom: none; }
.promise-pill span {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
}
.promise-sep {
  display: none;
}
@media (max-width: 1024px) {
  .value-prop-body {
    grid-template-columns: 1fr;
  }
  .brand-promise-block {
    min-width: unset;
  }
  .promise-pills {
    flex-direction: row;
    gap: 0;
    justify-content: space-around;
  }
  .promise-pill {
    flex-direction: column;
    text-align: center;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 16px 24px;
    flex: 1;
  }
  .promise-pill:last-child { border-right: none; }
}
@media (max-width: 768px) {
  .value-prop-section { padding: 64px 0 56px; }
  .pain-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pain-arrow { display: none; }
  .pain-points-block { padding: 28px 20px; }
  .promise-pills { flex-direction: column; }
  .promise-pill {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 14px 0;
  }
  .promise-pill:last-child { border-bottom: none; }
  .brand-promise-block { padding: 28px 24px; }
}

/* ============================================
   PRICING PAGE — 作用域隔離
============================================ */
.pricing .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.pricing .aos {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.pricing .aos.visible { opacity: 1; transform: translateY(0); }
.pricing .aos-delay-1 { transition-delay: 0.08s; }
.pricing .aos-delay-2 { transition-delay: 0.16s; }
.pricing .aos-delay-3 { transition-delay: 0.24s; }

/* ============================================
   PRICING PAGE — 無衝突元件
============================================ */
#plan-2 .aos,
#plan-3 .aos {
  opacity: 1 !important;
  transform: none !important;
}
.page-banner {
  background: #1C1C1E;
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(184,150,90,0.03) 60px, rgba(184,150,90,0.03) 61px);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner .section-label { color: #D4AF76; }
.page-banner .section-label::before { background: #D4AF76; }
.page-banner .section-title { color: #fff; font-size: 2.6rem; }
.page-banner .section-title span{
  color: #D4AF76;
  font-size: 30px;  
}
.page-banner-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  margin-top: 4px;
}
.page-banner-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}
.seo-intro {
  background: #fff;
  padding: 52px 0 44px;
  border-bottom: 1px solid #EDE9E1;
}
.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #EDE9E1;
  border: 1px solid #EDE9E1;
  margin-bottom: 28px;
}
.seo-card { background: #fff; padding: 28px 28px 32px; }
.seo-card-icon { margin-bottom: 12px; }
.seo-card-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1C1C1E;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.seo-card-body {
  font-size: 0.85rem;
  color: #5A5A5A;
  line-height: 1.85;
}
.seo-card-body strong { color: #B8965A; font-weight: 600; }
.seo-footer-note {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  line-height: 1.8;
}
.plan-tabs-bar {
  background: #fff;
  border-bottom: 1px solid #EDE9E1;
  position: sticky;
  top: 72px;
  z-index: 90;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.plan-tabs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 0;
  justify-content: space-evenly;
}
.plan-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 36px;
  font-family: 'Noto Serif TC', serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #888;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.plan-tab:hover { color: #B8965A; }
.plan-tab.active { color: #B8965A; border-bottom-color: #B8965A; }
.plan-tab .tab-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #B8965A;
  letter-spacing: 0.06em;
}
.plan-tab .tab-total {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: #aaa;
  letter-spacing: 0.06em;
  margin-left: 4px;
}
.plan-tab.active .tab-total { color: #B8965A; }
.plans-wrap {
  background: #F5F4F0;
  padding: 64px 0 96px;
}
.plan-section {
  display: none;
  animation: fadeSlide 0.4s ease;
}
.plan-section.active { display: block; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.plan-header-card {
  background: #1C1C1E;
  padding: 44px 52px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.plan-header-badge {
  color: #D4AF76;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.plan-header-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.plan-header-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.plan-header-right { text-align: right; flex-shrink: 0; }
.plan-total-label {
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.plan-total-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: #D4AF76;
  letter-spacing: 0.04em;
  line-height: 1;
}
.plan-total-unit {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
.plan-tax-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  font-family: 'Inter', sans-serif;
}
.plan-cumulative {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: right;
}
.plan-cumulative-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.plan-cumulative-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 5px;
}
.cum-tag {
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.cum-amount {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.plan-cumulative-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 8px 0;
}
.cum-total-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 10px;
}
.cum-total-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D4AF76;
}
.cum-total-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: #D4AF76;
  letter-spacing: 0.04em;
  line-height: 1;
}
.cum-total-unit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.summary-cum-block {
  background: #FAFAF8;
  border: 1px solid #EDE9E1;
  border-top: 2px solid #B8965A;
  padding: 24px 32px;
  margin-top: 8px;
}
.summary-cum-title {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 14px;
}
.summary-cum-rows { display: flex; flex-direction: column; gap: 8px; }
.summary-cum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #5A5A5A;
}
.scr-label { display: flex; align-items: center; gap: 8px; }
.scr-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #B8965A;
  flex-shrink: 0;
}
.scr-amt {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #3A3D42;
}
.summary-cum-divider { height: 1px; background: #EDE9E1; margin: 10px 0; }
.summary-cum-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.summary-cum-total-label {
  font-family: 'Noto Serif TC', serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #1C1C1E;
}
.summary-cum-total-amt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: #B8965A;
  letter-spacing: 0.04em;
  line-height: 1;
}
.summary-cum-unit {
  font-size: 0.75rem;
  color: #aaa;
  margin-left: 4px;
}
.category-block {
  background: #fff;
  margin-bottom: 20px;
  border: 1px solid #EDE9E1;
}
.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid #EDE9E1;
  transition: background 0.2s;
}
.category-header:hover { background: #FAFAF8; }
.category-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #B8965A;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}
.cat-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 20px;
  font-weight: 800;
  color: #1C1C1E;
  letter-spacing: 0.04em;
}
.cat-subtotal {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #B8965A;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cat-chevron {
  color: #ccc;
  transition: transform 0.25s;
}
.category-block.open .cat-chevron { transform: rotate(180deg); }
.items-table {
  width: 100%;
  border-collapse: collapse;
}
.items-table th {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 500;
  padding: 14px 32px;
  text-align: left;
  background: #FAFAF8;
  border-bottom: 1px solid #EDE9E1;
}
.items-table th.right {
  text-align: center;
}
.items-table td {
  padding: 16px 32px;
  color: #3A3D42;
  border-bottom: 1px solid #F5F4F0;
  vertical-align: top;
  line-height: 1.7;
}
.items-table td.right {
  text-align: center;
  white-space: nowrap;
}
.items-table td.amount {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1C1C1E;
  text-align: right;
  white-space: nowrap;
}
.items-table tr:last-child td { border-bottom: none; }
.items-table tr:hover td { background: #FAFAF8; }
.item-num { color: #B8965A; font-family: 'Inter', sans-serif; font-size: 0.8rem; }
.item-spec { font-size: 0.78rem; color: #999; margin-top: 3px; }
.items-body { display: none; }
.items-body.open { display: block; }
.qty-unit {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  white-space: nowrap;
}
.unit-price {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #888;
  text-align: right;
  white-space: nowrap;
}
.plan-summary-bar {
  background: #fff;
  border: 1px solid #EDE9E1;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.summary-note {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.8;
}
.summary-total-wrap { text-align: right; }
.summary-total-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 4px;
}
.summary-total-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: #B8965A;
  letter-spacing: 0.04em;
  line-height: 1;
}
.summary-total-currency {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.82rem;
  color: #888;
  margin-left: 6px;
}
.pricing-cta {
  background: #1C1C1E;
  padding: 80px 0;
  text-align: center;
}
.pricing-cta .section-label { justify-content: center; }
.pricing-cta .section-label::before { display: none; }
.pricing-cta .section-title { color: #fff; }
.pricing-cta-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  line-height: 1.9;
}
.pricing-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PRICING PAGE — RWD
============================================ */
@media (max-width: 900px) {
  .pricing .plan-header-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
  }
  .pricing .plan-header-right { text-align: left; }
  .pricing .plan-total-amount { font-size: 2.4rem; }
  .pricing .nav-links, .pricing .nav-cta { display: none; }
  .pricing .hamburger { display: flex; }
  .pricing .plan-tabs-inner { padding: 0 16px; overflow-x: auto; }
  .pricing .plan-tab { padding: 18px 20px; font-size: 0.88rem; }
  .seo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .pricing .container { padding: 0 16px; }
  .pricing .navbar-inner { padding: 0 16px; }
  .pricing .page-banner { padding: 100px 0 48px; }
  .pricing .page-banner .section-title { font-size: 1.8rem; }
  .pricing .plans-wrap { padding: 40px 0 64px; }
  .pricing .category-header { padding: 18px 20px; }
  .pricing .cat-name { font-size: 0.92rem; }
  .pricing .items-table th, .pricing .items-table td { padding: 12px 20px; }
  .pricing .items-table th:nth-child(3), .pricing .items-table td:nth-child(3),
  .pricing .items-table th:nth-child(4), .pricing .items-table td:nth-child(4) { display: none; }
  .pricing .plan-summary-bar { flex-direction: column; gap: 16px; text-align: center; }
  .pricing .summary-total-wrap { text-align: center; }
  .pricing .pricing-cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 540px) {
  .seo-grid { grid-template-columns: 1fr; }
  .seo-intro { padding: 36px 0 28px; }
}
