/* ============================================================
   qy_esports · home.css
   电竞产业服务商企业站 · 商务深蓝 + 紫罗兰 + 金色 CTA
   ============================================================ */

/* ===== Hero ===== */
.hero-qye {
  position: relative;
  padding: 100px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #0a1228 0%, #0b1220 100%);
}
.qye-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, .06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}
.qye-bg-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.qye-bg-glow-1 { top: -180px; left: -120px; background: rgba(37, 99, 235, .35); }
.qye-bg-glow-2 { bottom: -200px; right: -160px; background: rgba(124, 58, 237, .28); }

.qye-hero-stack {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.qye-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(37, 99, 235, .12);
  border: 1px solid rgba(37, 99, 235, .35);
  color: #93c5fd;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.qye-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .25);
  animation: qyeDot 1.6s ease-in-out infinite;
}
@keyframes qyeDot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.qye-hero-title {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.08;
  margin: 0 0 20px;
}
.qye-hero-title em {
  display: block;
  font-style: normal;
  font-size: 28px;
  font-weight: 700;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--ks-primary), var(--ks-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 4px;
}

.qye-hero-sub {
  color: var(--ks-text-2);
  font-size: 16.5px;
  line-height: 1.85;
  max-width: 760px;
  margin: 0 auto 30px;
}

.qye-hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
}

.qye-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(15, 23, 42, .55);
  border: 1px solid rgba(37, 99, 235, .25);
  border-radius: 16px;
  margin: 8px auto 30px;
  max-width: 880px;
  backdrop-filter: blur(8px);
}
.qye-stat {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px dashed rgba(37, 99, 235, .2);
}
.qye-stat:last-child { border-right: 0; }
.qye-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.qye-stat strong sup {
  font-size: 16px;
  color: var(--ks-accent);
  margin-left: 2px;
}
.qye-stat span {
  display: block;
  font-size: 12.5px;
  color: var(--ks-muted);
  letter-spacing: 1.5px;
  margin-top: 6px;
}

.qye-search {
  position: relative;
  display: flex;
  background: rgba(15, 23, 42, .65);
  border: 1px solid rgba(37, 99, 235, .25);
  border-radius: 999px;
  padding: 5px 5px 5px 50px;
  max-width: 560px;
  margin: 0 auto;
  transition: border-color .2s, box-shadow .2s;
}
.qye-search:focus-within {
  border-color: var(--ks-primary);
  box-shadow: var(--ks-glow);
}
.qye-search-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ks-muted);
}
.qye-search input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--ks-text);
  font-size: 14.5px;
  outline: none;
}
.qye-search input::placeholder { color: var(--ks-muted); }

/* 底部品类预览滚动条 */
.qye-preview-wrap {
  position: relative;
  margin-top: 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.qye-preview-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 50px;
}
.qye-preview-scroll::-webkit-scrollbar { display: none; }
.qye-preview-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
}
.qye-preview-item {
  flex: 0 0 132px;
  background: var(--ks-bg-3);
  border: 1px solid var(--ks-border);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  scroll-snap-align: start;
  transition: all .2s;
}
.qye-preview-item:hover {
  transform: translateY(-3px);
  border-color: var(--ks-primary);
  background: rgba(37, 99, 235, .08);
}
.qye-preview-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 6px;
}
.qye-preview-item span {
  display: block;
  font-size: 12px;
  color: var(--ks-text-2);
  letter-spacing: 1px;
}
.qye-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ks-bg-3);
  color: var(--ks-text);
  border: 1px solid var(--ks-border);
  cursor: pointer;
  z-index: 5;
  transition: all .2s;
}
.qye-nav-btn:hover { background: var(--ks-primary); color: #fff; border-color: var(--ks-primary); }
.qye-nav-prev { left: 0; }
.qye-nav-next { right: 0; }

/* ===== Solutions ===== */
.qye-solutions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.qye-solution {
  position: relative;
  background: linear-gradient(180deg, var(--ks-bg-3), var(--ks-bg-2));
  border: 1px solid var(--ks-border);
  border-radius: 18px;
  padding: 32px 28px 28px;
  transition: all .25s;
  overflow: hidden;
}
.qye-solution::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ks-primary), var(--ks-violet), var(--ks-accent));
  opacity: 0;
  transition: opacity .3s;
}
.qye-solution:hover {
  transform: translateY(-5px);
  border-color: var(--ks-primary);
  box-shadow: 0 18px 40px rgba(37, 99, 235, .25);
}
.qye-solution:hover::before { opacity: 1; }
.qye-solution-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(37, 99, 235, .08);
  line-height: 1;
  letter-spacing: -2px;
}
.qye-solution-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ks-primary), var(--ks-violet));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .35);
}
.qye-solution h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: .5px;
}
.qye-solution-tag {
  font-size: 11.5px;
  color: var(--ks-accent);
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.qye-solution-desc {
  color: var(--ks-text-2);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 16px;
}
.qye-solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
}
.qye-solution-features li {
  font-size: 13px;
  color: var(--ks-text-2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.qye-solution-features i {
  color: var(--ks-success);
  font-size: 11px;
}
.qye-solution-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ks-primary);
  letter-spacing: 1px;
  border-top: 1px dashed var(--ks-border);
  padding-top: 14px;
  margin-top: 4px;
  width: 100%;
}
.qye-solution-link:hover { color: var(--ks-accent); gap: 10px; }
.qye-solution-link i { transition: transform .2s; }
.qye-solution-link:hover i { transform: translateX(3px); }

