:root {
  --bg-page: #f4f8ff;
  --bg-elevated: #ffffff;
  --bg-soft: #eef5ff;
  --bg-muted: #e4edf8;
  --bg-overlay: rgba(255, 255, 255, 0.88);
  --bg-strong: rgba(255, 255, 255, 0.94);
  --text-primary: #1d1d1f;
  --text-secondary: #424245;
  --text-muted: #6e6e73;
  --text-on-accent: #ffffff;
  --border: rgba(0, 0, 0, 0.12);
  --border-strong: rgba(0, 0, 0, 0.2);
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --success: #08916d;
  --info: #0ea5e9;
  --warning: #b06b00;
  --radius: 8px;
  --shadow-1: 0 10px 24px -18px rgba(0, 0, 0, 0.26);
  --shadow-2: 0 18px 38px -24px rgba(0, 0, 0, 0.3);
  --header-h: 76px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

[data-theme="dark"] {
  --bg-page: #07111f;
  --bg-elevated: #0f1a2b;
  --bg-soft: #162337;
  --bg-muted: #1e2d45;
  --bg-overlay: rgba(9, 16, 29, 0.86);
  --bg-strong: rgba(15, 26, 43, 0.94);
  --text-primary: #f5f5f7;
  --text-secondary: #d4d4d8;
  --text-muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.2);
  --accent: #38bdf8;
  --accent-hover: #7dd3fc;
  --accent-soft: rgba(56, 189, 248, 0.18);
  color-scheme: dark;
}

[data-theme="dark"] .feature-list span,
[data-theme="dark"] .consult-preview,
[data-theme="dark"] .price-meta,
[data-theme="dark"] .wechat-panel .modal-actions .secondary-action {
  background: rgba(15, 26, 43, 0.72);
}

[data-theme="dark"] .service-card-head {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.18), rgba(37, 99, 235, 0.14));
  color: #7dd3fc;
}

[data-theme="dark"] .service-card .modal-close {
  background: rgba(15, 26, 43, 0.78);
}

[data-theme="dark"] .service-option {
  background: linear-gradient(180deg, rgba(15, 26, 43, 0.78), rgba(22, 35, 55, 0.82));
  border-color: rgba(56, 189, 248, 0.14);
}

[data-theme="dark"] .service-option-icon {
  background: rgba(7, 17, 31, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg-page);
  color: var(--text-primary);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--border);
  background: var(--bg-overlay);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-1);
  background: var(--bg-strong);
}

.nav-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  flex: 0 0 auto;
  color: var(--text-primary);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.brand-main {
  color: var(--text-primary);
}

.brand-dot,
.brand-hot {
  color: #0ea5e9;
}

.brand-muted {
  color: #7dd3fc;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  gap: 4px;
  min-height: 48px;
  overflow-x: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 11px;
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.active {
  color: var(--text-primary);
  font-weight: 700;
}

.nav-link.active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  content: "";
  border-radius: 2px 2px 0 0;
  background: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-action-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-hover);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-action-button:hover {
  border-color: rgba(37, 99, 235, 0.58);
  background: var(--accent);
  color: #fff;
}

.header-action-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-copy-button {
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent);
}

.icon-button,
.mobile-menu-button {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.icon-button:hover,
.mobile-menu-button:hover {
  color: var(--accent);
  background: var(--bg-soft);
  border-color: var(--border);
}

.icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-button {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.mobile-menu {
  display: none;
  width: min(100% - 32px, 1180px);
  margin: 0 auto 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  padding: 13px 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

main {
  flex: 1;
}

#featured,
#products,
#faq,
#support {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.home-overview {
  position: relative;
  z-index: 1;
  padding: 112px 0 48px;
}

.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 32px;
}

.home-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: 34px;
  line-height: 1.16;
  font-weight: 900;
}

.home-copy p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-1);
}

.metric-card strong {
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}

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

.product-section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-page);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.section-head h1 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.muted-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.muted-link:hover {
  color: var(--accent-hover);
}

.category-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-pill {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.category-pill.active,
.category-pill:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-hover);
}

.product-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.search-field,
.sort-field {
  min-height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text-muted);
  box-shadow: var(--shadow-1);
}

.search-field {
  gap: 10px;
  padding: 0 13px;
}

.search-field svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-field input,
.sort-field select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text-primary);
}

