:root {
  --ink: #173333;
  --ink-2: #315251;
  --green-950: #0c302f;
  --green-900: #123c3b;
  --green-800: #18504c;
  --green-700: #087c6b;
  --green-600: #0a9d86;
  --green-500: #19b99d;
  --green-100: #dff5ef;
  --cream: #f7f5ef;
  --cream-2: #eeece3;
  --white: #fff;
  --coral: #ff7959;
  --orange: #f5a64a;
  --blue: #4f84d9;
  --purple: #8d72c4;
  --yellow: #e3b241;
  --red: #da6d6d;
  --muted: #7d8c8b;
  --border: #dfe8e5;
  --shadow: 0 24px 70px rgba(16, 54, 51, .14);
  --shadow-soft: 0 10px 35px rgba(16, 54, 51, .08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); font-family: var(--font); -webkit-font-smoothing: antialiased; }
button, input, select, textarea { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--green-600); box-shadow: 0 9px 25px rgba(10, 157, 134, .25); }
.btn-dark { color: #fff; background: var(--green-950); }
.btn-ghost { border-color: rgba(20, 68, 64, .14); background: rgba(255,255,255,.62); }
.btn-large { min-height: 54px; padding: 0 25px; border-radius: 16px; }
.toast {
  position: fixed;
  z-index: 1000;
  left: 50%;
  bottom: 90px;
  max-width: calc(100vw - 40px);
  padding: 12px 18px;
  color: #fff;
  background: rgba(12, 48, 47, .94);
  border-radius: 12px;
  box-shadow: var(--shadow);
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Portal */
.portal-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #f1f0e9;
}
.portal-glow { position: fixed; width: 44vw; height: 44vw; border-radius: 50%; filter: blur(90px); opacity: .17; pointer-events: none; }
.portal-glow-a { top: -20vw; left: -12vw; background: #37c4a7; }
.portal-glow-b { right: -14vw; bottom: -22vw; background: #f2a64f; }
.portal-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1420px, calc(100% - 64px));
  margin: 0 auto;
  padding: 25px 0;
  border-bottom: 1px solid rgba(24, 66, 62, .11);
}
.portal-brand, .admin-brand { display: flex; align-items: center; gap: 12px; }
.portal-brand img { width: 42px; height: 42px; }
.portal-brand span, .admin-brand span { display: grid; gap: 2px; }
.portal-brand strong { font-size: 16px; }
.portal-brand small { color: #6e807e; font-size: 11px; letter-spacing: .12em; }
.portal-header-actions { display: flex; align-items: center; gap: 14px; }
.server-pill, .sync-state { display: inline-flex; align-items: center; gap: 8px; color: #526866; font-size: 13px; }
.server-pill i, .sync-state i { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 5px rgba(25, 185, 157, .13); }
.portal-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(440px, .95fr) minmax(620px, 1.05fr);
  align-items: center;
  gap: 62px;
  width: min(1360px, calc(100% - 64px));
  min-height: 720px;
  margin: 0 auto;
  padding: 66px 0 80px;
}
.eyebrow, .section-kicker, .view-heading > div > span, .card-heading > div > span {
  color: var(--green-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
}
.portal-copy h1 { margin: 18px 0 24px; color: #123534; font-size: clamp(48px, 5.2vw, 76px); font-weight: 750; line-height: 1.09; letter-spacing: -.045em; }
.portal-copy h1 em { color: var(--green-600); font-style: normal; }
.portal-lead { max-width: 660px; margin: 0; color: #58716e; font-size: 17px; line-height: 1.9; }
.portal-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0; }
.portal-badges span { padding: 8px 12px; border: 1px solid rgba(15, 94, 82, .12); border-radius: 999px; background: rgba(255,255,255,.52); color: #3d6561; font-size: 12px; }
.portal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 31px; }
.portal-notice { max-width: 650px; padding: 17px 20px; border-left: 3px solid var(--green-500); background: rgba(255,255,255,.55); }
.portal-notice strong { font-size: 13px; }
.portal-notice p { margin: 5px 0 0; color: #71817f; font-size: 12px; line-height: 1.65; }
.portal-demo { position: relative; display: flex; align-items: center; justify-content: center; min-height: 650px; }
.portal-demo::before { content: ""; position: absolute; width: 580px; height: 580px; border-radius: 50%; background: linear-gradient(145deg, #d9e8e0, #f7ddc0); opacity: .6; }
.qr-panel { position: relative; z-index: 3; width: 250px; margin-right: -32px; padding: 20px; border: 1px solid rgba(255,255,255,.8); border-radius: 24px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); backdrop-filter: blur(15px); }
.qr-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-size: 12px; font-weight: 800; }
.live-dot { padding: 4px 7px; color: #07856f; border-radius: 999px; background: #dff8f0; font-size: 9px; letter-spacing: .12em; }
.qr-frame { position: relative; display: grid; place-items: center; width: 100%; aspect-ratio: 1; padding: 10px; border: 1px solid #e5ece9; border-radius: 17px; background: #fff; }
.qr-frame > img:first-child { width: 100%; height: 100%; object-fit: contain; image-rendering: crisp-edges; }
.qr-logo { position: absolute; width: 36px; padding: 4px; border-radius: 9px; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.qr-panel p { margin: 14px 0 7px; font-size: 13px; font-weight: 700; text-align: center; }
.qr-panel code { display: block; overflow: hidden; color: #748380; font: 10px/1.5 ui-monospace, monospace; text-overflow: ellipsis; white-space: nowrap; }
.text-button, .link-button { padding: 0; color: var(--green-700); border: 0; background: transparent; font-size: 12px; font-weight: 700; }
.qr-panel .text-button { display: block; margin: 12px auto 0; }
.phone-shell { position: relative; z-index: 2; width: 340px; height: 680px; padding: 14px 10px 18px; border: 7px solid #123836; border-radius: 46px; background: #123836; box-shadow: 0 35px 75px rgba(24, 57, 54, .28); }
.phone-shell iframe { width: 100%; height: 100%; border: 0; border-radius: 30px; background: #f5f4ef; }
.phone-speaker { position: absolute; z-index: 5; top: 7px; left: 50%; width: 78px; height: 21px; border-radius: 0 0 14px 14px; background: #123836; transform: translateX(-50%); }
.phone-home { position: absolute; bottom: 5px; left: 50%; width: 92px; height: 4px; border-radius: 5px; background: rgba(255,255,255,.65); transform: translateX(-50%); }
.portal-flow { position: relative; z-index: 1; padding: 86px max(32px, calc((100% - 1360px)/2)); color: #fff; background: var(--green-950); }
.portal-section-title span { color: #72cfbb; font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.portal-section-title h2 { max-width: 700px; margin: 9px 0 38px; font-size: 34px; }
.flow-steps { display: flex; align-items: center; justify-content: space-between; }
.flow-steps article { width: 22%; }
.flow-steps b { display: block; margin-bottom: 18px; color: #5cc7b1; font-size: 12px; }
.flow-steps span { font-size: 19px; font-weight: 700; }
.flow-steps p { color: #a9c0bd; font-size: 13px; line-height: 1.7; }
.flow-steps > i { color: #527470; font-style: normal; }
.portal-footer { display: flex; align-items: center; justify-content: space-between; padding: 25px max(32px, calc((100% - 1360px)/2)); color: #7b8987; background: #e7e7df; font-size: 12px; }
.portal-footer a { color: var(--green-700); font-weight: 700; }

/* Mobile card */
.card-page { min-height: 100vh; background: #dce4e0; }
.mobile-app { width: min(100%, 520px); min-height: 100vh; margin: 0 auto; padding-bottom: 86px; overflow: hidden; background: var(--cream); box-shadow: 0 0 55px rgba(12, 48, 47, .13); }
.safety-banner { display: flex; align-items: center; gap: 8px; min-height: 31px; padding: 6px 16px; color: #f8d9cf; background: #5b2e2b; font-size: 10px; }
.safety-banner span { flex: 0 0 auto; padding: 2px 5px; color: #5b2e2b; border-radius: 4px; background: #f5c7ba; font-weight: 800; }
.safety-banner p { margin: 0; }
.card-hero { position: relative; min-height: 420px; padding: 17px 18px 20px; overflow: hidden; color: #fff; background: linear-gradient(155deg, #0d3534 0%, #17524d 60%, #1a675d 100%); }
.card-hero::after { content: ""; position: absolute; right: -60px; bottom: -160px; width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.11); border-radius: 48% 52% 59% 41%; transform: rotate(-20deg); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-orb-a { top: 70px; right: -75px; width: 210px; height: 210px; background: rgba(255, 187, 107, .14); }
.hero-orb-b { left: -100px; bottom: 30px; width: 190px; height: 190px; background: rgba(68, 215, 187, .12); }
.card-topbar { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.brand-mini { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; letter-spacing: .06em; }
.brand-mini img { width: 28px; height: 28px; padding: 2px; border-radius: 8px; object-fit: contain; background: #fff; }
.topbar-actions { display: flex; gap: 8px; }
.round-icon { display: inline-flex; align-items: center; gap: 2px; height: 34px; min-width: 34px; padding: 0 8px; color: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; background: rgba(255,255,255,.08); }
.round-icon span { font-size: 18px; }
.round-icon small { font-size: 9px; }
.consultant-card { position: relative; z-index: 2; display: flex; align-items: center; gap: 15px; margin-top: 29px; }
.consultant-avatar { position: relative; flex: 0 0 auto; width: 84px; height: 84px; padding: 4px; border: 1px solid rgba(255,255,255,.5); border-radius: 27px; background: rgba(255,255,255,.1); }
.consultant-avatar img { width: 100%; height: 100%; padding: 7px; border-radius: 22px; object-fit: contain; background: #fff; }
.consultant-avatar i { position: absolute; right: -2px; bottom: -2px; display: grid; place-items: center; width: 25px; height: 25px; border: 3px solid #17534d; border-radius: 50%; color: var(--green-900); background: #7ce3cc; font-size: 11px; font-style: normal; font-weight: 900; }
.consultant-main { min-width: 0; }
.name-line { display: flex; align-items: center; gap: 8px; }
.name-line h1 { margin: 0; font-size: 27px; letter-spacing: .05em; }
.name-line span { padding: 4px 7px; color: #0b5a4d; border-radius: 6px; background: #8be4d0; font-size: 9px; font-weight: 800; }
.consultant-main > p { margin: 5px 0 9px; overflow: hidden; color: #d5e6e3; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.consultant-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.consultant-tags span { padding: 4px 7px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #cce2de; font-size: 8px; }
.hero-message { position: relative; z-index: 2; margin: 22px 0 19px; padding-left: 12px; border-left: 2px solid #62d6bd; }
.hero-message p { margin: 0 0 5px; font-size: 17px; font-weight: 700; line-height: 1.5; }
.hero-message small { display: block; color: #c3d9d5; font-size: 10px; line-height: 1.65; }
.quick-actions { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.quick-action { display: grid; justify-items: center; gap: 7px; padding: 11px 3px 9px; color: #e7f4f1; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(255,255,255,.08); font-size: 9px; }
.quick-action i { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 11px; color: #fff; font-size: 14px; font-style: normal; font-weight: 800; }
.icon-phone { background: var(--coral); }.icon-wechat { background: var(--green-500); }.icon-card { background: var(--blue); }.icon-map { background: var(--orange); }
.card-content { padding: 0 14px 25px; }
.trust-strip { position: relative; z-index: 5; display: grid; grid-template-columns: repeat(3,1fr); margin: -17px 0 15px; padding: 17px 6px; border: 1px solid rgba(255,255,255,.7); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); }
.trust-strip article { display: grid; justify-items: center; gap: 3px; border-right: 1px solid #e7ece9; }
.trust-strip article:last-child { border-right: 0; }
.trust-strip strong { color: var(--green-800); font-size: 17px; }
.trust-strip span { color: #87928f; font-size: 9px; }
.content-section { margin-bottom: 14px; padding: 22px 16px; border: 1px solid rgba(28, 72, 67, .06); border-radius: 22px; background: #fff; box-shadow: 0 7px 26px rgba(20, 54, 51, .045); }
.section-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 15px; }
.section-heading h2 { margin: 3px 0 0; color: #183b39; font-size: 19px; }
.section-link { padding: 5px 0; color: var(--green-700); border: 0; background: none; font-size: 10px; font-weight: 700; }
.section-intro { margin: -4px 0 17px; color: #748581; font-size: 10px; line-height: 1.7; }
.soft-badge, .demo-label { padding: 5px 8px; border-radius: 999px; color: #287766; background: #e2f5ef; font-size: 8px; font-weight: 700; }
.demo-label { color: #90601f; background: #fff1d9; }
.service-grid { display: grid; gap: 8px; }
.service-card { display: grid; grid-template-columns: 42px 1fr 14px; align-items: center; gap: 11px; width: 100%; padding: 11px; text-align: left; border: 1px solid #edf1ef; border-radius: 15px; background: #fbfcfb; }
.service-card:hover { border-color: #bee3d9; background: #f5fbf9; }
.service-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; font-size: 13px; font-style: normal; font-weight: 800; }
.service-icon-green { color: #087966; background: #d9f4ed; }.service-icon-orange { color: #a76222; background: #ffead6; }.service-icon-blue { color: #416ea8; background: #e1ebfb; }.service-icon-purple { color: #7151a8; background: #ece5f8; }.service-icon-yellow { color: #966f18; background: #f8edcb; }.service-icon-red { color: #9a4e4e; background: #f7dfdf; }
.service-card span { display: grid; gap: 3px; }
.service-card strong { font-size: 12px; }
.service-card small { color: #899592; font-size: 9px; line-height: 1.4; }
.service-card em { color: #9ca9a6; font-size: 19px; font-style: normal; }
.process-section { background: linear-gradient(155deg, #fff, #f4faf7); }
.process-list { position: relative; display: grid; gap: 0; }
.process-list::before { content: ""; position: absolute; top: 25px; bottom: 25px; left: 18px; width: 1px; background: #c8e3db; }
.process-list article { position: relative; display: grid; grid-template-columns: 37px 1fr; gap: 12px; padding: 8px 0; }
.process-list b { z-index: 1; display: grid; place-items: center; width: 37px; height: 37px; color: #087563; border: 5px solid #f8fcfa; border-radius: 50%; background: #d8f2ea; font-size: 8px; }
.process-list strong { font-size: 11px; }
.process-list p { margin: 3px 0 0; color: #87928f; font-size: 9px; line-height: 1.45; }
.price-scroll { display: grid; grid-auto-columns: 78%; grid-auto-flow: column; gap: 10px; margin-right: -16px; padding-right: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.price-scroll::-webkit-scrollbar { display: none; }
.price-card { position: relative; scroll-snap-align: start; padding: 17px; overflow: hidden; border: 1px solid #e5ebe8; border-radius: 18px; background: #fcfdfc; }
.price-card > span { font-size: 11px; font-weight: 800; }
.price-card > strong { display: block; margin: 9px 0 12px; color: #133f3b; font-size: 24px; }
.price-card > strong small { color: #768784; font-size: 9px; font-weight: 500; }
.price-card ul { display: grid; gap: 6px; margin: 0 0 15px; padding: 0; color: #6f807d; font-size: 9px; list-style: none; }
.price-card li::before { content: "✓"; margin-right: 5px; color: var(--green-600); font-weight: 900; }
.price-card button { width: 100%; min-height: 36px; color: var(--green-700); border: 1px solid #a9ded2; border-radius: 11px; background: #ecfaf6; font-size: 9px; font-weight: 800; }
.price-card.featured { color: #fff; border-color: transparent; background: linear-gradient(145deg, #123c3b, #1b655b); }
.price-card.featured > i { position: absolute; top: 0; right: 0; padding: 5px 10px; border-radius: 0 0 0 11px; background: #f3ad50; font-size: 8px; font-style: normal; font-weight: 800; }
.price-card.featured > strong, .price-card.featured > strong small { color: #fff; }
.price-card.featured ul { color: #d5e5e2; }
.price-card.featured button { color: #fff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.12); }
.fine-print { margin: 13px 0 0; color: #98a29f; font-size: 8px; line-height: 1.55; }
.real-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.real-gallery figure { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 15px; background: #edf2f0; }
.real-gallery figure.gallery-feature { grid-column: 1 / -1; }
.real-gallery img { width: 100%; height: 155px; object-fit: cover; }
.real-gallery .gallery-feature img { height: 220px; }
.real-gallery figcaption { position: absolute; inset: auto 0 0; display: grid; gap: 2px; padding: 24px 11px 10px; color: #fff; background: linear-gradient(transparent, rgba(7,30,28,.84)); }
.real-gallery figcaption strong { font-size: 10px; }
.real-gallery figcaption span { color: #d6e5e2; font-size: 8px; }
.assurance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.assurance-grid article { padding: 13px; border-radius: 15px; background: #f7f9f8; }
.assurance-grid i { display: grid; place-items: center; width: 28px; height: 28px; margin-bottom: 10px; color: var(--green-700); border-radius: 10px; background: #dff3ed; font-size: 9px; font-style: normal; font-weight: 900; }
.assurance-grid strong { display: block; font-size: 10px; }
.assurance-grid p { margin: 4px 0 0; color: #87928f; font-size: 8px; line-height: 1.55; }
.team-banner { position: relative; display: grid; grid-template-columns: 40% 1fr; align-items: center; gap: 12px; margin-bottom: 14px; padding: 20px 15px; overflow: hidden; color: #fff; border-radius: 22px; background: linear-gradient(145deg, #174d49, #0e3433); }
.team-banner::after { content: ""; position: absolute; right: -60px; bottom: -90px; width: 190px; height: 190px; border-radius: 50%; background: rgba(74, 207, 181, .12); }
.team-banner img { position: relative; z-index: 1; width: 100%; height: 220px; border-radius: 15px; object-fit: cover; }
.team-banner div { position: relative; z-index: 2; }
.team-banner span { color: #77d6c2; font-size: 8px; font-weight: 800; }
.team-banner h2 { margin: 6px 0 8px; font-size: 15px; line-height: 1.5; }
.team-banner p { color: #c4d9d5; font-size: 8px; line-height: 1.6; }
.team-banner button { padding: 8px 10px; color: #0f4f45; border: 0; border-radius: 9px; background: #8de2ce; font-size: 8px; font-weight: 800; }
.story-list { display: grid; gap: 10px; }
.story-list article { display: grid; grid-template-columns: 36px 1fr; gap: 10px; padding: 13px; border-radius: 15px; background: #f7f9f8; }
.story-avatar { display: grid; place-items: center; width: 36px; height: 36px; color: #087563; border-radius: 13px; background: #d9f3eb; font-size: 11px; font-weight: 800; }
.story-avatar.coral { color: #a3533e; background: #fde4dd; }
.story-list strong { font-size: 10px; }
.story-list p { margin: 5px 0; color: #667a76; font-size: 9px; line-height: 1.65; }
.story-list small { color: #a0aaa8; font-size: 8px; }
.faq-section details { border-top: 1px solid #edf0ef; }
.faq-section summary { position: relative; padding: 14px 22px 14px 0; font-size: 10px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-section summary::after { content: "+"; position: absolute; right: 2px; color: var(--green-700); font-size: 17px; }
.faq-section details[open] summary::after { content: "−"; }
.faq-section details p { margin: -4px 0 14px; color: #71837f; font-size: 9px; line-height: 1.7; }
.contact-card { position: relative; margin-bottom: 14px; padding: 23px 18px; overflow: hidden; color: #fff; border-radius: 22px; background: #173d3b; }
.contact-map-pattern { position: absolute; inset: 0; opacity: .09; background-image: linear-gradient(35deg, transparent 45%, #fff 46%, #fff 48%, transparent 49%), linear-gradient(125deg, transparent 45%, #fff 46%, #fff 48%, transparent 49%); background-size: 48px 48px; }
.contact-card > *:not(.contact-map-pattern) { position: relative; z-index: 1; }
.contact-card > span { color: #73d1bd; font-size: 8px; font-weight: 800; letter-spacing: .09em; }
.contact-card h2 { margin: 6px 0 5px; font-size: 16px; }
.contact-card > p { margin: 0; color: #d5e5e2; font-size: 9px; }
.contact-meta { display: grid; gap: 3px; margin: 13px 0; color: #afc7c3; font-size: 8px; }
.contact-buttons { display: flex; gap: 8px; }
.contact-buttons button { min-height: 34px; padding: 0 14px; color: #fff; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; background: rgba(255,255,255,.08); font-size: 9px; font-weight: 700; }
.contact-buttons button:last-child { color: #103e38; border: 0; background: #86dec9; }
.compliance-note { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: start; padding: 12px; color: #86928f; font-size: 8px; line-height: 1.65; }
.compliance-note img { width: 30px; }
.compliance-note p { margin: 0; }
.bottom-bar { position: fixed; z-index: 50; left: 50%; bottom: 0; display: grid; grid-template-columns: 60px 60px 60px minmax(94px, 1fr); gap: 7px; width: min(100%, 520px); padding: 9px 13px calc(9px + env(safe-area-inset-bottom)); border-top: 1px solid #e5ebe8; background: rgba(255,255,255,.94); box-shadow: 0 -8px 25px rgba(16, 54, 51, .08); backdrop-filter: blur(14px); transform: translateX(-50%); }
.bottom-bar button { min-height: 51px; border: 0; border-radius: 14px; }
.bottom-secondary { display: grid; place-items: center; gap: 1px; color: #526b67; background: #f2f6f4; }
.bottom-secondary i { color: var(--green-600); font-size: 13px; font-style: normal; font-weight: 900; }
.bottom-secondary span { font-size: 8px; }
.bottom-primary { color: #fff; background: linear-gradient(135deg, var(--green-700), var(--green-500)); box-shadow: 0 8px 20px rgba(10, 157, 134, .25); font-size: 13px; font-weight: 800; }

/* Modals */
.modal { position: fixed; z-index: 100; inset: 0; display: none; align-items: flex-end; justify-content: center; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8, 29, 28, .62); backdrop-filter: blur(3px); }
.modal-sheet { position: relative; z-index: 2; width: min(100%, 520px); max-height: 92vh; padding: 25px 20px calc(22px + env(safe-area-inset-bottom)); overflow-y: auto; border-radius: 28px 28px 0 0; background: #fff; box-shadow: 0 -20px 60px rgba(11, 36, 34, .2); animation: slideUp .25s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.modal-small { align-self: center; width: min(calc(100% - 34px), 390px); border-radius: 25px; text-align: center; }
.modal-close { position: absolute; z-index: 3; top: 15px; right: 15px; display: grid; place-items: center; width: 33px; height: 33px; color: #6f817d; border: 0; border-radius: 50%; background: #eff3f1; font-size: 20px; }
.sheet-handle { width: 40px; height: 4px; margin: -13px auto 18px; border-radius: 3px; background: #d9dfdd; }
.modal-sheet h2 { margin: 6px 0 7px; color: #173d3a; font-size: 22px; }
.modal-desc, .modal-small > p { margin: 0 0 17px; color: #7b8a87; font-size: 11px; line-height: 1.65; }
.modal-icon { display: grid; place-items: center; width: 50px; height: 50px; margin: 0 auto 10px; border-radius: 17px; font-weight: 900; }
.wechat-color { color: #06745e; background: #d8f5ec; }
.modal-qr { width: 185px; height: 185px; margin: 14px auto; padding: 9px; border: 1px solid #e3eae7; border-radius: 17px; background: #fff; }
.modal-qr img { width: 100%; height: 100%; object-fit: contain; }
.copy-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 10px 9px 13px; border-radius: 12px; background: #f1f5f3; }
.copy-row code { overflow: hidden; color: #526b67; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.copy-row button { flex: 0 0 auto; padding: 8px 10px; color: #fff; border: 0; border-radius: 9px; background: var(--green-700); font-size: 9px; font-weight: 700; }
.modal-tip { display: block; margin-top: 12px; color: #9aa5a2; font-size: 8px; line-height: 1.5; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid label, .settings-form label { display: grid; gap: 6px; }
.form-grid label > span, .settings-form label > span { color: #506763; font-size: 10px; font-weight: 700; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea, .settings-form input, .settings-form textarea, .filter-row input, .filter-row select {
  width: 100%;
  border: 1px solid #dfe8e5;
  border-radius: 11px;
  outline: none;
  background: #f9fbfa;
}
.form-grid input, .form-grid select { height: 43px; padding: 0 11px; font-size: 11px; }
.form-grid textarea { padding: 11px; resize: vertical; font-size: 11px; line-height: 1.6; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus, .settings-form input:focus, .settings-form textarea:focus { border-color: #65c6b1; box-shadow: 0 0 0 3px rgba(25,185,157,.1); }
.consent-row { display: grid; grid-template-columns: 16px 1fr; gap: 8px; margin: 14px 0; color: #7c8b88; font-size: 9px; line-height: 1.55; }
.consent-row input { margin: 2px 0 0; accent-color: var(--green-600); }
.form-submit { display: grid; place-items: center; gap: 2px; width: 100%; min-height: 53px; color: #fff; border: 0; border-radius: 14px; background: linear-gradient(135deg, var(--green-700), var(--green-500)); box-shadow: 0 10px 25px rgba(10,157,134,.22); }
.form-submit span { font-size: 13px; font-weight: 800; }
.form-submit small { color: #d7f2ec; font-size: 8px; }
.form-submit:disabled { opacity: .6; cursor: wait; }
.lead-success { padding: 30px 5px 15px; text-align: center; }
.lead-success i { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto 14px; color: #08715f; border-radius: 50%; background: #d9f5ed; font-size: 26px; font-style: normal; }
.lead-success h3 { margin: 0 0 7px; }
.lead-success p { color: #71827f; font-size: 11px; line-height: 1.7; }
.lead-success button { min-width: 130px; min-height: 41px; color: #fff; border: 0; border-radius: 12px; background: var(--green-700); font-weight: 700; }
.poster-sheet { text-align: center; }
.poster-sheet canvas { width: min(100%, 310px); height: auto; margin: 10px auto; border-radius: 15px; box-shadow: 0 12px 35px rgba(17, 57, 54, .15); }
.poster-actions { display: flex; justify-content: center; gap: 8px; }
.poster-actions button { min-height: 40px; padding: 0 15px; color: var(--green-700); border: 1px solid #b8ddd4; border-radius: 11px; background: #f3faf8; font-size: 10px; font-weight: 800; }
.poster-actions button:first-child { color: #fff; border-color: var(--green-700); background: var(--green-700); }

/* Admin */
.admin-page { min-height: 100vh; background: #f2f4f2; }
.admin-layout { display: grid; grid-template-columns: 242px 1fr; min-height: 100vh; }
.admin-sidebar { position: fixed; z-index: 20; inset: 0 auto 0 0; display: flex; flex-direction: column; width: 242px; padding: 24px 16px; color: #dce9e6; background: #113735; }
.admin-brand { padding: 0 10px 25px; border-bottom: 1px solid rgba(255,255,255,.1); }
.admin-brand img { width: 39px; height: 39px; padding: 3px; border-radius: 10px; object-fit: contain; background: #fff; }.admin-brand strong { color: #fff; font-size: 17px; }.admin-brand small { color: #87aaa4; font-size: 10px; }
.admin-nav { display: grid; gap: 5px; margin-top: 24px; }
.admin-nav button { position: relative; display: grid; grid-template-columns: 25px 1fr auto; align-items: center; gap: 8px; width: 100%; min-height: 46px; padding: 0 12px; color: #a9c0bc; text-align: left; border: 0; border-radius: 12px; background: transparent; font-size: 12px; }
.admin-nav button:hover, .admin-nav button.active { color: #fff; background: rgba(255,255,255,.09); }
.admin-nav button.active::before { content: ""; position: absolute; left: 0; width: 3px; height: 22px; border-radius: 3px; background: #60d3ba; }
.admin-nav i { font-size: 16px; font-style: normal; text-align: center; }
.admin-nav b { min-width: 19px; padding: 2px 5px; color: #0e4940; border-radius: 999px; background: #72d5c0; font-size: 9px; text-align: center; }
.admin-sidebar-note { margin-top: auto; padding: 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.045); }
.admin-sidebar-note span { color: #5fd0b7; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.admin-sidebar-note p { margin: 7px 0 4px; color: #fff; font-size: 11px; font-weight: 700; }
.admin-sidebar-note small { color: #8faeaa; font-size: 9px; line-height: 1.55; }
.admin-main { grid-column: 2; min-width: 0; }
.admin-topbar { position: sticky; z-index: 15; top: 0; display: flex; align-items: center; justify-content: space-between; min-height: 74px; padding: 0 30px; border-bottom: 1px solid #dfe5e2; background: rgba(248,249,248,.92); backdrop-filter: blur(13px); }
.admin-topbar > div:first-child { display: flex; align-items: center; gap: 10px; }
.admin-topbar > div:first-child span { color: #8a9895; font-size: 11px; }.admin-topbar > div:first-child strong { display: none; font-size: 14px; }
.admin-top-actions { display: flex; align-items: center; gap: 10px; }
.mobile-menu { display: none; border: 0; background: transparent; }
.admin-view { display: none; max-width: 1480px; margin: 0 auto; padding: 31px 32px 50px; }
.admin-view.active { display: block; }
.view-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.view-heading h1 { margin: 6px 0 5px; color: #173b39; font-size: 28px; letter-spacing: -.02em; }
.view-heading p { margin: 0; color: #82908d; font-size: 11px; }
.range-tabs { display: flex; padding: 3px; border-radius: 10px; background: #e9edeb; }
.range-tabs button { min-height: 32px; padding: 0 12px; color: #7b8986; border: 0; border-radius: 8px; background: transparent; font-size: 10px; }
.range-tabs button.active { color: #1b4a45; background: #fff; box-shadow: 0 2px 10px rgba(15,51,48,.08); font-weight: 700; }
.metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 16px; }
.metric-grid article { position: relative; min-height: 142px; padding: 20px; border: 1px solid #e0e7e4; border-radius: 18px; background: #fff; box-shadow: 0 5px 20px rgba(19,52,49,.035); }
.metric-icon { position: absolute; top: 17px; right: 17px; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; font-style: normal; font-size: 13px; }
.metric-icon.mint { color: #097963; background: #dff5ef; }.metric-icon.blue { color: #426da8; background: #e5eefc; }.metric-icon.orange { color: #a15d23; background: #ffead8; }.metric-icon.purple { color: #7051a3; background: #eee7f8; }
.metric-grid article > span { display: block; color: #71827f; font-size: 11px; }
.metric-grid article > strong { display: block; margin: 14px 0 6px; color: #173b39; font-size: 32px; }
.metric-grid article > small { color: #98a4a2; font-size: 9px; }
.dashboard-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 16px; margin-bottom: 16px; }
.dashboard-grid.lower { grid-template-columns: 1fr 1fr; }
.admin-card { border: 1px solid #e0e7e4; border-radius: 18px; background: #fff; box-shadow: 0 5px 20px rgba(19,52,49,.035); }
.funnel-card, .intent-card, .dashboard-grid.lower > .admin-card { min-height: 310px; padding: 21px; }
.card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.card-heading h2 { margin: 4px 0 0; font-size: 16px; }.card-heading > small { color: #96a29f; font-size: 9px; }
.funnel { display: grid; gap: 12px; }
.funnel-row { display: grid; grid-template-columns: 90px 1fr 52px; align-items: center; gap: 10px; }
.funnel-row > span { color: #607470; font-size: 10px; }.funnel-row > b { color: #274d48; font-size: 11px; text-align: right; }
.funnel-track { height: 13px; overflow: hidden; border-radius: 999px; background: #edf2f0; }
.funnel-track i { display: block; height: 100%; min-width: 4px; border-radius: inherit; background: linear-gradient(90deg, #1a8877, #57ccb5); }
.intent-list { display: grid; gap: 12px; }
.intent-item { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding-bottom: 11px; border-bottom: 1px solid #edf1ef; }
.intent-item:last-child { border-bottom: 0; }.intent-item i { display: grid; place-items: center; width: 34px; height: 34px; color: #167666; border-radius: 11px; background: #e2f5ef; font-style: normal; }
.intent-item span { display: grid; gap: 2px; }.intent-item strong { font-size: 10px; }.intent-item small { color: #94a09e; font-size: 8px; }.intent-item b { font-size: 16px; }
.source-bars { display: grid; gap: 15px; }.source-bar-head { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 10px; }.source-bar-head span:last-child { color: #7d8d89; }
.source-bar-track { height: 8px; overflow: hidden; border-radius: 999px; background: #edf1ef; }.source-bar-track i { display: block; height: 100%; border-radius: inherit; background: #35ad98; }
.activity-list { display: grid; gap: 0; }.activity { display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; align-items: center; padding: 10px 0; border-bottom: 1px solid #eef2f0; }.activity:last-child { border: 0; }
.activity > i { display: grid; place-items: center; width: 32px; height: 32px; color: #177160; border-radius: 50%; background: #e3f4ef; font-style: normal; font-size: 10px; }.activity span { display: grid; gap: 3px; }.activity strong { font-size: 10px; }.activity small, .activity > time { color: #94a19e; font-size: 8px; }
.filter-row { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.search-box { position: relative; flex: 1; max-width: 380px; }.search-box span { position: absolute; top: 50%; left: 12px; color: #84928f; transform: translateY(-50%); }.filter-row input { height: 40px; padding: 0 12px 0 34px; font-size: 10px; }.filter-row select { width: 150px; height: 40px; padding: 0 10px; font-size: 10px; }.table-count { margin-left: auto; color: #85928f; font-size: 10px; }
.admin-table-wrap { overflow: hidden; border: 1px solid #e0e7e4; border-radius: 17px; background: #fff; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { height: 44px; padding: 0 15px; color: #788783; text-align: left; border-bottom: 1px solid #e7ecea; background: #f8faf9; font-size: 9px; font-weight: 700; }
.admin-table td { padding: 14px 15px; border-bottom: 1px solid #eef2f0; color: #536b67; font-size: 10px; vertical-align: top; }
.admin-table tr:last-child td { border-bottom: 0; }.admin-table td strong { display: block; margin-bottom: 3px; color: #203f3c; }.admin-table td small { display: block; color: #8f9b98; font-size: 8px; line-height: 1.5; }.admin-table select { min-width: 90px; height: 30px; padding: 0 6px; border: 1px solid #dce6e2; border-radius: 8px; background: #f8faf9; font-size: 9px; }
.source-chip, .event-chip { display: inline-flex; padding: 4px 7px; border-radius: 999px; background: #edf5f2; color: #337264; font-size: 8px; }
.event-chip.high { color: #9b4b34; background: #fee8e1; }.event-chip.medium { color: #8b641c; background: #fff1d3; }
.empty-state { padding: 65px 20px; text-align: center; }.empty-state i { display: block; color: #76c5b4; font-size: 31px; font-style: normal; }.empty-state h3 { margin: 10px 0 5px; }.empty-state p { color: #8c9996; font-size: 10px; }
.radar-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 15px; }.radar-summary article { padding: 15px 17px; border: 1px solid #e0e7e4; border-radius: 15px; background: #fff; }.radar-summary span { color: #7f8d8a; font-size: 9px; }.radar-summary strong { display: block; margin-top: 6px; font-size: 19px; }
.source-builder-grid { display: grid; grid-template-columns: 1fr 400px; gap: 18px; }.source-form-card { padding: 23px; }.settings-form.compact { max-width: 520px; }.settings-form.compact label { margin-bottom: 13px; }.settings-form input, .settings-form textarea { padding: 10px 12px; font-size: 11px; }.settings-form input { height: 42px; }.settings-form textarea { resize: vertical; line-height: 1.6; }.form-submit.simple { min-height: 43px; font-size: 11px; font-weight: 800; }
.source-examples { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; color: #82908d; font-size: 9px; }.source-examples button { padding: 5px 8px; color: #367a6b; border: 1px solid #cee5df; border-radius: 999px; background: #f3faf8; font-size: 8px; }
.generated-qr-card { display: grid; justify-items: center; padding: 23px; text-align: center; }.generated-qr-card > span { font-weight: 800; }.generated-qr { width: 210px; height: 210px; margin: 15px 0; padding: 9px; border: 1px solid #e2eae7; border-radius: 16px; }.generated-qr img { width: 100%; height: 100%; }.generated-qr-card code { display: block; width: 100%; overflow: hidden; color: #7a8986; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }.generated-qr-card > div:last-child { display: flex; gap: 7px; margin-top: 13px; }.generated-qr-card button, .generated-qr-card a { padding: 8px 11px; color: #fff; border: 0; border-radius: 9px; background: var(--green-700); font-size: 9px; }.generated-qr-card a { color: #367669; border: 1px solid #c8e2dc; background: #f5faf8; }
.source-guide { margin-top: 18px; padding: 23px; }.source-guide h2 { margin: 0 0 18px; font-size: 16px; }.source-guide > div { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }.source-guide article { display: grid; grid-template-columns: 32px 1fr; gap: 10px; }.source-guide b { display: grid; place-items: center; width: 32px; height: 32px; color: #0d6f5e; border-radius: 10px; background: #def3ed; }.source-guide strong { font-size: 10px; }.source-guide p { margin: 4px 0 0; color: #84928f; font-size: 9px; line-height: 1.6; }
.settings-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }.settings-form { padding: 23px; }.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.settings-grid .full { grid-column: 1/-1; }
.guide-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }.guide-grid .admin-card { position: relative; min-height: 200px; padding: 24px; overflow: hidden; }.guide-number { position: absolute; right: 15px; bottom: -22px; color: #edf5f2; font-size: 76px; font-style: normal; font-weight: 900; }.guide-grid h2 { position: relative; margin: 0 0 9px; font-size: 17px; }.guide-grid p { position: relative; max-width: 85%; color: #778784; font-size: 10px; line-height: 1.75; }.guide-grid a { position: relative; color: #0d846f; font-size: 9px; font-weight: 800; }
.danger-zone { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 16px; padding: 21px 24px; border-color: #f0d6d0; }.danger-zone span { font-weight: 800; }.danger-zone p { margin: 5px 0 0; color: #8c9997; font-size: 9px; }.danger-zone button { flex: 0 0 auto; padding: 9px 13px; color: #a94b39; border: 1px solid #e7bfb6; border-radius: 10px; background: #fff7f5; font-size: 9px; font-weight: 700; }

@media (min-width: 521px) {
  .card-page .modal { align-items: center; }
  .card-page .modal-sheet:not(.modal-small) { align-self: center; width: min(calc(100% - 36px), 500px); border-radius: 26px; }
}

@media (max-width: 1100px) {
  .portal-main { grid-template-columns: 1fr; padding-top: 45px; }
  .portal-copy { text-align: center; }.portal-lead, .portal-notice { margin-left: auto; margin-right: auto; }.portal-badges, .portal-actions { justify-content: center; }
  .portal-demo { min-height: 700px; }.portal-copy h1 { font-size: 58px; }
  .metric-grid { grid-template-columns: 1fr 1fr; }.source-builder-grid, .settings-layout { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .portal-header { width: calc(100% - 30px); }.portal-header .server-pill { display: none; }.portal-header .btn { min-height: 38px; padding: 0 12px; font-size: 11px; }
  .portal-main { width: calc(100% - 30px); gap: 25px; }.portal-copy h1 { font-size: 41px; }.portal-lead { font-size: 14px; }.portal-actions { flex-direction: column; }
  .portal-demo { min-height: 610px; transform: scale(.86); margin: -40px -80px; }.flow-steps { display: grid; gap: 24px; }.flow-steps article { width: 100%; }.flow-steps > i { display: none; }.portal-footer { align-items: flex-start; gap: 12px; flex-direction: column; }
  .admin-layout { display: block; }.admin-sidebar { left: -250px; transition: left .2s ease; }.admin-sidebar.open { left: 0; box-shadow: 20px 0 50px rgba(8,35,33,.2); }.admin-main { width: 100%; }.admin-topbar { padding: 0 17px; }.mobile-menu { display: block; }.admin-topbar > div:first-child span { display: none; }.admin-topbar > div:first-child strong { display: block; }.sync-state, .admin-top-actions .btn-ghost { display: none; }.admin-view { padding: 23px 16px 40px; }.view-heading { align-items: flex-start; flex-direction: column; }.view-heading .btn { align-self: stretch; }.dashboard-grid, .dashboard-grid.lower, .source-builder-grid, .settings-layout { grid-template-columns: 1fr; }.admin-table-wrap { overflow-x: auto; }.admin-table { min-width: 800px; }.event-table { min-width: 880px; }.source-guide > div { grid-template-columns: 1fr; }.guide-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .portal-demo { margin-left: -120px; margin-right: -120px; transform: scale(.75); }.portal-copy h1 { font-size: 36px; }.portal-badges { gap: 6px; }
  .card-hero { min-height: 410px; }.consultant-avatar { width: 78px; height: 78px; }.hero-message p { font-size: 15px; }
  .form-grid { grid-template-columns: 1fr; }.form-grid .full { grid-column: auto; }
  .admin-top-actions .btn { padding: 0 10px; font-size: 9px; }.metric-grid { grid-template-columns: 1fr 1fr; gap: 9px; }.metric-grid article { min-height: 125px; padding: 15px; }.metric-grid article > strong { font-size: 26px; }.radar-summary { grid-template-columns: 1fr; }.settings-grid { grid-template-columns: 1fr; }.settings-grid .full { grid-column: auto; }.filter-row { align-items: stretch; flex-direction: column; }.search-box { max-width: none; }.filter-row select { width: 100%; }.table-count { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
/* 2026-07 康佑家医院资源融合板块 */
.resource-entry{position:relative;margin:18px 0;padding:28px;display:grid;grid-template-columns:1.2fr .8fr;gap:22px;border-radius:24px;color:#fff;background:linear-gradient(135deg,#0a4944,#147366);overflow:hidden;box-shadow:0 18px 45px rgba(14,80,73,.18)}
.resource-entry:after{content:"";position:absolute;right:-80px;bottom:-120px;width:280px;height:280px;border:1px solid rgba(255,255,255,.12);border-radius:50%;box-shadow:0 0 0 45px rgba(255,255,255,.025),0 0 0 90px rgba(255,255,255,.018)}
.resource-entry-copy,.resource-entry-metrics{position:relative;z-index:1}
.resource-entry-copy>span{color:#82e4cf;font-size:11px;font-weight:800;letter-spacing:.12em}
.resource-entry-copy h2{margin:10px 0 9px;font-size:26px;letter-spacing:-.03em}
.resource-entry-copy p{margin:0;color:rgba(255,255,255,.68);font-size:13px;line-height:1.8}
.resource-entry-copy>div{margin-top:20px;display:flex;align-items:center;gap:15px;flex-wrap:wrap}
.resource-entry-copy a{padding:11px 15px;border-radius:11px;color:#073a36;background:#7ee0ca;font-weight:800;font-size:12px;text-decoration:none}
.resource-entry-copy small{color:rgba(255,255,255,.48);font-size:10px}
.resource-entry-metrics{display:grid;grid-template-columns:repeat(2,1fr);gap:8px}
.resource-entry-metrics article{min-height:78px;padding:15px;display:flex;flex-direction:column;justify-content:center;border:1px solid rgba(255,255,255,.1);border-radius:15px;background:rgba(255,255,255,.07)}
.resource-entry-metrics strong{font-size:24px}.resource-entry-metrics span{margin-top:3px;color:rgba(255,255,255,.55);font-size:10px}
.bottom-bar>a{color:inherit;text-decoration:none}
@media(max-width:680px){.resource-entry{margin:14px 0;padding:22px 18px;grid-template-columns:1fr}.resource-entry-copy h2{font-size:22px}.resource-entry-metrics article{min-height:68px}.bottom-bar{grid-template-columns:56px 56px 56px minmax(82px,1fr)}.bottom-bar .bottom-secondary{min-width:0}}

/* 2026-08 上线版：面向中老年用户的高可读电子名片与开业相册 */
.card-page {
  --reader-body: 17px;
  --reader-small: 15px;
  --reader-title: 24px;
  font-size: var(--reader-body);
  line-height: 1.65;
}
.card-page.reader-large {
  --reader-body: 19px;
  --reader-small: 17px;
  --reader-title: 27px;
}
.card-page button,
.card-page a,
.card-page summary,
.card-page input,
.card-page select,
.card-page textarea { touch-action: manipulation; }
.card-page button:focus-visible,
.card-page a:focus-visible,
.card-page summary:focus-visible,
.card-page input:focus-visible,
.card-page select:focus-visible,
.card-page textarea:focus-visible { outline: 3px solid #ffb54d; outline-offset: 3px; }
.card-page .mobile-app { padding-bottom: 96px; }
.card-page .card-hero { min-height: 500px; padding: 18px 18px 26px; }
.card-page .brand-mini { font-size: 17px; letter-spacing: .02em; }
.card-page .brand-mini img { width: 38px; height: 38px; }
.card-page .round-icon { min-width: 58px; height: 44px; justify-content: center; border-radius: 14px; }
.card-page .round-icon span { font-size: 15px; font-weight: 800; }
.card-page .text-size-toggle[aria-pressed="true"] { color: #103e38; background: #9ce8d7; }
.card-page .consultant-card { margin-top: 28px; }
.card-page .consultant-avatar { width: 92px; height: 92px; }
.card-page .name-line { align-items: flex-start; flex-direction: column; gap: 6px; }
.card-page .name-line h1 { font-size: 30px; line-height: 1.2; }
.card-page .name-line span { padding: 5px 9px; font-size: 14px; }
.card-page .consultant-main > p { margin: 8px 0; font-size: 16px; white-space: normal; }
.card-page .consultant-tags { gap: 7px; }
.card-page .consultant-tags span { padding: 5px 9px; font-size: 13px; }
.card-page .hero-message { margin: 24px 0 20px; padding-left: 14px; border-left-width: 4px; }
.card-page .hero-message p { margin-bottom: 8px; font-size: 21px; line-height: 1.55; }
.card-page .hero-message small { font-size: 15px; line-height: 1.7; }
.card-page .quick-actions { gap: 9px; }
.card-page .quick-action { min-height: 82px; gap: 8px; padding: 12px 3px; font-size: 14px; font-weight: 700; }
.card-page .quick-action i { width: 38px; height: 38px; font-size: 18px; }
.card-page .card-content { padding: 0 12px 30px; }
.card-page .trust-strip { margin-top: -20px; padding: 18px 4px; }
.card-page .trust-strip strong { font-size: 21px; line-height: 1.25; }
.card-page .trust-strip strong span { color: inherit; font-size: inherit; }
.card-page .trust-strip article > span { padding: 0 3px; color: #596d69; font-size: 13px; line-height: 1.35; text-align: center; }
.card-page .content-section { margin-bottom: 16px; padding: 24px 18px; }
.card-page .section-heading { align-items: center; margin-bottom: 17px; }
.card-page .section-heading h2 { font-size: var(--reader-title); line-height: 1.35; }
.card-page .section-kicker { font-size: 12px; letter-spacing: .1em; }
.card-page .section-link { min-height: 46px; padding: 8px; font-size: 15px; }
.card-page .section-intro { margin: -3px 0 18px; color: #536b66; font-size: var(--reader-small); line-height: 1.8; }
.card-page .soft-badge { flex: 0 0 auto; padding: 7px 10px; font-size: 13px; }
.card-page .service-grid { gap: 11px; }
.card-page .service-card { grid-template-columns: 54px 1fr 18px; gap: 13px; min-height: 91px; padding: 15px 13px; border-color: #dfe8e5; }
.card-page .service-icon { width: 54px; height: 54px; border-radius: 17px; font-size: 18px; }
.card-page .service-card strong { font-size: 18px; line-height: 1.35; }
.card-page .service-card small { color: #5f716d; font-size: var(--reader-small); line-height: 1.55; }
.card-page .service-card em { font-size: 28px; }

.opening-section { background: linear-gradient(160deg, #fff, #fff9f1); }
.opening-feature { position: relative; width: 100%; min-height: 0; padding: 0; overflow: hidden; text-align: left; border: 0; border-radius: 19px; background: #173d3b; }
.opening-feature img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.opening-feature > span { position: absolute; inset: auto 0 0; display: grid; gap: 3px; padding: 42px 15px 14px; color: #fff; background: linear-gradient(transparent, rgba(8,31,29,.9)); }
.opening-feature strong { font-size: 19px; }
.opening-feature small { color: #e2efec; font-size: 14px; }
.opening-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.opening-photo { position: relative; display: block; min-width: 0; min-height: 0; padding: 0; overflow: hidden; text-align: left; border: 0; border-radius: 15px; background: #e6ece9; }
.opening-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.opening-photo span { position: absolute; inset: auto 0 0; overflow: hidden; padding: 24px 9px 8px; color: #fff; background: linear-gradient(transparent, rgba(8,30,28,.85)); font-size: 14px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.opening-more { width: 100%; min-height: 54px; margin-top: 13px; color: #075f51; border: 2px solid #a9dacf; border-radius: 15px; background: #effaf7; font-size: 17px; font-weight: 800; }
.opening-gallery .opening-photo:nth-child(n+7) { display: none; }
.opening-gallery.expanded .opening-photo { display: block; }
.opening-gallery-status { grid-column: 1 / -1; padding: 24px 10px; color: #667a76; font-size: 16px; text-align: center; }

.card-page .resource-entry { margin-bottom: 16px; padding: 24px 18px; }
.card-page .resource-entry-copy > span { font-size: 12px; }
.card-page .resource-entry-copy h2 { font-size: var(--reader-title); line-height: 1.4; }
.card-page .resource-entry-copy p { color: rgba(255,255,255,.84); font-size: var(--reader-small); line-height: 1.75; }
.card-page .resource-entry-copy a { display: inline-flex; align-items: center; min-height: 52px; padding: 11px 15px; font-size: 16px; }
.card-page .resource-entry-copy small { font-size: 13px; line-height: 1.6; }
.card-page .resource-entry-metrics article { min-height: 84px; }
.card-page .resource-entry-metrics strong { font-size: 27px; }
.card-page .resource-entry-metrics span { font-size: 14px; }
.card-page .process-list::before { left: 22px; }
.card-page .process-list article { grid-template-columns: 45px 1fr; gap: 14px; padding: 12px 0; }
.card-page .process-list b { width: 45px; height: 45px; font-size: 13px; }
.card-page .process-list strong { font-size: 18px; }
.card-page .process-list p { margin-top: 5px; color: #5b706b; font-size: var(--reader-small); line-height: 1.65; }
.card-page .real-gallery { gap: 10px; }
.card-page .real-gallery figcaption strong { font-size: 16px; }
.card-page .real-gallery figcaption span { font-size: 13px; }
.card-page .assurance-grid { grid-template-columns: 1fr; gap: 10px; }
.card-page .assurance-grid article { padding: 17px; }
.card-page .assurance-grid i { float: left; width: 42px; height: 42px; margin: 0 12px 8px 0; font-size: 15px; }
.card-page .assurance-grid strong { font-size: 18px; }
.card-page .assurance-grid p { margin-top: 6px; color: #5d706c; font-size: var(--reader-small); line-height: 1.65; }
.card-page .faq-section summary { padding: 18px 32px 18px 0; font-size: 17px; line-height: 1.55; }
.card-page .faq-section summary::after { font-size: 26px; }
.card-page .faq-section details p { margin-bottom: 18px; color: #4f6863; font-size: var(--reader-small); line-height: 1.8; }
.card-page .contact-card { padding: 25px 19px; }
.card-page .contact-card > span { font-size: 12px; }
.card-page .contact-card h2 { font-size: 24px; }
.card-page .contact-card > p { font-size: 15px; }
.card-page .contact-meta { gap: 8px; margin: 17px 0; color: #d3e3e0; font-size: 16px; }
.card-page .contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.card-page .contact-actions button { min-height: 52px; color: #fff; border: 1px solid rgba(255,255,255,.28); border-radius: 13px; background: rgba(255,255,255,.1); font-size: 16px; font-weight: 800; }
.card-page .contact-actions button:last-child { grid-column: 1 / -1; color: #103e38; border: 0; background: #8be0cc; }
.card-page .compliance-note { grid-template-columns: 1fr; padding: 16px; color: #5d6e6a; font-size: 14px; line-height: 1.75; }
.card-page .compliance-note strong { color: #3f5550; font-size: 16px; }
.card-page .bottom-bar { grid-template-columns: 64px 64px 64px minmax(100px, 1fr); gap: 7px; padding-top: 9px; }
.card-page .bottom-bar button,
.card-page .bottom-bar a { min-height: 58px; border-radius: 14px; }
.card-page .bottom-secondary i { font-size: 18px; }
.card-page .bottom-secondary span { font-size: 12px; line-height: 1.2; }
.card-page .bottom-primary { font-size: 17px; }

.card-page .modal-sheet { padding: 28px 20px calc(24px + env(safe-area-inset-bottom)); }
.card-page .modal-close { width: 44px; height: 44px; font-size: 27px; }
.card-page .modal-sheet h2 { padding-right: 40px; font-size: 26px; line-height: 1.35; }
.card-page .modal-sheet > p,
.card-page .modal-small > p { color: #526863; font-size: 16px; line-height: 1.75; }
.card-page .modal-small { width: min(calc(100% - 24px), 420px); }
.card-page .modal-qr { width: 220px; height: 220px; }
.card-page .copy-row code { font-size: 18px; }
.card-page .copy-row button { min-height: 48px; padding: 8px 14px; font-size: 16px; }
.card-page .modal-kicker { color: #087c6b; font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.card-page .lead-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.card-page .lead-form-grid label { display: grid; gap: 7px; }
.card-page .lead-form-grid label > span { color: #3f5954; font-size: 16px; font-weight: 800; }
.card-page .lead-form-grid .full { grid-column: 1 / -1; }
.card-page .lead-form-grid input,
.card-page .lead-form-grid select,
.card-page .lead-form-grid textarea { width: 100%; min-height: 54px; padding: 12px 13px; border: 2px solid #d6e2de; border-radius: 13px; outline: none; background: #fbfcfc; font-size: 17px; }
.card-page .lead-form-grid textarea { min-height: 112px; resize: vertical; line-height: 1.6; }
.card-page .consent-row { grid-template-columns: 24px 1fr; gap: 10px; margin: 18px 0; color: #536964; font-size: 15px; line-height: 1.65; }
.card-page .consent-row input { width: 22px; height: 22px; }
.card-page .form-submit { min-height: 64px; }
.card-page .form-submit span { font-size: 19px; }
.card-page .form-submit small { font-size: 13px; }
.card-page .form-feedback { min-height: 24px; margin: 12px 0 0; font-size: 16px; }
.card-page .form-feedback.error { color: #a43c30; }
.card-page .lead-success h3 { font-size: 24px; }
.card-page .lead-success p { font-size: 16px; }
.card-page .lead-success button { min-height: 52px; padding: 0 24px; font-size: 17px; }

.gallery-modal { z-index: 200; align-items: center; }
.gallery-modal .modal-backdrop { background: rgba(2,12,11,.92); }
.gallery-viewer { position: relative; z-index: 2; display: grid; grid-template-columns: 48px minmax(0, 1fr) 48px; align-items: center; width: min(100%, 760px); max-height: 100vh; padding: 58px 4px 20px; color: #fff; }
.gallery-viewer figure { min-width: 0; margin: 0; }
.gallery-viewer img { width: 100%; max-height: 72vh; margin: auto; border-radius: 10px; object-fit: contain; }
.gallery-viewer figcaption { display: grid; gap: 3px; padding: 13px 4px 0; text-align: center; }
.gallery-viewer figcaption strong { font-size: 19px; }
.gallery-viewer figcaption span { color: #d4e1de; font-size: 15px; }
.gallery-viewer figcaption small { color: #99afaa; font-size: 14px; }
.gallery-close { position: absolute; top: 10px; right: 12px; width: 46px; height: 46px; color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: rgba(255,255,255,.12); font-size: 30px; }
.gallery-nav { width: 44px; height: 58px; color: #fff; border: 0; border-radius: 12px; background: rgba(255,255,255,.14); font-size: 42px; line-height: 1; }
.gallery-prev { justify-self: start; }
.gallery-next { justify-self: end; }

@media (max-width: 390px) {
  .card-page .lead-form-grid { grid-template-columns: 1fr; }
  .card-page .lead-form-grid .full { grid-column: auto; }
  .card-page .quick-action { font-size: 13px; }
  .card-page .bottom-bar { grid-template-columns: 58px 58px 58px minmax(92px, 1fr); }
}
