﻿/* ============================================================
   药才通 · 内页覆盖层 v2.0「深山本草 · 东方现代」
   用新视觉重新定义旧类名，使 10 个内页无需改 HTML 即可换肤
   需配合 site-v2.css 使用（先 site-v2.css，后本文件）
   ============================================================ */

/* ---------- 顶栏（旧 .topbar → 新毛玻璃导航） ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #F9F7F2;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
  box-shadow: none; padding: 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.brand {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
  color: var(--c-ink); text-decoration: none; letter-spacing: 2px;
  display: flex; align-items: center; gap: 8px;
}
.brand-mark { font-size: 20px; }
.brand-text em {
  font-family: var(--font-mono); font-style: normal; font-size: 10px;
  color: var(--c-text-3); letter-spacing: 3px; margin-left: 6px; font-weight: 500;
}
.topnav { display: flex; gap: 28px; align-items: center; }
.topnav a {
  color: var(--c-text); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.2s; position: relative; padding: 0; background: none; border-radius: 0;
}
.topnav a:hover, .topnav a.active { color: var(--c-ink); background: none; }
.topnav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--c-cinnabar);
}
.nav-login { margin-left: 8px; }

/* ---------- 按钮（旧 .btn → 新风格） ---------- */
.btn {
  display: inline-block; padding: 10px 24px; font-size: 14px; font-weight: 500;
  border-radius: 2px; text-decoration: none; cursor: pointer; border: none;
  transition: opacity 0.2s, border-color 0.2s, background 0.2s;
  font-family: var(--font-sans); line-height: 1.5;
}
.btn-primary { background: var(--c-ink); color: var(--c-paper); }
.btn-primary:hover { opacity: 0.88; background: var(--c-ink); }
.btn-ghost {
  background: transparent; border: 1px solid var(--c-line); color: var(--c-text);
}
.btn-ghost:hover { border-color: var(--c-ink); background: transparent; }
.btn-lg { padding: 15px 34px; }

/* ---------- 页面 Hero（旧 .page-hero / .query-hero） ---------- */
.page-hero, .query-hero {
  background: var(--c-ink); color: var(--c-paper);
  padding: 150px 0 70px; margin: 0; text-align: center;
  border: none;
}
.page-hero h1, .query-hero h1 {
  font-family: var(--font-serif); font-size: 42px; font-weight: 700;
  letter-spacing: 2px; margin-bottom: 14px; color: var(--c-paper);
}
.page-hero p, .query-hero p {
  color: rgba(249,247,242,0.65); font-size: 15px; max-width: 640px; margin: 0 auto;
}

/* ---------- 查询页容器间距（与 content-wrap 对齐，修复跳动） ---------- */
.query-wrap { padding: 60px 0 90px; }
/* ---------- 查询框（query.html） ---------- */
.query-box {
  background: var(--c-white); border: 1px solid var(--c-line);
  padding: 40px; margin: -40px 0 40px; max-width: none; position: relative; z-index: 5;
  box-shadow: 0 24px 48px rgba(26, 60, 52, 0.07); border-radius: 2px;
}
.query-form { display: flex; gap: 12px; }
.query-input {
  flex: 1; height: 50px; padding: 0 18px;
  border: 1px solid var(--c-line); border-radius: 2px;
  font-family: var(--font-mono); font-size: 15px; color: var(--c-ink);
  background: var(--c-paper); outline: none; transition: border-color 0.2s;
  letter-spacing: 1px;
}
.query-input:focus { border-color: var(--c-ink); }
.query-input::placeholder { color: var(--c-text-3); font-family: var(--font-sans); letter-spacing: 0; }
.query-btn { height: 50px; padding: 0 32px; }
.query-hint { margin-top: 14px; font-size: 12.5px; color: var(--c-text-3); }

/* 历史记录 */
.history-chip {
  display: inline-block; padding: 6px 14px; margin: 4px 6px 0 0;
  border: 1px solid var(--c-line); border-radius: 2px; font-family: var(--font-mono);
  font-size: 12px; color: var(--c-ink); cursor: pointer; background: var(--c-paper);
  transition: border-color 0.2s;
}
.history-chip:hover { border-color: var(--c-ink); }
.history-label { font-size: 12px; color: var(--c-text-3); margin-right: 8px; }

/* ---------- 选项卡 ---------- */
.tabs { display: flex; gap: 0; border-bottom: 1px solid var(--c-line); margin-bottom: 32px; }
.tab-btn {
  padding: 12px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--font-serif); font-size: 16px; font-weight: 600;
  color: var(--c-text-3); position: relative; transition: color 0.2s;
}
.tab-btn.active { color: var(--c-ink); }
.tab-btn.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--c-cinnabar);
}

