/* ══════════════════════════════════════════════════════════════
   BRONFELD 特征层（浅色 · soft 卡片 · solid 按钮）
   ══════════════════════════════════════════════════════════════ */

/* ① 排版 */
.section-title, h1, h2, h3 {
  font-family: var(--font-head);
  text-transform: none;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.section-title em, .section-title span { color: var(--accent); font-style: normal; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: var(--fs-xs); font-weight: 700; color: var(--muted); }
.link-arrow { font-weight: 700; letter-spacing: -0.01em; text-transform: none; }

/* ② 按钮 */
.btn, .pd__btn, button[type=submit] {
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.005em;
  font-size: var(--fs-base2);
  padding: 14px 28px;
  transition: all .18s ease;
}
.btn, .pd__btn, button[type=submit] { background: var(--accent); color: #FFFFFF; border: 0; }
.btn:hover, .pd__btn:hover, button[type=submit]:hover { filter: brightness(1.12); transform: translateY(-1px); }
.card__btn {
  border-radius: var(--r-pill); background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent); font-size: var(--fs-base2); padding: 11px 20px; font-weight: 700;
  font-family: var(--font-head); transition: all .18s ease;
}
.card__btn:hover { background: var(--accent); color: #FFFFFF; }

/* ③ 卡片 */
.cat, .card, .prod-card, .blog-card, .sc-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-16);
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.03);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cat:hover, .card:hover, .prod-card:hover, .blog-card:hover { transform: translateY(-3px); border-color: rgba(var(--accent-rgb), .45); box-shadow: 0 4px 14px rgba(0,0,0,.06), 0 18px 44px rgba(0,0,0,.07); }
.cat__img, .card__img, .prod-card__img { border-radius: var(--r-10); background-color: var(--surface-2); }

/* ④ 表单 */
.filter-group select, .filter-group input, input[type=text], input[type=email], input[type=search], textarea, select {
  background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-10);
  color: var(--text); font-family: var(--font-body); font-size: var(--fs-base2); padding: 11px 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.filter-group select:focus, input:focus, textarea:focus, select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .15); outline: none;
}

/* ⑤ 页头页脚 */
.topbar, .site-header, header { background: var(--surface); border-bottom: 1px solid var(--border); }
.nav__link, .topbar a { color: var(--text-2); font-weight: 600; }
.nav__link:hover { color: var(--accent); }
.footer { background: var(--surface-2); border-top: 1px solid var(--border); color: var(--text-2); }
.footer__h { color: var(--text); font-family: var(--font-head); font-weight: 800; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--accent); }

/* ⑥ 内页元素 */
.breadcrumb, .crumbs { color: var(--muted); font-size: var(--fs-sm); }
.badge, .tag, .pill { border-radius: var(--r-pill); background: rgba(var(--accent-rgb), .14); color: var(--accent); font-weight: 700; font-size: var(--fs-xs); padding: 5px 12px; border: 0; }
.pagination a, .page-link { border-radius: var(--r-10); border: 1px solid var(--border); background: transparent; color: var(--text-2); }
.pagination a:hover, .page-link:hover, .pagination .active, .page-link.active { background: var(--accent); color: #FFFFFF; border-color: var(--accent); }

/* ⑦ 表格 */
.compare-table, table { border-color: var(--border); }
.compare-table th, table th { background: var(--surface-2); color: var(--text); font-family: var(--font-head); font-weight: 700; text-transform: none; letter-spacing: normal; }
.compare-table td, table td { border-color: var(--border-light); }
.compare-table tr:hover td { background: var(--surface-2); }

/* ⑧ 对比区块 */
.trust, .stats, .cta-band { background: var(--accent); color: #fff; border-radius: var(--r-16); }
.trust strong, .stats strong { color: #fff; font-family: var(--font-head); }

/* ⑨ 无障碍 */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }