/* ================================================================
 * 双兴·我的家 — 品牌设计系统 v6
 * 配色：白色底 + Logo深蓝 #1A4A6B / Logo浅蓝 #5BA3C7 + 工业黄 #F3B41B
 * ================================================================ */

:root {
  --ink: #1A4A6B;
  --surface: #F7F8FA;
  --surface-2: #EDF0F4;
  --blue: #1A4A6B;
  --blue-light: #3E8AB0;
  --blue-lighter: #5BA3C7;
  --navy: #0D2840;
  --yellow: #F3B41B;
  --yellow-dark: #D9A00E;
  --canvas: #FFFFFF;
  --paper: #F7F8FA;
  --text: #1A2332;
  --text-muted: rgba(26,35,50,.55);
  --text-dim: rgba(26,35,50,.35);
  --line: rgba(26,74,107,.1);
  --line-strong: rgba(26,74,107,.18);
  --red: #DC3545;
  --green: #28A745;
  --r: 16px;
  --r-sm: 12px;
  --maxw: 1200px;
  --topbar-h: 60px;

  /* === Compatibility vars for legacy products.js / services.js === */
  --deep: #0D2840;
  --sub: rgba(26,35,50,.55);
  --green-soft: rgba(40,167,69,.1);
  --green-light: #5BC079;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --warm-white: #FDFBF7;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow: 0 4px 12px rgba(26,74,107,.08);
  --shadow-sm: 0 2px 8px rgba(26,74,107,.06);
  --t-fast: .15s;
  --orange: #E8590C;
  --orange-soft: rgba(232,89,12,.1);
  --blue-soft: rgba(26,74,107,.08);
  --red-soft: rgba(220,53,69,.1);
  --max-width: 1200px;
}

/* ---- Reset ---- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font: 15px/1.6 -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--blue-light); text-decoration: none; }

/* ---- App Container ---- */
.app {
  min-height: 100vh;
  background: var(--canvas);
}

/* ---- Topbar (transparent overlay) ---- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-right { display: flex; gap: 2px; align-items: center; }

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  transition: all .15s;
}
.nav-link:hover { color: var(--text); background: rgba(26,74,107,.06); }
.nav-link.on, .nav-link.active { background: rgba(243,180,27,.12); color: var(--yellow); }

.nav-cta {
  margin-left: 8px;
  padding: 8px 20px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  transition: opacity .15s;
}
.nav-cta:hover { opacity: .9; }

/* ---- Page ---- */
.page {
  padding-top: var(--topbar-h);
  animation: fadein .4s ease;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Full-screen scroll section ---- */
.scroll-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.scroll-section > .scroll-inner {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}

.scroll-section--alt {
  background: var(--surface);
}

.scroll-section--accent {
  background: linear-gradient(180deg, var(--canvas) 0%, var(--surface) 100%);
}

/* ---- Section (content area, not full-screen) ---- */
.section {
  padding: 60px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ---- Section alt ---- */
.section--alt {
  background: var(--surface);
  max-width: none;
  padding: 60px 0;
}

.section + .section--alt,
.section--alt + .section {
  margin-top: 0;
}

.section--alt > div {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Hero ---- */
.hero {
  min-height: calc(100vh - var(--topbar-h));
  display: flex;
  align-items: center;
  background: var(--canvas);
  color: var(--text);
  padding: calc(var(--topbar-h) + 32px) 24px 32px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,74,107,.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero > div {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.hero-title {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 800;
  max-width: 720px;
}

.hero-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--yellow);
  margin-top: 28px;
  border-radius: 2px;
}

.hero-sub {
  max-width: 520px;
  margin: 0 0 40px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-input {
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  resize: none;
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  transition: border-color .15s;
}
.hero-textarea::placeholder { color: var(--text-dim); }
.hero-textarea:focus { border-color: var(--yellow); }

.hero-submit { margin-top: 12px; }

/* ---- Hero Choices ---- */
.hero-choices { margin-top: 48px; }

.hero-choices-label {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0 0 20px;
}

.choices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.choice-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--text);
  text-align: left;
  transition: all .25s;
}
.choice-card:hover {
  border-color: var(--yellow);
  background: var(--canvas);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,74,107,.08);
}

.choice-icon { font-size: 28px; margin-bottom: 12px; }

.choice-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}

.choice-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Scroll section titles ---- */
.section-title {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 40px;
  letter-spacing: -.035em;
  font-weight: 800;
  line-height: 1.15;
}

.section-title-lg {
  margin: 0 0 20px;
  color: var(--text);
  font-size: 52px;
  letter-spacing: -.04em;
  font-weight: 800;
  line-height: 1.1;
}

.section-desc {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 0 40px;
}

/* ---- Eyebrow / Sub ---- */
.eyebrow {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sub { color: var(--text-muted); font-size: 14px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: opacity .15s, transform .15s;
}
.btn:active { opacity: .82; transform: scale(.98); }

.btn-primary { background: var(--blue-light); color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--blue); }
.btn-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(26,74,107,.04);
  color: var(--text);
}
.btn-outline {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-lg { min-height: 54px; font-size: 17px; padding: 14px 28px; }
.btn-block { width: 100%; }
.btn-sm { min-height: 38px; padding: 8px 16px; font-size: 14px; border-radius: 8px; }
.btn-danger {
  background: #C0392B;
  color: #fff;
  border-color: #C0392B;
}
.btn-danger:hover {
  background: #A93226;
  border-color: #A93226;
}

/* ---- Loading / Spinner ---- */
.is-loading { pointer-events: none; opacity: .6; }
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  vertical-align: middle;
}
.spinner-dark {
  border-color: rgba(26,74,107,.2);
  border-top-color: var(--blue);
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn .spinner { margin-right: 6px; }

/* ---- Skeleton Screen Loading Placeholders ---- */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--r-sm);
  color: transparent !important;
  user-select: none;
  pointer-events: none;
}
.skeleton-text { height: 1em; margin-bottom: 0.5em; }
.skeleton-title { height: 1.4em; width: 60%; margin-bottom: 0.8em; }
.skeleton-avatar { width: 48px; height: 48px; border-radius: 50%; }
.skeleton-card { height: 120px; border-radius: var(--r); }
.skeleton-btn { height: 48px; width: 120px; border-radius: 12px; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- Toast Styles ---- */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: all .3s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(13,40,64,.25);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast--success { background: var(--green); }
.toast--error { background: var(--red); }

/* ---- Confirm Dialog ---- */
.confirm-dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,35,50,.4);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.confirm-dialog {
  background: var(--canvas);
  border-radius: var(--r);
  padding: 28px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(26,74,107,.2);
  text-align: center;
}
.confirm-dialog-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.confirm-dialog-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.confirm-dialog-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.confirm-dialog-actions .btn { flex: 1; }

/* ---- Empty State ---- */
.empty-state {
  padding: 80px 24px;
  text-align: center;
}

/* ---- Utility Layout Classes ---- */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-center {
  display: flex;
  align-items: center;
  gap: 12px;
}
.flex-gap {
  display: flex;
  gap: 8px;
}
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }
.text-center { text-align: center; }
.full-width { width: 100%; }

/* ---- Cards (dark surface) ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  margin-bottom: 16px;
  transition: border-color .2s, transform .2s;
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}
.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ---- Features ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---- Trust stats ---- */
.trust {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.trust-stat-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -.03em;
  line-height: 1;
}

.trust-stat-label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ---- Option list ---- */
.option-list { display: flex; flex-direction: column; gap: 8px; }

