:root {
  --ink: #071827;
  --muted: #5c7180;
  --light: #f5f9fb;
  --line: #dbe8ee;
  --white: #ffffff;
  --teal: #004f63;
  --teal-2: #0e8aa0;
  --cyan: #1ec7d6;
  --green: #30bd78;
  --amber: #ff9f1c;
  --shadow: 0 18px 50px rgba(7, 35, 49, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--light);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
}

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

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 72px;
  padding: 0 6vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(7, 24, 39, 0.08);
  backdrop-filter: blur(16px);
}

.mobile-quick-nav {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 22px;
  font-weight: 900;
}

.brand-logo {
  width: 38px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex: 1;
  color: #334a59;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--teal);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(0, 79, 99, 0.18);
}

.button.secondary {
  color: var(--teal);
  background: #fff;
  border: 1px solid rgba(0, 79, 99, 0.35);
}

.button.amber {
  color: #fff;
  background: var(--amber);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1.12fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 72px 6vw 58px;
  background:
    radial-gradient(circle at 74% 16%, rgba(30, 199, 214, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f2f8fb 76%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
}

.lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hero-proof span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 10px;
  color: #385365;
  background: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.hero-workbench {
  min-width: 0;
}

.integration-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 34px 18px;
}

.integration-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 35, 49, 0.08);
  font-weight: 900;
}

.workbench-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr 210px;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(0, 79, 99, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.workbench-side {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px 16px;
  color: #fff;
  background: var(--teal);
}

.workbench-side strong {
  margin-bottom: 8px;
}

.workbench-side span {
  font-size: 13px;
  font-weight: 800;
}

.workbench-main {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  padding: 28px;
}

.chat-demo,
.flow-demo,
.notice-stack article,
.metric-row,
.post-preview,
.phone-preview,
.lead-form,
.service-card,
.input-card,
.output-card,
.score-card,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.chat-demo {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
}

.chat-line {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
}

.chat-line.bot {
  color: #2f5362;
  background: #eaf6f7;
}

.chat-line.user {
  justify-self: end;
  color: #fff;
  background: var(--teal-2);
}

.flow-demo {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px;
}

.flow-demo span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  min-width: 110px;
  padding: 0 12px;
  border: 1px solid #cadce3;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.flow-demo i {
  width: 1px;
  height: 20px;
  background: var(--line);
}

.notice-stack {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px 20px;
  background: #f6fbfc;
}

.notice-stack article {
  padding: 16px;
  box-shadow: 0 10px 28px rgba(7, 35, 49, 0.08);
}

.notice-stack p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.notice-stack span {
  color: var(--teal-2);
  font-size: 13px;
  font-weight: 900;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 70%;
  margin: -30px auto 0;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(7, 35, 49, 0.12);
}

.metric-row span {
  padding: 14px 18px;
  color: var(--muted);
  background: #fff;
  font-size: 13px;
}

.metric-row strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
}

.service-section,
.showroom,
.lead-section,
.process-section {
  padding: 78px 6vw;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 320px;
  padding: 34px 28px;
  box-shadow: 0 14px 36px rgba(7, 35, 49, 0.08);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--teal);
  background: #e5f7fa;
  font-weight: 900;
}

.service-card h2 {
  font-size: 24px;
}

.service-card p,
.section-heading p,
.input-card p,
.output-card p,
.process-grid p,
.lead-copy p {
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 900;
}

.trust-section {
  padding: 78px 6vw;
  background: #f8fcfd;
}

.capability-section {
  padding: 78px 6vw;
  background: #fff;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.capability-grid article {
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.42fr) 1fr;
  gap: 22px;
  align-items: start;
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfd;
}

.capability-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.capability-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.capability-grid ul {
  grid-column: 3;
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #385365;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 35, 49, 0.06);
}

.trust-grid strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal-2);
  font-size: 13px;
}

.trust-grid p {
  color: var(--muted);
}

.showroom {
  background: #fff;
}

.section-heading.centered {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.industry-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
}

.industry-tabs button {
  min-height: 56px;
  border: 0;
  border-right: 1px solid var(--line);
  color: #466273;
  background: #fbfdfe;
  font-weight: 900;
}

