:root {
  --logo-hot: #ff4f00;
  --logo-orange: #ff7a00;
  --logo-amber: #ff9f0a;
  --logo-gold: #ffc43d;
  --logo-cream: #fff0bd;
  --gold: #ffc43d;
  --gold-bright: #ffd85a;
  --orange: #ff6a00;
  --orange-deep: #d94a00;
  --ink: #211107;
  --muted: #735437;
  --line: #f1d4a0;
  --soft: #fff3cc;
  --surface: #fffaf0;
  --surface-strong: #fff5db;
  --band-white: #ffffff;
  --band-warm: #fff8e7;
  --band-gold: #fff1c7;
  --band-soft: #fffaf0;
  --deep: #4b2200;
  --white: #ffffff;
  --shadow: 0 24px 72px rgba(183, 71, 0, 0.16);
  --soft-shadow: 0 18px 48px rgba(105, 54, 0, 0.08);
}

/* Rich content admin and public content pages */
body[data-page="rich-content-admin"] > [data-site-header],
body[data-page="solution-admin"] > [data-site-header],
body[data-page="site-image-admin"] > [data-site-header],
body[data-page="content"] > [data-site-header] {
  display: flow-root;
  padding-bottom: 18px;
  color: var(--white);
  background: linear-gradient(120deg, var(--logo-hot), var(--logo-orange) 58%, var(--logo-amber));
}

.nowrap {
  white-space: nowrap;
}

.rich-admin-main,
.content-page-main {
  min-height: 70vh;
  padding: 54px max(22px, calc((100vw - 1320px) / 2)) 90px;
  background: var(--band-warm);
}

.rich-admin-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.rich-admin-heading h1,
.content-index h1,
.rich-content-article h1,
.content-not-found h1 {
  margin: 5px 0 8px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
}

.rich-admin-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.rich-admin-heading-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.rich-import-button {
  cursor: pointer;
}

.rich-import-button input {
  display: none;
}

.rich-admin-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.rich-content-sidebar,
.rich-editor-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.rich-content-sidebar {
  position: sticky;
  top: 18px;
  overflow: hidden;
}

.rich-content-sidebar-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.rich-content-sidebar-title h2 {
  margin: 0;
  font-size: 19px;
}

.rich-content-sidebar-title span,
.rich-content-record span {
  color: var(--muted);
  font-size: 12px;
}

.rich-content-records {
  max-height: 650px;
  overflow-y: auto;
}

.rich-content-record {
  display: grid;
  width: 100%;
  gap: 7px;
  padding: 16px 20px;
  border: 0;
  border-bottom: 1px solid #f6e7ca;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.rich-content-record:hover,
.rich-content-record.is-active {
  background: var(--soft);
}

.rich-content-record.is-active {
  box-shadow: inset 4px 0 var(--orange);
}

.rich-content-empty {
  margin: 0;
  padding: 28px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.solution-admin-layout {
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.solution-admin-lists {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
}

.solution-admin-list-panel,
.solution-admin-editor {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.solution-admin-list-panel {
  overflow: hidden;
}

/* 折叠分组：未展开时隐藏内部 records / actions */
.solution-admin-list-panel:not(.is-expanded) .solution-admin-records,
.solution-admin-list-panel:not(.is-expanded) .site-image-group-actions {
  display: none;
}

/* 可折叠的分组标题 */
.solution-admin-list-title.is-collapsible {
  width: 100%;
  padding: 14px 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
}

.solution-admin-list-title.is-collapsible:hover {
  background: var(--soft);
}

.solution-admin-list-title-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.solution-admin-list-title-main h2 {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solution-admin-list-title-main small {
  color: var(--muted);
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 进度显示 */
.solution-admin-list-progress {
  padding: 4px 10px;
  border-radius: 999px;
  color: #5a2600;
  background: var(--soft);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.solution-admin-list-progress.is-full {
  color: #1f7a3f;
  background: #e6f6ec;
}

/* 折叠箭头 */
.solution-admin-list-chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  flex-shrink: 0;
}

.solution-admin-list-panel.is-expanded .solution-admin-list-chevron {
  transform: rotate(-135deg);
}

/* 紧凑模式：槽位以多列网格显示，节省滚动 */
.solution-admin-records-compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 8px;
  max-height: 280px;
  overflow-y: auto;
}

.solution-admin-records-compact .solution-admin-record {
  padding: 8px 10px;
  border-bottom: 0;
  border-radius: 8px;
  gap: 2px 6px;
  align-items: center;
  grid-template-columns: 24px minmax(0, 1fr);
}

.solution-admin-records-compact .solution-admin-record span {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  font-size: 11px;
}

.solution-admin-records-compact .solution-admin-record strong {
  font-size: 11px;
  color: var(--muted);
}

.solution-admin-records-compact .solution-admin-record small {
  font-size: 11px;
}

.solution-admin-records-compact .solution-admin-record.is-filled {
  background: #fff6e8;
}

.solution-admin-records-compact .solution-admin-record.is-filled strong {
  color: #1f7a3f;
}

.solution-admin-records-compact .solution-admin-record.is-filled span {
  background: var(--orange);
  color: #fff;
}

/* 折叠状态下分组标题保持完整宽度 */
.solution-admin-list-panel:not(.is-expanded) .solution-admin-list-title {
  border-bottom: 0;
}

.solution-admin-list-title,
.solution-admin-editor-head,
.solution-admin-footer,
.solution-admin-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.solution-admin-list-title {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.solution-admin-list-title h2,
.solution-admin-editor h2,
.solution-admin-section h3 {
  margin: 0;
}

.solution-admin-list-title h2 {
  font-size: 18px;
}

.solution-admin-list-title span,
.solution-admin-record small,
.solution-admin-section-head span,
.solution-admin-current,
.solution-admin-footer p {
  color: var(--muted);
  font-size: 13px;
}

.solution-admin-sort-hint {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.solution-admin-records {
  max-height: 330px;
  overflow-y: auto;
}

.solution-admin-record {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  width: 100%;
  gap: 4px 10px;
  padding: 14px 18px;
  border: 0;
  border-bottom: 1px solid #f6e7ca;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.solution-admin-record span {
  display: grid;
  width: 32px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  color: #5a2600;
  background: var(--soft);
  font-size: 12px;
  font-weight: 950;
}

.solution-admin-record strong,
.solution-admin-record small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.solution-admin-record small {
  grid-column: 2;
}

.solution-admin-record:hover,
.solution-admin-record.is-active {
  background: var(--soft);
}

.solution-admin-record.is-active {
  box-shadow: inset 4px 0 var(--orange);
}

.solution-admin-record[draggable="true"] {
  cursor: grab;
}

.solution-admin-record[draggable="true"]:active {
  cursor: grabbing;
}

.solution-admin-record.is-dragging {
  opacity: 0.45;
}

.solution-admin-record.is-drop-target {
  outline: 2px dashed var(--orange);
  outline-offset: -3px;
  background: #fff6e8;
}

.solution-admin-list-empty {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  font-size: 14px;
}

.solution-admin-add {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--orange-deep);
  background: var(--surface);
  cursor: pointer;
  font-weight: 900;
}

.solution-admin-add:hover,
.solution-admin-add:focus-visible {
  background: var(--soft);
  outline: none;
}

.site-image-group-actions {
  display: flex;
  gap: 8px;
  padding: 0 12px 12px;
  border-top: 1px solid var(--line);
  margin-top: -1px;
}

/* 禁止 site-image 容器里的图片被拖拽到新标签页 */
[data-site-image] {
  position: relative;
  overflow: hidden;
}

[data-site-image] img,
[data-site-image] {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/* 当容器内有真实图片时，移除占位（橙色背景/边框/文字色） */
[data-site-image].has-image {
  background: transparent;
  border-color: transparent;
  color: transparent;
  display: block;
}

/* 统一让 [data-site-image] 内的图片按容器尺寸裁剪显示 */
[data-site-image] img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* background 模式插入的背景视频：铺满容器、静音自动播放 */
.site-image-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  background: var(--scene-a, transparent);
}

.site-image-group-actions .solution-admin-add {
  flex: 1 1 auto;
  min-height: 38px;
  border-top: 0;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  margin-top: 0;
}

.site-image-delete-slot {
  flex: 0 0 auto;
  min-height: 38px;
  font-size: 13px;
}

.site-image-delete-slot[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.solution-admin-editor {
  padding: 24px;
}

.solution-admin-editor-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.solution-admin-current {
  margin: 0 0 5px;
  font-weight: 800;
}

.solution-admin-delete {
  color: #b42318 !important;
}

.solution-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.solution-admin-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.solution-admin-editor label,
.solution-admin-full {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.solution-admin-editor input,
.solution-admin-editor select,
.solution-admin-editor textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  line-height: 1.5;
}

.solution-admin-editor textarea {
  resize: vertical;
}

.solution-admin-editor input:focus,
.solution-admin-editor select:focus,
.solution-admin-editor textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.solution-admin-full,
.solution-admin-section {
  margin-top: 18px;
}

.solution-admin-section {
  padding: 18px;
  border: 1px solid #f1dcb6;
  border-radius: 14px;
  background: var(--surface);
}

.solution-admin-section-head {
  margin-bottom: 14px;
}

.solution-admin-media-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.solution-admin-upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 1px;
}

.solution-admin-upload-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #b63b00;
  border-radius: 8px;
  color: var(--white);
  background: #d94a00;
  box-shadow: 0 8px 18px rgba(217, 74, 0, 0.24);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  white-space: nowrap;
}

.solution-admin-upload-button:hover,
.solution-admin-upload-button:focus-visible {
  background: #a93400;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2), 0 8px 18px rgba(217, 74, 0, 0.24);
}

body[data-page="site-image-admin"] .solution-admin-upload-actions .button.light {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

body[data-page="site-image-admin"] .solution-admin-upload-actions .button.light:hover,
body[data-page="site-image-admin"] .solution-admin-upload-actions .button.light:focus-visible {
  color: var(--orange-deep);
  border-color: var(--orange);
  background: var(--soft);
  outline: none;
}

.solution-admin-media-preview {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.solution-admin-media-preview img,
.solution-admin-media-preview video {
  width: min(420px, 100%);
  max-height: 260px;
  border: 1px solid var(--line);
  border-radius: 12px;
  object-fit: cover;
  background: var(--white);
}

.solution-admin-media-preview a {
  color: var(--orange-deep);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.solution-admin-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.solution-admin-footer p {
  margin: 0;
}

.solution-admin-footer p[data-type="error"] {
  color: #b42318;
}

.solution-admin-footer p[data-type="success"] {
  color: #18794e;
}

.solution-admin-footer p[data-type="uploading"] {
  color: var(--orange-deep);
}

.rich-editor-panel {
  padding: 24px;
}

.rich-editor-fields {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) minmax(180px, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}

.rich-editor-fields label:not(.rich-publish-field) {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.rich-editor-fields input[type="text"] {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}

.rich-editor-fields input[type="text"]:focus,
.rich-editor:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.rich-publish-field {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  gap: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.rich-toolbar.ql-toolbar.ql-snow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 0;
  padding: 12px 10px 6px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: var(--surface);
  font-family: inherit;
}

.rich-toolbar.ql-toolbar.ql-snow .ql-formats {
  display: inline-flex;
  align-items: center;
  margin: 0 10px 6px 0;
}

.rich-toolbar.ql-toolbar.ql-snow button {
  min-height: 28px;
  padding: 3px 5px;
  border: 0;
  border-radius: 5px;
  background: transparent;
}

.rich-toolbar.ql-toolbar.ql-snow button:hover,
.rich-toolbar.ql-toolbar.ql-snow button:focus,
.rich-toolbar.ql-toolbar.ql-snow button.ql-active {
  background: var(--soft);
}

.rich-toolbar.ql-toolbar.ql-snow .ql-picker-label {
  border-radius: 5px;
}

.rich-toolbar .rich-history-button {
  width: auto;
  padding: 3px 8px !important;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.rich-editor.ql-container.ql-snow {
  min-height: 520px;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 0 0 14px 14px;
  outline: none;
  color: #2d1b10;
  background: var(--white);
  font-family: inherit;
}

.rich-editor .ql-editor {
  min-height: 520px;
  padding: clamp(20px, 4vw, 44px);
  font-size: 17px;
  line-height: 1.9;
}

.rich-editor .ql-editor.ql-blank::before {
  right: clamp(20px, 4vw, 44px);
  left: clamp(20px, 4vw, 44px);
  color: #a68c74;
  font-style: normal;
}

.rich-editor img,
.rich-content-body img,
[data-rich-content] img {
  display: block;
  height: auto;
  max-width: 100%;
  max-height: 720px;
  margin: 0 auto;
  border-radius: 14px;
}

.rich-editor video,
.rich-content-body video,
[data-rich-content] video {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 720px;
  margin: 0 auto;
  border-radius: 14px;
}

.rich-editor img[data-align="left"],
.rich-content-body img[data-align="left"],
[data-rich-content] img[data-align="left"] {
  margin-right: auto;
  margin-left: 0;
}

.rich-editor img[data-align="center"],
.rich-content-body img[data-align="center"],
[data-rich-content] img[data-align="center"] {
  margin-right: auto;
  margin-left: auto;
}

.rich-editor img[data-align="right"],
.rich-content-body img[data-align="right"],
[data-rich-content] img[data-align="right"] {
  margin-right: 0;
  margin-left: auto;
}

.rich-image-overlay {
  position: fixed;
  z-index: 1000;
  border: 2px solid var(--orange);
  border-radius: 14px;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.14);
  pointer-events: none;
}

.rich-image-overlay[hidden] {
  display: none;
}

.rich-image-tools {
  position: absolute;
  top: -44px;
  left: 0;
  display: flex;
  min-width: max-content;
  gap: 3px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(75, 34, 0, 0.2);
  pointer-events: auto;
}

.rich-image-overlay.show-tools-below .rich-image-tools {
  top: auto;
  bottom: -44px;
}

.rich-image-tools button {
  min-width: 30px;
  min-height: 28px;
  padding: 0 7px;
  border: 0;
  border-radius: 5px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.rich-image-tools button:hover,
.rich-image-tools button.is-active {
  color: var(--orange-deep);
  background: var(--soft);
}

.rich-image-tools [data-image-delete] {
  color: #b42318;
}

.rich-image-resize-handle {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 2px 8px rgba(75, 34, 0, 0.3);
  cursor: nwse-resize;
  pointer-events: auto;
  touch-action: none;
}

.rich-image-overlay.resize-from-left .rich-image-resize-handle {
  right: auto;
  left: -10px;
  cursor: nesw-resize;
}

.rich-editor figure,
.rich-content-body figure {
  margin: 28px 0;
  text-align: center;
}

.rich-editor figcaption,
.rich-content-body figcaption {
  min-height: 1em;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.rich-editor blockquote,
.rich-content-body blockquote {
  margin: 24px 0;
  padding: 14px 20px;
  border-left: 4px solid var(--orange);
  color: var(--muted);
  background: var(--surface);
}

.rich-editor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

.rich-editor-media-hint {
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 13px;
}

.rich-editor-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.rich-editor-footer p[data-type="error"] {
  color: #b42318;
}

.rich-editor-footer p[data-type="success"] {
  color: #18794e;
}

.rich-editor-footer > div {
  display: flex;
  gap: 10px;
}

.rich-delete-button {
  color: #b42318 !important;
}

.content-index,
.rich-content-article,
.content-not-found {
  width: min(980px, 100%);
  margin: 0 auto;
}

.content-index > header {
  margin-bottom: 30px;
  text-align: center;
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.content-card {
  display: block;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.content-card time,
.rich-content-article time {
  color: var(--muted);
  font-size: 13px;
}

.content-card h2 {
  margin: 10px 0;
  font-size: 24px;
}

.content-card p {
  min-height: 3.4em;
  color: var(--muted);
  line-height: 1.7;
}

.content-card span {
  color: var(--orange-deep);
  font-weight: 800;
}

.content-page-empty,
.content-not-found {
  padding: 64px 24px;
  color: var(--muted);
  text-align: center;
}

.content-back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--orange-deep);
  font-weight: 800;
}

.rich-content-article {
  padding: clamp(24px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.rich-content-article > header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.rich-content-body {
  padding-top: 28px;
  overflow-wrap: anywhere;
  font-size: 17px;
  line-height: 1.9;
}

.rich-content-body h1,
.rich-content-body h2,
.rich-content-body h3,
.rich-content-body h4 {
  margin: 1.6em 0 0.6em;
  line-height: 1.35;
}

.rich-content-body a {
  color: var(--orange-deep);
  text-decoration: underline;
}

.rich-content-body .ql-align-center,
[data-rich-content] .ql-align-center {
  text-align: center;
}

.rich-content-body .ql-align-right,
[data-rich-content] .ql-align-right {
  text-align: right;
}

.rich-content-body .ql-align-justify,
[data-rich-content] .ql-align-justify {
  text-align: justify;
}

.rich-content-body .ql-direction-rtl,
[data-rich-content] .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}

.rich-content-body .ql-font-serif,
[data-rich-content] .ql-font-serif {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
}

.rich-content-body .ql-font-monospace,
[data-rich-content] .ql-font-monospace {
  font-family: Consolas, Monaco, "Courier New", monospace;
}

.rich-content-body .ql-size-small,
[data-rich-content] .ql-size-small {
  font-size: 0.8em;
}

.rich-content-body .ql-size-large,
[data-rich-content] .ql-size-large {
  font-size: 1.5em;
}

.rich-content-body .ql-size-huge,
[data-rich-content] .ql-size-huge {
  font-size: 2.5em;
}

.rich-content-body .ql-indent-1,
[data-rich-content] .ql-indent-1 {
  padding-left: 3em;
}

.rich-content-body .ql-indent-2,
[data-rich-content] .ql-indent-2 {
  padding-left: 6em;
}

.rich-content-body .ql-indent-3,
[data-rich-content] .ql-indent-3 {
  padding-left: 9em;
}

.rich-content-body .ql-indent-4,
.rich-content-body .ql-indent-5,
.rich-content-body .ql-indent-6,
.rich-content-body .ql-indent-7,
.rich-content-body .ql-indent-8,
[data-rich-content] .ql-indent-4,
[data-rich-content] .ql-indent-5,
[data-rich-content] .ql-indent-6,
[data-rich-content] .ql-indent-7,
[data-rich-content] .ql-indent-8 {
  padding-left: 12em;
}

.rich-content-body li[data-list="bullet"],
[data-rich-content] li[data-list="bullet"] {
  list-style-type: disc;
}

.rich-content-body li[data-list="checked"],
.rich-content-body li[data-list="unchecked"],
[data-rich-content] li[data-list="checked"],
[data-rich-content] li[data-list="unchecked"] {
  list-style: none;
}

.rich-content-body li[data-list="checked"]::before,
[data-rich-content] li[data-list="checked"]::before {
  content: "✓ ";
}

.rich-content-body li[data-list="unchecked"]::before,
[data-rich-content] li[data-list="unchecked"]::before {
  content: "□ ";
}

.rich-content-body .ql-ui,
[data-rich-content] .ql-ui {
  display: none;
}

@media (max-width: 980px) {
  .rich-admin-heading,
  .rich-editor-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .rich-admin-heading-actions {
    justify-content: flex-start;
  }

  .rich-admin-layout {
    grid-template-columns: 1fr;
  }

  .solution-admin-layout {
    grid-template-columns: 1fr;
  }

  .solution-admin-lists {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rich-content-sidebar {
    position: static;
  }

  .rich-content-records {
    max-height: 240px;
  }

  .solution-admin-records {
    max-height: 260px;
  }

  .solution-admin-grid.compact,
  .solution-admin-media-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-admin-upload-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .rich-admin-main,
  .content-page-main {
    padding: 36px 12px 60px;
  }

  .rich-admin-heading-actions .button,
  .rich-import-button {
    flex: 1 1 140px;
    justify-content: center;
  }

  .rich-editor-panel {
    padding: 14px;
  }

  .rich-editor-fields,
  .solution-admin-grid,
  .solution-admin-grid.compact,
  .solution-admin-media-row,
  .solution-admin-lists,
  .content-card-grid {
    grid-template-columns: 1fr;
  }

  .solution-admin-editor {
    padding: 14px;
  }

  .solution-admin-editor-head,
  .solution-admin-footer,
  .solution-admin-section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .rich-toolbar-spacer {
    display: none;
  }

  .rich-editor.ql-container.ql-snow,
  .rich-editor .ql-editor {
    min-height: 400px;
  }

  .rich-editor .ql-editor {
    padding: 18px;
  }

  .rich-editor-footer > div {
    flex-wrap: wrap;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background:
    linear-gradient(180deg, #fffaf0 0, var(--white) 520px),
    var(--white);
  letter-spacing: 0;
}

main {
  background: var(--band-white);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
}

.subpage-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
  background:
    linear-gradient(115deg, rgba(55, 17, 0, 0.48) 0%, rgba(255, 79, 0, 0.08) 44%, rgba(77, 28, 0, 0.34) 100%),
    linear-gradient(180deg, var(--logo-hot) 0%, var(--logo-orange) 48%, var(--logo-amber) 74%, var(--logo-gold) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 9px);
}

/* 页面大图配置加载完成前，不显示页面原有的默认图/视频，避免前后台大图切换时闪现旧内容 */
html.page-banners-pending .hero-media,
html.page-banners-pending .solutions-ad-media,
html.page-banners-configured .hero-media,
html.page-banners-configured .solutions-ad-media,
body.page-banners-pending .hero-media,
body.page-banners-pending .solutions-ad-media,
body.page-banners-configured .hero-media,
body.page-banners-configured .solutions-ad-media {
  visibility: hidden;
}

body[data-page="contact"] .hero-media {
  background:
    linear-gradient(115deg, rgba(55, 17, 0, 0.36) 0%, rgba(255, 79, 0, 0.06) 44%, rgba(77, 28, 0, 0.28) 100%),
    url("../../support/bg.jpg") center / cover no-repeat,
    linear-gradient(180deg, var(--logo-hot) 0%, var(--logo-orange) 48%, var(--logo-amber) 74%, var(--logo-gold) 100%);
}

body[data-page="home"] .hero-media {
  background:
    linear-gradient(115deg, rgba(55, 17, 0, 0.36) 0%, rgba(255, 79, 0, 0.06) 44%, rgba(77, 28, 0, 0.28) 100%),
    url("../../support/bg.jpg") center / cover no-repeat,
    linear-gradient(180deg, var(--logo-hot) 0%, var(--logo-orange) 48%, var(--logo-amber) 74%, var(--logo-gold) 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(56, 19, 0, 0.62), rgba(255, 106, 0, 0.14) 58%, rgba(64, 21, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(255, 255, 255, 0.04) 40%, rgba(0, 0, 0, 0.12));
  backdrop-filter: blur(8px);
}

body[data-page="home"] .hero-media::after,
body[data-page="contact"] .hero-media::after {
  backdrop-filter: none;
}

.hero-media span,
.hero-media small {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(0, 0, 0, 0.22);
  font-size: 13px;
}

.hero-media small {
  right: 24px;
  bottom: 64px;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(102, 31, 0, 0.08), rgba(255, 106, 0, 0.03) 45%, rgba(99, 26, 0, 0.16)),
    linear-gradient(0deg, rgba(54, 22, 0, 0.16), transparent 36%);
}

/* 页面大图：覆盖在 hero 背景之上、遮罩和内容之下 */
.page-banner {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 独立大图块（用于非 hero 布局的页面，如合作文章页） */
.page-banner-standalone {
  position: relative;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-banner-standalone .page-banner-video {
  object-fit: cover;
}

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1220px, calc(100% - 44px));
  margin: 18px auto 0;
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-text-only {
  align-items: center;
  gap: 10px;
}

.brand-name-main {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(45, 14, 0, 0.34);
}

.brand-text-only .brand-tagline {
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 2px 12px rgba(45, 14, 0, 0.34);
}

.brand-mark {
  display: grid;
  width: 132px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text-only .brand-mark {
  width: 40px;
  height: 40px;
}

.brand-text {
  display: grid;
  gap: 2px;
  text-shadow: 0 2px 12px rgba(45, 14, 0, 0.34);
}

.brand-name {
  font-size: 26px;
  line-height: 1;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 1;
}

.site-nav > a,
.nav-item > button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(45, 14, 0, 0.34);
  transition: color 0.18s ease, transform 0.18s ease;
}

.site-nav > a:hover,
.nav-item > button:hover {
  color: var(--gold-bright);
  background: transparent;
  transform: translateY(-1px);
}

.site-nav > a[aria-current="page"] {
  color: var(--white);
  background: transparent;
}

.nav-outline {
  min-width: 104px;
  justify-content: center;
  border: 0 !important;
}

.nav-trial {
  min-width: 122px;
  justify-content: center;
  color: var(--white) !important;
  background: transparent !important;
}

.nav-item {
  position: relative;
}

/* 桥接伪元素：填充按钮和下拉菜单之间的间隙，保持 hover 状态 */
.nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: 300px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(44, 25, 8, 0.9);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: 0.18s ease;
  backdrop-filter: blur(18px);
}

.mega-menu.is-wide {
  width: min(540px, calc(100vw - 36px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.35;
}

.mega-menu a:hover {
  color: #351500;
  background: var(--logo-gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  width: min(1130px, calc(100% - 44px));
  min-height: 555px;
  margin: 0 auto;
  padding: 108px 0 110px;
}

.subpage-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0 104px;
}

.hero-copy {
  width: 100%;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--orange-deep);
  font-size: 16px;
  font-weight: 900;
}

.hero .eyebrow {
  margin: 22px 0 0;
  color: var(--gold-bright);
  font-size: 19px;
  line-height: 1.75;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(56px, 6vw, 86px);
  line-height: 1.02;
  font-weight: 950;
  max-width: 920px;
}

h1 span {
  display: block;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.hero-lead {
  width: 100%;
  max-width: 100%;
  inline-size: min(100%, 1040px);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-summary {
  width: 100%;
  max-width: 100%;
  inline-size: min(100%, 940px);
  margin: 28px 0 0;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  color: var(--white);
  background: rgba(58, 20, 0, 0.18);
  box-shadow: 0 18px 54px rgba(58, 20, 0, 0.12);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.55;
  backdrop-filter: blur(16px);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.open-store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button.primary {
  color: #351500;
  background: var(--logo-gold);
  box-shadow: 0 16px 38px rgba(255, 111, 0, 0.26);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

.button.admin-nav {
  color: #2a1100;
  background: linear-gradient(180deg, #ffd28a 0%, #ffb04a 100%);
  border-color: #ff8a1e;
  box-shadow: 0 8px 18px rgba(255, 138, 30, 0.25);
}

.button.admin-nav:hover {
  background: linear-gradient(180deg, #ffdc9c 0%, #ffba5a 100%);
}

.home-tabs {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(244, 215, 161, 0.72);
  background: rgba(255, 250, 240, 0.86);
  backdrop-filter: blur(18px);
}

.tab {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #8b6840;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.tab.is-active {
  color: var(--orange-deep);
  border-color: rgba(255, 106, 0, 0.24);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(105, 54, 0, 0.08);
}

.solution-section,
.feature-section,
.brand-system,
.steps-section,
.contact-section,
.custom-section,
.login-section {
  width: min(1070px, calc(100% - 44px));
  margin: 0 auto;
}

.tab-panel,
.feature-section,
.brand-system,
.steps-section,
.bottom-section {
  position: relative;
  isolation: isolate;
}

.tab-panel::before,
.feature-section::before,
.brand-system::before,
.steps-section::before,
.bottom-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
}

.solution-section {
  padding: 0;
}

.tab-panel {
  display: block;
  scroll-margin-top: 78px;
  padding: 96px 0 108px;
}

.tab-panel:nth-child(odd)::before {
  background: var(--band-white);
}

.tab-panel:nth-child(even)::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 196, 61, 0.14)),
    var(--band-warm);
}

.tab-panel:first-child {
  border-top: 0;
}

.solution-copy {
  position: relative;
  max-width: 880px;
}

.solution-copy h2 {
  max-width: 680px;
}

.solution-copy p {
  max-width: 790px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.solution-copy .kicker {
  color: var(--orange-deep);
}

.word-page-grid {
  display: grid;
  gap: 34px;
  margin-top: 54px;
}

.word-page-card,
.payment-layout,
.single-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 36px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--white), var(--surface-strong));
  box-shadow: var(--soft-shadow);
}

.word-page-card:nth-child(even) {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.88fr);
}

.word-page-card:nth-child(even) > div:first-child {
  order: 2;
}

.page-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  color: #351500;
  background: linear-gradient(135deg, var(--logo-gold), #ffe58b);
  font-weight: 950;
  font-size: 14px;
}

.word-page-card p,
.payment-copy p,
.single-page-layout p {
  color: var(--muted);
  line-height: 1.76;
}

.page-image {
  min-height: 330px;
  border-radius: 18px;
}

.page-image.video {
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.payment-showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 820px) auto;
  gap: 40px;
  align-items: center;
  width: min(1072px, 100%);
  margin: 0 auto;
}

.payment-showcase-head h2 {
  max-width: 820px;
}

.payment-showcase-head > div > p:last-child {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.payment-showcase-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 142px;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #351500;
  background: var(--logo-gold);
  box-shadow: 0 14px 34px rgba(255, 111, 0, 0.24);
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.payment-showcase-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 111, 0, 0.3);
}

.payment-carousel {
  width: min(1072px, 100%);
  margin: 52px auto 0;
  outline: none;
  user-select: none;
}

.payment-carousel:focus-visible {
  border-radius: 24px;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.18);
}

.payment-carousel-stage {
  position: relative;
  height: 550px;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.payment-carousel-stage.is-dragging {
  cursor: grabbing;
}

.payment-slide {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: min(430px, calc(100vw - 48px));
  height: auto;
  aspect-ratio: 430 / 550;
  margin-left: -215px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--white);
  background: #7a3b08;
  box-shadow: 0 24px 60px rgba(75, 34, 0, 0.2);
  opacity: 0;
  transform: translateX(0) scale(0.84);
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, filter 0.4s ease;
  cursor: pointer;
  outline: none;
}

.payment-slide.is-prev {
  z-index: 1;
  opacity: 0.82;
  filter: saturate(0.78);
  transform: translateX(-320px) scale(0.84);
}

.payment-slide.is-next {
  z-index: 1;
  opacity: 0.82;
  filter: saturate(0.78);
  transform: translateX(320px) scale(0.84);
}

.payment-slide.is-active {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: translateX(0) translateY(0) scale(1);
  cursor: grab;
}

.payment-slide:focus-visible {
  box-shadow: 0 0 0 4px var(--white), 0 0 0 7px var(--orange);
}

.payment-slide .payment-slide-media {
  position: absolute;
  inset: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  color: #743000;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.68), transparent 24%),
    linear-gradient(145deg, #fff0bd, #ffb638 56%, #ff6a00);
}

.payment-slide .payment-slide-media-direct {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.66), transparent 25%),
    linear-gradient(150deg, #ffe6a0, #ff9518 58%, #db4a00);
}

.payment-slide .payment-slide-media-offline {
  background:
    radial-gradient(circle at 35% 16%, rgba(255, 255, 255, 0.7), transparent 24%),
    linear-gradient(145deg, #fff4ce, #ffc43d 52%, #ef6800);
}

.payment-slide .platform-slide-media-local {
  background:
    radial-gradient(circle at 30% 16%, rgba(255, 255, 255, 0.7), transparent 25%),
    linear-gradient(145deg, #fff2c4, #ffbf32 56%, #ef6a00);
}

.payment-slide .platform-slide-media-national {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.68), transparent 24%),
    linear-gradient(150deg, #ffe7a0, #ff9518 58%, #d94a00);
}

.payment-slide .platform-slide-media-distribution {
  background:
    radial-gradient(circle at 42% 14%, rgba(255, 255, 255, 0.72), transparent 23%),
    linear-gradient(140deg, #fff5d2, #ffc43d 50%, #f16d00);
}

.payment-slide .payment-slide-media small {
  color: #84400e;
}

.payment-slide::after {
  content: "";
  position: absolute;
  inset: 28% 0 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(28, 12, 2, 0.96));
  pointer-events: none;
}

.payment-slide-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px;
}

.payment-slide-copy h3 {
  font-size: 23px;
  line-height: 1.3;
}

.payment-slide-description {
  max-height: 120px;
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
  opacity: 1;
  transition: max-height 0.36s ease, margin 0.36s ease, opacity 0.25s ease;
}

.payment-slide:not(.is-active) .payment-slide-description {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

.payment-slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.payment-slide-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.auto-showcase {
  position: relative;
  isolation: isolate;
  width: min(100vw, 1440px);
  margin: 0 calc(50% - min(50vw, 720px));
  padding: 62px 0 70px;
  color: var(--ink);
}

.auto-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, transparent, rgba(255, 246, 223, 0.54) 18%, rgba(255, 246, 223, 0.54) 82%, transparent);
}

.showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 680px) auto;
  gap: 36px;
  align-items: start;
  width: min(1070px, calc(100% - 44px));
  margin: 0 auto 42px;
}

.showcase-brand {
  margin: 0 0 10px;
  font-weight: 950;
  color: var(--orange-deep);
}

.showcase-head h3 {
  font-size: clamp(30px, 4vw, 48px);
}

.showcase-head p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.marquee {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
}

.marquee.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.marquee::-webkit-scrollbar {
  display: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 30px;
  padding: 4px 64px 8px;
}

.showcase-card {
  flex: 0 0 405px;
  width: 405px;
  height: 550px;
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
  scroll-snap-align: start;
}

.image-card-auto {
  border-color: rgba(255, 106, 0, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 196, 61, 0.18)),
    linear-gradient(180deg, rgba(255, 106, 0, 0.14), rgba(255, 196, 61, 0.3) 64%, rgba(255, 240, 189, 0.78)),
    repeating-linear-gradient(45deg, rgba(94, 48, 0, 0.04) 0 10px, rgba(94, 48, 0, 0.015) 10px 20px);
  color: #8b3500;
  box-shadow: var(--soft-shadow);
}

.image-card-auto small {
  color: var(--muted);
}

.image-card-auto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255, 106, 0, 0.2);
  background: linear-gradient(180deg, var(--white), #ffeec4);
  box-shadow: var(--soft-shadow);
}

.text-card .page-label {
  align-self: flex-start;
  color: #351500;
  background: var(--logo-gold);
}

.text-card p {
  margin: 22px 0;
  color: var(--muted);
  line-height: 1.78;
}

.text-card strong {
  display: block;
  margin-top: auto;
  color: var(--ink);
  font-style: italic;
}

.rating {
  margin-top: 28px;
  color: var(--logo-gold);
  font-weight: 900;
}

.brand-showcase {
  padding: 70px 0 74px;
}

.brand-showcase-head {
  grid-template-columns: minmax(0, 920px) auto;
  align-items: center;
  width: min(1072px, calc(100% - 44px));
  margin-bottom: 54px;
}

.brand-showcase-head .showcase-brand {
  color: var(--orange-deep);
  font-size: 18px;
}

.brand-showcase-head h3 {
  max-width: 920px;
}

.brand-showcase-head p:last-child {
  max-width: 760px;
}

.brand-showcase-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 142px;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.28);
  font-weight: 900;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.brand-showcase-more:hover {
  border-color: var(--orange-deep);
  color: var(--orange-deep);
  background: rgba(255, 255, 255, 0.68);
  transform: translateY(-1px);
}

.brand-showcase-content {
  width: min(1072px, calc(100% - 44px));
  margin: 0 auto;
}

.brand-showcase-images {
  display: grid;
  grid-template-columns: 645fr 387fr;
  gap: 40px;
}

.brand-showcase-image {
  width: 100%;
  height: 410px;
  margin: 0;
  border-color: rgba(255, 106, 0, 0.2);
  border-radius: 18px;
  color: #8b3500;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.8), transparent 24%),
    linear-gradient(145deg, rgba(255, 196, 61, 0.2), rgba(255, 106, 0, 0.22)),
    repeating-linear-gradient(45deg, rgba(94, 48, 0, 0.035) 0 12px, rgba(255, 255, 255, 0.08) 12px 24px);
  box-shadow: var(--soft-shadow);
}

.brand-showcase-image small {
  color: var(--muted);
}

.brand-showcase-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 38px;
}

.brand-showcase-features article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-showcase-features h4 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.brand-showcase-features p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.brand-showcase-features span {
  margin-top: auto;
  padding: 5px 10px;
  border-radius: 999px;
  color: #6c3000;
  background: rgba(255, 196, 61, 0.28);
  font-size: 12px;
  font-weight: 900;
}


.solution-gallery {
  position: relative;
  min-height: 520px;
  margin-top: 54px;
}

.placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 158, 20, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 196, 61, 0.2)),
    linear-gradient(180deg, rgba(255, 106, 0, 0.12), rgba(255, 196, 61, 0.24) 64%, rgba(255, 240, 189, 0.62)),
    repeating-linear-gradient(45deg, rgba(94, 48, 0, 0.04) 0 10px, rgba(94, 48, 0, 0.015) 10px 20px);
  color: #8b3500;
  text-align: center;
}

.placeholder span {
  position: relative;
  z-index: 1;
  display: block;
  font-weight: 900;
}

.placeholder small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.image-card {
  position: absolute;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.image-card.tall {
  left: 0;
  bottom: 0;
  width: 28%;
  aspect-ratio: 720 / 980;
}

.image-card.wide {
  left: 31%;
  top: 0;
  width: 40%;
  aspect-ratio: 960 / 640;
  z-index: 2;
}

.image-card.second {
  left: auto;
  right: 0;
  bottom: 28px;
  z-index: 1;
}

.feature-section,
.brand-system,
.steps-section,
.contact-section,
.custom-section,
.login-section {
  padding: 96px 0;
}

.feature-section::before {
  background:
    linear-gradient(180deg, rgba(255, 196, 61, 0.1), rgba(255, 255, 255, 0.42)),
    var(--band-gold);
}

.brand-system::before {
  top: -64px;
  bottom: -64px;
  background: var(--band-white);
}

.steps-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 196, 61, 0.12)),
    var(--band-warm);
}

