/* wechatapi.net 首页 — 企业智能会话入口 / 无视频 / 无旧首屏素材 */
:root {
  --nex-bg0: #03060d;
  --nex-bg1: #070b14;
  /* 整页与首屏共用同一套底色，避免滚动时黑/灰分块 */
  --nex-hero-base-bg:
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.1), transparent 30%),
    radial-gradient(circle at 80% 25%, rgba(167, 139, 250, 0.12), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(34, 211, 238, 0.08), transparent 36%),
    linear-gradient(180deg, #05070b 0%, #060912 48%, #04060a 100%);
  --nex-surface: rgba(255, 255, 255, 0.045);
  --nex-border: rgba(255, 255, 255, 0.09);
  --nex-text: rgba(255, 255, 255, 0.9);
  --nex-muted: rgba(255, 255, 255, 0.58);
  --nex-dim: rgba(255, 255, 255, 0.38);
  --nex-cyan: #38bdf8;
  --nex-violet: #a78bfa;
  --nex-blue: #3b82f6;
}

/* 首页根容器：与首屏同一套渐变，footer 等区域不再露纯黑或另一块灰 */
.mx-auto.w-full.bg-black {
  background: var(--nex-hero-base-bg);
}

.nex-hero-wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.5rem 1.25rem 4rem;
  overflow: hidden;
  isolation: isolate;
  /* 基底渐变由外层 .mx-auto.w-full.bg-black 统一绘制，此处透明以保证整页连续 */
  background: transparent;
}

.nex-hero-wrap::before,
.nex-hero-wrap::after {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
}

.nex-hero-wrap::before {
  background:
    radial-gradient(circle at 18% 30%, rgba(56, 189, 248, 0.18), transparent 20%),
    radial-gradient(circle at 78% 22%, rgba(99, 102, 241, 0.18), transparent 24%),
    radial-gradient(circle at 62% 78%, rgba(34, 211, 238, 0.12), transparent 22%);
  filter: blur(40px);
  animation: heroGlowFloat 14s ease-in-out infinite alternate;
}

.nex-hero-wrap::after {
  background: linear-gradient(
    115deg,
    transparent 15%,
    rgba(255, 255, 255, 0.03) 35%,
    rgba(56, 189, 248, 0.06) 50%,
    rgba(255, 255, 255, 0.02) 65%,
    transparent 85%
  );
  transform: translateX(-20%);
  animation: heroSweep 12s linear infinite;
  opacity: 0.9;
  z-index: 1;
}

@keyframes heroGlowFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, -12px, 0) scale(1.04);
  }
}

@keyframes heroSweep {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(30%);
  }
}

@media (min-width: 768px) {
  .nex-hero-wrap {
    min-height: min(100vh, 900px);
    padding-top: 6.5rem;
  }
}

.nex-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.22) 72%, transparent 100%);
  opacity: 0.22;
  animation: nex-hero-bg-drift 28s linear infinite;
}

@keyframes nex-hero-bg-drift {
  0% {
    transform: perspective(520px) rotateX(58deg) translateY(0);
  }
  100% {
    transform: perspective(520px) rotateX(58deg) translateY(44px);
  }
}

.nex-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}

.nex-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.nex-hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .nex-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

/* Hero 右侧：流程控制台面板 */
.nex-hero-grid > div:first-child {
  position: relative;
  z-index: 3;
}

.nex-hero-panel {
  position: relative;
  width: 100%;
  max-width: min(100%, 420px);
  margin-left: auto;
  margin-right: auto;
  min-height: 280px;
  isolation: isolate;
}

@media (min-width: 1024px) {
  .nex-hero-panel {
    margin-right: 0;
    margin-left: auto;
  }
}

.nex-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid var(--nex-border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nex-muted);
  margin-bottom: 1.15rem;
}
.nex-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nex-cyan);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.65);
}

.nex-h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1rem;
}

.nex-lead {
  font-size: 1rem;
  line-height: 1.68;
  color: var(--nex-muted);
  max-width: 36.5rem;
  margin: 0 0 1.65rem;
}

.nex-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.nex-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.45rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nex-btn:active { transform: scale(0.98); }

.nex-btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #6366f1 45%, #7c3aed 100%);
  color: #fff;
  box-shadow: 0 4px 28px rgba(99, 102, 241, 0.35);
}
.nex-btn-primary:hover {
  box-shadow: 0 8px 36px rgba(124, 58, 237, 0.4);
}

.nex-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--nex-border);
  color: #fff;
}
.nex-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nex-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.15rem;
  font-size: 0.8125rem;
  color: var(--nex-dim);
}
.nex-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nex-trust span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--nex-violet);
  box-shadow: 0 0 8px rgba(167, 139, 250, 0.5);
}

