﻿/* ============================================================
   簡樸易 — 主樣式表
   Brand: 簡樸易 | 站在業主角度，少走彎路
   Colors: Teal #0B3A42 | Copper #E76F51 | Warm White #F7F1E5
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+TC:wght@400;500;600;700;800;900&display=swap');

/* === CSS Variables === */
:root {
  --primary:        #0B3A42;
  --primary-light:  #145865;
  --primary-dark:   #072830;
  --secondary:      #4F6F73;
  --accent:         #E76F51;
  --accent-dark:    #C45A3E;
  --accent-light:   #F08A70;
  --accent-bg:      #FDEEE8;
  --white:          #FFFFFF;
  --bg:             #F7F1E5;
  --bg-dark:        #0B3A42;
  --text:           #1F2933;
  --text-muted:     #6B7280;
  --text-light:     #94A3B8;
  --border:         #E6DDCC;
  --success:        #2A9D8F;
  --success-bg:     #E6F5F3;
  --warning:        #F59E0B;
  --warning-bg:     #FFFBEB;
  --danger:         #EF4444;
  --danger-bg:      #FEF2F2;
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      18px;
  --radius-xl:      28px;
  --shadow-sm:      0 2px 6px rgba(11, 58, 66, 0.07);
  --shadow:         0 14px 40px rgba(11, 58, 66, 0.12);
  --shadow-lg:      0 20px 60px rgba(11, 58, 66, 0.18);
  --max-width:      1160px;
  --nav-height:     68px;
  --transition:     0.22s ease;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: "Noto Sans TC", "Source Han Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* English text uses Inter */
.btn, .nav-links a, .btn-nav, .nav-login, .nav-booking, .pricing-price, .stat-number,
.hero-card-price, .founder-stat-num { font-family: "Inter", "Noto Sans TC", sans-serif; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === Layout === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1.35; }
.section-header p { margin-top: 12px; font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin-left: auto; margin-right: auto; }
.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--accent-dark); background: var(--accent-bg); padding: 4px 12px;
  border-radius: 99px; margin-bottom: 12px; text-transform: uppercase;
}