/* ===== CTA ===== */
.qye-cta { padding: 70px 0; }
.qye-cta-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, .15), rgba(124, 58, 237, .12));
  border: 1px solid rgba(37, 99, 235, .35);
  border-radius: 22px;
  padding: 48px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.qye-cta-card::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, .35), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.qye-cta-text { flex: 1 1 460px; position: relative; z-index: 2; }
.qye-cta-text .ks-section-en { color: var(--ks-accent); }
.qye-cta-text h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 8px 0 10px;
  letter-spacing: .5px;
}
.qye-cta-text p {
  color: var(--ks-text-2);
  font-size: 14.5px;
  margin: 0;
}
.qye-cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* ===== News ===== */
.qye-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.qye-news-card {
  background: var(--ks-bg-3);
  border: 1px solid var(--ks-border);
  border-radius: 14px;
  padding: 24px;
  transition: all .2s;
}
.qye-news-card:hover {
  transform: translateY(-3px);
  border-color: var(--ks-primary);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .35);
}
.qye-news-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ks-accent);
  background: rgba(245, 158, 11, .12);
  border: 1px solid rgba(245, 158, 11, .35);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.qye-news-card h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 10px;
}
.qye-news-card h4 a { color: inherit; text-decoration: none; }
.qye-news-card h4 a:hover { color: var(--ks-primary); }
.qye-news-card p {
  color: var(--ks-muted);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.qye-news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ks-muted);
  border-top: 1px dashed var(--ks-border);
  padding-top: 10px;
}

/* ===== 响应式 ===== */
@media (max-width: 1199.98px) {
  .qye-hero-title { font-size: 46px; }
  .qye-hero-title em { font-size: 22px; }
  .qye-solutions { grid-template-columns: 1fr; }
  .qye-news { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
  .hero-qye { padding: 70px 0 50px; }
  .qye-hero-title { font-size: 34px; }
  .qye-hero-title em { font-size: 17px; letter-spacing: 2px; }
  .qye-hero-sub { font-size: 14.5px; }
  .qye-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .qye-stat { border-right: 0; border-bottom: 1px dashed rgba(37, 99, 235, .2); }
  .qye-stat:nth-last-child(-n+2) { border-bottom: 0; }
  .qye-stat strong { font-size: 26px; }
  .qye-solution { padding: 26px 22px; }
  .qye-solution-features { grid-template-columns: 1fr; }
  .qye-cta-card { padding: 32px 24px; }
  .qye-cta-text h2 { font-size: 22px; }
  .qye-news { grid-template-columns: 1fr; }
  .qye-process { grid-template-columns: repeat(2, 1fr) !important; }
  .qye-cases { grid-template-columns: 1fr !important; }
  .qye-quotes { grid-template-columns: 1fr !important; }
  .qye-partner-row { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   新增企业模块 · 服务流程 / 赛事案例 / 合作伙伴 / 客户评价 / FAQ
   ============================================================ */

/* ----- 服务流程 6 步 ----- */
.qye-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
}
.qye-process::before {
  content: "";
  position: absolute;
  top: 36px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(37,99,235,.35) 0 12px, transparent 12px 22px);
  z-index: 0;
}
.qye-step {
  position: relative;
  background: rgba(11,18,32,.85);
  border: 1px solid rgba(37,99,235,.18);
  border-radius: 16px;
  padding: 30px 22px 24px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease;
  z-index: 1;
}
.qye-step:hover { transform: translateY(-4px); border-color: rgba(245,158,11,.5); }
.qye-step-num {
  position: absolute;
  top: -14px; left: 22px;
  font: 700 14px/24px "Courier New", monospace;
  color: var(--ks-bg);
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  padding: 0 10px;
  border-radius: 12px;
  letter-spacing: 1px;
}
.qye-step i {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,99,235,.25), rgba(124,58,237,.25));
  color: #c7d2fe;
  font-size: 22px;
  margin-bottom: 14px;
}
.qye-step h4 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.qye-step p { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.7; margin: 0; }