.nex-kicker-plain {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
}

.nex-lead-tight {
  margin-top: -0.75rem;
  margin-bottom: 1.45rem;
}

/* Hero 右侧：控制台流程 */
.nex-console {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--nex-border);
  background: linear-gradient(165deg, rgba(12, 18, 32, 0.92), rgba(3, 6, 13, 0.96));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 28px 90px rgba(0, 0, 0, 0.5);
  min-height: 320px;
}
.nex-console::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(56, 189, 248, 0.04) 100%);
  pointer-events: none;
}
.nex-console-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--nex-border);
  background: rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
.nex-console-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.nex-console-dot:nth-child(1) { background: rgba(248, 113, 113, 0.55); }
.nex-console-dot:nth-child(2) { background: rgba(250, 204, 21, 0.5); }
.nex-console-dot:nth-child(3) { background: rgba(74, 222, 128, 0.45); }
.nex-console-title {
  margin-left: auto;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.nex-console-body {
  padding: 1.35rem 1.15rem 1.5rem;
  position: relative;
  z-index: 1;
}
.nex-console-step {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.nex-console-step-glow {
  border-color: rgba(56, 189, 248, 0.22);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(99, 102, 241, 0.06));
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.08);
}
.nex-console-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.35rem;
}
.nex-console-mono {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: rgba(56, 189, 248, 0.85);
  line-height: 1.4;
}
.nex-console-bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.nex-console-bar-fill {
  display: block;
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--nex-cyan), var(--nex-violet));
  animation: nex-bar-pulse 2.8s ease-in-out infinite;
}
.nex-console-bar-fill-slow {
  animation-duration: 3.6s;
  animation-delay: -0.5s;
}
@keyframes nex-bar-pulse {
  0%, 100% { opacity: 0.75; filter: brightness(1); }
  50% { opacity: 1; filter: brightness(1.15); }
}
.nex-console-arrow {
  text-align: center;
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.85rem;
  padding: 0.35rem 0;
  line-height: 1;
}

.nex-console--flow {
  min-height: auto;
}
.nex-console-body--flow {
  padding: 1rem 0.95rem 1.15rem;
}
.nex-console-body--flow .nex-console-step {
  padding: 0.58rem 0.75rem;
}
.nex-console-body--flow .nex-console-label {
  font-size: 0.62rem;
  margin-bottom: 0.25rem;
}
.nex-console-body--flow .nex-console-mono {
  font-size: 0.65rem;
  margin-bottom: 0.38rem;
}
.nex-console-body--flow .nex-console-arrow {
  padding: 0.12rem 0;
  font-size: 0.72rem;
}

/* 右侧拓扑面板（旧，保留类名防遗留引用） */
.nex-panel {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--nex-border);
  background: linear-gradient(155deg, rgba(15, 23, 42, 0.75), rgba(3, 6, 13, 0.92));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.25rem 1.15rem;
  min-height: 300px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 80px rgba(0, 0, 0, 0.45);
}
.nex-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08), transparent 65%);
  pointer-events: none;
}

.nex-svg-topo {
  width: 100%;
  height: auto;
  display: block;
}
.nex-svg-topo .nex-flow-line {
  fill: none;
  stroke: url(#nex-grad-line);
  stroke-width: 1.2;
  stroke-dasharray: 6 4;
  opacity: 0.55;
  animation: nex-dash 14s linear infinite;
}
.nex-svg-topo .nex-node {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(56, 189, 248, 0.35);
  stroke-width: 1;
}
.nex-svg-topo .nex-node-core {
  fill: rgba(99, 102, 241, 0.35);
  filter: blur(0.5px);
}

@keyframes nex-dash {
  to { stroke-dashoffset: -80; }
}

.nex-panel-caption {
  margin-top: 0.85rem;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nex-dim);
  text-align: center;
}

.nex-page {
  position: relative;
  z-index: 5;
  background: transparent;
  color: var(--nex-text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.nex-section {
  padding: 4.25rem 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .nex-section { padding: 5.25rem 1.5rem; }
}

.nex-head {
  max-width: 46rem;
  margin-bottom: 2.25rem;
}
.nex-head .nex-h2 {
  max-width: 52rem;
}
.nex-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nex-violet);
  margin: 0 0 0.45rem;
}
.nex-h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}
.nex-sub {
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--nex-muted);
  margin: 0;
}

.nex-cards {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .nex-cards--2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .nex-cards--3 { grid-template-columns: repeat(3, 1fr); }
}

.nex-card {
  border-radius: 16px;
  border: 1px solid var(--nex-border);
  background: var(--nex-surface);
  padding: 1.35rem 1.2rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nex-card:hover {
  border-color: rgba(56, 189, 248, 0.22);
  background: rgba(255, 255, 255, 0.06);
}
.nex-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
}
.nex-card p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--nex-muted);
  margin: 0;
}