/* ── 各区域自定义背景色 ── */

/* mini-program 面板不设统一背景，由各子区域自定义 */
.tab-panel#mini-program {
  padding: 0;
}

.tab-panel#mini-program::before {
  background: transparent;
}

/* 本地生活服务类 — 白色 */
.auto-showcase[aria-label="本地生活服务手动滑动展示"]::before {
  background: var(--white);
}

/* 工厂批发商 — 深邃藏蓝 */
.auto-showcase[aria-label="工厂批发贸易手动滑动展示"]::before {
  background: #183059;
}
.auto-showcase[aria-label="工厂批发贸易手动滑动展示"] {
  color: var(--white);
}

.auto-showcase[aria-label="工厂批发贸易手动滑动展示"] .showcase-head {
  grid-template-columns: minmax(0, 920px) auto;
}

.auto-showcase[aria-label="工厂批发贸易手动滑动展示"] .showcase-head h3 {
  max-width: 920px;
}

.auto-showcase[aria-label="工厂批发贸易手动滑动展示"] .showcase-card.text-card {
  background: #183059;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
}

.auto-showcase[aria-label="工厂批发贸易手动滑动展示"] .text-card .page-label {
  color: #183059;
  background: var(--logo-gold);
}

.auto-showcase[aria-label="工厂批发贸易手动滑动展示"] .text-card p {
  color: rgba(255, 255, 255, 0.85);
}