/* ----- 标杆赛事案例 ----- */
.qye-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.qye-case {
  display: block;
  text-decoration: none;
  background: rgba(11,18,32,.9);
  border: 1px solid rgba(37,99,235,.2);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.qye-case:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(37,99,235,.25); }
.qye-case-cover {
  position: relative;
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 24px;
}
.qye-case-cover-1 { background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 60%, #4338ca 100%); }
.qye-case-cover-2 { background: linear-gradient(135deg, #b91c1c 0%, #f59e0b 60%, #7c2d12 100%); }
.qye-case-cover-3 { background: linear-gradient(135deg, #064e3b 0%, #2563eb 60%, #1e3a8a 100%); }
.qye-case-cover-4 { background: linear-gradient(135deg, #7c3aed 0%, #db2777 60%, #4338ca 100%); }
.qye-case-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18) 0%, transparent 40%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 6px, transparent 6px 14px);
  pointer-events: none;
}
.qye-case-tag {
  position: relative; z-index: 1;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .8px;
  border: 1px solid rgba(255,255,255,.2);
}
.qye-case-prize {
  position: relative; z-index: 1;
  color: #fde68a;
  font: 700 14px/1 "Courier New", monospace;
  background: rgba(0,0,0,.4);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(245,158,11,.45);
}
.qye-case-body { padding: 22px 24px 24px; }
.qye-case-body h4 { color: #fff; font-size: 19px; margin-bottom: 16px; }
.qye-case-body ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.qye-case-body ul li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 12px;
  background: rgba(37,99,235,.08);
  border-radius: 10px;
  border: 1px solid rgba(37,99,235,.16);
}
.qye-case-body ul li span { color: rgba(255,255,255,.55); font-size: 11.5px; }
.qye-case-body ul li strong { color: #f59e0b; font: 700 14px/1.2 "Courier New", monospace; }

/* ----- 合作伙伴 LOGO 墙 ----- */
.qye-partners {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.qye-partner-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  background: rgba(11,18,32,.7);
  border: 1px solid rgba(37,99,235,.16);
  border-radius: 14px;
}
.qye-partner-cat {
  flex: 0 0 180px;
  color: #fbbf24;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  border-right: 1px dashed rgba(245,158,11,.25);
  padding-right: 18px;
}
.qye-partner-cat i { margin-right: 8px; opacity: .8; }
.qye-partner-list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.qye-partner-list span {
  padding: 8px 16px;
  background: rgba(37,99,235,.1);
  color: rgba(255,255,255,.85);
  font: 600 13px/1 "Inter", "Microsoft YaHei", sans-serif;
  border: 1px solid rgba(37,99,235,.25);
  border-radius: 8px;
  transition: all .25s ease;
  cursor: default;
}
.qye-partner-list span:hover {
  background: rgba(245,158,11,.15);
  border-color: rgba(245,158,11,.45);
  color: #fde68a;
  transform: translateY(-2px);
}

/* ----- 客户评价 ----- */
.qye-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.qye-quote {
  position: relative;
  background: rgba(11,18,32,.85);
  border: 1px solid rgba(124,58,237,.22);
  border-radius: 16px;
  padding: 36px 26px 24px;
  transition: transform .3s ease, border-color .3s ease;
}
.qye-quote:hover { transform: translateY(-4px); border-color: rgba(245,158,11,.5); }
.qye-quote-mark {
  position: absolute;
  top: 20px; right: 24px;
  color: rgba(245,158,11,.18);
  font-size: 38px;
}
.qye-quote p {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 22px;
  min-height: 96px;
}
.qye-quote-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px dashed rgba(124,58,237,.25);
}
.qye-quote-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font: 700 18px/1 "Inter", sans-serif;
  color: #fff;
  flex: 0 0 46px;
}
.qye-quote-who { display: flex; flex-direction: column; gap: 3px; }
.qye-quote-who strong { color: #fff; font-size: 14.5px; }
.qye-quote-who span { color: rgba(255,255,255,.55); font-size: 12px; }

/* ----- FAQ 手风琴 ----- */
.qye-faq {
  max-width: 900px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qye-faq-item {
  background: rgba(11,18,32,.85);
  border: 1px solid rgba(37,99,235,.18);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .3s ease;
}
.qye-faq-item[open] { border-color: rgba(245,158,11,.5); }
.qye-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background .25s ease;
}
.qye-faq-item summary::-webkit-details-marker { display: none; }
.qye-faq-item summary:hover { background: rgba(37,99,235,.08); }
.qye-faq-item summary i {
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-size: 11px;
  transition: transform .3s ease;
}
.qye-faq-item[open] summary i { transform: rotate(45deg); background: linear-gradient(135deg, #f59e0b, #fbbf24); color: var(--ks-bg); }
.qye-faq-body {
  padding: 0 24px 22px 66px;
  color: rgba(255,255,255,.7);
  font-size: 13.5px;
  line-height: 1.85;
}
.qye-faq-body p { margin: 0; }

/* ----- 响应式补充 ----- */
@media (max-width: 991px) {
  .qye-process { grid-template-columns: repeat(2, 1fr); }
  .qye-process::before { display: none; }
  .qye-cases { grid-template-columns: 1fr; }
  .qye-quotes { grid-template-columns: 1fr; }
  .qye-partner-row { flex-direction: column; align-items: flex-start; }
  .qye-partner-cat { border-right: 0; border-bottom: 1px dashed rgba(245,158,11,.25); padding: 0 0 10px; flex: none; width: 100%; }
}


/* =================================================== */
/* MOBILE ENHANCED · 旧模板通用 H5 自适应规则           */
/* =================================================== */
.qye-hero img, .qye-solutions img, .qye-data img, .qye-news img, .qye-tiers img { max-width: 100%; height: auto; }

@media (max-width: 991.98px) {
  .qye-hero { padding: 80px 20px 60px; }
  .qye-hero h1, .qye-hero .qye-h1 { font-size: 48px !important; line-height: 1.05 !important; }
  .qye-hero-lead, .qye-hero p { font-size: 16px !important; line-height: 1.7 !important; }
}

@media (max-width: 768px) {
  /* Hero 放大 */
  .qye-hero { padding: 72px 20px 56px; }
  .qye-hero h1, .qye-hero .qye-h1 { font-size: 40px !important; line-height: 1.1 !important; }
  .qye-hero h1 em, .qye-hero .qye-h1 em { font-size: 40px !important; }
  .qye-hero-tag { font-size: 12px !important; padding: 8px 14px !important; margin-bottom: 24px !important; }
  .qye-hero-lead, .qye-hero p { font-size: 15px !important; line-height: 1.75 !important; margin-bottom: 24px !important; }
  .qye-hero-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
  .qye-hero-cta a { padding: 16px 20px !important; font-size: 15px !important; width: 100%; box-sizing: border-box; text-align: center; border-radius: 10px !important; min-height: 48px; }
  /* Stats 改 2 列 */
  .qye-hero-stats, .qye-hero-numbers { grid-template-columns: 1fr 1fr !important; gap: 0 !important; margin-top: 32px !important; }
  .qye-hero-stats div, .qye-num-cell { padding: 18px 14px !important; border-bottom: 1px solid rgba(255,255,255,.1); }
  .qye-hero-stats strong, .qye-hero-stats b, .qye-num-cell strong { font-size: 28px !important; }
  .qye-hero-stats span, .qye-num-cell span { font-size: 12px !important; }
  /* Sections 网格改单列 */
  .qye-solutions, .qye-data, .qye-tiers, .qye-news, .qye-final, .qye-features { padding: 56px 0 !important; }
  .qye-sol-grid, .qye-tier-grid, .qye-news-grid, .qye-sol, .qye-cabs, .qye-tokens, .qye-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .qye-sol-card, .qye-tier-card, .qye-news-card, .qye-sol, .qye-cab, .qye-tok { padding: 24px 20px !important; border-radius: 12px !important; }
  .qye-sol-card h3, .qye-tier-card h3, .qye-news-card h3 { font-size: 18px !important; }
  .qye-sol-card p, .qye-tier-card p, .qye-news-card p { font-size: 14px !important; line-height: 1.7 !important; }
  /* Section title */
  .qye-sec-title, .qye-sec-head h2, .qye-final h2 { font-size: 26px !important; line-height: 1.25 !important; }
  .qye-sec-sub, .qye-sec-head p { font-size: 14px !important; }
  /* Final CTA 竖排 */
  .qye-final { padding: 56px 20px !important; }
  .qye-final-actions { flex-direction: column; gap: 10px; }
  .qye-final-actions a, .qye-final-actions .btn { width: 100%; box-sizing: border-box; padding: 14px 20px !important; font-size: 15px !important; min-height: 48px; border-radius: 10px !important; }
  /* Keywords chips */
  .qye-chip-grid { gap: 6px; }
  .qye-chip { padding: 8px 14px !important; font-size: 13px !important; }
  /* 表格横滚 */
  .qye-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .qye-table th, .qye-table td { font-size: 13px !important; padding: 10px 8px !important; }
}

@media (max-width: 480px) {
  .qye-hero h1, .qye-hero .qye-h1 { font-size: 32px !important; }
  .qye-hero h1 em, .qye-hero .qye-h1 em { font-size: 32px !important; }
  .qye-hero-stats strong, .qye-hero-stats b { font-size: 22px !important; }
}