.option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text);
  text-align: left;
  transition: border-color .15s;
}
.option.on { border-color: var(--yellow); background: rgba(243,180,27,.1); }
.option:hover { border-color: var(--line-strong); }

.option span:first-child { display: flex; flex-direction: column; gap: 2px; }

/* ---- Form ---- */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.field .two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.field .input {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  overflow: hidden;
}

.field input, .field select, .field textarea {
  flex: 1;
  border: 0;
  padding: 12px 14px;
  background: transparent;
  color: var(--text);
  outline: none;
  font-size: 15px;
  min-width: 0;
}

.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }

.field input:focus, .field select:focus, .field textarea:focus {
  background: rgba(26,74,107,.03);
}

.field .unit {
  padding: 0 14px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-col .brand {
  width: 100%;
  max-width: 280px;
}
.footer-brand-col .brand-mark img { width: 32px; height: 32px; object-fit: contain; }
.footer-brand-col p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-tagline { font-size: 13px; color: var(--text-dim); font-weight: 600; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-links > div { display: flex; flex-direction: column; gap: 12px; }
.footer-links > div > strong { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.footer-links a { color: var(--text-muted); font-size: 14px; transition: color .15s; }
.footer-links a:hover { color: var(--yellow); }
.footer-links span { color: var(--text-dim); font-size: 13px; }

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
}

.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { color: inherit; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--yellow); }
.footer-legal a:hover { color: var(--text); }

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--canvas);
  border-top: 1px solid var(--line);
  z-index: 100;
  padding: 4px 0 8px;
}

.mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  flex: 1;
}
.mobile-nav a.active { color: var(--blue); }
.mobile-nav a svg { opacity: .6; }
.mobile-nav a.active svg { opacity: 1; }

/* ---- Chat page ---- */
.chat-page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px 24px 40px;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.chat-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  transition: background .15s;
  flex-shrink: 0;
}
.chat-back:hover { background: rgba(26,74,107,.06); }

.chat-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}

.chat-msg {
  display: flex;
  gap: 12px;
  max-width: 85%;
}
.chat-msg--user { align-self: flex-end; flex-direction: row-reverse; }

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.chat-avatar--ai {
  background: var(--blue);
  color: #fff;
}
.chat-avatar--user {
  background: var(--surface-2);
  color: var(--text-muted);
}

.chat-bubble {
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.6;
  background: var(--surface);
  color: var(--text);
}
.chat-bubble p { margin: 0 0 10px; }
.chat-bubble p:last-child { margin: 0; }

.chat-msg--user .chat-bubble {
  background: var(--blue);
  color: #fff;
}

.chat-structured {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  margin-top: 8px;
}

.chat-structured h3 {
  margin: 0;
  font-size: 16px;
  color: var(--yellow);
}

.chat-structured ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.chat-structured .next {
  font-weight: 600;
  color: var(--text);
  margin-top: 4px;
}

/* ---- Chat input ---- */
.chat-input-area {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 16px;
}

.chat-input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  resize: none;
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  transition: border-color .15s;
  min-height: 48px;
  max-height: 120px;
  touch-action: manipulation;
}
.chat-input:focus { border-color: var(--yellow); }
.chat-input:disabled { opacity: .5; background: var(--canvas); cursor: not-allowed; }

.chat-send-btn {
  flex-shrink: 0;
  width: auto;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
  transition: opacity .15s;
}
.chat-send-btn:active { opacity: .82; }
.chat-send-btn:disabled { opacity: .4; }

.chat-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.chat-quick-btn {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  transition: all .15s;
}
.chat-quick-btn:hover { border-color: var(--yellow); background: rgba(243,180,27,.1); }

/* ---- Report page ---- */
.report-page, .materials-page, .myhome-page, .about-page, .privacy-page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px 24px 40px;
}

.report-header h1, .materials-header h1, .page-title {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
}

.report-header p, .materials-header p, .page-sub {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.report-section { margin: 32px 0; }

.report-section .section-title,
.report-top3 .section-title {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
}

.report-section .section-title.with-action {
  margin: 0;
}

.report-section .section-title {
  margin: 0 0 16px;
}

/* Top3 */
.top3-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.top3-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
}

.top3-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.top3-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}

.top3-desc {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.top3-action {
  margin-top: 10px;
  padding: 8px 16px;
  border: 1px solid var(--yellow);
  border-radius: 8px;
  background: transparent;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.top3-action:hover { background: rgba(243,180,27,.1); }

/* Budget */
.budget-range-card {
  padding: 28px;
}

.budget-amount {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
}
.budget-amount.big { font-size: 42px; }

.budget-hint {
  margin: 8px 0 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.budget-bar {
  position: relative;
  height: 8px;
  background: var(--surface-2);
  border-radius: 4px;
  margin-bottom: 12px;
}

.budget-bar-track {
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--surface-2);
  border-radius: 4px;
}

.budget-bar-fill {
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  background: linear-gradient(90deg, var(--blue-light), var(--blue-lighter));
  border-radius: 4px;
}

.budget-bar-marker {
  position: absolute;
  width: 3px;
  height: 20px;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  border-radius: 2px;
  box-shadow: 0 0 0 3px rgba(243,180,27,.2);
}

.budget-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.budget-note {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(243,180,27,.1);
  border: 1px solid rgba(243,180,27,.3);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--yellow);
  font-weight: 600;
}

.budget-quote-label {
  position: absolute;
  top: -24px;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
  background: var(--canvas);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(243,180,27,.3);
}

/* Material table */
.material-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 14px;
}
.material-table th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 2px solid var(--line-strong);
}
.material-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}
.material-table tr:hover td { background: var(--surface); }

/* Risk items */
.risk-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  margin-bottom: 10px;
}

.risk-level {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.risk-level.high { background: rgba(220,53,69,.1); color: var(--red); }
.risk-level.medium { background: rgba(243,180,27,.1); color: var(--yellow); }
.risk-level.low { background: rgba(40,167,69,.1); color: var(--green); }

.risk-body { flex: 1; }
.risk-title { font-weight: 700; font-size: 15px; margin: 0 0 4px; }
.risk-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Questions */
.questions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.question-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
}

.question-item p { margin: 0; font-size: 14px; line-height: 1.5; }

.question-copy {
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(243,180,27,.1);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.question-copy:hover { background: rgba(243,180,27,.2); }

/* Report actions */
.report-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 40px;
  padding: 16px 0;
  background: var(--canvas);
  border-top: 1px solid var(--line);
  z-index: 10;
}

.plan-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

/* ---- Materials / Plans ---- */
.plan-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.plan-tab {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .15s;
}
.plan-tab:hover { border-color: var(--line-strong); }
.plan-tab.active {
  border-color: var(--yellow);
  background: rgba(243,180,27,.1);
  color: var(--yellow);
}

.plan-detail { animation: fadein .2s ease; }

/* Quick compare */
.plan-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.plan-compare-item {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  text-align: center;
  cursor: pointer;
  transition: all .15s;
}

.plan-compare-item:hover { border-color: var(--line-strong); }

.plan-compare-item.active {
  border-color: var(--yellow);
  background: rgba(243,180,27,.1);
}

.plan-compare-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.plan-compare-item.active .plan-compare-name { color: var(--yellow); }

.plan-compare-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.plan-compare-diff {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.plan-grid-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
}

.plan-grid-item h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.plan-grid-item p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.plan-total {
  padding: 20px;
  border: 2px solid var(--yellow);
  border-radius: var(--r);
  background: rgba(243,180,27,.05);
  margin-top: 24px;
}