/* === Navigation === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { width: 36px; height: 36px; border-radius: var(--radius); display: block; flex-shrink: 0; }
.nav-logo-text { font-size: 1.2rem; font-weight: 800; color: var(--primary); font-family: "Noto Sans TC", sans-serif; letter-spacing: -0.01em; }
.nav-logo-text span { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a,
.nav-dropdown-link {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  padding: 8px 12px; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active,
.nav-dropdown-link:hover,
.nav-dropdown-link:focus { color: var(--primary); background: var(--bg); }

.nav-dropdown { position: relative; }
.nav-dropdown-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: inherit;
  cursor: pointer;
}
.nav-dropdown.active > .nav-dropdown-link {
  color: var(--primary);
  background: var(--bg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 330px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 12px;
  border-radius: var(--radius);
}
.nav-dropdown-item:hover,
.nav-dropdown-item:focus {
  background: var(--bg);
}
.nav-dropdown-title {
  display: block;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.35;
}
.nav-dropdown-desc {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}
.nav-dropdown-cta {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.nav-dropdown-cta a {
  display: block;
  color: var(--white);
  background: var(--accent);
  font-weight: 800;
  line-height: 1.5;
  box-shadow: 0 10px 24px rgba(231, 111, 81, 0.24);
}
.nav-dropdown-cta a:hover,
.nav-dropdown-cta a:focus {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(196, 90, 62, 0.3);
}

.nav-cta {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color var(--transition), background var(--transition);
}
.nav-login:hover,
.nav-login:focus {
  color: var(--primary);
  background: var(--bg);
}
.nav-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background var(--transition), transform var(--transition);
}
.nav-booking:hover,
.nav-booking:focus {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-nav {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 600;
  background: var(--accent); color: white;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav:hover { background: var(--accent-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; height: 32px; justify-content: center; align-items: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-mobile {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; z-index: 999;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 12px 0; font-size: 1rem; font-weight: 500;
  color: var(--text); border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; padding: 14px; border-radius: var(--radius);
  background: #25D366; color: white; font-weight: 700; font-size: 1rem;
}
.nav-mobile-home,
.nav-mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile-group {
  border-bottom: 1px solid var(--border);
}
.nav-mobile-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: left;
}
.nav-mobile-group-toggle::after {
  content: "+";
  font-size: 1.15rem;
  color: var(--accent-dark);
  line-height: 1;
}
.nav-mobile-group-toggle[aria-expanded="true"]::after { content: "−"; }
.nav-mobile-panel {
  display: none;
  padding: 2px 0 14px 12px;
}
.nav-mobile-panel.open { display: block; }
.nav-mobile-panel a {
  padding: 11px 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-muted);
  border-bottom: 0;
}
.nav-mobile-panel a.active {
  color: var(--primary);
  font-weight: 800;
}
.nav-mobile-action {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.nav-mobile-action.nav-mobile-cta {
  margin-top: 12px;
  padding: 13px 16px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  text-align: center;
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700; line-height: 1;
  transition: all var(--transition); cursor: pointer;
}
.btn-primary {
  background: var(--accent); color: white;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.35); }

.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); }

.btn-white {
  background: white; color: var(--primary-dark);
}
.btn-white:hover { background: var(--accent-light); transform: translateY(-2px); }

.btn-wa {
  background: #25D366; color: white;
}
.btn-wa:hover { background: #1DA851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

.btn-lg { padding: 17px 36px; font-size: 1.05rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; border-radius: var(--radius); font-weight: 600; }

/* === Hero === */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  display: flex; align-items: center;
  padding-top: var(--nav-height);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(231,111,81,0.18); border: 1px solid rgba(231,111,81,0.35);
  color: var(--accent); padding: 6px 14px; border-radius: 99px;
  font-size: 0.82rem; font-weight: 600; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; color: white; line-height: 1.25; margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.78); margin-bottom: 36px; line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 20px;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: rgba(255,255,255,0.65);
}
.hero-trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Hero Card */
.hero-card {
  background: white; border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-lg);
}
.hero-card-title {
  font-size: 0.82rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px;
}
.hero-card-price {
  font-size: 2.4rem; font-weight: 900; color: var(--primary); line-height: 1;
}
.hero-card-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); margin-left: 4px; }
.hero-card-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; margin-bottom: 24px; }

.hero-card-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.hero-card-item {
  display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem;
}
.hero-card-item-icon {
  width: 20px; height: 20px; background: var(--success-bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.hero-card-item-icon svg { width: 11px; height: 11px; }

.hero-card-disclaimer {
  font-size: 0.75rem; color: var(--text-light);
  border-top: 1px solid var(--border); padding-top: 16px; line-height: 1.6;
}

/* === Pain Points === */
.pain { background: var(--bg); }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.pain-card {
  background: white; border-radius: var(--radius-lg); padding: 28px 24px;
  border: 1px solid var(--border); text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pain-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.pain-card-icon {
  width: 52px; height: 52px; background: var(--accent-bg);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem;
}
.pain-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.pain-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* === How It Works === */
.steps { background: white; }
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; }
.step { text-align: center; position: relative; }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; margin: 0 auto 16px;
  position: relative; z-index: 1;
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-muted); }
.step-connector {
  position: absolute; top: 26px; left: calc(50% + 30px); right: calc(-50% + 30px);
  height: 2px; background: var(--border); z-index: 0;
}

