/* ============================================================
   qy_arcade · home.css
   街机研发与电玩场馆运营 · 展厅式三业态布局
   ============================================================ */

/* ===== Hero ===== */
.hero-qya {
  position: relative;
  padding: 100px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 116, 144, .25) 0%, transparent 60%),
    var(--ks-bg);
  border-bottom: 1px solid rgba(14, 116, 144, .25);
}
.qya-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14, 116, 144, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 116, 144, .06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  pointer-events: none;
}
.qya-bg-glow {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .6;
  pointer-events: none;
}
.qya-bg-glow-1 { width: 480px; height: 480px; background: rgba(14, 116, 144, .55); top: -120px; right: -100px; }
.qya-bg-glow-2 { width: 380px; height: 380px; background: rgba(234, 88, 12, .35); bottom: -100px; left: -80px; }

.qya-hero-head {
  max-width: 880px;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.qya-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(234, 88, 12, .12);
  border: 1px solid rgba(234, 88, 12, .35);
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ks-accent);
  font-weight: 700;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.qya-hero-eyebrow i { color: var(--ks-accent); }

.qya-hero-title {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.18;
  margin: 0 0 16px;
  color: var(--ks-text);
  letter-spacing: 1px;
}
.qya-hero-title em {
  display: block;
  font-style: normal;
  font-size: 22px;
  font-weight: 700;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--ks-cyan) 0%, var(--ks-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 6px;
  font-family: "Courier New", monospace;
}
.qya-hero-sub {
  font-size: 16px;
  color: var(--ks-text-2);
  margin: 0 0 28px;
  max-width: 700px;
  line-height: 1.8;
}

.qya-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.qya-search {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--ks-bg-3);
  border: 1px solid var(--ks-border-strong);
  border-radius: 4px;
  padding: 6px 6px 6px 48px;
  max-width: 560px;
  box-shadow: var(--ks-shadow);
}
.qya-search-icon {
  position: absolute; left: 18px; color: var(--ks-cyan); font-size: 16px;
}
.qya-search input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--ks-text);
  font-size: 14px;
  padding: 12px 8px;
}
.qya-search input::placeholder { color: var(--ks-muted); }
.qya-search button { border-radius: 4px; padding: 10px 22px; }

/* ===== 三业态展厅卡 ===== */
.qya-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}
.qya-show-card {
  position: relative;
  padding: 28px 24px 26px;
  background: linear-gradient(160deg, var(--ks-bg-3), var(--ks-bg-2));
  border: 1px solid rgba(14, 116, 144, .3);
  border-radius: 10px;
  overflow: hidden;
  transition: all .3s;
}
.qya-show-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--ks-primary);
  transition: all .3s;
}
.qya-show-2::before { background: var(--ks-accent); }
.qya-show-3::before { background: var(--ks-cyan); }
.qya-show-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 116, 144, .55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
}

.qya-show-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(14, 116, 144, .18);
  border: 1px solid rgba(14, 116, 144, .4);
  color: var(--ks-cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.qya-show-tag.qya-tag-accent {
  background: rgba(234, 88, 12, .18);
  border-color: rgba(234, 88, 12, .4);
  color: var(--ks-accent);
}
.qya-show-tag.qya-tag-cyan {
  background: rgba(6, 182, 212, .18);
  border-color: rgba(6, 182, 212, .4);
  color: var(--ks-cyan);
}

.qya-show-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ks-text);
  margin: 0 0 16px;
}
.qya-show-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.qya-show-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .08);
  font-size: 14px;
}
.qya-show-list li:last-child { border-bottom: 0; }
.qya-show-list span { color: var(--ks-muted); }
.qya-show-list strong {
  color: var(--ks-cyan);
  font-weight: 700;
  font-family: "Courier New", monospace;
  letter-spacing: .5px;
}
.qya-show-2 .qya-show-list strong { color: var(--ks-accent); }
.qya-show-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ks-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.qya-show-link i { transition: transform .2s; }
.qya-show-link:hover { color: #fb923c; }
.qya-show-link:hover i { transform: translateX(4px); }

/* ===== 数据带 ===== */
.qya-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(135deg, var(--ks-bg-3), var(--ks-bg-2));
  border: 1px solid rgba(14, 116, 144, .25);
  border-radius: 10px;
}
.qya-stat {
  text-align: center;
  border-right: 1px dashed rgba(255, 255, 255, .08);
}
.qya-stat:last-child { border-right: 0; }
.qya-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--ks-cyan), var(--ks-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  font-family: "Courier New", monospace;
}
.qya-stat strong sup { font-size: 14px; }
.qya-stat span { font-size: 13px; color: var(--ks-muted); letter-spacing: 1px; }

/* ===== Solutions ===== */
.qya-solutions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.qya-solution {
  position: relative;
  background: linear-gradient(160deg, var(--ks-bg-3), var(--ks-bg-2));
  border: 1px solid rgba(14, 116, 144, .2);
  border-radius: 10px;
  padding: 36px 28px 30px;
  transition: all .3s;
  overflow: hidden;
}
.qya-solution::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--ks-primary), var(--ks-accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.qya-solution:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 116, 144, .5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
}
.qya-solution:hover::before { transform: scaleX(1); }