.industry-tabs button:last-child {
  border-right: 0;
}

.industry-tabs button.is-active {
  color: #fff;
  background: var(--teal);
}

.industry-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.88fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
}

.input-card,
.output-card,
.score-card {
  padding: 24px;
}

.input-card button {
  width: 100%;
  min-height: 46px;
  margin: 14px 0;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.intent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.intent-tags span {
  padding: 7px 10px;
  border-radius: 8px;
  color: #41606d;
  background: #edf6f8;
  font-size: 13px;
  font-weight: 800;
}

.post-preview {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 14px;
  background: #fbfdfe;
}

.car-thumb {
  min-height: 120px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 79, 99, 0.2), transparent),
    url("/assets/hero-agent.png") center / cover;
}

.score-card strong {
  display: block;
  margin: 6px 0;
  color: var(--teal);
  font-size: 54px;
  line-height: 1;
}

.score-card span {
  color: var(--green);
  font-weight: 900;
}

.score-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1fr) minmax(250px, 0.52fr);
  gap: 34px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(30, 199, 214, 0.08), transparent 38%),
    #f6fbfc;
}

.lead-copy {
  max-width: 430px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #375264;
  font-weight: 900;
}

.lead-form .wide {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(30, 199, 214, 0.18);
}

.lead-submit {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin-bottom: 0;
  color: var(--teal);
  font-weight: 800;
}

.privacy-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 13px;
  font-weight: 500 !important;
}

.privacy-consent input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 3px;
}

.privacy-consent a {
  color: var(--teal);
  font-weight: 900;
}

.phone-preview {
  min-height: 390px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.phone-top {
  margin: -18px -18px 18px;
  padding: 16px 18px;
  color: #fff;
  border-radius: 8px 8px 0 0;
  background: var(--teal);
  font-weight: 900;
}

.phone-preview article {
  padding: 18px;
  border-radius: 8px;
  background: #f7fbfa;
}

.phone-preview p {
  margin-bottom: 8px;
  color: var(--muted);
}

.phone-preview span {
  color: var(--teal-2);
  font-weight: 900;
}

.process-section {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.process-grid article {
  padding: 26px;
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.closing-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 54px 6vw;
  color: #fff;
  background: linear-gradient(135deg, #00394d, #005f76);
  text-align: center;
}

.closing-cta h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 36px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(160px, 0.7fr));
  gap: 42px;
  padding: 48px 6vw 54px;
  color: rgba(255, 255, 255, 0.78);
  background: #062635;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 8px;
}

.site-footer strong {
  color: #fff;
}

.footer-brand {
  color: #fff;
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 300px;
  margin-bottom: 0;
}

.simple-page,
.solution-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 54px 22px 72px;
}

.simple-page h1,
.solution-hero h1 {
  margin-top: 54px;
}

.simple-page h2 {
  margin-top: 34px;
  font-size: 26px;
}

.simple-page p {
  color: var(--muted);
}

.simple-page pre {
  overflow-x: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.simple-page code {
  color: var(--teal);
  font-family: Consolas, "Courier New", monospace;
}

.not-found-page {
  min-height: 72vh;
}

.solution-hero {
  margin-top: 54px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(30, 199, 214, 0.1), transparent 42%),
    #fff;
  box-shadow: var(--shadow);
}

.solution-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.solution-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.solution-grid p {
  color: var(--muted);
}

.consult-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.consult-panel {
  width: min(390px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(0, 79, 99, 0.22);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(7, 35, 49, 0.24);
}

.consult-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: #fff;
  background: var(--teal);
  cursor: grab;
  user-select: none;
}

.consult-header strong,
.consult-header span {
  display: block;
}

.consult-header span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.consult-icon-button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  font-size: 22px;
  line-height: 1;
}

.consult-body {
  padding: 14px;
}

.consult-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  height: 242px;
  overflow-y: auto;
  padding: 4px 4px 10px;
}