/* === Risk Levels === */
.risk { background: var(--bg); }
.risk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.risk-card { border-radius: var(--radius-lg); padding: 28px 24px; border: 2px solid transparent; }
.risk-card.low  { background: var(--success-bg); border-color: #A7F3D0; }
.risk-card.mid  { background: var(--warning-bg); border-color: #FACBB8; }
.risk-card.high { background: var(--danger-bg);  border-color: #FECACA; }
.risk-badge {
  display: inline-block; padding: 4px 12px; border-radius: 99px;
  font-size: 0.78rem; font-weight: 700; margin-bottom: 12px;
}
.risk-card.low  .risk-badge { background: #D1FAE5; color: #065F46; }
.risk-card.mid  .risk-badge { background: #FDEEE8; color: #92400E; }
.risk-card.high .risk-badge { background: #FEE2E2; color: #991B1B; }
.risk-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.risk-card ul { font-size: 0.88rem; color: var(--text-muted); display: flex; flex-direction: column; gap: 4px; }
.risk-card ul li::before { content: "• "; }
.risk-pct { font-size: 1.8rem; font-weight: 900; margin-bottom: 4px; }
.risk-card.low  .risk-pct { color: #059669; }
.risk-card.mid  .risk-pct { color: #D97706; }
.risk-card.high .risk-pct { color: #DC2626; }

/* === Why Us === */
.why { background: var(--primary); }
.why .section-header h2 { color: white; }
.why .section-header p { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: background var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.12); }
.why-icon {
  width: 48px; height: 48px; background: rgba(231,111,81,0.18);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: white; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* === CTA Banner === */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 64px 0;
}
.cta-banner-inner { text-align: center; }
.cta-banner h2 { font-size: 1.9rem; font-weight: 900; color: white; margin-bottom: 12px; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.88); margin-bottom: 32px; }
.cta-banner-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* === FAQ Accordion === */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: white;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 0.97rem; font-weight: 600; color: var(--primary);
  background: none; cursor: pointer;
}
.faq-q-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
  font-size: 1.1rem; color: var(--primary);
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--accent-light); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* === Pricing Table === */
.pricing-card {
  background: white; border: 2px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 32px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pricing-card.featured { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(245,166,35,0.15); }
.pricing-tag {
  display: inline-block; background: var(--accent); color: var(--primary-dark);
  font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; margin-bottom: 12px;
}
.pricing-name { font-size: 0.88rem; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; }
.pricing-price { font-size: 2.2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.pricing-price small { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.pricing-desc { font-size: 0.88rem; color: var(--text-muted); margin: 12px 0 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem;
}
.pricing-feature-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--success-bg); color: var(--success);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.7rem; margin-top: 1px;
}

/* === Timeline === */
.timeline { position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
  width: 2px; background: var(--border);
}
.timeline-item { display: flex; gap: 24px; margin-bottom: 40px; position: relative; }
.timeline-dot {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; position: relative; z-index: 1;
}
.timeline-dot.active { background: var(--accent); color: var(--primary-dark); }
.timeline-dot.upcoming { background: var(--bg); color: var(--text-muted); border: 2px solid var(--border); }
.timeline-dot.deadline { background: var(--danger); color: white; }
.timeline-content { padding-top: 12px; }
.timeline-date { font-size: 0.82rem; font-weight: 700; color: var(--accent-dark); margin-bottom: 4px; }
.timeline-title { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.timeline-desc { font-size: 0.9rem; color: var(--text-muted); }

/* === Stats === */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.stat-card { text-align: center; padding: 32px 24px; }
.stat-number { font-size: 2.4rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.88rem; color: var(--text-muted); margin-top: 6px; }
.stat-note { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }

/* === Case Study === */
.case-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  transition: box-shadow var(--transition);
}
.case-card:hover { box-shadow: var(--shadow); }
.case-tag { display: inline-block; font-size: 0.78rem; font-weight: 700; padding: 4px 10px; border-radius: 99px; margin-bottom: 12px; }
.case-tag.green { background: var(--success-bg); color: #065F46; }
.case-tag.yellow { background: var(--warning-bg); color: #92400E; }
.case-tag.red { background: var(--danger-bg); color: #991B1B; }
.case-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.case-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.case-meta { display: flex; flex-wrap: wrap; gap: 16px; }
.case-meta-item { font-size: 0.82rem; color: var(--text-muted); }
.case-meta-item strong { color: var(--primary); font-weight: 700; }

/* === Disclaimer Banner === */
.disclaimer {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px;
  display: flex; gap: 12px; align-items: flex-start;
}
.disclaimer-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.disclaimer p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* === Investment Page === */
.highlight-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  background: rgba(231,111,81,0.1);
  border-radius: 50%;
}
.highlight-card h3 {
  font-size: 1.25rem; font-weight: 800;
  color: var(--accent); margin-bottom: 12px;
  position: relative;
}
.highlight-card p {
  font-size: 0.95rem; color: rgba(255,255,255,0.75);
  max-width: 720px; line-height: 1.75;
  position: relative;
}

.value-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.value-icon {
  width: 52px; height: 52px;
  background: var(--accent-bg);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.value-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--primary); }
.value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; flex: 1; }

/* === Mini Card (icon grid) === */
.mini-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px;
  display: flex; flex-direction: column; gap: 8px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.mini-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.mini-icon {
  font-size: 1.6rem; margin-bottom: 4px;
}
.mini-card h3 { font-size: 0.92rem; font-weight: 800; color: var(--primary); }
.mini-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* === Fit Card (適合 / 未必適合) === */
.fit-card {
  background: white; border: 2px solid var(--success);
  border-radius: var(--radius-xl); padding: 32px 28px;
}
.fit-card.muted { border-color: var(--border); }
.fit-card h3 {
  font-size: 1rem; font-weight: 800; color: var(--success);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid var(--success-bg);
}
.fit-card.muted h3 { color: var(--text-muted); border-bottom-color: var(--border); }
.fit-card ul { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.fit-card ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text); line-height: 1.6;
}
.fit-card ul li::before {
  content: '✓'; color: var(--success); font-weight: 800;
  font-size: 0.82rem; flex-shrink: 0; margin-top: 3px;
}
.fit-card.muted ul li::before { content: '✗'; color: var(--text-muted); }

/* === Check List === */
.check-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 24px;
}
.check-list div {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.92rem; font-weight: 600; color: var(--primary);
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
}
.check-list div::before {
  content: '✓';
  width: 24px; height: 24px;
  background: var(--success-bg); color: var(--success);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.78rem; font-weight: 800;
  flex-shrink: 0;
}

/* === Investment Timeline Cards === */
.timeline-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}
.timeline-cards.no-line::before { display: none; }
.timeline-cards::before {
  content: '';
  position: absolute;
  top: 88px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
  z-index: 0;
}
.timeline-card {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 12px 24px;
  position: relative; z-index: 1;
}
.timeline-card-img {
  width: 100%; aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--bg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.timeline-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.timeline-card-img .inv-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: var(--text-muted);
  font-size: 0.78rem; padding: 12px;
}
.timeline-card-img .inv-placeholder span { font-size: 1.8rem; opacity: 0.4; }
.timeline-card-num {
  width: 32px; height: 32px;
  background: var(--accent); color: var(--primary-dark);
  border-radius: 50%; font-size: 0.85rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px; flex-shrink: 0;
}
.timeline-card h3 { font-size: 0.9rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.timeline-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 900px) {
  .timeline-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .timeline-cards::before { display: none; }
}
@media (max-width: 600px) {
  .timeline-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* === WhatsApp Float === */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
}
.wa-float a {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 14px 20px; border-radius: 99px;
  font-size: 0.92rem; font-weight: 700;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: all var(--transition);
  white-space: nowrap;
}
.wa-float a:hover { background: #1DA851; transform: translateY(-3px) scale(1.02); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }

/* === Footer === */
.footer {
  background: var(--bg-dark); color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(4, minmax(130px, 1fr));
  gap: 34px;
  margin-bottom: 48px;
  align-items: start;
}
.footer-brand { max-width: 320px; }
.footer-logo { display: flex; align-items: center; margin-bottom: 20px; }
.footer-logo img { height: 48px; width: auto; max-width: 200px; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-brand .footer-slogan { color: white; font-weight: 800; margin-bottom: 8px; }
.footer-brand .footer-intro { color: rgba(255,255,255,0.62); }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col-contact { order: initial; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; font-size: 0.8rem; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-disclaimer {
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
  line-height: 1.65; max-width: 800px; margin-bottom: 24px;
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
}

/* === Page Hero (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: calc(var(--nav-height) + 60px) 0 60px;
}
.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: white; margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 600px; }

/* === Investment Hero === */
.investment-hero { padding: calc(var(--nav-height) + 72px) 0 80px; }
.inv-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 28px;
}
.inv-hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.06);
}
.inv-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.inv-hero-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: rgba(255,255,255,0.4); font-size: 0.88rem; text-align: center; padding: 24px;
  border: 2px dashed rgba(255,255,255,0.2); border-radius: var(--radius-xl);
}
.inv-hero-placeholder span { font-size: 2.4rem; opacity: 0.4; }
@media (max-width: 900px) {
  .inv-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .inv-hero-img { aspect-ratio: 16 / 9; }
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* === Alert / Notice === */
.alert {
  padding: 16px 20px; border-radius: var(--radius);
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.9rem; margin-bottom: 20px;
}
.alert-warning { background: var(--warning-bg); border: 1px solid #FACBB8; color: #92400E; }
.alert-info { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }
.alert-success { background: var(--success-bg); border: 1px solid #A7F3D0; color: #065F46; }
.alert-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* === Table === */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th { text-align: left; padding: 12px 16px; background: var(--bg); font-weight: 700; color: var(--primary); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; }
.data-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: top; color: var(--text-muted); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg); }

/* === District Card === */
.district-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.district-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px 16px; text-align: center; background: white;
  transition: all var(--transition);
}
.district-card:hover { border-color: var(--primary); background: var(--primary); color: white; transform: translateY(-3px); }
.district-card:hover .district-name { color: white; }
.district-card:hover .district-count { color: rgba(255,255,255,0.7); }
.district-icon { font-size: 1.6rem; margin-bottom: 8px; }
.district-name { font-size: 0.95rem; font-weight: 700; color: var(--primary); }
.district-count { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* === Checklist === */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: var(--radius);
  background: var(--bg); font-size: 0.9rem;
}
.checklist-item.pass { background: var(--success-bg); }
.checklist-item.fail { background: var(--danger-bg); }
.checklist-item.na   { background: var(--bg); opacity: 0.65; }
.checklist-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.checklist-text strong { display: block; font-weight: 600; color: var(--text); }
.checklist-text span { font-size: 0.82rem; color: var(--text-muted); }

/* === Grid helpers === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* === Utilities === */
.text-center { text-align: center; }
.text-muted   { color: var(--text-muted); }
.text-accent  { color: var(--accent-dark); }
.text-primary { color: var(--primary); }
.font-bold    { font-weight: 700; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-8  { margin-bottom: 32px; }
.gap-2 { gap: 8px; }
.flex  { display: flex; }
.items-center { align-items: center; }

/* === Registration Support === */
.reg-payment-card { position: sticky; top: 88px; }
.reg-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  max-width: 980px;
}

/* === Assessment Landing Page === */
.assessment-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 58%, var(--primary-light) 100%);
  color: white;
  padding: calc(var(--nav-height) + 72px) 0 64px;
  position: relative;
  overflow: hidden;
}
.assessment-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.assessment-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}
.assessment-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 20px;
}
.assessment-hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 680px;
}
.assessment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}
.assessment-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.86rem;
  font-weight: 700;
}
.assessment-hero-note {
  margin-top: 18px;
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
  line-height: 1.65;
}
.assessment-media {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-xl);
  border: 1px dashed rgba(255,255,255,0.28);
  background: linear-gradient(135deg, rgba(247,241,229,0.9), rgba(231,111,81,0.16));
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.assessment-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}
.assessment-media.contain-img img {
  object-fit: contain;
  background: #fff;
  padding: 12px;
}
.assessment-media-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.6;
}
.assessment-media img:not([style*="display: none"]) + .assessment-media-label { display: none; }
.assessment-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.assessment-card,
.assessment-value-card,
.assessment-standard-card,
.assessment-result-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.assessment-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-bg);
  color: var(--accent-dark);
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.assessment-card h3,
.assessment-value-card h3,
.assessment-standard-card h3,
.assessment-result-card h3 {
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 8px;
}
.assessment-card p,
.assessment-value-card p,
.assessment-standard-card p,
.assessment-result-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}
.assessment-value-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 28px;
  align-items: stretch;
}
.assessment-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.assessment-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.assessment-result-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  overflow: hidden;
}
.assessment-result-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.assessment-result-img {
  min-height: 190px;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  border-bottom: 1px dashed var(--border);
}
.assessment-result-tag {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.76rem;
  font-weight: 800;
}
.assessment-result-tag.low { background: var(--success-bg); color: #065F46; }
.assessment-result-tag.mid { background: var(--warning-bg); color: #92400E; }
.assessment-result-tag.high { background: var(--danger-bg); color: #991B1B; }
.assessment-price-range {
  color: var(--accent-dark);
  font-weight: 900;
  font-size: 0.92rem;
}
.assessment-list {
  display: grid;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}
.assessment-list li::before {
  content: "•";
  color: var(--accent-dark);
  font-weight: 900;
  margin-right: 7px;
}
.assessment-standards-wrap {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.35fr);
  gap: 30px;
  align-items: center;
}
.assessment-standards-wrap .assessment-media {
  min-height: auto;
  max-width: none;
  width: 100%;
  margin: 0 auto;
}
.assessment-standards-wrap .assessment-media img {
  height: auto;
  min-height: auto;
  object-fit: contain;
  padding: 0;
}
.assessment-standards-media {
  background: #fff;
  border: 0;
  box-shadow: var(--shadow-lg);
}
.assessment-standards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.assessment-standard-card { padding: 18px; }
.assessment-standard-card h3 { font-size: 0.92rem; }
.assessment-standard-card p { font-size: 0.82rem; }
.assessment-payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 32px;
  align-items: start;
}
.assessment-payment-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.92rem;
}
.assessment-payment-list li {
  display: flex;
  gap: 10px;
  line-height: 1.65;
}
.assessment-payment-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
  flex-shrink: 0;
}
.assessment-disclaimer {
  background: var(--warning-bg);
  border: 1px solid #FDE68A;
  border-radius: var(--radius-lg);
  color: #78350F;
  padding: 18px 20px;
  font-size: 0.88rem;
  line-height: 1.75;
}
.assessment-gallery-section { padding: 64px 0; }
.assessment-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.assessment-gallery-item {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.assessment-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition), filter var(--transition);
}
.assessment-gallery-item:hover img {
  transform: scale(1.025);
  filter: saturate(1.04);
}
.assessment-gallery-grid:not(.is-expanded) .assessment-gallery-item.is-extra {
  display: none;
}
.assessment-gallery-actions {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 28px;
  text-align: center;
}
.assessment-gallery-actions p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 720px;
}
.assessment-process-section {
  padding: 92px 0;
  background:
    linear-gradient(180deg, #FAF8F4 0%, #F7F5F1 100%);
}
.assessment-booking-process {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.assessment-process-content {
  display: grid;
  gap: 18px;
  max-width: 620px;
}
.assessment-process-kicker {
  width: fit-content;
  border-radius: 999px;
  background: rgba(231, 111, 81, 0.12);
  color: var(--accent-dark);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.assessment-process-content h2 {
  color: var(--primary);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.28;
  font-weight: 900;
  margin: 0;
}
.assessment-process-intro {
  color: #56636A;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 0 6px;
}
.assessment-process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: var(--white);
  border: 1px solid rgba(230, 221, 204, 0.9);
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(11, 58, 66, 0.08);
  padding: 22px 24px;
}
.assessment-step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", "Noto Sans TC", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(11, 58, 66, 0.18);
}
.assessment-process-card:nth-of-type(2) .assessment-step-number {
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(231, 111, 81, 0.22);
}
.assessment-process-card span {
  display: block;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.assessment-process-card h3 {
  color: var(--primary);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 6px;
}
.assessment-process-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.62;
  margin: 0;
}
.assessment-process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}
.assessment-process-actions .btn {
  border-radius: 16px;
}
.assessment-process-visual-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(230, 221, 204, 0.88);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(11, 58, 66, 0.1);
  padding: 24px;
}
.assessment-process-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(231, 111, 81, 0.12), rgba(42, 157, 143, 0.08)),
    #FDFBF7;
  border: 1px solid rgba(230, 221, 204, 0.9);
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
}
.assessment-process-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #FDFBF7;
  display: none;
}
.assessment-process-visual.has-image img {
  display: block;
}
.assessment-process-visual.has-image .assessment-process-placeholder {
  display: none;
}
.assessment-process-placeholder {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--primary);
}
.assessment-placeholder-graphic {
  width: min(220px, 70%);
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(230, 221, 204, 0.95);
  box-shadow: var(--shadow-sm);
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
}
.assessment-placeholder-graphic span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 58, 66, 0.14);
}
.assessment-placeholder-graphic span:nth-child(1) {
  width: 70%;
  background: rgba(231, 111, 81, 0.28);
}
.assessment-placeholder-graphic span:nth-child(2) {
  width: 92%;
}
.assessment-placeholder-graphic span:nth-child(3) {
  width: 55%;
}
.assessment-process-placeholder h3 {
  color: var(--primary);
  font-size: 1.18rem;
  font-weight: 900;
  margin: 0;
}
.assessment-process-placeholder p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}
.assessment-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}
.assessment-contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
.assessment-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.assessment-contact-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}
.assessment-contact-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 1024px) {
  .assessment-hero-inner,
  .assessment-value-wrap,
  .assessment-standards-wrap,
  .assessment-booking-process,
  .assessment-payment-grid {
    grid-template-columns: 1fr;
  }
  .assessment-value-grid,
  .assessment-standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .assessment-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .assessment-hero { padding: calc(var(--nav-height) + 40px) 0 48px; }
  .assessment-hero-inner,
  .assessment-card-grid,
  .assessment-value-grid,
  .assessment-result-grid,
  .assessment-standards-grid {
    grid-template-columns: 1fr;
  }
  .assessment-hero .hero-actions .btn,
  .assessment-payment-grid .btn,
  .cta-banner-actions .btn {
    width: 100%;
  }
  .assessment-media { min-height: 230px; }
  .assessment-gallery-section { padding: 48px 0; }
  .assessment-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .assessment-process-section {
    padding: 64px 0;
  }
  .assessment-booking-process {
    gap: 24px;
  }
  .assessment-process-content {
    gap: 16px;
  }
  .assessment-process-card {
    gap: 14px;
    padding: 20px;
  }
  .assessment-process-actions .btn {
    width: 100%;
  }
  .assessment-process-visual-card {
    padding: 16px;
  }
  .assessment-process-visual {
    aspect-ratio: 16 / 9;
    padding: 18px;
  }
  .assessment-placeholder-graphic {
    display: none;
  }
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-visual { order: 1; }
  .hero-copy { order: 2; }
  .hero-card { max-width: 480px; }
  .footer-grid { gap: 28px; }
  .risk-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .section-header h2 { font-size: 1.6rem; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-cta .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: calc(var(--nav-height) + 40px) 0 56px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-card { padding: 24px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .reg-hero-grid { grid-template-columns: 1fr; }
  .reg-hero-grid .reg-hero-badge { display: none; }
  .reg-payment-card { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { order: 1; }
  .footer-col-contact { order: 2; }
  .footer-col-landlord { order: 3; }
  .footer-col-investor { order: 4; }
  .footer-col-about { order: 5; }
  .wa-float a .wa-text { display: none; }
  .wa-float a { padding: 14px; border-radius: 50%; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps-grid .step:last-child { grid-column: 1 / -1; width: 50%; margin-left: auto; margin-right: auto; }
  .step-connector { display: none; }
  .cta-banner { padding: 48px 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .data-table { font-size: 0.82rem; }
  .data-table th, .data-table td { padding: 10px 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .assessment-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid .step:last-child { width: 60%; }
  .pain-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .district-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === Quick Check Card === */
.quick-check-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl); padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.quick-check-card h3 { font-size: 1.5rem; font-weight: 900; color: white; margin-bottom: 8px; }
.quick-check-card p { font-size: 0.95rem; color: rgba(255,255,255,0.75); max-width: 500px; }
.quick-check-card-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* === Founder Section === */
.founder-section { background: var(--bg); }
.founder-card {
  background: white; border-radius: var(--radius-xl);
  padding: 40px; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.founder-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center;
  justify-content: center; font-size: 2rem; flex-shrink: 0;
}
.founder-name { font-size: 1.15rem; font-weight: 700; color: var(--primary); }
.founder-title { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }
.founder-quote {
  font-size: 1.05rem; line-height: 1.8; color: var(--text);
  border-left: 3px solid var(--accent); padding-left: 20px;
  margin: 24px 0;
}
.founder-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 24px;
}
.founder-stat { text-align: center; padding: 16px; background: var(--bg); border-radius: var(--radius); }
.founder-stat-num { font-size: 1.6rem; font-weight: 900; color: var(--primary); }
.founder-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* === About Page === */
.about-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: calc(var(--nav-height) + 72px) 0 72px;
}
.about-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: white; margin-bottom: 16px; }
.about-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.78); max-width: 640px; }
.about-content { background: white; }

/* === Disclaimer Box === */
.disclaimer-box {
  background: var(--warning-bg); border: 1px solid #FACBB8;
  border-radius: var(--radius-lg); padding: 20px 24px;
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.7;
}
.disclaimer-box strong { color: var(--text); }

/* === Why Us Section (inline) === */
.why-us-section { background: var(--primary); padding: 72px 0; }
.why-us-section .section-header h2 { color: white; }
.why-us-section .section-header p { color: rgba(255,255,255,0.7); }

/* === Image Carousel === */
.img-carousel-wrap {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}
.img-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 0;
  scrollbar-width: none;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.img-carousel::-webkit-scrollbar { display: none; }
.img-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.img-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}
.img-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  z-index: 10;
  transition: background var(--transition), transform var(--transition);
}
.img-carousel-btn:hover { background: white; transform: translateY(-50%) scale(1.08); }
.img-carousel-btn.prev { left: -16px; }
.img-carousel-btn.next { right: -16px; }
.img-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.img-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
  padding: 0;
}
.img-carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 640px) {
  .img-carousel-btn.prev { left: -8px; }
  .img-carousel-btn.next { right: -8px; }
  .img-carousel-btn { width: 32px; height: 32px; font-size: 0.85rem; }
}