.auto-showcase[aria-label="工厂批发贸易手动滑动展示"] .text-card strong {
  color: var(--white);
}

.auto-showcase[aria-label="工厂批发贸易手动滑动展示"] .rating {
  color: rgba(255, 255, 255, 0.7);
}

.auto-showcase[aria-label="工厂批发贸易手动滑动展示"] .image-card-auto {
  background:
    linear-gradient(145deg, rgba(24, 48, 89, 0.6), rgba(24, 48, 89, 0.8)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.15);
}

.auto-showcase[aria-label="工厂批发贸易手动滑动展示"] .image-card-auto small {
  color: rgba(255, 255, 255, 0.5);
}

/* 品牌总部 — 浅银灰 */
.brand-showcase::before {
  background: #F2F5F9;
}

/* 线上支付 — 深青绿色 */
.tab-panel#payments::before {
  background: #247260;
}

.tab-panel#payments {
  color: var(--white);
}

.tab-panel#payments .kicker {
  color: var(--white);
}

.tab-panel#payments .payment-showcase-head > div > p:last-child {
  color: var(--white);
}

/* 全行业平台 — 品牌正红 */
.tab-panel#platform::before {
  background: #C42828;
}

.tab-panel#platform {
  color: var(--white);
}

.tab-panel#platform .kicker {
  color: var(--white);
}

.tab-panel#platform .payment-showcase-head > div > p:last-child {
  color: var(--white);
}

/* 消费者权益保护 — 暖金色 */
.tab-panel#protection::before {
  background: #B58928;
}

.tab-panel#protection {
  padding-top: 32px;
}

.auto-showcase[aria-label="消费者权益保护手动滑动展示"]::before {
  background: transparent;
}

.tab-panel#protection .compact-heading {
  margin-bottom: 0;
}

.tab-panel#protection .auto-showcase {
  padding-top: 24px;
}

/* 下载卖达客 APP — 黑色 */
.steps-section::before {
  background: #1a1a1a;
}

.steps-section {
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.feature-grid article,
.steps-grid article,
.contact-cards article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-grid article:hover,
.steps-grid article:hover,
.contact-cards article:hover {
  border-color: rgba(255, 106, 0, 0.34);
  box-shadow: 0 22px 54px rgba(105, 54, 0, 0.1);
  transform: translateY(-2px);
}

.card-image {
  aspect-ratio: 720 / 540;
  margin-bottom: 18px;
  border-radius: 18px;
}

.feature-grid h3,
.steps-grid h3,
.contact-cards h3 {
  font-size: 20px;
}

.feature-grid p,
.brand-system p,
.steps-grid p,
.contact-section p,
.custom-section p,
.login-section p {
  color: var(--muted);
  line-height: 1.72;
}

.brand-system,
.contact-section,
.login-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
  gap: 48px;
  align-items: center;
}

.brand-system {
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--white), var(--surface-strong));
  box-shadow: var(--soft-shadow);
}

.system-image {
  aspect-ratio: 1200 / 760;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.notice {
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  background: var(--soft);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.steps-grid article {
  padding: 24px;
}

.steps-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #351500;
  background: var(--logo-gold);
  font-weight: 950;
}

.open-store-main {
  background: linear-gradient(180deg, var(--band-warm) 0, var(--white) 420px);
}

.open-store-steps {
  border-top: 0;
}

.open-store-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.open-store-layout .steps-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-card,
.support-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(105, 54, 0, 0.06);
}

.qr-placeholder {
  aspect-ratio: 1;
  margin-bottom: 18px;
  border-radius: 14px;
}

.download-card p,
.open-store-support p,
.support-card p {
  color: var(--muted);
  line-height: 1.72;
}

.open-store-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: center;
  width: min(1070px, calc(100% - 44px));
  margin: 0 auto 88px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff7df, #ffe8ad);
}

.support-card strong {
  display: block;
  margin: 14px 0;
  color: var(--orange-deep);
  font-size: 28px;
  line-height: 1.1;
}

.support-hero {
  min-height: 650px;
}

.support-hero-inner {
  padding-bottom: 96px;
}

.help-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  width: min(760px, 100%);
  margin-top: 30px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 54px rgba(58, 20, 0, 0.12);
  backdrop-filter: blur(18px);
}

.help-search input {
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
}

.help-search button {
  min-width: 104px;
  border: 0;
  border-radius: 999px;
  color: #351500;
  background: var(--logo-gold);
  font-weight: 900;
  cursor: pointer;
}

.popular-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.popular-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(58, 20, 0, 0.16);
  font-size: 14px;
  font-weight: 800;
}

.support-main {
  background: var(--white);
}

.help-home,
.help-category {
  width: min(1070px, calc(100% - 44px));
  margin: 0 auto;
  padding: 86px 0;
}

.help-block + .help-block {
  margin-top: 78px;
}

.help-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.help-featured-card,
.help-category-card,
.help-article-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.help-contact-strip {
  width: min(1280px, calc(100% - 44px));
  margin: 86px auto 0;
}

.help-featured-card {
  display: grid;
  gap: 12px;
  min-height: 214px;
  padding: 22px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.help-featured-card span,
.help-card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #351500;
  background: linear-gradient(135deg, var(--logo-gold), #ffe58b);
  font-weight: 950;
}

.help-featured-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.help-featured-card p,
.help-category-card p,
.category-desc,
.help-article-copy p,
.help-contact-strip p {
  color: var(--muted);
  line-height: 1.68;
}

.help-featured-card:hover,
.help-category-card:hover {
  border-color: rgba(255, 106, 0, 0.34);
  box-shadow: 0 22px 54px rgba(105, 54, 0, 0.1);
  transform: translateY(-2px);
}

.help-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.help-category-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.help-category-card h3 {
  margin-bottom: 8px;
}

.help-category-card small {
  color: var(--orange-deep);
  font-weight: 900;
}

.help-contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 86px;
  padding: 34px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.56), rgba(255, 196, 61, 0.16) 44%, rgba(255, 106, 0, 0.1)),
    linear-gradient(135deg, #fff7df, #ffe5a6);
}

.help-contact-strip > div {
  flex: 1 1 auto;
  min-width: 0;
}

.help-contact-strip h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.2;
}

.help-back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--orange-deep);
  font-weight: 900;
}

.help-back::before {
  content: "<";
  margin-right: 8px;
}

.help-category-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.help-sidebar {
  position: sticky;
  top: 82px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.help-sidebar h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

.help-sidebar nav {
  display: grid;
  gap: 6px;
}

.help-sidebar a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
}

.help-sidebar a:hover,
.help-sidebar a.is-active {
  color: var(--orange-deep);
  background: var(--white);
}

.help-category-detail {
  min-width: 0;
}

.help-category-detail h2 {
  max-width: 760px;
}

.help-article-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.help-article-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
}

.help-article-visual {
  min-height: 190px;
  border-radius: 18px;
}

.help-article-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.help-article-copy {
  align-self: center;
}

.help-article-copy h3 {
  margin-bottom: 10px;
}

.help-article-copy ol {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.static-help-sections {
  display: grid;
  gap: 72px;
  margin-top: 86px;
}

.static-help-section {
  scroll-margin-top: 88px;
}

.is-hidden {
  display: none !important;
}

.admin-hero {
  min-height: 620px;
}

.contact-hero {
  min-height: 760px;
}

.contact-hero .hero-media {
  background:
    linear-gradient(115deg, rgba(55, 17, 0, 0.36) 0%, rgba(255, 79, 0, 0.06) 44%, rgba(77, 28, 0, 0.28) 100%),
    url("../../support/bg.jpg") center / cover no-repeat,
    linear-gradient(180deg, var(--logo-hot) 0%, var(--logo-orange) 48%, var(--logo-amber) 74%, var(--logo-gold) 100%);
}

.contact-hero .hero-media::after {
  background:
    linear-gradient(90deg, rgba(56, 19, 0, 0.62), rgba(255, 106, 0, 0.14) 58%, rgba(64, 21, 0, 0.42)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(255, 255, 255, 0.04) 40%, rgba(0, 0, 0, 0.12));
  backdrop-filter: none;
}

.contact-hero .hero-shade {
  z-index: 1;
  background: transparent;
}

.contact-hero-inner {
  padding-top: 82px;
  padding-bottom: 98px;
}

.contact-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  gap: 48px;
  align-items: center;
}

.contact-hero h1 {
  font-size: clamp(44px, 4.8vw, 68px);
}

.contact-hero .hero-lead {
  max-width: 620px;
}

.contact-hero .admin-inline-link {
  color: #fff2b9;
}

.contact-hero-form {
  color: var(--ink);
  box-shadow: 0 24px 72px rgba(52, 19, 0, 0.2);
}

.contact-main,
.admin-main {
  background: var(--white);
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1fr);
  gap: 48px;
  align-items: start;
  width: min(1130px, calc(100% - 44px));
  margin: 0 auto;
  padding: 96px 0;
}

.contact-form-copy {
  position: sticky;
  top: 88px;
}

.contact-form-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.admin-inline-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--orange-deep);
  font-weight: 900;
}

.contact-lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.contact-lead-form .form-wide,
.contact-lead-form button,
.contact-status {
  grid-column: 1 / -1;
}

.contact-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-status[data-type="success"] {
  color: #1a7f37;
}

.contact-status[data-type="error"] {
  color: #b50000;
}

.contact-cards-section {
  width: min(1130px, calc(100% - 44px));
  margin: 0 auto;
  padding: 86px 0 106px;
}

.contact-story-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 34px;
  align-items: start;
  margin-top: 46px;
}

.contact-story-featured,
.contact-story-row,
.story-latest-card {
  color: var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.contact-story-featured {
  display: grid;
  gap: 19px;
}

.contact-story-featured:hover,
.contact-story-row:hover,
.story-latest-card:hover {
  transform: translateY(-3px);
}

.contact-story-featured .contact-story-visual {
  min-height: 365px;
  aspect-ratio: 690 / 465;
}

.contact-story-copy,
.contact-story-row-copy,
.story-latest-copy {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.contact-story-title {
  display: block;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.24;
}

.contact-story-featured .contact-story-title {
  font-size: clamp(24px, 3vw, 34px);
}

.contact-story-meta,
.story-meta,
.story-latest-copy small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-story-summary {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.contact-story-tags,
.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-story-tags span,
.story-tags span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #3d2615;
  background: #edf2f7;
  font-size: 12px;
  font-weight: 850;
}

.contact-story-list {
  display: grid;
  gap: 18px;
}

.contact-story-row {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 116px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.contact-story-row:hover,
.story-latest-card:hover {
  border-color: rgba(255, 106, 0, 0.38);
  box-shadow: var(--shadow);
}

.contact-story-thumb {
  width: 100%;
  min-height: 96px;
  aspect-ratio: 4 / 3;
}

.contact-story-row .contact-story-title {
  padding-right: 30px;
  font-size: 17px;
}

.contact-story-number,
.story-latest-number {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: #2f6fed;
  font-size: 12px;
  font-weight: 950;
}

.contact-story-number {
  position: absolute;
  top: 9px;
  left: 116px;
  z-index: 2;
}

.story-visual {
  --visual-a: #ff8a00;
  --visual-b: #ffc43d;
  --visual-c: #ffffff;
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.74), transparent 18%),
    linear-gradient(135deg, var(--visual-a), var(--visual-b));
  box-shadow: 0 22px 58px rgba(105, 54, 0, 0.12);
  isolation: isolate;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 14% 12% 18%;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0 18%, rgba(255, 255, 255, 0.72) 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 26px 60px rgba(31, 20, 9, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.story-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 20%;
  right: 20%;
  bottom: 25%;
  height: 14%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    -44px -74px 0 -18px rgba(255, 255, 255, 0.62),
    48px -54px 0 -12px rgba(255, 255, 255, 0.52),
    -52px 42px 0 -20px rgba(33, 17, 7, 0.18),
    58px 46px 0 -18px rgba(33, 17, 7, 0.13);
}

.story-visual-about {
  --visual-a: #21b4a8;
  --visual-b: #ffd45f;
}

.story-visual-wechat {
  --visual-a: #18a058;
  --visual-b: #bdf06a;
}

.story-visual-tools {
  --visual-a: #3858e9;
  --visual-b: #7ee0ff;
}

.story-visual-platform {
  --visual-a: #ff6f3d;
  --visual-b: #ffe08a;
}

.story-visual-agency {
  --visual-a: #2f4858;
  --visual-b: #ffbd59;
}

.story-visual-delivery {
  --visual-a: #ff6f3d;
  --visual-b: #21b4a8;
}

.story-visual-media::before,
.story-visual-media::after {
  content: none;
}

.story-visual-media {
  background: var(--surface);
  border-color: var(--line);
}

.story-visual-media img,
.story-visual-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.story-page-hero {
  position: relative;
  min-height: 86px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--logo-hot), var(--logo-orange) 58%, var(--logo-amber));
}