.plan-total-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.plan-total-amount, .plan-total .amount {
  font-size: 36px;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -.02em;
}

.plan-list-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ---- My Home ---- */

.myhome-header {
  margin-bottom: 32px;
}

.myhome-projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.myhome-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.myhome-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.myhome-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.myhome-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.myhome-tips {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
}

.myhome-tips-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.myhome-tips-desc {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tip-item {
  display: flex;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--canvas);
}

.tip-time {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
  flex-shrink: 0;
}

.tip-content {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

/* Empty state */
.empty {
  text-align: center;
  padding: 80px 24px;
}
.empty-icon { font-size: 48px; margin-bottom: 16px; }
.empty-title { margin: 0 0 10px; font-size: 22px; font-weight: 700; }
.empty-desc { margin: 0 0 24px; color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.empty-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* CTA Banner */
.cta-banner {
  padding: 80px 24px;
  text-align: center;
  background: var(--surface);
}

.cta-banner-title {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
}

.cta-banner-desc {
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: 16px;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 12px 24px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: all .3s;
  z-index: 1000;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---- About / Privacy ---- */

.about-section, .privacy-section {
  margin-bottom: 48px;
}

.about-section h2, .privacy-section h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
}

.about-text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-text:last-child { margin-bottom: 0; }

.about-diff {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.diff-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface);
}

.diff-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.diff-text { font-size: 15px; font-weight: 600; }

.diff-item--us { border-color: var(--yellow); background: rgba(243,180,27,.05); }

/* ---- 404 ---- */
.not-found {
  text-align: center;
  padding: 120px 24px;
}

.not-found h1 {
  font-size: 120px;
  font-weight: 800;
  color: var(--surface-2);
  margin: 0 0 16px;
  line-height: 1;
}

.not-found p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0 0 32px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-title { font-size: 40px; }
  .choices-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .top3-list { grid-template-columns: repeat(2, 1fr); }
  .risk-list { grid-template-columns: 1fr; }
  .questions-list { grid-template-columns: 1fr; }
  .myhome-projects { grid-template-columns: 1fr; }
  .tips-list { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .budget-range-card.big, .budget-amount.big { font-size: 28px; }
  .plan-total .plan-total-amount, .plan-total .amount { font-size: 24px; }
  .material-table { font-size: 12px; }
  .material-table th, .material-table td { padding: 8px 4px; }
  .cta-banner { padding: 60px 16px; }
  .cta-banner-title { font-size: 32px; }
}

@media (max-width: 640px) {
  .topbar-inner { padding: 0 16px; }
  .brand-name { font-size: 15px; }
  .nav-link { padding: 6px 8px; font-size: 12px; }
  .nav-link:nth-child(n+4) { display: none; }
  .nav-cta { padding: 6px 12px; font-size: 12px; margin-left: 4px; }
   .hero { padding: 60px 16px 48px; min-height: auto; }
   .hero-sub { font-size: 15px; }
   .choices-grid { grid-template-columns: 1fr; }
   .features-grid { grid-template-columns: 1fr; }
   .scroll-section { padding: 60px 16px; min-height: auto; }
  .section-title { font-size: 24px; }
  .section-title-lg { font-size: 28px; }
  .card { padding: 20px; }
  .top3-list { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: 1fr; gap: 20px; }
  .trust-stat-num { font-size: 36px; }
  .report-actions, .plan-actions { flex-direction: column; }
  .empty-actions { flex-direction: column; }
  .report-header h1, .report-title, .materials-header h1, .page-title { font-size: 26px; }
   .chat-page, .report-page, .materials-page, .myhome-page, .about-page, .privacy-page { padding: 24px 16px 40px; }
   .nav-right { display: none; }
   .budget-range-card.big, .budget-amount.big { font-size: 24px; }
   .plan-total .plan-total-amount, .plan-total .amount { font-size: 20px; }
   .plan-compare { grid-template-columns: 1fr; }
   .toast { bottom: 90px; }
   .material-table { display: block; overflow-x: auto; }
}

/* ================================================================
 * Workspace — 项目工作台
 * ================================================================ */
.workspace-page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.workspace-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 16px;
}

/* ---- Project list rows ---- */
.ws-project-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ws-project-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  cursor: pointer;
  transition: border-color .2s, transform .15s;
}

.ws-project-row:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.ws-row-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.ws-row-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.ws-row-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.ws-row-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ws-row-stage {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.ws-stage-dots {
  display: flex;
  gap: 6px;
}

.ws-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.ws-dot--done { background: var(--green); }
.ws-dot--current { background: var(--yellow); box-shadow: 0 0 0 3px rgba(243,180,27,.25); }

.ws-stage-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.ws-row-arrow {
  font-size: 18px;
  color: var(--text-dim);
  margin-left: 16px;
}

/* Empty state in workspace */
.ws-empty {
  text-align: center;
  padding: 80px 24px;
}

.ws-empty-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.ws-flow-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px auto;
  max-width: 600px;
}

.ws-flow-step {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.ws-flow-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.ws-flow-arrow {
  color: var(--text-dim);
  font-size: 14px;
}

/* ---- Project detail ---- */
.ws-overview {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 40px;
}

.ws-overview-progress {
  flex-shrink: 0;
}

.ws-overview-current {
  flex: 1;
}

.ws-current-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.ws-current-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.ws-current-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.ws-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Pipeline */
.ws-pipeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.ws-stage {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  transition: border-color .2s;
}

.ws-stage:hover { border-color: var(--line-strong); }

.ws-stage--done { border-color: rgba(40,167,69,.3); background: rgba(40,167,69,.03); }
.ws-stage--current { border-color: var(--yellow); background: rgba(243,180,27,.05); }

.ws-stage-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ws-stage--done .ws-stage-icon { background: rgba(40,167,69,.1); }
.ws-stage--current .ws-stage-icon { background: rgba(243,180,27,.15); }

.ws-stage-body { flex: 1; }

.ws-stage-name {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ws-stage-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.ws-stage-meta {
  font-size: 12px;
  color: var(--text-dim);
}

.ws-stage-action {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  padding: 6px 14px;
  border: 1px solid var(--yellow);
  border-radius: 8px;
  transition: background .15s;
  margin-top: 4px;
}

.ws-stage--done .ws-stage-action {
  color: var(--text-muted);
  border-color: var(--line-strong);
  font-weight: 600;
}

.ws-stage--done .ws-stage-action:hover {
  color: var(--yellow);
  border-color: var(--yellow);
  background: rgba(243,180,27,.1);
}

.ws-stage-action:hover {
  background: rgba(243,180,27,.1);
}

/* Progress ring */
.ws-progress-ring {
  position: relative;
  width: 64px;
  height: 64px;
}

.ws-progress-ring::before {
  content: attr(data-progress) '%';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--yellow);
}

.ws-progress-ring--lg {
  width: 96px;
  height: 96px;
}

.ws-progress-ring--lg::before {
  width: 80px;
  height: 80px;
}

.ws-progress-num--lg {
  font-size: 22px;
  font-weight: 800;
  color: var(--yellow);
}

/* ---- Data summary ---- */
.ws-data-summary {
  margin-top: 40px;
}

.ws-section-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
}

.ws-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ws-summary-item {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}