/* === Assessment Gallery === */
.gallery-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--border);
  padding: 8px 0 16px;
  cursor: grab;
}
.gallery-scroll:active { cursor: grabbing; }
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

.gallery-track {
  display: flex;
  gap: 16px;
  padding: 0 max(24px, calc((100vw - 1200px) / 2));
  width: max-content;
}

.gallery-item {
  flex: 0 0 auto;
  width: 380px;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(11,58,66,0.18);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-item figcaption {
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  background: white;
}

@media (max-width: 640px) {
  .gallery-item { width: 300px; }
}

/* === Photo Gallery (drag slider + auto-scroll + progress bar) === */
.insp-gallery-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.photo-gal-outer {
  position: relative;
}

.photo-gal-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.photo-gal-wrap::-webkit-scrollbar { display: none; }
.photo-gal-wrap.is-dragging { cursor: grabbing; }

.photo-gal-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 6px 24px 10px;
}

.photo-gal-slide {
  flex-shrink: 0;
  width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-gal-slide img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

/* Progress bar */
.photo-gal-bar-wrap {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 10px 24px 0;
  overflow: hidden;
  cursor: pointer;
}

.photo-gal-bar {
  height: 100%;
  width: 0%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.08s linear;
}

@media (max-width: 768px) {
  .photo-gal-slide { width: 320px; }
  .photo-gal-track { padding: 6px 16px 10px; }
  .photo-gal-bar-wrap { margin: 10px 16px 0; }
}

/* === Office Card Photos === */
.office-card-photos {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2px;
  height: 180px;
  overflow: hidden;
}

.office-photo-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.office-photo-side {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* === Placeholder image/video containers === */
.img-placeholder { position: relative; overflow: hidden; }
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* === Process costs page === */
.fee-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.fee-card .fee-amount { font-size: 1.4rem; font-weight: 900; color: var(--primary); }
.fee-card .fee-note { font-size: 0.82rem; color: var(--text-muted); }
.works-card { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); }
.works-card-body { padding: 24px; }
.works-card-range { font-size: 1.3rem; font-weight: 900; color: var(--primary); margin: 8px 0; }
@media (max-width: 768px) {
  .works-row { flex-direction: column !important; }
  .works-row-img { flex: none !important; width: 100%; }
  .works-row-img img { width: 100%; height: auto !important; max-height: 240px; object-fit: cover; }
}

/* === Case studies page === */
.case-block { padding: 48px 0; border-bottom: 1px solid var(--border); }
.case-block:last-child { border-bottom: none; }
.case-label { display: inline-block; background: var(--accent-bg); color: var(--primary); font-size: 0.75rem; font-weight: 800; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; letter-spacing: 0.05em; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.check-icon-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 20px; text-align: center; }
.check-icon-card h3 { font-size: 0.95rem; color: var(--primary); margin: 10px 0 6px; font-weight: 700; }
.check-icon-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