.story-page-hero:has(.page-banner-standalone.has-banner) {
  min-height: 560px;
}

.story-page-hero > .page-banner-standalone {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  min-height: 100%;
}

.story-page-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(25, 12, 2, 0.42), rgba(25, 12, 2, 0.08) 58%, rgba(25, 12, 2, 0.36));
}

.story-page-hero > [data-site-header] {
  position: relative;
  z-index: 5;
  display: flow-root;
  padding-bottom: 18px;
  color: var(--white);
  background: transparent;
}

.story-page-main {
  padding: 54px max(22px, calc((100vw - 1180px) / 2)) 96px;
  background: var(--white);
}

.story-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.82fr);
  gap: 46px;
  align-items: center;
  padding: 18px 0 74px;
}

.story-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--orange-deep);
  font-weight: 900;
}

.story-hero-copy h1 {
  max-width: 760px;
  color: #080604;
  font-size: clamp(42px, 5.4vw, 70px);
  line-height: 1.04;
}

.story-hero-copy .story-meta {
  margin: 18px 0 14px;
}

.story-hero-media {
  min-height: 380px;
  aspect-ratio: 1 / 0.86;
  border-radius: 20px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.story-sidebar {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 28px;
}

.story-toc {
  display: none;
}

.story-toc h2,
.story-latest h2 {
  margin: 0 0 16px;
  color: #080604;
  font-size: 20px;
}

.story-toc nav {
  display: grid;
  gap: 10px;
}

.story-toc a {
  display: block;
  padding: 4px 0 4px 13px;
  border-left: 3px solid #e6edf5;
  color: #3d342e;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.48;
}

.story-toc a:hover,
.story-toc a.is-active {
  border-left-color: var(--orange);
  color: var(--orange-deep);
}

.story-latest-list {
  display: grid;
  gap: 12px;
}

.story-latest-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(105, 54, 0, 0.06);
}

.story-latest-thumb {
  min-height: 66px;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

.story-latest-copy {
  gap: 5px;
}

.story-latest-copy strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.42;
}

.story-latest-number {
  width: 22px;
  height: 22px;
}

.story-body {
  max-width: 820px;
  color: #1f1710;
  font-size: 18px;
  line-height: 1.9;
}

.story-summary {
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.72;
}

.story-body section {
  padding-bottom: 54px;
  scroll-margin-top: 92px;
}

.story-section-label {
  margin: 0 0 12px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.story-body h2 {
  margin: 0 0 22px;
  color: #080604;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
}

.story-body p {
  margin: 0 0 18px;
}

.admin-main {
  padding: 86px 0;
}

.admin-panel {
  width: min(1130px, calc(100% - 44px));
  margin: 0 auto;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.admin-summary article,
.leads-table-wrap {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.admin-summary article {
  padding: 24px;
}

.admin-summary span {
  display: block;
  color: var(--orange-deep);
  font-size: 28px;
  font-weight: 950;
}

.admin-summary p,
.admin-empty {
  color: var(--muted);
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.admin-back-button,
.admin-danger-button {
  color: var(--ink) !important;
  border-color: var(--line) !important;
  background: var(--white) !important;
}

.admin-danger-button {
  color: #b50000 !important;
}

.leads-table-wrap {
  overflow-x: auto;
}

.leads-table {
  width: 100%;
  min-width: 1060px;
  border-collapse: collapse;
}

.leads-table th,
.leads-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}

.leads-table th {
  color: var(--ink);
  background: var(--surface);
  font-weight: 950;
}

.leads-table button {
  border: 0;
  color: #b50000;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.contact-section {
  width: min(1130px, calc(100% - 44px));
  padding: 54px;
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 214, 90, 0.56), transparent 18%),
    linear-gradient(135deg, #fff7df, #ffe5a6);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.lead-form,
.login-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 158, 20, 0.24);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #4b2200;
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffaf0;
}

textarea {
  resize: vertical;
}

.custom-section {
  border-top: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 196, 61, 0.46), transparent 24%),
    linear-gradient(135deg, #7e2500, #ff5a00 54%, #ff9b00);
  color: var(--white);
  padding: 64px;
}

.custom-section .kicker,
.custom-section p {
  color: rgba(255, 255, 255, 0.78);
}

.bottom-section {
  position: relative;
  width: min(1130px, calc(100% - 44px));
  margin: 48px auto 34px;
  padding: 54px;
  border-radius: 28px;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.56), rgba(255, 196, 61, 0.16) 44%, rgba(255, 106, 0, 0.1)),
    linear-gradient(135deg, #fff7df, #ffe5a6);
  box-shadow: var(--soft-shadow);
}

.bottom-section::before {
  top: -48px;
  bottom: -34px;
  background: var(--band-white);
}

.section-anchor {
  position: absolute;
  top: -72px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1.12fr 1.22fr 1.12fr 1.12fr;
  gap: 16px;
}

.bottom-stack {
  display: grid;
  gap: 20px;
  align-content: start;
}

.bottom-panel {
  min-height: 116px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(105, 54, 0, 0.06);
}

.bottom-panel h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.bottom-panel p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.wechat-id {
  color: var(--orange-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(217, 74, 0, 0.42);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.bottom-link-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.34;
}

.bottom-link-list-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.bottom-link-list a:hover {
  color: var(--orange-deep);
}

.bottom-panel:has([data-footer-solutions-title]),
.bottom-panel:has([data-footer-applications-title]) {
  padding: 22px 24px;
}

.login-panel {
  min-height: 282px;
}

.merchant-login-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.merchant-login-form label {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  color: #4b2200;
  font-size: 16px;
  font-weight: 900;
}

.merchant-login-form input {
  height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fffaf0;
}

.merchant-login-form button {
  justify-self: center;
  min-width: 108px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #351500;
  background: var(--logo-gold);
  box-shadow: 0 12px 26px rgba(255, 111, 0, 0.22);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
}

.merchant-login-form button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.login-message {
  min-height: 20px;
  margin: -6px 0 0 !important;
  color: #b50000 !important;
  font-size: 13px !important;
  text-align: center;
}

.agency-panel {
  min-height: 426px;
}

.agency-highlight {
  display: inline-block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--white) !important;
  background: #c53030;
  font-weight: 900;
}

.download-title,
.agency-qr-tip {
  font-family: inherit;
  color: var(--ink) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.agency-qr-tip {
  margin: 45px 0 0;
}

.agency-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.28);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.agency-link:hover,
.agency-link:focus-visible {
  color: var(--orange-deep);
  border-bottom-color: var(--orange);
}

.download-title {
  margin: 28px 0 0 !important;
}

.bottom-qr {
  position: relative;
  display: grid;
  width: 132px;
  aspect-ratio: 1;
  place-items: center;
  margin: 14px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 158, 20, 0.24);
  border-radius: 14px;
  background: #fff;
}

.bottom-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legal-footer {
  padding: 44px max(22px, calc((100% - 1130px) / 2)) 34px;
  background: #361600;
}

.legal-box {
  width: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  border: 0;
  color: var(--white);
  text-align: center;
}

.legal-box p {
  margin: 0;
  padding: 4px 0;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  line-height: 1.6;
}

.legal-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 86px;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.legal-box .miit-link {
  width: 44px;
  height: 48px;
  margin-top: 8px;
  padding: 4px;
  box-sizing: border-box;
}

.legal-box img {
  width: 42px;
  height: auto;
}

.legal-box .miit-link img {
  width: 32px;
}

/* Solutions and applications detail page */
.solutions-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 34%, rgba(255, 216, 90, 0.38), transparent 28%),
    linear-gradient(118deg, #4b1700 0%, #b93500 38%, #ff6800 68%, #ffad14 100%);
}

.solutions-ad-media,
.solutions-hero-shade { position: absolute; inset: 0; }
.solutions-ad-media { overflow: hidden; }

.solutions-ad-media::before,
.solutions-ad-media::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.solutions-ad-media::before { top: -34vw; right: -20vw; width: 74vw; height: 74vw; }
.solutions-ad-media::after { right: 4vw; bottom: -28vw; width: 54vw; height: 54vw; }

.solutions-ad-glow {
  position: absolute;
  top: 11%;
  right: 4%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: rgba(255, 224, 135, 0.28);
  filter: blur(64px);
}

.solutions-hero-shade {
  z-index: 1;
  background: transparent;
}

.solutions-hero > [data-site-header] { position: relative; z-index: 5; }
.solutions-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1130px, calc(100% - 44px));
  margin: 0 auto;
  padding: 112px 0 130px;
}