.consult-message {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.consult-message.bot {
  justify-self: start;
  color: #30464d;
  background: #eef7f8;
}

.consult-message.user {
  justify-self: end;
  color: #fff;
  background: var(--teal);
}

.consult-message.loading {
  opacity: 0.72;
}

.consult-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0 12px;
}

.consult-quick button,
.wechat-copy,
.wechat-mail {
  min-height: 34px;
  border: 1px solid rgba(0, 79, 99, 0.18);
  border-radius: 8px;
  color: var(--teal);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.consult-quick button {
  padding: 0 10px;
}

.consult-form {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 8px;
}

.wechat-mini-form {
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 8px;
}

.consult-form input,
.wechat-mini-form input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.consult-form button,
.wechat-mini-form button {
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.consult-wechat {
  display: grid;
  gap: 12px;
}

.wechat-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfa;
}

.wechat-card img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.wechat-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.wechat-copy,
.wechat-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
}

.wechat-copy {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.wechat-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.consult-rail {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.consult-rail-button {
  min-width: 94px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(0, 79, 99, 0.18);
  border-radius: 8px;
  color: var(--teal);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(7, 35, 49, 0.12);
  font-weight: 900;
}

.consult-rail-button.primary {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.consult-rail-button.slim {
  min-width: 42px;
  width: 42px;
  padding: 0;
  font-size: 20px;
}

.consult-widget.has-pulse .consult-rail-button.primary {
  animation: consultPulse 1.9s ease-in-out 2;
}

.consult-widget.is-dragging .consult-header {
  cursor: grabbing;
}

@keyframes consultPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

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

  .site-header {
    justify-content: space-between;
  }

  .hero,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .trust-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-panel {
    grid-template-columns: 1fr;
  }

  .phone-preview {
    max-width: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .mobile-quick-nav {
    position: sticky;
    top: 64px;
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border-bottom: 1px solid var(--line);
    background: var(--line);
  }

  .mobile-quick-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    color: #385365;
    background: rgba(255, 255, 255, 0.94);
    font-size: 13px;
    font-weight: 900;
  }

  .brand {
    font-size: 19px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero,
  .service-section,
  .showroom,
  .lead-section,
  .process-section {
    padding: 48px 18px;
  }

  h1 {
    font-size: 38px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-proof,
  .integration-row,
  .service-grid,
  .trust-grid,
  .industry-tabs,
  .lead-form,
  .process-grid,
  .site-footer,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .workbench-card {
    grid-template-columns: 1fr;
  }

  .workbench-side {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow-x: auto;
  }

  .workbench-main {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .notice-stack {
    padding: 18px;
  }

  .metric-row {
    width: 100%;
    margin-top: 14px;
  }

  .post-preview {
    grid-template-columns: 1fr;
  }

  .lead-form .wide {
    grid-column: auto;
  }

  .closing-cta {
    flex-direction: column;
  }

  .consult-widget {
    right: 14px !important;
    bottom: 18px !important;
    left: auto;
    justify-items: end;
  }

  .consult-widget.is-open {
    top: 78px;
    right: 14px !important;
    bottom: 14px !important;
    left: 14px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
  }

  .consult-widget.is-open .consult-panel {
    width: 100%;
    max-height: calc(100dvh - 150px);
    display: flex;
    flex-direction: column;
  }

  .consult-widget.is-open .consult-body {
    min-height: 0;
    overflow: auto;
  }

  .consult-header {
    cursor: default;
  }

  .consult-widget.is-open .consult-rail {
    grid-template-columns: 1fr 1fr 42px;
    width: 100%;
  }

  .consult-widget:not(.is-open) .consult-rail {
    grid-template-columns: 1fr;
    width: auto;
  }

  .consult-rail-button {
    min-width: 72px;
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  .consult-widget:not(.is-open) .consult-rail-button.slim {
    display: none;
  }

  .consult-widget:not(.is-open) .consult-rail-button {
    min-width: 76px;
  }

  .consult-messages {
    height: min(190px, 28dvh);
  }

  .wechat-mini-form {
    grid-template-columns: 1fr;
  }

  .capability-grid article {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .capability-grid ul {
    grid-column: auto;
  }
}