.search-field input::placeholder {
  color: var(--text-muted);
}

.sort-field {
  gap: 8px;
  padding: 0 11px;
  font-size: 13px;
}

.sort-field span {
  flex: 0 0 auto;
  font-weight: 700;
}

.sort-field select {
  cursor: pointer;
}

.result-bar {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 13px;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-weight: 800;
}

.text-button:hover {
  color: var(--accent-hover);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-1);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-card[hidden] {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.58);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.34), 0 20px 36px -28px rgba(0, 0, 0, 0.24);
}

.product-media {
  aspect-ratio: 2 / 1;
  display: grid;
  place-items: center;
  background: var(--bg-muted);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.7s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 12px;
}

.product-category {
  min-width: 0;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-title {
  min-height: 48px;
  margin: 0 0 8px;
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-snippet {
  min-height: 20px;
  margin: -2px 0 8px;
  color: var(--text-muted);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.badge-row {
  min-height: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.badge.info {
  background: linear-gradient(135deg, #4b7dff, #6c95ff);
  border-color: #4b7dff;
  box-shadow: 0 8px 18px -12px rgba(75, 125, 255, 0.72);
}

.badge.success {
  background: linear-gradient(135deg, #06ad57, #2dc36e);
  border-color: #06ad57;
  box-shadow: 0 8px 18px -12px rgba(6, 173, 87, 0.72);
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.price-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.original-price {
  margin-bottom: 2px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.original-price s {
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(110, 110, 115, 0.72);
}

.price-label {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.price {
  color: var(--text-primary);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.buy-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.buy-button:hover {
  color: var(--accent);
  border-color: rgba(37, 99, 235, 0.6);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.34);
}

.buy-button.consult-button {
  width: auto;
  min-width: 56px;
  padding: 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.buy-button.consult-button:hover {
  color: #fff;
  background: var(--accent);
}

.buy-button svg,
.arrow-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow-icon {
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.product-card:hover .arrow-icon {
  color: var(--accent);
  transform: translateX(3px);
}

.business-band,
.support-band {
  padding: 58px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.support-band {
  background: var(--bg-page);
}

.section-head.compact {
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.notice-card,
.empty-state {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text-primary);
  box-shadow: var(--shadow-1);
}

.notice-card {
  min-height: 142px;
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.notice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 18px 32px -26px rgba(0, 0, 0, 0.28);
}

.notice-card strong {
  font-size: 17px;
}

.notice-card span {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 180px;
  padding: 28px;
  color: var(--text-muted);
  text-align: center;
}

.empty-state strong {
  color: var(--text-primary);
  font-size: 18px;
}

.business-grid,
.notice-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 32px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.business-copy h2,
.notice-copy h2,
.faq-copy h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.2;
}

.business-copy p,
.notice-copy p,
.faq-copy p,
.support-copy p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.faq-note {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.faq-note strong {
  color: var(--text-primary);
  font-size: 16px;
}

.faq-note span {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.faq-list summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  content: "+";
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.notice-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr) minmax(260px, 0.8fr);
  align-items: stretch;
}

.notice-panel,
.timeline > div,
.support-copy {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.notice-panel {
  padding: 18px;
}

.notice-panel strong,
.timeline strong,
.support-copy strong {
  display: block;
  color: var(--text-primary);
  font-size: 17px;
}

.notice-panel ul,
.support-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.notice-panel li,
.support-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.notice-panel li::before,
.support-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 999px;
  background: var(--accent);
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline > div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
}

.timeline span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

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

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 14px;
  margin-bottom: 16px;
}

.support-copy {
  padding: 18px;
}

.support-list {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-1);
}

.promise-list {
  display: grid;
  gap: 12px;
}

.promise-item {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.promise-item strong {
  font-size: 16px;
}

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

.contact-block {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.contact-block img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.contact-block div {
  display: grid;
  gap: 6px;
}

.contact-block span {
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 30px 0 22px;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand strong {
  color: var(--text-primary);
  font-size: 22px;
  line-height: 1;
}

.footer-brand strong span {
  color: #0ea5e9;
}

.footer-brand p {
  max-width: 520px;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.footer-qr {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.footer-contact-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.footer-contact span {
  color: var(--text-secondary);
  font-size: 14px;
  white-space: nowrap;
}

.footer-contact strong {
  color: var(--text-primary);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  letter-spacing: 0;
}

.footer-contact button {
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-contact button:hover {
  border-color: rgba(37, 99, 235, 0.56);
  background: var(--accent);
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 14px 0 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 12px;
}

.floating-service {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 42;
  width: 58px;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 8px;
  border: 0;
  border-right: 0;
  border-radius: 10px 0 0 10px;
  background: linear-gradient(180deg, #0ea5e9, #2563eb);
  color: #fff;
  box-shadow: 0 16px 30px -22px rgba(37, 99, 235, 0.78);
  transform: translateY(-50%);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.floating-service:hover {
  width: 64px;
  background: linear-gradient(180deg, #38bdf8, #1d4ed8);
  box-shadow: 0 20px 42px -22px rgba(37, 99, 235, 0.95);
}

.floating-service svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.floating-service span {
  font-size: 14px;
  line-height: 1.24;
  font-weight: 900;
  text-align: center;
}

.floating-service-mobile,
.mobile-tabbar {
  display: none;
}

.modal,
.service-drawer,
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.modal.open,
.service-drawer.open,
.policy-modal.open {
  display: block;
}

.modal-backdrop,
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 31, 0.62);
  backdrop-filter: blur(6px);
}

.service-drawer .drawer-backdrop {
  background: transparent;
  backdrop-filter: none;
}

.modal-panel {
  position: relative;
  width: min(100% - 40px, 980px);
  max-height: calc(100vh - 44px);
  margin: 22px auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  overflow: auto;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: 0 28px 78px -32px rgba(2, 6, 23, 0.58);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.modal-art {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.qr-side {
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: 30px;
  background:
    linear-gradient(rgba(56, 189, 248, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #071a34, #0b2d62 58%, #071a34);
  background-size: 26px 26px, 26px 26px, auto;
  color: #fff;
}

.qr-side-head {
  display: grid;
  gap: 8px;
}

.qr-side-head span {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.qr-side-head strong {
  font-size: 28px;
  line-height: 1.15;
}

.qr-side-head p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.qr-frame {
  position: relative;
  width: min(100%, 312px);
  aspect-ratio: 1;
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  padding: 16px;
  border: 1px solid rgba(125, 211, 252, 0.5);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 54px -28px rgba(0, 0, 0, 0.85), 0 0 0 8px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.qr-frame::before,
.qr-frame::after {
  position: absolute;
  width: 32px;
  height: 32px;
  content: "";
  border-color: #38bdf8;
  border-style: solid;
  z-index: 1;
}

.qr-frame::before {
  top: 10px;
  left: 10px;
  border-width: 3px 0 0 3px;
}

.qr-frame::after {
  right: 10px;
  bottom: 10px;
  border-width: 0 3px 3px 0;
}

.qr-wechat-id {
  width: min(100%, 312px);
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 6px 8px 6px 13px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.qr-wechat-id span {
  min-width: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.qr-wechat-id strong {
  margin-left: 5px;
  color: #ffffff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  letter-spacing: 0;
}

.qr-wechat-id button {
  min-height: 30px;
  flex: 0 0 auto;
  padding: 0 11px;
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.16);
  color: #e0f2fe;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.qr-wechat-id button:hover {
  border-color: rgba(125, 211, 252, 0.72);
  background: #38bdf8;
  color: #071a34;
}

.scan-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.2), #38bdf8, rgba(14, 165, 233, 0.2), transparent);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.9);
  animation: scanQr 3.4s ease-in-out infinite;
}

@keyframes scanQr {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(274px);
    opacity: 1;
  }
}

.qr-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.qr-steps span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
}

.modal-body {
  display: flex;
  flex-direction: column;
  padding: 34px 34px 30px;
}

.modal-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-right: 42px;
}

.modal-category {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.modal-pill {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.modal-body h2 {
  margin: 12px 0 0;
  font-size: 30px;
  line-height: 1.22;
  letter-spacing: 0;
}

.modal-desc {
  margin: 12px 0 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.wechat-consult-card {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.11), rgba(14, 165, 233, 0.08));
}

.consult-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.consult-card-head strong {
  color: var(--text-primary);
  font-size: 15px;
}

.consult-card-head span {
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.consult-preview {
  display: block;
  padding: 12px;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text-secondary);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.65;
  white-space: pre-line;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.feature-list span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  background: #f6f9ff;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 800;
}

.modal-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(138px, 0.55fr);
  gap: 12px;
  margin: 16px 0 18px;
}

.modal-meta-item {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.modal-meta-item span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.modal-meta-item strong {
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.35;
}

.price-meta {
  background: #f8fbff;
}

.price-meta strong {
  color: var(--text-primary);
  font-size: 30px;
  line-height: 1;
  white-space: nowrap;
}

.price-meta small {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: line-through;
}

.modal-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 12px;
  margin-top: auto;
}

.wechat-panel .modal-actions .primary-action,
.wechat-panel .modal-actions .secondary-action {
  min-height: 48px;
  font-size: 15px;
}

.wechat-panel .modal-actions .primary-action {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  box-shadow: 0 16px 30px -18px rgba(37, 99, 235, 0.9);
}

.wechat-panel .modal-actions .secondary-action {
  background: #f6f9ff;
}

.primary-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--radius);
  border: 0;
  background: var(--accent);
  color: var(--text-on-accent);
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 14px 28px -20px var(--accent);
}

.primary-action:hover {
  background: var(--accent-hover);
}

.secondary-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--text-secondary);
  cursor: pointer;
  font-weight: 800;
}

.secondary-action:hover {
  color: var(--accent);
  border-color: rgba(37, 99, 235, 0.5);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 88vw);
  height: 100%;
  padding: 44px 28px;
  background: var(--bg-elevated);
  box-shadow: -20px 0 60px -38px rgba(0, 0, 0, 0.5);
}

.drawer-panel img {
  width: 160px;
  height: 160px;
  margin-bottom: 24px;
  object-fit: contain;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.drawer-panel h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.drawer-panel p {
  margin: 0 0 24px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-card {
  position: absolute;
  top: 50%;
  right: 74px;
  width: min(318px, calc(100vw - 98px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: 0 24px 64px -38px rgba(2, 6, 23, 0.46);
  transform: translateY(-50%);
}

.service-card::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 14px;
  height: 14px;
  content: "";
  border-top: 1px solid rgba(37, 99, 235, 0.18);
  border-right: 1px solid rgba(37, 99, 235, 0.18);
  background: var(--bg-elevated);
  transform: translateY(-50%) rotate(45deg);
}

.service-card .modal-close {
  top: 9px;
  right: 9px;
  width: 28px;
  height: 28px;
  border-color: rgba(37, 99, 235, 0.16);
  background: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.service-card-head {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 44px 0 18px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.18);
  background: linear-gradient(180deg, #eff6ff, #e0f2fe);
  color: #1d4ed8;
}

.service-card-head strong {
  font-size: 16px;
  line-height: 1.25;
}

.service-check {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
}

.service-check svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-qr-wrap {
  display: grid;
  place-items: center;
  padding: 22px 22px 16px;
}

.service-qr-wrap img {
  width: min(100%, 198px);
  aspect-ratio: 1;
  object-fit: contain;
  padding: 6px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background: #fff;
}

.service-option-list {
  display: grid;
  gap: 8px;
  padding: 0 20px 18px;
}

.service-option {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 10px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.86), rgba(248, 251, 255, 0.92));
}

.service-option-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 10px 18px -16px rgba(37, 99, 235, 0.68);
}

.service-option-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-option-icon.blue {
  background: #ffffff;
  color: #2563eb;
}

.service-option-icon.cyan {
  background: #ffffff;
  color: #0891b2;
}

.service-option strong,
.service-option span {
  display: block;
}

.service-option strong {
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.25;
}

.service-option span {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.42;
}

.service-card-foot {
  min-height: 46px;
  display: grid;
  place-items: center;
  margin: 0 22px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
}

.policy-panel {
  position: relative;
  width: min(100% - 32px, 620px);
  margin: 40px auto;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: 0 28px 70px -32px rgba(0, 0, 0, 0.52);
}

.policy-panel h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.policy-panel p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.toast-stack {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 100;
  display: grid;
  gap: 10px;
  pointer-events: none;
  transform: translateX(-50%);
}

.toast {
  min-width: 220px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  color: var(--text-primary);
  box-shadow: var(--shadow-2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  border-color: rgba(6, 173, 87, 0.35);
}

.toast.warn {
  border-color: rgba(176, 107, 0, 0.4);
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .product-body {
    padding: 16px;
  }

  .product-title {
    font-size: 18px;
  }

  .price-label {
    display: block;
  }

  .price {
    font-size: 19px;
  }

  .buy-button {
    width: 36px;
    height: 36px;
  }

  .buy-button.consult-button {
    width: auto;
    min-width: 60px;
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .home-grid,
  .business-grid,
  .notice-layout,
  .faq-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .notice-grid {
    grid-template-columns: 1fr;
  }

  .contact-block {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  :root {
    --header-h: 68px;
  }

  body {
    padding-bottom: 56px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    font-size: 21px;
  }

  .header-action-button {
    display: none;
  }

  .home-overview {
    padding: 86px 0 34px;
  }

  .home-copy h1 {
    font-size: 26px;
  }

  .home-copy p {
    font-size: 15px;
  }

  .home-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-card {
    min-height: 96px;
    padding: 14px;
  }

  .metric-card strong {
    font-size: 23px;
  }

  .product-section {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .product-toolbar {
    grid-template-columns: 1fr;
  }

  .sort-field {
    display: none;
  }

  .section-head {
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .section-head h1 {
    font-size: 22px;
  }

  .muted-link {
    display: none;
  }

  .card-actions .arrow-icon {
    display: none;
  }

  .product-media img {
    padding: 12px;
  }

  .business-band,
  .support-band {
    padding: 42px 0;
  }

  .business-copy h2,
  .notice-copy h2,
  .faq-copy h2 {
    font-size: 22px;
  }

  .contact-block {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0 18px;
  }

  .footer-contact {
    justify-self: stretch;
    justify-content: flex-start;
  }

  .footer-qr {
    width: 68px;
    height: 68px;
  }

  .footer-bottom {
    padding-bottom: 76px;
  }

  .floating-service {
    display: none;
  }

  .floating-service-mobile {
    position: fixed;
    right: 16px;
    bottom: 70px;
    z-index: 42;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #fff;
    box-shadow: 0 16px 34px -22px rgba(37, 99, 235, 0.76);
    font-weight: 900;
  }

  .floating-service-mobile svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .service-card {
    top: 50%;
    right: 50%;
    width: min(100% - 40px, 318px);
    max-height: calc(100vh - 96px);
    transform: translate(50%, -50%);
  }

  .service-card-head {
    min-height: 56px;
    padding-left: 18px;
  }

  .service-card-head strong {
    font-size: 15px;
  }

  .service-qr-wrap {
    padding: 20px 20px 14px;
  }

  .service-qr-wrap img {
    width: min(100%, 188px);
  }

  .service-option-list {
    gap: 13px;
    padding: 0 20px 18px;
  }

  .service-card-foot {
    margin: 0 20px;
  }

  .mobile-tabbar {
    position: fixed;
    inset: auto 0 0;
    z-index: 40;
    height: 56px;
    display: flex;
    border-top: 1px solid var(--border);
    background: var(--bg-strong);
    backdrop-filter: blur(16px);
  }

  .mobile-tabbar a,
  .mobile-tabbar button {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
  }

  .mobile-tabbar a.active,
  .mobile-tabbar button.active {
    color: var(--accent);
    font-weight: 800;
  }

  .mobile-tabbar svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .modal-panel {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .qr-side {
    min-height: auto;
    gap: 18px;
    padding: 22px;
  }

  .qr-side-head strong {
    font-size: 23px;
  }

  .qr-side-head p {
    max-width: none;
  }

  .qr-frame {
    width: min(100%, 248px);
    padding: 12px;
  }

  .qr-wechat-id {
    width: min(100%, 248px);
  }

  @keyframes scanQr {
    0%,
    100% {
      transform: translateY(0);
      opacity: 0.6;
    }

    50% {
      transform: translateY(210px);
      opacity: 1;
    }
  }

  .modal-body {
    padding: 22px 18px 20px;
  }

  .modal-topline {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 42px;
  }

  .modal-body h2 {
    font-size: 24px;
  }

  .modal-desc {
    font-size: 14px;
  }

  .consult-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .modal-meta {
    grid-template-columns: 1fr;
  }

  .drawer-panel {
    width: min(420px, 92vw);
    padding: 38px 20px 24px;
  }

  .policy-panel {
    padding: 26px 18px;
  }

  .modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .toast-stack {
    bottom: 72px;
    width: min(100% - 28px, 360px);
  }

  .toast {
    min-width: 0;
    width: 100%;
  }
}