.solutions-hero-inner h1 { max-width: 780px; font-size: clamp(50px, 5.4vw, 78px); }
.solutions-hero-inner .eyebrow { color: #ffe59c; letter-spacing: 0.06em; }
.solutions-hero-inner .hero-lead { max-width: 680px; }
.solutions-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.solutions-ad-dashboard {
  position: absolute;
  top: 23%;
  right: -6%;
  width: min(44vw, 620px);
  aspect-ratio: 1.48;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 40px 100px rgba(58, 14, 0, 0.36);
  transform: rotate(-3deg);
  backdrop-filter: blur(16px);
}

.ad-dashboard-top { display: flex; align-items: center; gap: 12px; height: 58px; padding: 0 20px; background: rgba(255, 249, 237, 0.98); }
.ad-dashboard-logo,
.ad-phone-mark { display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--logo-hot), var(--logo-gold)); font-weight: 950; }
.ad-dashboard-logo { width: 32px; height: 32px; border-radius: 10px; }
.ad-dashboard-logo img,
.ad-phone-mark img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.ad-dashboard-line { width: 96px; height: 9px; border-radius: 999px; background: #f0d8b6; }
.ad-dashboard-dot { width: 28px; height: 28px; margin-left: auto; border-radius: 50%; background: #ffca4e; }
.ad-dashboard-body { display: grid; grid-template-columns: 120px 1fr; height: calc(100% - 58px); }
.ad-dashboard-menu { display: grid; align-content: start; gap: 18px; padding: 34px 24px; background: #fff7e9; }
.ad-dashboard-menu span { height: 10px; border-radius: 999px; background: #eacda3; }
.ad-dashboard-menu span:first-child { background: #ff8a24; }
.ad-dashboard-content { padding: 36px; }
.ad-dashboard-chart { display: flex; align-items: end; gap: 16px; height: 58%; padding: 20px 28px 0; border-radius: 20px; background: linear-gradient(180deg, #fffaf0, #fff0ca); }
.ad-dashboard-chart i { flex: 1; height: 38%; border-radius: 10px 10px 3px 3px; background: linear-gradient(180deg, #ffce4d, #ff7100); }
.ad-dashboard-chart i:nth-child(2) { height: 68%; }
.ad-dashboard-chart i:nth-child(3) { height: 50%; }
.ad-dashboard-chart i:nth-child(4) { height: 88%; }
.ad-dashboard-chart i:nth-child(5) { height: 76%; }
.ad-dashboard-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 20px; }
.ad-dashboard-stats span { height: 62px; border-radius: 15px; background: #fff0ce; }

.solutions-ad-phone {
  position: absolute;
  z-index: 2;
  right: 16%;
  bottom: 5%;
  display: flex;
  width: 210px;
  height: 420px;
  flex-direction: column;
  align-items: center;
  padding: 32px 18px 18px;
  border: 7px solid #3d1d08;
  border-radius: 38px;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf0, #ffe8a6);
  box-shadow: 0 34px 80px rgba(57, 14, 0, 0.38);
  transform: rotate(5deg);
}

.ad-phone-speaker { position: absolute; top: 11px; width: 54px; height: 5px; border-radius: 999px; background: #6a4225; }
.ad-phone-mark { width: 58px; height: 58px; margin: 26px 0 18px; border-radius: 19px; font-size: 26px; }
.solutions-ad-phone strong { font-size: 20px; }
.solutions-ad-phone small { margin-top: 8px; color: var(--muted); text-align: center; }
.ad-phone-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; width: 100%; margin-top: 26px; }
.ad-phone-cards i { height: 76px; border-radius: 13px; background: rgba(255, 137, 22, 0.17); }

.solutions-ad-pill {
  position: absolute;
  z-index: 3;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #542000;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(77, 23, 0, 0.2);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.pill-one { top: 22%; right: 30%; }
.pill-two { right: 5%; bottom: 16%; }
.pill-three { top: 48%; right: 1%; }

.solutions-index {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 62px;
  padding: 10px 22px;
  border-bottom: 1px solid rgba(244, 215, 161, 0.78);
  background: rgba(255, 250, 240, 0.91);
  box-shadow: 0 10px 30px rgba(105, 54, 0, 0.06);
  backdrop-filter: blur(18px);
}

.solutions-index a { padding: 10px 18px; border-radius: 999px; color: var(--muted); font-weight: 900; }
.solutions-index a:hover,
.solutions-index a:focus-visible { color: var(--orange-deep); background: var(--white); }
.solutions-index span { margin-left: 12px; color: #9a7651; font-size: 14px; }

.solutions-index {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 62px;
  padding: 10px 22px;
  border-bottom: 1px solid rgba(244, 215, 161, 0.78);
  background: rgba(255, 250, 240, 0.91);
  box-shadow: 0 10px 30px rgba(105, 54, 0, 0.06);
  backdrop-filter: blur(18px);
}

.solutions-index a { padding: 10px 18px; border-radius: 999px; color: var(--muted); font-weight: 900; }
.solutions-index a:hover,
.solutions-index a:focus-visible { color: var(--orange-deep); background: var(--white); }
.solutions-index span { margin-left: 12px; color: #9a7651; font-size: 14px; }

.solutions-main { overflow: hidden; background: var(--white); }
.solutions-group { scroll-margin-top: 76px; padding: 104px 0 26px; }
.solutions-group-apps {
  margin-top: 70px;
  padding-top: 106px;
  background: radial-gradient(circle at 8% 4%, rgba(255, 196, 61, 0.2), transparent 18%), var(--band-warm);
}

.solutions-group-heading,
.solution-detail-list,
.solutions-cta { width: min(1130px, calc(100% - 44px)); margin-right: auto; margin-left: auto; }
.solutions-group-heading { max-width: 760px; margin-bottom: 54px; text-align: center; }
.solutions-group-heading h2 { color: var(--ink); }
.solutions-group-heading > p:last-child { margin: 20px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }

.solution-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  min-height: 510px;
  padding: 58px 0;
  scroll-margin-top: 80px;
  border-bottom: 1px solid rgba(241, 212, 160, 0.74);
  opacity: 0.68;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.solution-detail-row.is-in-view,
.solution-detail-row.is-targeted { opacity: 1; transform: translateY(0); }
.solution-detail-row:last-child { border-bottom: 0; }
.solution-detail-row.is-reverse .solution-detail-visual { order: 2; }
.solution-detail-row.is-reverse .solution-detail-copy { order: 1; }
.solution-detail-visual { min-width: 0; }

.solution-visual-canvas {
  position: relative;
  display: grid;
  min-height: 388px;
  place-items: center;
  overflow: hidden;
  border-radius: 32px;
  background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.72), transparent 22%), linear-gradient(135deg, var(--visual-a), var(--visual-b));
  box-shadow: 0 24px 70px rgba(140, 55, 0, 0.16);
}

.solution-visual-canvas::before,
.solution-visual-canvas::after { content: ""; position: absolute; border: 1px solid rgba(255, 255, 255, 0.44); border-radius: 50%; }
.solution-visual-canvas::before { top: -28%; right: -18%; width: 64%; aspect-ratio: 1; }
.solution-visual-canvas::after { bottom: -35%; left: -12%; width: 58%; aspect-ratio: 1; }
.tone-orange { --visual-a: #ffdf8a; --visual-b: #ff7000; }
.tone-gold { --visual-a: #fff1b0; --visual-b: #f4ad00; }
.tone-amber { --visual-a: #ffe2a2; --visual-b: #ff8f1f; }
.tone-coral { --visual-a: #ffd2ac; --visual-b: #f75d2b; }
.tone-rose { --visual-a: #ffe1c9; --visual-b: #e76b48; }
.solution-visual-number { position: absolute; top: 25px; left: 28px; display: grid; width: 48px; height: 48px; place-items: center; overflow: hidden; border-radius: 8px; background: #fff; box-shadow: 0 10px 24px rgba(120, 42, 0, 0.18); }
.solution-visual-logo { display: block; width: 100%; height: 100%; object-fit: cover; }

.solution-visual-window {
  position: relative;
  z-index: 2;
  width: 68%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 60px rgba(90, 35, 0, 0.22);
  transform: rotate(-2deg);
}

.solution-detail-row.is-reverse .solution-visual-window { transform: rotate(2deg); }
.solution-visual-toolbar { display: flex; gap: 6px; padding: 14px 16px; background: rgba(255, 247, 230, 0.94); }
.solution-visual-toolbar i { width: 7px; height: 7px; border-radius: 50%; background: #ff9a3c; }
.solution-visual-content { display: flex; min-height: 238px; flex-direction: column; align-items: center; padding: 26px; }

.solution-visual-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--logo-hot), var(--logo-gold));
  box-shadow: 0 12px 28px rgba(255, 91, 0, 0.24);
  font-size: 24px;
  font-weight: 950;
}

.solution-visual-mark-logo { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

.solution-visual-content strong { color: var(--ink); font-size: 21px; }
.solution-visual-line { width: 52%; height: 7px; margin-top: 11px; border-radius: 999px; background: #efd7b4; }
.solution-visual-line.line-long { width: 74%; margin-top: 17px; }
.solution-visual-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; width: 100%; margin-top: 21px; }
.solution-visual-cards i { height: 44px; border-radius: 10px; background: rgba(255, 148, 39, 0.14); }

.solution-visual-badge {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: #632400;
  background: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 950;
}

.solution-detail-copy { max-width: 520px; }
.solution-detail-tag { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--orange-deep); font-size: 14px; font-weight: 950; letter-spacing: 0.04em; }
.solution-detail-tag span { display: grid; width: 34px; height: 34px; place-items: center; overflow: hidden; border-radius: 6px; background: #fff; box-shadow: 0 8px 18px rgba(120, 42, 0, 0.14); letter-spacing: 0; }
.solution-logo-icon { display: block; width: 100%; height: 100%; object-fit: cover; }
.solution-detail-copy h3 { color: var(--ink); font-size: clamp(30px, 3.5vw, 46px); line-height: 1.12; }
.solution-detail-copy > p:not(.solution-detail-tag) { margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.82; }
.solution-detail-copy ul { display: flex; flex-wrap: wrap; gap: 9px; margin: 25px 0 0; padding: 0; list-style: none; }
.solution-detail-copy li { padding: 8px 12px; border: 1px solid rgba(255, 137, 22, 0.2); border-radius: 999px; color: #7c451d; background: #fff8e9; font-size: 14px; font-weight: 800; }
.solution-detail-copy > a { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--orange-deep); font-weight: 950; }
.solution-detail-copy > a span { transition: transform 0.18s ease; }
.solution-detail-copy > a:hover span { transform: translateX(4px); }
.solution-detail-row.is-targeted .solution-visual-canvas { animation: solution-target-pulse 1.1s ease; }

@keyframes solution-target-pulse {
  0%, 100% { box-shadow: 0 24px 70px rgba(140, 55, 0, 0.16); }
  45% { box-shadow: 0 0 0 8px rgba(255, 159, 10, 0.2), 0 28px 80px rgba(140, 55, 0, 0.24); }
}

.solutions-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-top: 100px;
  margin-bottom: 86px;
  padding: 54px;
  border-radius: 30px;
  background: radial-gradient(circle at 82% 18%, rgba(255, 226, 125, 0.7), transparent 28%), linear-gradient(135deg, #fff0b5, #ffd25d);
  box-shadow: var(--soft-shadow);
}

.solutions-cta h2 { color: var(--ink); font-size: clamp(30px, 4vw, 46px); }
.solutions-cta > div > p:last-child { margin: 16px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.nav-item > button[aria-current="page"] { color: var(--white); background: transparent; }

@media (prefers-reduced-motion: reduce) {
  .solution-detail-row { opacity: 1; transform: none; transition: none; }
  .solution-detail-row.is-targeted .solution-visual-canvas { animation: none; }
}

@media (max-width: 980px) {
  .solutions-hero { min-height: 760px; }
  .solutions-hero-inner { padding-top: 92px; }
  .solutions-hero-inner h1,
  .solutions-hero-inner .hero-lead { max-width: 68%; }
  .solutions-ad-dashboard { top: 30%; right: -24%; width: 68vw; }
  .solutions-ad-phone { right: 15%; bottom: 3%; width: 176px; height: 350px; }
  .pill-one { right: 20%; }
  .pill-two { right: 1%; }
  .pill-three { display: none; }
  .solution-detail-row { grid-template-columns: 1fr 1fr; gap: 36px; }
  .solution-visual-canvas { min-height: 340px; }
  .solution-visual-window { width: 78%; }
}

@media (max-width: 700px) {
  .solutions-hero { min-height: 720px; }
  .solutions-hero-shade {
    background:
      linear-gradient(180deg, rgba(50, 14, 0, 0.5), rgba(55, 15, 0, 0.74) 56%, rgba(55, 15, 0, 0.86)),
      linear-gradient(90deg, rgba(50, 14, 0, 0.45), transparent);
  }
  .solutions-hero-inner { display: flex; min-height: 628px; flex-direction: column; justify-content: flex-end; padding: 62px 0; }
  .solutions-hero-inner h1,
  .solutions-hero-inner .hero-lead { max-width: 100%; }
  .solutions-hero-inner h1 { font-size: clamp(40px, 12vw, 56px); }
  .solutions-hero-inner .hero-lead { font-size: 16px; line-height: 1.65; }
  .solutions-ad-dashboard { top: 17%; right: -34%; width: 100vw; opacity: 0.9; }
  .solutions-ad-phone { top: 18%; right: 8%; bottom: auto; width: 132px; height: 262px; border-width: 5px; border-radius: 28px; }
  .ad-phone-mark { width: 42px; height: 42px; margin: 18px 0 10px; border-radius: 14px; font-size: 20px; }
  .solutions-ad-phone strong { font-size: 15px; }
  .solutions-ad-phone small { font-size: 10px; }
  .ad-phone-cards { margin-top: 14px; }
  .ad-phone-cards i { height: 44px; }
  .solutions-ad-pill { display: none; }
  .solutions-index { justify-content: flex-start; overflow-x: auto; }
  .solutions-index span { display: none; }
  .solutions-group { padding-top: 72px; }
  .solutions-group-apps { margin-top: 42px; }
  .solutions-group-heading,
  .solution-detail-list,
  .solutions-cta { width: calc(100% - 24px); }
  .solutions-group-heading { margin-bottom: 24px; text-align: left; }
  .solution-detail-row,
  .solution-detail-row.is-reverse { grid-template-columns: 1fr; gap: 28px; min-height: 0; padding: 46px 0; }
  .solution-detail-row.is-reverse .solution-detail-visual,
  .solution-detail-row.is-reverse .solution-detail-copy { order: initial; }
  .solution-visual-canvas { min-height: 310px; border-radius: 24px; }
  .solution-visual-window,
  .solution-detail-row.is-reverse .solution-visual-window { width: 72%; transform: rotate(-2deg); }
  .solution-visual-content { min-height: 204px; padding: 20px; }
  .solution-detail-copy h3 { font-size: 32px; }
  .solution-detail-copy > p:not(.solution-detail-tag) { font-size: 16px; }
  .solutions-cta { display: grid; margin-top: 64px; margin-bottom: 56px; padding: 28px; }
  .solutions-cta .button { justify-self: start; }
}

.solution-story-main {
  overflow: hidden;
  background: #ffffff;
}

.solution-story-heading {
  width: min(1130px, calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0 34px;
  text-align: center;
}

.solution-story-heading h2 {
  color: #050505;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.06;
}

.solution-story-heading .kicker {
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.solution-story-heading > p:last-child {
  max-width: 720px;
  margin: 20px auto 0;
  color: #474747;
  font-size: 18px;
  line-height: 1.72;
}

.solution-experience-list {
  display: grid;
}

.solution-experience-row {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
  min-height: 640px;
  padding: 88px max(22px, calc((100% - 1130px) / 2));
  background: #f1f2f3;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.solution-experience-row:nth-child(even) {
  background: #ffffff;
}

.solution-experience-row.is-in-view,
.solution-experience-row.is-targeted {
  opacity: 1;
  transform: translateY(0);
}

.solution-experience-row.is-reverse .solution-experience-media {
  order: 2;
}

.solution-experience-row.is-reverse .solution-experience-copy {
  order: 1;
}

.solution-experience-media {
  margin: 0;
  min-width: 0;
}

.solution-media-frame {
  position: relative;
  aspect-ratio: 1.03;
  overflow: hidden;
  border: 1.5px solid #111111;
  border-radius: 25px;
  background: #dfe6ea;
  box-shadow: 12px 12px 0 #d9ff4f;
}

.solution-experience-row.is-reverse .solution-media-frame {
  box-shadow: 12px 12px 0 #d9ff4f;
}

.solution-media-frame img,
.solution-media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-position, center);
}

.solution-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.08)),
    linear-gradient(110deg, rgba(255, 255, 255, 0.34), transparent 42%);
  pointer-events: none;
}

.solution-experience-media figcaption {
  margin-top: 18px;
  color: #555555;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.solution-experience-copy {
  min-width: 0;
}

.solution-experience-copy h2 {
  max-width: 620px;
  color: #050505;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.08;
}

.solution-experience-copy > p:not(.solution-detail-tag) {
  max-width: 610px;
  margin: 22px 0 0;
  color: #3d3d3d;
  font-size: 17px;
  line-height: 1.78;
}

.solution-accordion {
  display: grid;
  max-width: 520px;
  gap: 8px;
  margin-top: 36px;
}

.solution-accordion-item {
  border-radius: 10px;
}

.solution-accordion-item.is-open {
  background: #dddddd;
}

.solution-accordion-button {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 20px;
  align-items: center;
  width: 100%;
  min-height: 56px;
  gap: 14px;
  padding: 14px 18px;
  border: 0;
  border-radius: 10px;
  color: #252525;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
}

.solution-accordion-button:hover,
.solution-accordion-button:focus-visible,
.solution-accordion-item.is-open .solution-accordion-button {
  background: #dddddd;
  outline: none;
}

.solution-accordion-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid #222222;
  border-radius: 6px;
}

.solution-accordion-icon::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #222222;
}

.solution-accordion-chevron {
  position: relative;
  width: 18px;
  height: 18px;
}

.solution-accordion-chevron::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #222222;
  border-bottom: 2px solid #222222;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.solution-accordion-item.is-open .solution-accordion-chevron::before {
  top: 7px;
  transform: rotate(225deg);
}

.solution-accordion-panel {
  display: none;
  padding: 0 20px 22px 62px;
}

.solution-accordion-item.is-open .solution-accordion-panel {
  display: block;
}

.solution-accordion-panel p {
  margin: 0;
  color: #4c4c4c;
  font-size: 16px;
  line-height: 1.72;
}

.solution-article-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 6px 0;
  color: var(--orange-deep);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.solution-article-link:hover,
.solution-article-link:focus-visible {
  color: var(--orange);
  border-bottom-color: var(--orange);
  transform: translateX(2px);
}

.solution-experience-row.is-targeted .solution-media-frame {
  animation: solution-target-pulse 1.1s ease;
}

body[data-page="applications"] .solutions-group-apps {
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .solution-experience-row {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .solution-experience-row.is-targeted .solution-media-frame {
    animation: none;
  }
}

@media (max-width: 980px) {
  .solution-experience-row {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 42px;
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .solution-experience-row.is-reverse .solution-experience-media,
  .solution-experience-row.is-reverse .solution-experience-copy {
    order: initial;
  }

  .solution-experience-copy h2 {
    max-width: 100%;
  }

  .solution-experience-copy > p:not(.solution-detail-tag),
  .solution-accordion {
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .solution-story-heading {
    width: calc(100% - 24px);
    padding: 64px 0 26px;
    text-align: left;
  }

  .solution-story-heading h2 {
    font-size: 34px;
  }

  .solution-story-heading > p:last-child {
    margin-left: 0;
    font-size: 16px;
  }

  .solution-experience-row {
    padding: 56px 12px 62px;
  }

  .solution-media-frame {
    border-radius: 20px;
    box-shadow: 8px 8px 0 #d9ff4f;
  }

  .solution-experience-row.is-reverse .solution-media-frame {
    box-shadow: 8px 8px 0 #d9ff4f;
  }

  .solution-experience-copy h2 {
    font-size: 32px;
  }

  .solution-accordion-button {
    grid-template-columns: 26px minmax(0, 1fr) 18px;
    gap: 12px;
    padding: 13px 14px;
    font-size: 16px;
  }

  .solution-accordion-panel {
    padding: 0 14px 18px 52px;
  }
}

/* Custom development page */
.custom-dev-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(55, 17, 0, 0.48) 0%, rgba(255, 79, 0, 0.08) 44%, rgba(77, 28, 0, 0.34) 100%),
    linear-gradient(180deg, var(--logo-hot) 0%, var(--logo-orange) 48%, var(--logo-amber) 74%, var(--logo-gold) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 9px);
}

.custom-dev-media,
.custom-dev-shade { position: absolute; inset: 0; }
.custom-dev-media {
  overflow: hidden;
  pointer-events: none;
}
.custom-dev-hero .custom-dev-media {
  display: none;
}
.contact-hero .custom-dev-media {
  z-index: 0;
}
.custom-dev-shade {
  z-index: 1;
  background: transparent;
}
.custom-dev-hero > [data-site-header] { position: relative; z-index: 5; }

.custom-dev-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1130px, calc(100% - 44px));
  margin: 0 auto;
  padding: 82px 0 92px;
}

.custom-dev-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.9fr);
  gap: 46px;
  align-items: center;
}

.custom-dev-hero-copy {
  min-width: 0;
}

.custom-dev-hero-inner h1 { max-width: 820px; font-size: clamp(50px, 5.5vw, 78px); }
.custom-dev-hero-inner .eyebrow { color: #ffd76b; letter-spacing: 0.08em; }
.custom-dev-hero-inner .hero-lead { max-width: 700px; }
.custom-dev-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.custom-dev-hero .admin-inline-link { color: #fff2b9; }
.custom-dev-hero .contact-lead-form { background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(16px); }
.custom-dev-hero #contact-form { scroll-margin-top: 88px; }

.custom-dev-orbit {
  position: absolute;
  border: 1px solid rgba(255, 202, 77, 0.2);
  border-radius: 50%;
}

.custom-dev-orbit::before,
.custom-dev-orbit::after { content: ""; position: absolute; width: 12px; height: 12px; border-radius: 50%; background: #ffbf2f; box-shadow: 0 0 24px rgba(255, 191, 47, 0.8); }
.orbit-large { top: -26%; right: -12%; width: 68vw; height: 68vw; }
.orbit-large::before { top: 18%; left: 8%; }
.orbit-large::after { right: 13%; bottom: 22%; }
.orbit-small { top: 18%; right: 3%; width: 37vw; height: 37vw; }
.orbit-small::before { top: 48%; left: -7px; }
.orbit-small::after { right: 21%; bottom: 2%; }

.custom-dev-code-card {
  position: absolute;
  top: 23%;
  right: 5%;
  width: min(45vw, 640px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(28, 16, 8, 0.82);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
  transform: rotate(-3deg);
  backdrop-filter: blur(18px);
}

.custom-dev-window-bar { display: flex; align-items: center; gap: 7px; height: 54px; padding: 0 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.05); }
.custom-dev-window-bar i { width: 8px; height: 8px; border-radius: 50%; background: #ff8b22; }
.custom-dev-window-bar i:nth-child(2) { background: #ffc43d; }
.custom-dev-window-bar i:nth-child(3) { background: #fff0bd; }
.custom-dev-window-bar span { margin-left: 10px; color: rgba(255, 255, 255, 0.5); font-family: Consolas, monospace; font-size: 13px; }
.custom-dev-code-body { min-height: 330px; padding: 42px; }
.code-line { display: block; height: 10px; margin-bottom: 16px; border-radius: 999px; background: linear-gradient(90deg, #ff8b22 0 22%, rgba(255, 255, 255, 0.24) 22%); }
.code-line.line-1 { width: 72%; }
.code-line.line-2 { width: 88%; margin-left: 26px; }
.code-line.line-3 { width: 62%; margin-left: 26px; }
.code-line.line-4 { width: 48%; }

.custom-dev-flow { display: flex; align-items: center; gap: 12px; margin-top: 48px; }
.custom-dev-flow b { display: grid; min-width: 76px; min-height: 76px; place-items: center; border: 1px solid rgba(255, 196, 61, 0.42); border-radius: 20px; color: #ffe7a3; background: rgba(255, 119, 0, 0.15); font-size: 15px; }
.custom-dev-flow i { flex: 1; height: 2px; background: linear-gradient(90deg, #ff7a00, #ffc43d); }

.custom-dev-mini-card {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 124px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  color: #2d1203;
  background: rgba(255, 245, 217, 0.9);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.custom-dev-mini-card span { color: var(--orange-deep); font-size: 20px; font-weight: 950; }
.custom-dev-mini-card small { margin-top: 4px; color: var(--muted); font-weight: 800; }
.card-api { top: 19%; right: 30%; transform: rotate(4deg); }
.card-data { right: 2%; bottom: 13%; transform: rotate(-5deg); }
.card-ai { right: 34%; bottom: 7%; transform: rotate(3deg); }

.custom-dev-main { overflow: hidden; background: var(--white); }
.custom-dev-intro,
.custom-dev-scenarios,
.custom-dev-process,
.custom-dev-cta { width: min(1130px, calc(100% - 44px)); margin-right: auto; margin-left: auto; }
.custom-dev-intro { padding: 106px 0; scroll-margin-top: 24px; }
.custom-dev-section-heading { max-width: 1100px; }
.custom-dev-section-heading h2 { color: var(--ink); }
.custom-dev-section-heading > p:last-child { margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.78; }

.custom-dev-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.custom-dev-principles article { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--soft-shadow); }
.custom-dev-principles strong { display: block; margin-bottom: 28px; color: var(--orange-deep); font-size: 30px; }
.custom-dev-principles h3 { color: var(--ink); }
.custom-dev-principles p { margin: 13px 0 0; color: var(--muted); line-height: 1.7; }

.custom-dev-capabilities { padding: 104px max(22px, calc((100% - 1130px) / 2)); background: radial-gradient(circle at 88% 8%, rgba(255, 196, 61, 0.32), transparent 20%), var(--band-warm); }
.custom-dev-capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.custom-dev-capability-grid article { position: relative; display: flex; min-height: 270px; flex-direction: column; padding: 30px; overflow: hidden; border: 1px solid rgba(255, 142, 22, 0.2); border-radius: 25px; background: rgba(255, 255, 255, 0.86); box-shadow: 0 18px 48px rgba(105, 54, 0, 0.07); }
.custom-dev-capability-grid article::after { content: ""; position: absolute; right: -42px; bottom: -52px; width: 130px; height: 130px; border-radius: 50%; background: rgba(255, 196, 61, 0.13); }
.custom-dev-capability-grid article > * { position: relative; z-index: 1; }
.custom-dev-capability-grid span { display: inline-grid; width: 42px; height: 42px; place-items: center; margin-bottom: 34px; border-radius: 14px; color: #351500; background: var(--logo-gold); font-weight: 950; }
.custom-dev-capability-grid h3 { color: var(--ink); font-size: 21px; }
.custom-dev-capability-grid p { margin: 14px 0 0; color: var(--muted); line-height: 1.68; }
.custom-dev-capability-grid small { display: block; margin-top: auto; padding-top: 20px; color: var(--orange-deep); font-weight: 850; line-height: 1.55; }

.custom-dev-scenarios { padding: 110px 0; }
.custom-dev-scenario-list { display: grid; gap: 28px; margin-top: 56px; }
.custom-dev-scenario-list article { display: grid; grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr); gap: 54px; align-items: center; padding: 24px; border: 1px solid var(--line); border-radius: 30px; background: var(--white); box-shadow: var(--soft-shadow); }
.custom-dev-scenario-list article:nth-child(even) .custom-dev-scenario-visual { order: 2; }
.custom-dev-scenario-visual { position: relative; display: flex; min-height: 290px; flex-direction: column; justify-content: flex-end; overflow: hidden; padding: 28px; border-radius: 23px; color: #fff; background: linear-gradient(145deg, var(--scene-a), var(--scene-b)); }
.custom-dev-scenario-visual::before { content: ""; position: absolute; top: -45%; right: -20%; width: 80%; aspect-ratio: 1; border: 1px solid rgba(255, 255, 255, 0.36); border-radius: 50%; }
.visual-brand { --scene-a: #ff8a00; --scene-b: #bc3500; }
.visual-trade { --scene-a: #ffbc31; --scene-b: #e65b00; }
.visual-platform { --scene-a: #f47338; --scene-b: #782500; }
.custom-dev-scenario-visual span,
.custom-dev-scenario-visual b { position: relative; z-index: 1; }
.custom-dev-scenario-visual span { color: #ffe7a3; font-size: 14px; font-weight: 900; }
.custom-dev-scenario-visual b { max-width: 300px; margin-top: 10px; font-size: 25px; line-height: 1.25; }
.custom-dev-scenario-list article > div:last-child { padding: 20px 28px; }
.custom-dev-scenario-list h3 {
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
}

.custom-dev-scenario-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.custom-dev-scenario-link:hover,
.custom-dev-scenario-link:focus-visible {
  color: var(--orange-deep);
  border-bottom-color: var(--orange);
}
.custom-dev-scenario-list p { margin: 20px 0 0; color: var(--muted); font-size: 17px; line-height: 1.8; }

.custom-dev-process { width: 100%; padding: 106px max(22px, calc((100% - 1130px) / 2)); color: #fff; background: radial-gradient(circle at 85% 20%, rgba(255, 196, 61, 0.25), transparent 24%), linear-gradient(135deg, #381400, #9d3000); }
.custom-dev-process .custom-dev-section-heading h2 { color: #fff; }
.custom-dev-process .custom-dev-section-heading .kicker { color: #ffd76b; }
.custom-dev-process ol { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 54px 0 0; padding: 0; list-style: none; }
.custom-dev-process li { padding: 26px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 22px; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(12px); }
.custom-dev-process li > span { display: block; margin-bottom: 42px; color: #ffd76b; font-size: 32px; font-weight: 950; }
.custom-dev-process h3 { color: #fff; }
.custom-dev-process li p { margin: 12px 0 0; color: rgba(255, 255, 255, 0.7); line-height: 1.65; }

.custom-dev-cta { display: flex; align-items: center; justify-content: space-between; gap: 50px; margin-top: 96px; margin-bottom: 86px; padding: 54px; border-radius: 30px; background: radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.5), transparent 22%), linear-gradient(135deg, #fff0b5, #ffc43d); box-shadow: var(--soft-shadow); }
.custom-dev-cta > div { max-width: 750px; }
.custom-dev-cta h2 { color: var(--ink); font-size: clamp(30px, 4vw, 48px); }
.custom-dev-cta > div > p:last-child { margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.72; white-space: nowrap; }
.custom-dev-cta .button { white-space: nowrap; }

@media (max-width: 980px) {
  .custom-dev-hero-layout { grid-template-columns: 1fr; }
  .custom-dev-hero-inner h1,
  .custom-dev-hero-inner .hero-lead { max-width: 100%; }
  .custom-dev-code-card { top: 29%; right: -22%; width: 68vw; }
  .card-api { right: 18%; }
  .card-ai { right: 18%; }
  .custom-dev-capability-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-dev-scenario-list article { grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr); gap: 24px; }
  .custom-dev-process ol { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .custom-dev-hero { min-height: 0; }
  .custom-dev-shade {
    background:
      linear-gradient(90deg, rgba(56, 19, 0, 0.62), rgba(255, 106, 0, 0.14) 58%, rgba(64, 21, 0, 0.42)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(255, 255, 255, 0.04) 40%, rgba(0, 0, 0, 0.12));
  }
  .custom-dev-hero-inner { padding: 60px 0; }
  .custom-dev-hero-inner h1,
  .custom-dev-hero-inner .hero-lead { max-width: 100%; }
  .custom-dev-hero-inner h1 { font-size: clamp(40px, 12vw, 55px); }
  .custom-dev-hero-inner .hero-lead { font-size: 16px; line-height: 1.66; }
  .custom-dev-code-card { top: 15%; right: -38%; width: 112vw; opacity: 0.86; }
  .custom-dev-code-body { min-height: 240px; padding: 28px; }
  .custom-dev-flow { margin-top: 28px; }
  .custom-dev-flow b { min-width: 58px; min-height: 58px; }
  .custom-dev-mini-card { display: none; }
  .custom-dev-intro,
  .custom-dev-scenarios,
  .custom-dev-cta { width: calc(100% - 24px); }
  .custom-dev-intro,
  .custom-dev-scenarios { padding: 72px 0; }
  .custom-dev-section-heading > p:last-child { font-size: 16px; }
  .custom-dev-principles,
  .custom-dev-capability-grid,
  .custom-dev-process ol { grid-template-columns: 1fr; }
  .custom-dev-principles { margin-top: 34px; }
  .custom-dev-capabilities,
  .custom-dev-process { padding: 72px 12px; }
  .custom-dev-capability-grid { margin-top: 34px; }
  .custom-dev-scenario-list { margin-top: 34px; }
  .custom-dev-scenario-list article { grid-template-columns: 1fr; gap: 12px; padding: 14px; }
  .custom-dev-scenario-list article:nth-child(even) .custom-dev-scenario-visual { order: initial; }
  .custom-dev-scenario-visual { min-height: 250px; }
  .custom-dev-scenario-list article > div:last-child { padding: 18px 12px 24px; }
  .custom-dev-process li > span { margin-bottom: 24px; }
  .custom-dev-cta { display: grid; margin-top: 64px; margin-bottom: 56px; padding: 28px; }
  .custom-dev-cta > div > p:last-child { white-space: normal; }
  .custom-dev-cta .button { justify-self: start; }
}

.site-footer {
  margin-top: 40px;
  padding: 56px max(22px, calc((100% - 1130px) / 2)) 34px;
  color: rgba(255, 255, 255, 0.82);
  background: #361600;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0;
}

.legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    width: min(100% - 28px, 1220px);
  }

  .brand-text {
    font-size: 22px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tagline {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    background: rgba(31, 20, 9, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .nav-item > button {
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav .mega-menu,
  .site-nav .mega-menu.is-wide {
    display: none;
  }

  .hero-inner {
    min-height: 0;
    padding-top: 86px;
  }

  .subpage-hero-inner {
    padding-top: 86px;
  }

  .feature-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-system,
  .contact-section,
  .contact-hero-layout,
  .contact-form-section,
  .login-section,
  .bottom-grid,
  .help-category-layout,
  .help-article-card,
  .open-store-layout,
  .open-store-support,
  .word-page-card,
  .word-page-card:nth-child(even),
  .payment-layout,
  .single-page-layout {
    grid-template-columns: 1fr;
  }

  .open-store-layout .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .word-page-card:nth-child(even) > div:first-child {
    order: 0;
  }

  .showcase-head {
    grid-template-columns: 1fr;
  }

  .brand-showcase-head {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .auto-showcase[aria-label="工厂批发贸易手动滑动展示"] .showcase-head {
    grid-template-columns: 1fr;
  }

  .brand-showcase-images {
    gap: 24px;
  }

  .brand-showcase-image {
    height: min(410px, 37vw);
  }

  .brand-showcase-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bottom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .help-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-hero-inner {
    padding-top: 68px;
  }

  .contact-form-copy {
    position: static;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-story-showcase,
  .story-article-hero,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .contact-story-featured .contact-story-visual,
  .story-hero-media {
    min-height: min(390px, 52vw);
  }

  .story-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    align-items: start;
  }

  .help-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 640px;
  }

  .subpage-hero {
    min-height: 560px;
  }

  .site-header {
    padding-top: 16px;
  }

  .brand-mark {
    width: 112px;
    height: 36px;
  }

  .hero-inner,
  .subpage-hero-inner,
  .solution-section,
  .feature-section,
  .brand-system,
  .steps-section,
  .contact-section,
  .custom-section,
  .login-section {
    width: calc(100% - 24px);
    max-width: 1130px;
  }

  .hero-inner {
    padding: 72px 0 74px;
  }

  .subpage-hero-inner {
    padding: 72px 0 74px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.12;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead,
  .solution-copy p {
    font-size: 16px;
  }

  .hero-summary {
    font-size: 18px;
    line-height: 1.6;
  }

  .home-tabs {
    justify-content: flex-start;
  }

  .solution-section {
    padding-top: 54px;
  }

  .solution-gallery {
    min-height: 430px;
    margin-top: 34px;
  }

  .word-page-grid {
    gap: 22px;
    margin-top: 34px;
  }

  .word-page-card,
  .payment-layout,
  .single-page-layout {
    padding: 22px;
    border-radius: 18px;
  }

  .payment-showcase-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .payment-showcase-head > div > p:last-child {
    font-size: 16px;
  }

  .payment-showcase-more {
    justify-self: start;
  }

  .payment-carousel {
    width: calc(100vw - 24px);
    margin-top: 34px;
    margin-left: calc(50% - 50vw + 12px);
  }

  .payment-carousel-stage {
    height: min(550px, calc((100vw - 48px) * 1.2791));
  }

  .payment-slide {
    margin-left: max(-215px, calc((48px - 100vw) / 2));
  }

  .payment-slide.is-prev {
    opacity: 0.52;
    transform: translateX(-78%) scale(0.76);
  }

  .payment-slide.is-next {
    opacity: 0.52;
    transform: translateX(78%) scale(0.76);
  }

  .payment-slide-copy {
    padding: 22px;
  }

  .payment-slide-copy h3 {
    font-size: 21px;
  }

  .page-image {
    min-height: 240px;
  }

  .auto-showcase {
    margin-top: 0;
    padding: 40px 0 46px;
  }

  .brand-showcase {
    padding: 48px 0 52px;
  }

  .showcase-head {
    width: min(100% - 24px, 980px);
    margin-bottom: 28px;
  }

  .brand-showcase-head {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .brand-showcase-more {
    justify-self: start;
  }

  .brand-showcase-content {
    width: calc(100% - 24px);
  }

  .brand-showcase-images {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .brand-showcase-image {
    height: auto;
  }

  .brand-showcase-image-wide {
    aspect-ratio: 645 / 410;
  }

  .brand-showcase-image-narrow {
    aspect-ratio: 387 / 410;
  }

  .brand-showcase-features {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
  }

  .marquee-track {
    gap: 14px;
    padding: 4px 18px 8px;
    animation-duration: 44s;
  }

  .showcase-card {
    flex-basis: 405px;
    width: 405px;
    height: 550px;
    min-height: 0;
  }

  .text-card {
    padding: 22px;
  }

  .image-card.tall {
    width: 38%;
  }

  .image-card.wide {
    left: 28%;
    width: 58%;
  }

  .image-card.second {
    right: -10%;
    bottom: 16px;
  }

  .feature-grid,
  .steps-grid,
  .help-featured-grid,
  .help-category-grid,
  .contact-lead-form,
  .contact-info-grid,
  .admin-summary,
  .open-store-layout .steps-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-section,
  .contact-cards-section,
  .admin-panel {
    width: calc(100% - 24px);
  }

  .contact-form-section,
  .contact-cards-section,
  .admin-main {
    padding: 58px 0;
  }

  .contact-story-showcase {
    gap: 30px;
    margin-top: 34px;
  }

  .contact-story-featured .contact-story-visual {
    min-height: 240px;
  }

  .contact-story-featured .contact-story-title {
    font-size: 25px;
  }

  .contact-story-row {
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 12px;
    min-height: 100px;
    padding: 8px;
  }

  .contact-story-thumb {
    min-height: 84px;
  }

  .contact-story-row .contact-story-title {
    padding-right: 0;
    font-size: 15px;
  }

  .contact-story-number {
    top: 7px;
    left: 84px;
  }

  .story-page-hero {
    min-height: 76px;
  }

  .story-page-hero:has(.page-banner-standalone.has-banner) {
    min-height: 560px;
  }

  .story-page-hero > [data-site-header] {
    padding-bottom: 10px;
  }

  .story-page-main {
    padding: 38px 12px 68px;
  }

  .story-article-hero {
    gap: 28px;
    padding-bottom: 48px;
  }

  .story-hero-copy h1 {
    font-size: clamp(36px, 10vw, 46px);
  }

  .story-hero-media {
    min-height: 250px;
  }

  .story-layout {
    gap: 34px;
  }

  .story-sidebar {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .story-latest-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .story-body {
    font-size: 16px;
  }

  .story-summary {
    margin-bottom: 34px;
    font-size: 18px;
  }

  .contact-hero {
    min-height: 0;
  }

  .contact-hero-inner {
    padding-top: 46px;
    padding-bottom: 64px;
  }

  .contact-lead-form {
    padding: 22px;
  }

  .help-home,
  .help-category {
    width: calc(100% - 24px);
    padding: 58px 0;
  }

  .help-search {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .help-search button {
    min-height: 44px;
  }

  .help-contact-strip {
    display: grid;
    padding: 24px;
  }

  .help-category-card {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 20px;
  }

  .contact-section,
  .brand-system,
  .custom-section,
  .open-store-support,
  .bottom-section {
    padding: 28px;
    border-radius: 22px;
  }

  .bottom-section {
    width: calc(100% - 24px);
  }

  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .bottom-link-list-two {
    grid-template-columns: 1fr;
  }

  .bottom-panel,
  .login-panel,
  .agency-panel {
    min-height: 0;
  }

  .merchant-login-form label {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .bottom-qr {
    width: min(128px, 100%);
  }

  .hero-media span,
  .hero-media small {
    display: none;
  }
}

/* Enlarge the Appflow chat launcher without changing the chat window. */
#appflow-chat-container > :not(.appflow-chatbot-box),
#appflow-chat-container > :not(.appflow-chatbot-box) > * {
  width: 100px !important;
  height: 100px !important;
}

/* 大图配置加载或已配置时，不露出原有 hero 的橙色备用背景。 */
:where(html.page-banners-pending, body.page-banners-pending,
  html.page-banners-configured, body.page-banners-configured)
  :is(.hero, .subpage-hero, .solutions-hero, .custom-dev-hero, .story-page-hero) {
  background: #111 !important;
}