/* ---------- 结果卡片（trace / query 共用） ---------- */
.result-wrap { margin-bottom: 60px; }
.result-card {
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: 2px; overflow: hidden;
  box-shadow: 0 24px 48px rgba(26, 60, 52, 0.06);
}
.result-body { padding: 36px; }
.result-body h3, .result-section h3 {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: var(--c-ink); margin-bottom: 16px;
}
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.result-section { min-width: 0; }

/* 结论头（真伪判定） */
.conclusion-head {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 36px; border-bottom: 1px solid var(--c-line);
}
.conclusion-head.pass { background: #F2F9F5; }
.conclusion-head.fail { background: #FBF3F1; }
.conclusion-head.warn { background: #FBF8F0; }
.conclusion-badge {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 22px; font-weight: 700;
}
.conclusion-head.pass .conclusion-badge { background: var(--c-ink); color: var(--c-paper); }
.conclusion-head.fail .conclusion-badge { background: var(--c-cinnabar); color: var(--c-paper); }
.conclusion-head.warn .conclusion-badge { background: #B98A2A; color: var(--c-paper); }
.conclusion-title {
  font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: var(--c-ink);
}
.conclusion-sub { font-size: 13.5px; color: var(--c-text-2); margin-top: 4px; }
.conclusion-meta { margin-left: auto; text-align: right; font-size: 12px; color: var(--c-text-3); }
.conclusion-meta .code {
  font-family: var(--font-mono); font-size: 15px; color: var(--c-ink);
  letter-spacing: 1px; font-variant-numeric: tabular-nums;
}

/* 描述列表（批次信息） */
.desc-list { display: flex; flex-direction: column; }
.desc-row {
  display: flex; padding: 11px 0; border-bottom: 1px dashed var(--c-line);
  font-size: 14px;
}
.desc-row:last-child { border-bottom: none; }
.desc-label { width: 110px; flex-shrink: 0; color: var(--c-text-3); }
.desc-value { color: var(--c-ink); font-weight: 500; font-family: var(--font-mono); font-size: 13.5px; }

/* 质检表格 */
.qa-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.qa-table th {
  text-align: left; padding: 10px 12px; background: var(--c-paper);
  color: var(--c-text-2); font-weight: 500; border-bottom: 1px solid var(--c-line);
  font-size: 12.5px;
}
.qa-table td {
  padding: 11px 12px; border-bottom: 1px solid var(--c-line); color: var(--c-text);
  font-variant-numeric: tabular-nums;
}
.qa-table tr:last-child td { border-bottom: none; }
.result-pass { color: var(--c-ink); font-weight: 600; }
.result-fail { color: var(--c-cinnabar); font-weight: 600; }

/* 时间轴（trace 全链路） */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 6px; top: 6px; bottom: 6px;
  width: 1px; background: var(--c-line);
}
.tl-item { position: relative; padding-bottom: 24px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -28px; top: 6px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--c-ink); box-shadow: 0 0 0 3px var(--c-paper);
}
.tl-dot-sys { background: var(--c-text-3); }
.tl-time {
  font-family: var(--font-mono); font-size: 12px; color: var(--c-text-3);
  letter-spacing: 0.5px; margin-bottom: 3px;
}
.tl-title { font-size: 14.5px; font-weight: 600; color: var(--c-ink); }
.tl-desc { font-size: 13px; color: var(--c-text-2); margin-top: 3px; line-height: 1.7; }
.tl-tags { margin-top: 6px; }

/* 标签 */
.tag, .tag-brand, .tag-green, .tag-purple {
  display: inline-block; padding: 3px 10px; font-size: 11.5px; border-radius: 2px;
  margin: 2px 4px 2px 0; letter-spacing: 0.5px;
}
.tag { background: var(--c-paper); color: var(--c-text-2); border: 1px solid var(--c-line); }
.tag-brand, .tag-green { background: #F2F9F5; color: var(--c-ink); border: 1px solid #D5E8DD; }
.tag-purple { background: #F4F2FA; color: #5B4B8A; border: 1px solid #E2DDF0; }

/* 举报盒 */
.report-box {
  background: var(--c-white); border: 1px solid var(--c-line);
  padding: 32px 36px; margin-top: 28px; border-radius: 2px;
}
.report-box h3 {
  font-family: var(--font-serif); font-size: 17px; font-weight: 600;
  color: var(--c-ink); margin-bottom: 16px;
}
.report-textarea {
  width: 100%; min-height: 100px; padding: 14px 16px;
  border: 1px solid var(--c-line); border-radius: 2px; background: var(--c-paper);
  font-family: var(--font-sans); font-size: 14px; color: var(--c-text);
  outline: none; resize: vertical; transition: border-color 0.2s;
}
.report-textarea:focus { border-color: var(--c-ink); }
.report-ok { display: none; font-size: 13px; color: var(--c-ink); }

/* ---------- 加载 / 错误 ---------- */
.loading-box, .error-box {
  text-align: center; padding: 80px 20px; color: var(--c-text-3); font-size: 14px;
}
.spinner {
  width: 32px; height: 32px; margin: 0 auto 16px;
  border: 2px solid var(--c-line); border-top-color: var(--c-ink);
  border-radius: 50%; animation: v2spin 0.8s linear infinite;
}
@keyframes v2spin { to { transform: rotate(360deg); } }

/* ---------- 内容页通用（about / faq / cases / features / pricing） ---------- */
.content-wrap { padding: 60px 0 90px; }
.content-card {
  background: var(--c-white); border: 1px solid var(--c-line);
  padding: 44px; border-radius: 2px; margin-bottom: 28px;
  box-shadow: 0 12px 32px rgba(26, 60, 52, 0.04);
}
.content-card h2 {
  font-family: var(--font-serif); font-size: 26px; font-weight: 700;
  color: var(--c-ink); margin-bottom: 20px;
}
.content-card h3 {
  font-family: var(--font-serif); font-size: 19px; font-weight: 600;
  color: var(--c-ink); margin: 28px 0 12px;
}
.content-card p { color: var(--c-text-2); line-height: 1.9; margin-bottom: 14px; font-size: 14.5px; }
.content-card ul, .content-card ol { margin: 6px 0 16px; padding-left: 4px; list-style: none; }
.content-card li {
  color: var(--c-text-2); line-height: 1.9; font-size: 14.5px;
  padding: 8px 0 8px 26px; position: relative;
  border-bottom: 1px dashed var(--c-line);
}
.content-card li:last-child { border-bottom: none; }
.content-card li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 9px; height: 9px; border: 2px solid var(--c-cinnabar); border-radius: 50%;
}
.content-card li strong { color: var(--c-ink); font-weight: 600; font-family: var(--font-sans); }

/* 功能卡片 */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--c-white); border: 1px solid var(--c-line);
  padding: 36px 30px; border-radius: 2px; transition: box-shadow 0.25s;
}
.feature-card:hover { box-shadow: 0 20px 40px rgba(26, 60, 52, 0.08); }
.feature-icon { font-size: 28px; margin-bottom: 18px; }
.feature-card h3 {
  font-family: var(--font-serif); font-size: 19px; font-weight: 600;
  color: var(--c-ink); margin-bottom: 12px;
}
.feature-card p { font-size: 13.5px; color: var(--c-text-2); line-height: 1.8; }
.feature-chip {
  display: inline-block; padding: 3px 10px; font-size: 11.5px;
  background: #F2F9F5; color: var(--c-ink); border: 1px solid #D5E8DD;
  border-radius: 2px; margin: 3px 4px 0 0;
}
.feature-stages { margin-top: 16px; }

/* 案例卡片 */
.case-card {
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: 2px; overflow: hidden; margin-bottom: 28px;
}
.case-head {
  padding: 28px 32px; border-bottom: 1px solid var(--c-line);
  display: flex; align-items: center; gap: 18px; background: var(--c-paper);
}
.case-icon { font-size: 30px; }
.case-head h2, .case-head h3 {
  font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: var(--c-ink);
}
.case-tag {
  margin-left: auto; font-family: var(--font-mono); font-size: 11.5px;
  color: var(--c-cinnabar); letter-spacing: 1px;
}
.case-body { padding: 28px 32px; }
.case-body p { color: var(--c-text-2); line-height: 1.9; font-size: 14.5px; margin-bottom: 14px; }
.case-body ul, .case-body ol { margin: 6px 0 4px; padding-left: 4px; list-style: none; }
.case-body li {
  color: var(--c-text-2); line-height: 1.9; font-size: 14.5px;
  padding: 9px 0 9px 26px; position: relative;
  border-bottom: 1px dashed var(--c-line);
}
.case-body li:last-child { border-bottom: none; }
.case-body li::before {
  content: ''; position: absolute; left: 0; top: 17px;
  width: 9px; height: 9px; border: 2px solid var(--c-cinnabar); border-radius: 50%;
}
.case-body li strong { color: var(--c-ink); font-weight: 600; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-q {
  width: 100%; text-align: left; padding: 22px 0; background: none; border: none;
  font-family: var(--font-serif); font-size: 17px; font-weight: 600;
  color: var(--c-ink); cursor: pointer; display: flex; justify-content: space-between;
  align-items: center;
}
.faq-a { padding: 0 0 22px; color: var(--c-text-2); line-height: 1.9; font-size: 14px; }

/* 价格卡片（层级对齐设计：flex 纵向 + 列表撑开 + 按钮沉底） */
.price-grid, .price-grid-page {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  align-items: stretch;
}
.price-card {
  background: var(--c-white); border: 1px solid var(--c-line);
  padding: 44px 36px 36px; border-radius: 2px; position: relative; text-align: center;
  display: flex; flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.price-card:hover { box-shadow: 0 24px 48px rgba(26,60,52,0.10); transform: translateY(-3px); }
.price-tag {
  position: absolute; top: -1px; right: 28px;
  background: var(--c-cinnabar); color: var(--c-paper);
  font-size: 12px; padding: 6px 14px; letter-spacing: 1px;
  display: flex; align-items: center; justify-content: center;
}
/* 红底角标内的图标：宣纸白线条 + 放大，确保醒目 */
.price-tag svg.ic {
  width: 18px; height: 18px;
  color: var(--c-paper);
}
/* 层级 1：版本名（宋体加粗，统一高度） */
.price-card h3 {
  font-family: var(--font-serif); font-size: 24px; font-weight: 700;
  color: var(--c-ink); margin-bottom: 6px; letter-spacing: 1px;
  min-height: 34px; line-height: 1.3;
}
/* 层级 2：价格（等宽大字）+ 定位（em 单独一行小字） */
.price-amount {
  font-family: var(--font-mono); font-size: 32px; font-weight: 500;
  color: var(--c-ink); margin: 14px 0 6px; font-variant-numeric: tabular-nums;
  line-height: 1.2; min-height: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.price-amount em {
  font-style: normal; font-family: var(--font-sans); font-size: 12.5px;
  color: var(--c-cinnabar); font-weight: 500; letter-spacing: 0.5px;
  margin-top: 8px; line-height: 1.4;
}
/* 层级 3：一句话说明（固定最小高度 2 行，保证列表起始对齐） */
.price-desc {
  font-size: 13.5px; color: var(--c-text-2); line-height: 1.8;
  margin: 14px 0 24px; min-height: 48px;
  display: flex; align-items: flex-start; justify-content: center;
}
/* 层级 4：功能列表（flex:1 撑开，把按钮顶到底部） */
.price-card ul {
  list-style: none; text-align: left; margin: 0 0 28px;
  flex: 1;
  border-top: 1px solid var(--c-line); padding-top: 8px;
}
.price-card li {
  font-size: 13.5px; color: var(--c-text-2); padding: 9px 0 9px 0;
  position: relative; border-bottom: 1px dashed var(--c-line); line-height: 1.6;
  display: flex; align-items: center; gap: 10px;
}
.price-card li:last-child { border-bottom: none; }
/* 条目标记用 SVG check 图标（圆圈+对勾），不再用 ::before 圆圈，避免重复 */
.price-card li svg.ic {
  width: 17px; height: 17px; flex-shrink: 0;
  color: var(--c-cinnabar);
}
/* 层级 5：按钮（自动沉底，三卡水平对齐） */
.price-card .btn {
  margin-top: auto; width: 100%; padding: 13px 0;
}
.price-note { text-align: center; margin-top: 36px; font-size: 13px; color: var(--c-text-3); }

/* 价值卡片（首页用过的，内页可能复用） */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  background: var(--c-white); border: 1px solid var(--c-line);
  padding: 32px 26px; border-radius: 2px;
}
.value-icon { font-size: 26px; margin-bottom: 16px; }
.value-card h3 {
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: var(--c-ink); margin-bottom: 10px;
}
.value-card p { font-size: 13px; color: var(--c-text-2); line-height: 1.8; margin-bottom: 14px; }
.value-more { font-size: 12.5px; color: var(--c-cinnabar); font-weight: 500; }

/* 信任卡片 */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card {
  background: var(--c-white); border: 1px solid var(--c-line);
  padding: 32px 26px; border-radius: 2px; text-align: center;
}
.trust-icon { font-size: 26px; margin-bottom: 14px; }
.trust-card h3 {
  font-family: var(--font-serif); font-size: 17px; font-weight: 600;
  color: var(--c-ink); margin-bottom: 10px;
}
.trust-card p { font-size: 12.5px; color: var(--c-text-2); line-height: 1.8; }

/* ---------- 环节页（stage.html） ---------- */
.stage-hero-icon { font-size: 44px; margin-bottom: 16px; }
.stage-sub { color: rgba(249,247,242,0.65); }
.stage-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0; }
.stage-chip {
  padding: 8px 18px; border: 1px solid var(--c-line); border-radius: 2px;
  font-size: 13px; color: var(--c-text-2); text-decoration: none;
  transition: all 0.2s; background: var(--c-white);
}
.stage-chip:hover { border-color: var(--c-ink); color: var(--c-ink); }
.stage-chip.active {
  background: var(--c-ink); color: var(--c-paper); border-color: var(--c-ink);
}
.stage-panel {
  background: var(--c-white); border: 1px solid var(--c-line);
  padding: 40px; border-radius: 2px; margin-bottom: 32px;
}
.stage-intro { font-size: 15px; color: var(--c-text-2); line-height: 1.9; margin-bottom: 28px; }
.stage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.stage-list { list-style: none; }
.stage-list li {
  font-size: 14px; color: var(--c-text-2); padding: 10px 0 10px 24px;
  position: relative; border-bottom: 1px dashed var(--c-line); line-height: 1.7;
}
.stage-list li::before {
  content: ''; position: absolute; left: 0; top: 16px;
  width: 9px; height: 9px; border: 2px solid var(--c-cinnabar); border-radius: 50%;
}
.stage-count {
  font-family: var(--font-mono); font-size: 13px; color: var(--c-cinnabar);
}
.stage-more { margin-top: 20px; }
.stage-empty { text-align: center; padding: 60px 20px; color: var(--c-text-3); }
.stage-cta { text-align: center; margin: 48px 0; }

/* ---------- 注册页（register.html） ---------- */
.register-wrap, .reg-wrap {
  max-width: 560px; margin: -30px auto 60px; position: relative; z-index: 5;
  background: var(--c-white); border: 1px solid var(--c-line);
  padding: 44px; border-radius: 2px;
  box-shadow: 0 24px 48px rgba(26, 60, 52, 0.07);
}
.register-wrap input, .register-wrap select, .register-wrap textarea,
.reg-wrap input, .reg-wrap select, .reg-wrap textarea,
.content-card input, .content-card select, .content-card textarea {
  width: 100%; padding: 12px 16px; margin-bottom: 16px;
  border: 1px solid var(--c-line); border-radius: 2px; background: var(--c-paper);
  font-family: var(--font-sans); font-size: 14px; color: var(--c-text);
  outline: none; transition: border-color 0.2s;
}
.register-wrap input:focus, .reg-wrap input:focus,
.content-card input:focus { border-color: var(--c-ink); }
.register-wrap label, .reg-wrap label, .content-card label {
  display: block; font-size: 13px; font-weight: 500; color: var(--c-ink);
  margin-bottom: 6px;
}

/* ---------- 批次页（batch.html） ---------- */
.batch-head, .batch-card {
  background: var(--c-white); border: 1px solid var(--c-line);
  padding: 36px; border-radius: 2px; margin-bottom: 28px;
}

/* ---------- 底部（内页统一） ---------- */
.footer {
  background: var(--c-ink-deep) !important; color: rgba(249,247,242,0.55) !important;
  padding: 48px 0 !important; text-align: center; font-size: 13px;
  border-top: none !important; margin-top: 0 !important;
}
.footer p:first-child, .footer .footer-brand {
  font-family: var(--font-serif); font-size: 16px; color: var(--c-paper) !important;
  margin-bottom: 12px; letter-spacing: 1px;
}
.footer-note { margin-top: 6px; }
.footer a { color: rgba(249,247,242,0.55) !important; text-decoration: none; }
.footer a:hover { color: var(--c-paper) !important; }

/* ---------- 内页 body 顶部留白（因为 fixed 导航） ---------- */
.page-hero, .query-hero { margin-top: 0; }
body > .container:first-of-type { padding-top: 40px; }

/* ---------- 响应式 ---------- */
@media (max-width: 1000px) {
  .feature-grid, .price-grid, .price-grid-page, .value-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .result-grid, .stage-grid { grid-template-columns: 1fr; }
  .topnav a:not(.nav-login) { display: none; }
  .topnav a:nth-child(-n+3):not(.nav-login) { display: inline; }
  .page-hero h1, .query-hero h1 { font-size: 32px; }
  .content-card { padding: 28px; }
}
@media (max-width: 560px) {
  .feature-grid, .price-grid, .price-grid-page, .value-grid, .trust-grid { grid-template-columns: 1fr; }
  .query-form { flex-direction: column; }
  .query-btn { width: 100%; }
  .conclusion-head { flex-wrap: wrap; }
  .conclusion-meta { margin-left: 0; text-align: left; width: 100%; }
}