.ws-summary-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.ws-summary-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.ws-summary-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---- Form card ---- */
.ws-form-card {
  max-width: 560px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.ws-form-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

/* ---- Workspace responsive ---- */
@media (max-width: 768px) {
  .workspace-header { flex-direction: column; align-items: flex-start; }
  .ws-project-row { flex-wrap: wrap; gap: 12px; }
  .ws-row-stage { width: 100%; flex-direction: row; justify-content: space-between; }
  .ws-overview { flex-direction: column; gap: 24px; text-align: center; }
  .ws-overview-current { text-align: center; }
  .ws-current-label, .ws-current-name, .ws-current-desc { text-align: center; }
  .ws-summary-grid { grid-template-columns: 1fr; }
  .ws-form-card { padding: 20px; }
}

@media (max-width: 640px) {
  .ws-flow-preview { gap: 4px; }
  .ws-flow-step { padding: 6px 10px; font-size: 12px; }
  .ws-flow-arrow { display: none; }
  .plan-compare { grid-template-columns: 1fr; }
}

/* Chat project tag */
.chat-project-tag {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(243,180,27,.12);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
/* ================================================================
 * 首页 v7 新组件样式（借鉴 sumsig.com）
 * ================================================================ */

/* ---- Section Shell ---- */
.section-shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Hero Split ---- */
.hero--split {
  min-height: calc(100vh - var(--topbar-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: calc(var(--topbar-h) + 40px) 24px 40px;
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero--split::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26,74,107,.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero--split > div {
  max-width: none;
  margin: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 24px;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

.hero-title span { color: var(--blue); }

.hero-ask { margin-bottom: 16px; }
.hero-ask label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.hero-ask-row {
  display: flex;
  gap: 8px;
  max-width: 520px;
}
.hero-ask-row textarea {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--surface);
  font-size: 15px;
  line-height: 1.5;
  resize: none;
  outline: none;
  transition: border-color .15s;
}
.hero-ask-row textarea:focus { border-color: var(--yellow); }
.hero-ask-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--blue);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity .15s;
}
.hero-ask-btn:hover { opacity: .9; }

.hero-privacy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-upload-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--line);
  margin-bottom: 28px;
  transition: all .2s;
}
.hero-upload-link:hover {
  border-color: var(--yellow);
  background: var(--canvas);
}

/* ---- Quick Grid ---- */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 520px;
}
.quick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.quick-item:hover {
  border-color: var(--yellow);
  background: var(--canvas);
}
.quick-item svg { color: var(--blue); flex-shrink: 0; }

/* ---- Hero Visual ---- */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  padding: 24px;
  border-radius: 20px;
}

.hero-blueprint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(26,74,107,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,74,107,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.hero-visual-label {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-visual-label svg { color: var(--yellow); }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--canvas);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(26,74,107,.08);
  animation: float 3s ease-in-out infinite;
  max-width: 220px;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.floating-card--risk { top: 15%; left: 12%; animation-delay: 0s; }
.floating-card--cost { top: 42%; right: 12%; animation-delay: 1s; }
.floating-card--record { bottom: 15%; left: 20%; animation-delay: 2s; }

.floating-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-icon--amber { background: rgba(243,180,27,.15); color: var(--yellow); }
.floating-icon--green { background: rgba(40,167,69,.12); color: var(--green); }
.floating-icon--cream { background: var(--surface); color: var(--blue); }

.floating-card small { display: block; font-size: 11px; color: var(--text-muted); }
.floating-card strong { font-size: 14px; font-weight: 700; color: var(--text); }

.hero-visual-footer {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.hero-visual-footer strong { color: var(--text); font-weight: 700; }

/* ---- Promise Strip ---- */
.promise-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.promise-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.promise-item:last-child { border-right: 0; }

.promise-num {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--line-strong);
  line-height: 1;
  margin-bottom: 12px;
}
.promise-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.promise-item small {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- Section Heading ---- */
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}
.section-heading h2 { max-width: 480px; }
.section-heading > div { flex: 1; }
.section-heading > p { flex: 1; max-width: 480px; margin: 0 0 8px; }

.kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-top: auto;
}
.text-link:hover { color: var(--yellow); }
.text-link svg { transition: transform .2s; }
.text-link:hover svg { transform: translateX(3px); }

/* ---- Problem Cards ---- */
.section-problems { padding: 80px 24px; }

.problem-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.problem-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px 24px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.problem-card:hover {
  border-color: var(--yellow);
  background: var(--canvas);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,74,107,.08);
}

.problem-card--feature {
  grid-row: span 1;
  background: linear-gradient(135deg, var(--surface) 0%, var(--canvas) 100%);
}

.problem-number {
  font-size: 14px;
  font-weight: 800;
  color: var(--line-strong);
}

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(26,74,107,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.problem-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.problem-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.feature-paper {
  margin-top: 16px;
  padding: 16px;
  border-radius: 12px;
  background: var(--canvas);
  border: 1px solid var(--line);
}
.feature-paper span { font-size: 12px; color: var(--text-muted); }
.feature-paper strong { display: block; font-size: 28px; font-weight: 800; color: var(--text); margin: 4px 0; }
.feature-paper i {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--yellow);
  margin: 8px 0;
}
.feature-paper small { font-size: 12px; color: var(--text-muted); }

/* ---- Journey ---- */
.section-journey { padding: 80px 24px; }

.journey-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: flex-start;
}

.journey-step {
  padding: 32px 28px;
  border-radius: var(--r);
  background: var(--canvas);
  border: 1px solid var(--line);
  text-align: center;
}

.step-index {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--line-strong);
  margin-bottom: 16px;
}

.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(26,74,107,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue);
}

.journey-step h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
}

.journey-step p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.journey-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  color: var(--line-strong);
}

.journey-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--r);
  background: var(--navy);
  color: #fff;
}

.journey-cta-text small { display: block; font-size: 13px; opacity: .7; }
.journey-cta-text strong { font-size: 18px; font-weight: 700; }

.btn-light {
  background: var(--canvas);
  color: var(--navy);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---- Plan Cards ---- */
.section-plans { padding: 80px 24px; }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan-card {
  padding: 32px 28px 28px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
  transition: all .25s;
}
.plan-card:hover {
  border-color: var(--yellow);
  background: var(--canvas);
  box-shadow: 0 8px 24px rgba(26,74,107,.08);
}

.plan-card--recommended {
  border-color: var(--yellow);
  background: linear-gradient(135deg, var(--canvas) 0%, rgba(243,180,27,.04) 100%);
}

.recommended-tag {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 0 0 10px 10px;
  background: var(--yellow);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.plan-order {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--line-strong);
  margin-bottom: 16px;
}

.plan-card h3 {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
}

.plan-desc {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.plan-rule {
  height: 1px;
  background: var(--line);
  margin-bottom: 20px;
}

.plan-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-list li svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Archive Section ---- */
.section-archive { padding: 80px 24px; background: var(--surface); }
.section-archive-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.archive-visual { display: flex; justify-content: center; }

.archive-window {
  width: 100%;
  max-width: 440px;
  border-radius: var(--r);
  background: var(--canvas);
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(26,74,107,.08);
  overflow: hidden;
}

.archive-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.archive-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.archive-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.archive-brand div { display: flex; flex-direction: column; }
.archive-brand small { font-size: 11px; color: var(--text-muted); }
.archive-brand strong { font-size: 14px; font-weight: 700; color: var(--text); }

.archive-status {
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(243,180,27,.12);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
}

.archive-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
}

.archive-progress span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.archive-progress i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.archive-progress i.done { background: var(--green); }
.archive-progress i.current { background: var(--yellow); }

.archive-records { padding: 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.archive-records > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background: var(--surface);
}
.archive-records > div svg { color: var(--blue); flex-shrink: 0; }
.archive-records > div span { flex: 1; font-size: 14px; font-weight: 600; }
.archive-records > div span small { display: block; font-size: 11px; color: var(--text-muted); font-weight: 400; }
.archive-records > div b { font-size: 14px; font-weight: 700; color: var(--text); }

.archive-copy blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--yellow);
  background: var(--surface);
  border-radius: 0 12px 12px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--text);
}