.nex-pain {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.nex-pain li {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border-left: 3px solid rgba(99, 102, 241, 0.55);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--nex-muted);
}
.nex-pain strong {
  color: #fff;
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.nex-arch {
  border-radius: 18px;
  border: 1px solid var(--nex-border);
  background: rgba(255, 255, 255, 0.025);
  padding: 1.5rem 1.25rem;
}
.nex-arch-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.nex-arch-row {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 768px) {
  .nex-arch-row {
    grid-template-columns: repeat(5, 1fr);
  }
}
.nex-arch-cell {
  padding: 0.95rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--nex-border);
  background: rgba(3, 6, 13, 0.65);
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--nex-muted);
}
.nex-arch-cell h4 {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nex-cyan);
}
.nex-arch-cell ul {
  margin: 0;
  padding-left: 1rem;
}
.nex-arch-cell li { margin-bottom: 0.2rem; }
.nex-arch-note {
  margin: 1.1rem 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.55;
}

.nex-industry {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .nex-industry { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .nex-industry { grid-template-columns: repeat(3, 1fr); }
}

.nex-ind {
  border-radius: 14px;
  border: 1px solid var(--nex-border);
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
}
.nex-ind h3 {
  font-size: 0.95rem;
  color: #fff;
  margin: 0 0 0.65rem;
}
.nex-ind .row {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--nex-muted);
  margin-bottom: 0.45rem;
}
.nex-ind .lab {
  color: var(--nex-dim);
  display: inline-block;
  min-width: 2.4rem;
}

.nex-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.nex-badge {
  padding: 0.48rem 0.88rem;
  border-radius: 9999px;
  border: 1px solid var(--nex-border);
  font-size: 0.8125rem;
  color: var(--nex-text);
  background: rgba(255, 255, 255, 0.04);
}

.nex-cta-end {
  text-align: center;
  padding: 3.75rem 1.25rem 4.5rem;
  border-top: 1px solid var(--nex-border);
  background: transparent;
  overflow: visible;
}
.nex-cta-end h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.65rem;
}
.nex-cta-end > p {
  max-width: 33rem;
  margin: 0 auto 1.45rem;
  color: var(--nex-muted);
  font-size: 0.9375rem;
  line-height: 1.62;
}
.nex-cta-end .nex-cta-row {
  justify-content: center;
  overflow: visible;
}

.nex-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  max-width: 1120px;
  margin: 0 auto;
}

.nex-prose {
  max-width: 40rem;
  margin-bottom: 2rem;
}
.nex-prose p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--nex-muted);
  margin: 0 0 1rem;
}
.nex-prose p:last-child {
  margin-bottom: 0;
}

.nex-cards-value {
  margin-top: 0.5rem;
}

.nex-model-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.nex-model-list li {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--nex-border);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}
.nex-model-note {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--nex-muted);
  margin: 0;
  max-width: 36rem;
}

@media (min-width: 640px) {
  .nex-cards-scenes {
    grid-template-columns: repeat(2, 1fr);
  }
  .nex-card-span-2 {
    grid-column: span 2;
  }
}

.nex-split {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .nex-split {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.nex-split-col {
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--nex-border);
  background: rgba(255, 255, 255, 0.03);
}
.nex-split-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1rem;
}
.nex-split-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--nex-muted);
}
.nex-split-list li {
  margin-bottom: 0.35rem;
}
.nex-split-foot {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--nex-muted);
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.nex-trust-para {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--nex-muted);
  margin: 0 0 1.75rem;
  max-width: 40rem;
}

.nex-cta-tagline {
  margin: 1.35rem 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

/* 首屏「查看文档」下拉（独立样式，不依赖顶栏 submenu JS） */
.hero-doc-dropdown {
  position: relative;
  display: inline-flex;
  vertical-align: top;
  /* 按钮与菜单之间的区域仍算在父级内，避免移入菜单时 :hover 断开 */
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.hero-doc-trigger {
  cursor: pointer;
  font: inherit;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.hero-doc-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(6, 12, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 50;
}

.hero-doc-dropdown:hover .hero-doc-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-doc-item {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-doc-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* 底部 CTA「联系咨询」二维码悬浮 */
.hero-consult-pop {
  position: relative;
  display: inline-flex;
  vertical-align: top;
}

.hero-consult-trigger {
  cursor: pointer;
  font: inherit;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}

.hero-consult-panel {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%) translateY(8px);
  width: 210px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(8, 12, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 50;
}

.hero-consult-pop:hover .hero-consult-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.hero-consult-qr {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