.qya-solution-num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 64px;
  font-weight: 900;
  color: rgba(14, 116, 144, .14);
  letter-spacing: 2px;
  line-height: 1;
  font-family: "Courier New", monospace;
}
.qya-solution-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(14, 116, 144, .35), rgba(234, 88, 12, .25));
  border: 1px solid rgba(14, 116, 144, .4);
  border-radius: 10px;
  color: var(--ks-accent);
  font-size: 24px;
  margin-bottom: 18px;
}
.qya-solution h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ks-text);
  margin: 0 0 6px;
}
.qya-solution-tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--ks-accent);
  margin: 0 0 14px;
  text-transform: uppercase;
  font-weight: 700;
}
.qya-solution-desc {
  color: var(--ks-text-2);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 18px;
}
.qya-solution-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}
.qya-solution-features li {
  font-size: 13px;
  color: var(--ks-text-2);
  display: flex; align-items: center; gap: 6px;
}
.qya-solution-features li i {
  color: var(--ks-cyan);
  font-size: 11px;
}
.qya-solution-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ks-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.qya-solution-link i { transition: transform .2s; }
.qya-solution-link:hover { color: #fb923c; }
.qya-solution-link:hover i { transform: translateX(4px); }

/* ===== CTA ===== */
.qya-cta { padding: 60px 0; }
.qya-cta-card {
  background: linear-gradient(135deg, var(--ks-primary), #0c4a52 50%, #0a1a20 100%);
  border: 1px solid rgba(234, 88, 12, .35);
  border-radius: 12px;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.qya-cta-card::before {
  content: ""; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(234, 88, 12, .25), transparent 70%);
  pointer-events: none;
}
.qya-cta-text { flex: 1 1 480px; position: relative; z-index: 1; }
.qya-cta-text h2 { font-size: 28px; font-weight: 800; color: #fff; margin: 6px 0 8px; }
.qya-cta-text p { color: rgba(255, 255, 255, .85); margin: 0; }
.qya-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== News ===== */
.qya-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.qya-news-card {
  background: var(--ks-bg-3);
  border: 1px solid var(--ks-border);
  border-radius: 10px;
  padding: 24px;
  transition: all .25s;
}
.qya-news-card:hover {
  border-color: rgba(14, 116, 144, .4);
  transform: translateY(-3px);
  box-shadow: var(--ks-shadow);
}
.qya-news-tag {
  display: inline-block;
  font-size: 12px;
  padding: 3px 10px;
  background: rgba(14, 116, 144, .18);
  color: var(--ks-cyan);
  border-radius: 4px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.qya-news-card h4 { font-size: 17px; font-weight: 700; margin: 0 0 10px; line-height: 1.5; }
.qya-news-card h4 a { color: var(--ks-text); }
.qya-news-card h4 a:hover { color: var(--ks-accent); }
.qya-news-card p { font-size: 13px; color: var(--ks-muted); margin: 0 0 14px; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.qya-news-meta { display: flex; gap: 16px; font-size: 12px; color: var(--ks-muted); padding-top: 12px; border-top: 1px dashed var(--ks-border); }

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .qya-hero-title { font-size: 38px; }
  .qya-hero-title em { font-size: 18px; letter-spacing: 4px; }
  .qya-showcase { grid-template-columns: 1fr; }
  .qya-solutions { grid-template-columns: 1fr; }
  .qya-news { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
  .hero-qya { padding: 70px 0 50px; }
  .qya-hero-title { font-size: 28px; }
  .qya-hero-title em { font-size: 14px; letter-spacing: 2px; }
  .qya-hero-cta .btn-ks-main { width: 100%; }
  .qya-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .qya-stat { border-right: 0; padding: 8px 0; }
  .qya-news { grid-template-columns: 1fr; }
  .qya-cta-card { padding: 36px 24px; }
}

/* ============== 制造能力 ============== */
.qya-factory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.qya-fct {
  position: relative;
  padding: 28px 24px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(14,116,144,.06));
  border: 1px solid rgba(14,116,144,.25);
  transition: transform .3s ease, border-color .3s ease;
}
.qya-fct:hover { transform: translateY(-5px); border-color: rgba(234,88,12,.5); }
.qya-fct::before {
  content: ""; position: absolute; top: 0; left: 0; height: 3px; right: 0;
  background: linear-gradient(90deg, #0e7490, #ea580c);
}
.qya-fct-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #0e7490, #155e75);
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: 0 12px 24px -12px rgba(14,116,144,.6);
}
.qya-fct strong { display: block; color: #fff; font-size: 18px; margin-bottom: 4px; }
.qya-fct > span {
  display: inline-block;
  color: #ea580c;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(234,88,12,.25);
  width: 100%;
}
.qya-fct ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.qya-fct li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,.7);
  font-size: 13.5px;
  line-height: 1.6;
}
.qya-fct li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px;
  background: linear-gradient(135deg, #ea580c, #f97316);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* ============== 加盟门店墙 ============== */
.qya-stores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}
.qya-store {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(14,116,144,.06));
  border: 1px solid rgba(14,116,144,.22);
  transition: transform .3s ease, border-color .3s ease;
}
.qya-store:hover { transform: translateY(-4px); border-color: rgba(234,88,12,.55); }
.qya-store-tag {
  display: inline-block;
  padding: 4px 12px; border-radius: 999px;
  background: rgba(14,116,144,.18);
  color: #67e8f9;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.qya-store h4 { color: #fff; font-size: 15px; margin-bottom: 10px; line-height: 1.5; min-height: 44px; }
.qya-store-meta {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.55);
  font-size: 12.5px;
}
.qya-store-meta i { color: #ea580c; }
.qya-store-flagship {
  background: linear-gradient(160deg, rgba(234,88,12,.12), rgba(14,116,144,.1));
  border-color: rgba(234,88,12,.5);
  grid-column: span 2;
}
.qya-store-flagship .qya-store-tag {
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: #fff;
}
.qya-store-flagship h4 { font-size: 19px; }
.qya-store-more {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, rgba(14,116,144,.18), rgba(14,116,144,.05));
  border-style: dashed;
}
.qya-store-more h4 {
  font-size: 26px; min-height: auto;
  background: linear-gradient(135deg, #67e8f9, #ea580c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============== 出口市场 ============== */
.qya-export {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.qya-region {
  position: relative;
  padding: 26px 26px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(14,116,144,.06));
  border: 1px solid rgba(14,116,144,.22);
  transition: transform .3s ease, border-color .3s ease;
}
.qya-region:hover { transform: translateY(-4px); border-color: rgba(234,88,12,.5); }
.qya-region-head {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-size: 18px; font-weight: 700;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px dashed rgba(14,116,144,.35);
}
.qya-region-head i {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #0e7490, #155e75);
  color: #67e8f9;
  font-size: 16px;
}
.qya-region-body {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 14px;
}
.qya-region-body span {
  padding: 6px 12px;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(14,116,144,.25);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
}
.qya-region em {
  display: block;
  color: #ea580c;
  font-size: 14px; font-weight: 700;
  font-style: normal;
  letter-spacing: 1px;
  text-align: right;
}

/* ============== 客户证言 ============== */
.qya-voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.qya-voice {
  position: relative;
  padding: 36px 26px 26px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(14,116,144,.06));
  border: 1px solid rgba(14,116,144,.22);
  display: flex; flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
}
.qya-voice:hover { transform: translateY(-5px); border-color: rgba(234,88,12,.5); }
.qya-voice-quote {
  position: absolute; top: 12px; left: 22px;
  font-size: 60px; line-height: 1;
  color: rgba(234,88,12,.3);
  font-family: Georgia, serif;
  font-weight: 800;
}
.qya-voice p { color: rgba(255,255,255,.78); font-size: 14.5px; line-height: 1.75; margin: 0 0 18px; flex: 1; }
.qya-voice footer {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 16px;
  border-top: 1px dashed rgba(14,116,144,.35);
}
.qya-voice strong { color: #fff; font-size: 15px; }
.qya-voice footer span { color: rgba(255,255,255,.5); font-size: 12.5px; }

/* ============== FAQ ============== */
.qya-faq { display: flex; flex-direction: column; gap: 12px; max-width: 920px; margin: 56px auto 0; }
.qya-faq-item {
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(14,116,144,.05));
  border: 1px solid rgba(14,116,144,.22);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .3s ease;
}
.qya-faq-item[open] { border-color: rgba(234,88,12,.5); }
.qya-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
  color: #fff; font-size: 15.5px; font-weight: 600;
}
.qya-faq-item summary::-webkit-details-marker { display: none; }
.qya-faq-item summary i {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(14,116,144,.2);
  color: #67e8f9;
  border-radius: 50%;
  font-size: 13px;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.qya-faq-item[open] summary i {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: #fff;
}
.qya-faq-body { padding: 0 24px 20px 68px; }
.qya-faq-body p { color: rgba(255,255,255,.65); margin: 0; line-height: 1.75; font-size: 14px; }

/* ============== 响应式 ============== */
@media (max-width: 991px) {
  .qya-factory { grid-template-columns: 1fr; }
  .qya-stores { grid-template-columns: repeat(2, 1fr); }
  .qya-store-flagship { grid-column: span 2; }
  .qya-export { grid-template-columns: 1fr; }
  .qya-voices { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .qya-stores { grid-template-columns: 1fr; }
  .qya-store-flagship { grid-column: span 1; }
  .qya-faq-item summary { padding: 14px 16px; font-size: 14.5px; }
  .qya-faq-body { padding: 0 16px 16px 56px; }
}


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

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

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

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