/* ---- Final CTA ---- */
.section-final-cta { padding: 80px 24px; text-align: center; }
.section-final-cta .section-title { text-align: center; margin: 0 auto 16px; }
.section-final-cta .section-desc { text-align: center; margin: 0 auto 32px; }

.btn-cream {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .15s;
}
.btn-cream:hover { opacity: .9; }

/* ---- Responsive v7 ---- */
@media (max-width: 960px) {
  .hero--split { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { min-height: 320px; order: -1; }
  .hero-visual-label { top: 16px; left: 16px; }
  .floating-card { display: none; }
  .problem-layout { grid-template-columns: repeat(2, 1fr); }
  .journey-grid { grid-template-columns: 1fr; gap: 16px; }
  .journey-arrow { display: none; }
  .plan-grid { grid-template-columns: 1fr; }
  .section-archive-inner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .section-heading { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-heading p { max-width: none; }
}

@media (max-width: 768px) {
  .promise-strip { grid-template-columns: repeat(2, 1fr); }
  .promise-item { border-bottom: 1px solid var(--line); }
  .promise-item:nth-child(2n) { border-right: 0; }
  .quick-grid { grid-template-columns: 1fr; }
  .mobile-nav { display: grid; grid-template-columns: repeat(4, 1fr); }
  .page { padding-bottom: 72px; }
}

@media (max-width: 640px) {
  .hero--split { padding: 60px 16px 32px; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .section { padding: 48px 16px; }
  .section--alt { padding: 48px 0; }
  .section-problems { padding: 48px 16px; }
  .section-journey { padding: 48px 16px; }
  .section-plans { padding: 48px 16px; }
  .section-archive { padding: 48px 16px; }
  .section-final-cta { padding: 48px 16px; }
  .problem-layout { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .mobile-nav { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Account / Tracking ---- */
.record-item { margin-bottom: 8px; }
.record-form {
  margin-bottom: 12px;
  border: 1px solid var(--yellow);
}
.ws-project-row { text-decoration: none; }

/* ---- Warning Banner ---- */
.warn-banner {
  background: #FFF4E5;
  border: 1px solid var(--yellow);
  border-radius: var(--r);
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #8B6914;
}

/* ================================================================
 * AI Advisor Chat — 聊天界面样式（补充缺失）
 * ================================================================ */
.msg { display: flex; margin-bottom: 16px; }
.msg-ai { justify-content: flex-start; }
.msg-user { justify-content: flex-end; }

.msg-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.6;
  word-wrap: break-word;
}
.msg-ai .msg-bubble {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  color: var(--text);
}
.msg-user .msg-bubble {
  background: var(--blue-light);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.msg-bubble--structured { max-width: 92%; }
.struct-judgment {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}
.struct-section { margin-top: 12px; }
.struct-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 4px;
}
.struct-section p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.typing-dots { display: inline-flex; gap: 4px; padding: 4px 0; }
.typing-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--text-muted);
  animation: typing-bounce 1.4s infinite ease-in-out;
}
.typing-dots span:nth-child(2) { animation-delay: .2s; }
.typing-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ================================================================
 * Workspace 详情页样式（补充缺失）
 * ================================================================ */
.ws-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.ws-detail-info { flex: 1; }
.ws-detail-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.ws-overview {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
  background: rgba(26,74,107,.03);
  border-radius: var(--r);
  margin-bottom: 32px;
}
.ws-overview-ring { text-align: center; }
.ws-overview-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}
.ws-overview-current { flex: 1; }
.ws-current-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.ws-current-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.ws-current-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.ws-pipeline { margin-bottom: 32px; }
.ws-pipeline-track { display: flex; flex-direction: column; gap: 12px; }
.ws-stage {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--canvas);
  transition: border-color .2s, background .2s;
}
.ws-stage--done { border-color: var(--blue-light); background: rgba(62,138,176,.04); }
.ws-stage--current { border-color: var(--yellow); background: rgba(243,180,27,.04); }
.ws-stage--pending { opacity: .6; }
.ws-stage-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  background: var(--line-soft); color: var(--text-muted);
}
.ws-stage--done .ws-stage-num { background: var(--blue-light); color: #fff; }
.ws-stage--current .ws-stage-num { background: var(--yellow); color: var(--blue); }
.ws-stage-body { flex: 1; }
.ws-stage-name { font-weight: 700; font-size: 16px; margin-bottom: 2px; }
.ws-stage-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.ws-stage-summary {
  display: inline-block;
  font-size: 13px;
  color: var(--blue);
  background: rgba(26,74,107,.06);
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}
.ws-stage-action {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
}
.ws-stage-action:hover { text-decoration: underline; }

.ws-progress-ring {
  --pct: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: conic-gradient(var(--blue-light) calc(var(--pct) * 1%), var(--line-soft) 0);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ws-progress-ring::before {
  content: '';
  position: absolute; inset: 4px;
  border-radius: 50%;
  background: var(--canvas);
}
.ws-progress-num {
  position: relative;
  font-size: 12px; font-weight: 700;
  color: var(--text);
}
.ws-progress-ring--lg { width: 80px; height: 80px; }
.ws-progress-num--lg { font-size: 18px; }

.ws-data-summary { margin-bottom: 32px; }
.ws-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.ws-summary-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--canvas);
}
.ws-summary-label { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.ws-summary-value { font-size: 20px; font-weight: 800; color: var(--text); }
.ws-summary-sub { font-size: 13px; color: var(--text-dim); margin-top: 2px; }

.ws-empty { text-align: center; padding: 80px 24px; }
.ws-empty-icon { font-size: 48px; margin-bottom: 16px; }
.ws-flow-preview {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; flex-wrap: wrap;
  margin: 24px 0;
}
.ws-flow-step { font-size: 14px; color: var(--text-muted); }
.ws-flow-num {
  display: inline-flex; width: 24px; height: 24px;
  border-radius: 50%; background: var(--blue-light); color: #fff;
  align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  margin-right: 6px;
}
.ws-flow-arrow { color: var(--text-dim); }
.ws-form-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.ws-form-card {
  max-width: 560px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--canvas);
}
.ws-section-title { font-size: 18px; font-weight: 800; }
.hint {
  font-size: 14px;
  color: var(--text-muted);
  background: rgba(243,180,27,.06);
  padding: 12px 16px;
  border-radius: var(--r);
  border-left: 3px solid var(--yellow);
}

/* ================================================================
 * Calculator 方案详情样式（补充缺失）
 * ================================================================ */
.plan-detail { margin-top: 24px; }
.plan-section {
  margin-bottom: 24px;
  padding: 20px;
  border-radius: var(--r);
  background: rgba(26,74,107,.02);
}
.plan-upgrade {
  background: rgba(243,180,27,.04);
  border-left: 3px solid var(--yellow);
}
.plan-question {
  font-size: 14px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 8px;
}
.plan-answer {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
.plan-list { display: flex; flex-direction: column; gap: 8px; }
.plan-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--canvas);
  border: 1px solid var(--line);
}
.plan-item-name { flex: 1; font-weight: 600; font-size: 14px; }
.plan-item-qty { font-size: 13px; color: var(--text-muted); }
.plan-item-price { font-weight: 700; color: var(--blue); font-size: 15px; }
.plan-list-empty {
  text-align: center;
  padding: 24px;
  color: var(--text-dim);
  font-size: 14px;
}
.plan-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  margin-bottom: 24px;
  border-radius: var(--r);
  background: var(--blue);
  color: #fff;
}
.plan-total-label { font-size: 16px; font-weight: 600; }
.plan-total-amount { font-size: 28px; font-weight: 800; }

/* ================================================================
 * Quote-check 补充样式
 * ================================================================ */
.report-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 12px; }
.report-meta {
  display: flex; gap: 8px; align-items: center;
  font-size: 14px; color: var(--text-dim);
}
.table-note { font-size: 13px; color: var(--text-dim); margin-top: 12px; }
.total-row td { font-weight: 800; font-size: 16px; border-top: 2px solid var(--line-strong); }
.mat-name { font-weight: 600; }
.mat-spec { color: var(--text-muted); font-size: 13px; }
.mat-qty { color: var(--text-muted); }
.mat-amount { font-weight: 700; color: var(--blue); }

/* ================================================================
 * 全局可访问性 focus-visible
 * ================================================================ */
*:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ================================================================
 * services.js 提取的 CSS — 材料包列表
 * ================================================================ */
.sx-mp-page{padding:0 0 48px}
.sx-mp-hero{background:linear-gradient(135deg,var(--deep) 0%,var(--green) 100%);color:#fff;padding:40px 0 44px;margin-bottom:32px}
.sx-mp-hero-inner{max-width:var(--max-width);margin:0 auto;padding:0 20px}
.sx-mp-hero h1{font-size:28px;font-weight:800;margin-bottom:10px}
.sx-mp-hero p{font-size:15px;color:rgba(255,255,255,.8);max-width:560px;line-height:1.6}
.sx-mp-hero-tags{display:flex;gap:8px;flex-wrap:wrap;margin-top:16px}
.sx-mp-hero-tag{background:rgba(255,255,255,.12);padding:5px 12px;border-radius:20px;font-size:12px;font-weight:500}

.sx-mp-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;max-width:var(--max-width);margin:0 auto;padding:0 20px}
.sx-mp-card{background:#fff;border-radius:var(--radius);border:1.5px solid var(--gray-100);padding:22px;transition:all var(--t-fast);cursor:pointer;display:flex;flex-direction:column;gap:10px}
.sx-mp-card:hover{border-color:var(--green);box-shadow:var(--shadow);transform:translateY(-2px)}
.sx-mp-card-top{display:flex;align-items:center;gap:12px}
.sx-mp-card-icon{width:44px;height:44px;border-radius:12px;background:var(--green-soft);display:grid;place-items:center;font-size:22px;flex-shrink:0}
.sx-mp-card-name{font-size:16px;font-weight:700;color:var(--ink)}
.sx-mp-card-desc{font-size:13px;color:var(--sub);line-height:1.5}
.sx-mp-card-tags{display:flex;gap:6px;flex-wrap:wrap}
.sx-mp-card-tag{font-size:11px;padding:3px 8px;border-radius:6px;background:var(--gray-100);color:var(--gray-600)}
.sx-mp-card-tag.process{background:var(--green-soft);color:var(--green)}
.sx-mp-card-bottom{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:8px}
.sx-mp-card-price{font-size:16px;font-weight:700;color:var(--green)}
.sx-mp-card-count{font-size:12px;color:var(--gray-500)}
.sx-mp-card-arrow{font-size:13px;color:var(--green);font-weight:600}

.sx-mp-note{max-width:var(--max-width);margin:24px auto 0;padding:0 20px}
.sx-mp-note-inner{background:var(--orange-soft);border-radius:var(--radius-sm);padding:14px 18px;font-size:13px;line-height:1.6;color:var(--orange)}

@media(max-width:900px){.sx-mp-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.sx-mp-grid{grid-template-columns:1fr}.sx-mp-hero h1{font-size:22px}.sx-mp-hero p{font-size:14px}}

/* ================================================================
 * services.js 提取的 CSS — 材料包详情
 * ================================================================ */
.sx-mpd-page{padding:0 0 80px}
.sx-mpd-back{display:inline-flex;align-items:center;gap:6px;padding:8px 0;font-size:14px;color:var(--gray-600);cursor:pointer;transition:color var(--t-fast)}
.sx-mpd-back:hover{color:var(--green)}

.sx-mpd-header{background:#fff;border-radius:var(--radius);padding:28px;border:1.5px solid var(--gray-100);margin-bottom:20px}
.sx-mpd-header-top{display:flex;align-items:center;gap:16px;margin-bottom:16px}
.sx-mpd-header-icon{width:56px;height:56px;border-radius:14px;background:var(--green-soft);display:grid;place-items:center;font-size:28px;flex-shrink:0}
.sx-mpd-header-title{font-size:22px;font-weight:800;color:var(--ink)}
.sx-mpd-header-desc{font-size:14px;color:var(--sub);line-height:1.5;margin-top:4px}
.sx-mpd-header-tags{display:flex;gap:8px;flex-wrap:wrap}

.sx-mpd-grade{display:flex;gap:0;border:1.5px solid var(--gray-200);border-radius:var(--radius-sm);overflow:hidden;max-width:420px;margin-bottom:20px}
.sx-mpd-grade-btn{flex:1;padding:12px 0;border:0;background:transparent;font-size:14px;font-weight:600;color:var(--gray-500);transition:all var(--t-fast);cursor:pointer}
.sx-mpd-grade-btn.active{background:var(--green);color:#fff}
.sx-mpd-grade-btn:not(.active):hover{background:var(--green-soft);color:var(--green)}

.sx-mpd-summary{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:24px}
.sx-mpd-sum-card{background:#fff;border-radius:var(--radius-sm);padding:16px;border:1.5px solid var(--gray-100);text-align:center}
.sx-mpd-sum-label{font-size:12px;color:var(--sub);margin-bottom:6px}
.sx-mpd-sum-value{font-size:16px;font-weight:700;color:var(--ink)}
.sx-mpd-sum-card.highlight{background:linear-gradient(135deg,var(--deep),var(--green));color:#fff;border-color:transparent}
.sx-mpd-sum-card.highlight .sx-mpd-sum-label{color:rgba(255,255,255,.7)}
.sx-mpd-sum-card.highlight .sx-mpd-sum-value{color:#fff}

.sx-mpd-section{background:#fff;border-radius:var(--radius);border:1.5px solid var(--gray-100);margin-bottom:16px;overflow:hidden}
.sx-mpd-section-header{padding:14px 20px;background:var(--warm-white);border-bottom:1px solid var(--gray-100);font-size:15px;font-weight:700;display:flex;align-items:center;gap:8px}
.sx-mpd-section-body{padding:20px}

.sx-mpd-item{padding:16px 0;border-bottom:1px solid var(--gray-50)}
.sx-mpd-item:last-child{border-bottom:0}
.sx-mpd-item-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px}
.sx-mpd-item-info{flex:1;min-width:0}
.sx-mpd-item-name{font-size:15px;font-weight:600;color:var(--ink)}
.sx-mpd-item-brand{font-size:12px;color:var(--gray-500);margin-top:2px}
.sx-mpd-item-spec{font-size:13px;color:var(--sub);margin-top:2px}
.sx-mpd-item-right{text-align:right;flex-shrink:0}
.sx-mpd-item-qty{font-size:16px;font-weight:700;color:var(--green)}
.sx-mpd-item-price{font-size:12px;color:var(--gray-500);margin-top:2px}
.sx-mpd-item-why{font-size:13px;color:var(--gray-600);line-height:1.5;margin-top:8px;padding:8px 12px;background:var(--blue-soft);border-radius:var(--radius-xs)}
.sx-mpd-item-risk{font-size:13px;color:var(--red);line-height:1.5;margin-top:6px;padding:8px 12px;background:var(--red-soft);border-radius:var(--radius-xs)}
.sx-mpd-item-actions{display:flex;gap:8px;margin-top:10px;flex-wrap:wrap}
.sx-mpd-item-badge{display:inline-flex;align-items:center;gap:4px;font-size:11px;padding:2px 8px;border-radius:6px}
.sx-mpd-item-badge.lock{background:var(--red-soft);color:var(--red)}
.sx-mpd-item-badge.grade{background:var(--green-soft);color:var(--green)}
.sx-mpd-item-badge.nograde{background:var(--gray-100);color:var(--gray-500)}
.sx-mpd-btn-del{padding:4px 10px;border:1px solid var(--gray-200);border-radius:6px;background:#fff;font-size:12px;color:var(--gray-600);cursor:pointer;transition:all var(--t-fast)}
.sx-mpd-btn-del:hover{border-color:var(--red);color:var(--red)}
.sx-mpd-btn-del:disabled{opacity:.4;cursor:not-allowed}

.sx-mpd-info-list{font-size:14px;line-height:1.8;color:var(--gray-600)}
.sx-mpd-info-list li{padding-left:20px;position:relative}
.sx-mpd-info-list li::before{content:"";position:absolute;left:0;top:10px;width:6px;height:6px;border-radius:50%;background:var(--green)}

.sx-mpd-restock{display:flex;gap:12px;align-items:flex-start;padding:12px;background:var(--green-soft);border-radius:var(--radius-sm)}
.sx-mpd-restock .ic{font-size:20px;flex-shrink:0}
.sx-mpd-restock-text{font-size:14px;color:var(--green);line-height:1.5}

.sx-mpd-return{display:flex;gap:12px;align-items:flex-start;padding:12px;background:var(--orange-soft);border-radius:var(--radius-sm)}
.sx-mpd-return .ic{font-size:20px;flex-shrink:0}
.sx-mpd-return-text{font-size:14px;color:var(--orange);line-height:1.5}

.sx-mpd-surplus{display:flex;gap:12px;align-items:flex-start;padding:12px;background:var(--blue-soft);border-radius:var(--radius-sm)}
.sx-mpd-surplus .ic{font-size:20px;flex-shrink:0}
.sx-mpd-surplus-text{font-size:14px;color:var(--blue);line-height:1.5}

.sx-mpd-bottom-bar{position:fixed;bottom:0;left:0;right:0;background:rgba(255,255,255,.95);backdrop-filter:blur(14px);border-top:1px solid var(--gray-200);padding:12px 20px;padding-bottom:calc(12px + env(safe-area-inset-bottom));z-index:90;display:flex;gap:10px;align-items:center;justify-content:center}
.sx-mpd-bottom-bar .sx-mpd-total{font-size:14px;color:var(--sub);margin-right:auto}
.sx-mpd-bottom-bar .sx-mpd-total strong{font-size:18px;color:var(--green);font-weight:800}

@media(max-width:768px){
  .sx-mpd-summary{grid-template-columns:1fr 1fr}
  .sx-mpd-header{padding:20px}
  .sx-mpd-header-title{font-size:18px}
  .sx-mpd-section-body{padding:16px}
  .sx-mpd-bottom-bar{flex-direction:column;align-items:stretch}
  .sx-mpd-bottom-bar .sx-mpd-total{margin-right:0;text-align:center}
}
@media(max-width:430px){
  .sx-mpd-summary{grid-template-columns:1fr}
  .sx-mpd-item-top{flex-direction:column}
  .sx-mpd-item-right{text-align:left}
}

/* ================================================================
 * services.js 提取的 CSS — 工地服务
 * ================================================================ */
.sx-ss-page{padding:0 0 48px}
.sx-ss-hero{background:linear-gradient(135deg,var(--deep) 0%,var(--green) 100%);color:#fff;padding:40px 0 44px;margin-bottom:32px}
.sx-ss-hero-inner{max-width:var(--max-width);margin:0 auto;padding:0 20px}
.sx-ss-hero h1{font-size:28px;font-weight:800;margin-bottom:10px}
.sx-ss-hero p{font-size:15px;color:rgba(255,255,255,.8);max-width:560px;line-height:1.6}
.sx-ss-hero-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.12);padding:6px 14px;border-radius:20px;font-size:13px;font-weight:600;margin-top:16px}

.sx-ss-section{max-width:var(--max-width);margin:0 auto;padding:0 20px 48px}
.sx-ss-section-title{font-size:20px;font-weight:800;margin-bottom:6px}
.sx-ss-section-sub{font-size:14px;color:var(--sub);margin-bottom:24px}

.sx-ss-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.sx-ss-card{background:#fff;border-radius:var(--radius);border:1.5px solid var(--gray-100);padding:20px;transition:all var(--t-fast)}
.sx-ss-card:hover{border-color:var(--green);box-shadow:var(--shadow-sm)}
.sx-ss-card-top{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.sx-ss-card-icon{width:40px;height:40px;border-radius:10px;background:var(--green-soft);display:grid;place-items:center;font-size:20px;flex-shrink:0}
.sx-ss-card-name{font-size:15px;font-weight:700}
.sx-ss-card-desc{font-size:13px;color:var(--sub);line-height:1.5}
.sx-ss-card-time{font-size:12px;color:var(--green);margin-top:8px;font-weight:500}

.sx-ss-flow{background:#fff;border-radius:var(--radius);border:1.5px solid var(--gray-100);padding:28px}
.sx-ss-flow-track{display:flex;align-items:flex-start;gap:0;overflow-x:auto;padding-bottom:8px}
.sx-ss-flow-step{flex:0 0 auto;min-width:110px;text-align:center;position:relative}
.sx-ss-flow-num{width:36px;height:36px;border-radius:50%;background:var(--green);color:#fff;display:grid;place-items:center;font-size:14px;font-weight:700;margin:0 auto 10px}
.sx-ss-flow-name{font-size:13px;font-weight:600;margin-bottom:4px}
.sx-ss-flow-desc{font-size:11px;color:var(--sub);line-height:1.4;padding:0 4px}
.sx-ss-flow-line{flex:0 0 24px;height:2px;background:var(--gray-200);margin-top:17px}

.sx-ss-areas{display:flex;gap:8px;flex-wrap:wrap;margin-top:16px}
.sx-ss-area-tag{display:inline-flex;align-items:center;gap:4px;padding:6px 14px;border-radius:20px;font-size:13px;font-weight:500;background:var(--green-soft);color:var(--green)}

.sx-ss-notice{background:var(--orange-soft);border-radius:var(--radius-sm);padding:16px 20px;margin-top:24px;font-size:13px;line-height:1.6;color:var(--orange)}
.sx-ss-notice strong{font-weight:700}

.sx-ss-cta{background:linear-gradient(135deg,var(--deep),var(--green));color:#fff;border-radius:var(--radius);padding:32px;text-align:center;margin-top:32px}
.sx-ss-cta h3{font-size:20px;margin-bottom:8px}
.sx-ss-cta p{font-size:14px;color:rgba(255,255,255,.7);margin-bottom:20px}

@media(max-width:900px){.sx-ss-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.sx-ss-grid{grid-template-columns:1fr}.sx-ss-hero h1{font-size:22px}.sx-ss-flow-track{flex-direction:column;align-items:flex-start}.sx-ss-flow-line{display:none}.sx-ss-flow-step{text-align:left;min-width:auto}.sx-ss-flow-num{margin:0 0 10px 0}}

/* ================================================================
 * services.js 提取的 CSS — 家庭护理
 * ================================================================ */
.sx-hc-page{padding:0 0 48px}
.sx-hc-hero{background:linear-gradient(135deg,var(--deep) 0%,var(--green) 60%,var(--green-light) 100%);color:#fff;padding:48px 0 52px;margin-bottom:32px;text-align:center;position:relative;overflow:hidden}
.sx-hc-hero::before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:radial-gradient(circle at 50% 100%,rgba(255,255,255,.06) 0%,transparent 60%)}
.sx-hc-hero-inner{max-width:680px;margin:0 auto;padding:0 20px;position:relative;z-index:1}
.sx-hc-hero h1{font-size:30px;font-weight:800;margin-bottom:12px}
.sx-hc-hero .tagline{font-size:18px;font-weight:600;color:rgba(255,255,255,.9);line-height:1.5;margin-bottom:16px}
.sx-hc-hero p{font-size:14px;color:rgba(255,255,255,.7);line-height:1.6}
.sx-hc-hero-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(255,255,255,.12);padding:6px 14px;border-radius:20px;font-size:13px;font-weight:600;margin-top:16px}

.sx-hc-section{max-width:var(--max-width);margin:0 auto;padding:0 20px 48px}
.sx-hc-section-title{font-size:20px;font-weight:800;margin-bottom:6px}
.sx-hc-section-sub{font-size:14px;color:var(--sub);margin-bottom:24px}

.sx-hc-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.sx-hc-card{background:#fff;border-radius:var(--radius);border:1.5px solid var(--gray-100);padding:22px;transition:all var(--t-fast)}
.sx-hc-card:hover{border-color:var(--green);box-shadow:var(--shadow-sm)}
.sx-hc-card-top{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.sx-hc-card-icon{width:44px;height:44px;border-radius:12px;background:var(--green-soft);display:grid;place-items:center;font-size:22px;flex-shrink:0}
.sx-hc-card-name{font-size:16px;font-weight:700}
.sx-hc-card-desc{font-size:13px;color:var(--sub);line-height:1.5;margin-bottom:10px}
.sx-hc-card-booking{font-size:12px;color:var(--green);background:var(--green-soft);padding:6px 12px;border-radius:var(--radius-xs);display:inline-block}
.sx-hc-card-tags{display:flex;gap:6px;flex-wrap:wrap;margin-top:8px}
.sx-hc-card-tag{font-size:11px;padding:2px 8px;border-radius:6px;background:var(--gray-100);color:var(--gray-600)}

.sx-hc-areas{display:flex;gap:8px;flex-wrap:wrap;margin-top:16px}
.sx-hc-area-tag{display:inline-flex;align-items:center;gap:4px;padding:6px 14px;border-radius:20px;font-size:13px;font-weight:500;background:var(--green-soft);color:var(--green)}

.sx-hc-notice{background:var(--blue-soft);border-radius:var(--radius-sm);padding:16px 20px;margin-top:24px;font-size:13px;line-height:1.6;color:var(--blue)}

.sx-hc-cta{background:linear-gradient(135deg,var(--deep),var(--green));color:#fff;border-radius:var(--radius);padding:32px;text-align:center;margin-top:32px}
.sx-hc-cta h3{font-size:20px;margin-bottom:8px}
.sx-hc-cta p{font-size:14px;color:rgba(255,255,255,.7);margin-bottom:20px}

@media(max-width:600px){.sx-hc-grid{grid-template-columns:1fr}.sx-hc-hero h1{font-size:22px}.sx-hc-hero .tagline{font-size:15px}}

/* ================================================================
 * 采购引导区块 — 引流到双兴店铺
 * ================================================================ */

/* 报告页采购引导 */
.purchase-guide-section{margin:24px 0}
.purchase-guide-card{background:linear-gradient(135deg,#FFFBF0,#FFF8E8);border:1.5px solid #F3B41B;border-radius:14px;padding:24px;text-align:center}
.purchase-guide-icon{display:flex;justify-content:center;margin-bottom:12px}
.purchase-guide-title{font-size:18px;font-weight:700;color:var(--navy);margin-bottom:8px}
.purchase-guide-desc{font-size:14px;color:var(--text);line-height:1.6;margin-bottom:10px}
.purchase-guide-saving{font-size:13px;color:var(--yellow-dark);margin-bottom:16px}
.purchase-guide-saving strong{font-size:15px}
.purchase-guide-actions{display:flex;flex-direction:column;gap:10px;max-width:280px;margin:0 auto}
.purchase-guide-note{font-size:12px;color:var(--gray-500);margin-top:12px}

/* 产品卡片购买链接 */
.sx-pl-card-buy{display:inline-block;margin-top:8px;padding:4px 12px;font-size:12px;font-weight:600;color:var(--yellow-dark);background:var(--yellow-soft,#FFF8E8);border:1px solid #F3B41B;border-radius:6px;text-decoration:none;transition:all .15s}
.sx-pl-card-buy:hover{background:#F3B41B;color:#fff}

/* 产品详情购买按钮 */
.sx-pd-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px}
.sx-pd-actions .btn-yellow{flex:1;min-width:140px}

/* 施工追踪补货入口 */
.purchase-restock-card{display:flex;align-items:center;gap:14px;background:#FFFBF0;border:1.5px solid #F3B41B;border-radius:12px;padding:16px 18px}
.purchase-restock-icon{flex-shrink:0;width:44px;height:44px;display:grid;place-items:center;background:var(--yellow-soft,#FFF8E8);border-radius:10px}
.purchase-restock-body{flex:1}
.purchase-restock-title{font-size:15px;font-weight:700;color:var(--navy);margin-bottom:2px}
.purchase-restock-desc{font-size:13px;color:var(--text);line-height:1.4}

/* 工作台采购入口 */
.ws-purchase-entry{display:flex;align-items:center;gap:14px;background:#FFFBF0;border:1.5px solid #F3B41B;border-radius:12px;padding:16px 18px;margin-top:16px}
.ws-purchase-entry-icon{flex-shrink:0;width:48px;height:48px;display:grid;place-items:center;background:var(--yellow-soft,#FFF8E8);border-radius:10px}
.ws-purchase-entry-body{flex:1}
.ws-purchase-entry-title{font-size:15px;font-weight:700;color:var(--navy);margin-bottom:2px}
.ws-purchase-entry-desc{font-size:13px;color:var(--text);line-height:1.4}

/* 计算器页采购引导（已有样式补充） */
.calc-purchase-guide{background:linear-gradient(135deg,#FFFBF0,#FFF8E8);border:1.5px solid #F3B41B;border-radius:14px;padding:22px;margin-top:20px;text-align:center}
.calc-purchase-guide .purchase-guide-actions{max-width:100%}

/* 首页最终CTA outline变体 */
.btn-cream-outline{background:transparent;border-color:rgba(255,255,255,.5);color:#fff}
.btn-cream-outline:hover{background:rgba(255,255,255,.12);border-color:#fff}
