/* ========================================================================
   轻盈包装制品 · 官网改版
   设计系统：深蓝 + 橙金工业风，专业 / 美观 / 大气
   字体使用系统字体栈，规避字体侵权；纯 CSS，无第三方依赖
   ===================================================================== */

:root {
  /* 主色 */
  --navy-900: #0a1f36;
  --navy-800: #0e2a47;
  --navy-700: #143a5f;
  --navy-600: #1d4e7e;
  --accent:   #f5a524;
  --accent-600: #e08e12;
  --accent-soft: #fff4e0;

  /* 文本 */
  --ink:   #16212e;
  --muted: #5b6b7c;
  --line:  #e4ebf1;

  /* 背景 */
  --bg:      #ffffff;
  --bg-soft: #f4f8fc;
  --bg-deep: #0a1f36;

  /* 形状 & 阴影 */
  --radius:   16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(14,42,71,.06);
  --shadow:    0 14px 40px rgba(14,42,71,.10);
  --shadow-lg: 0 24px 60px rgba(14,42,71,.16);

  --maxw: 1200px;
  --header-h: 72px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
          "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 基础重置 ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { margin: 0; line-height: 1.25; font-weight: 700; color: var(--navy-900); letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; cursor: pointer;
  border: 1.5px solid transparent; transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #2a1a00; box-shadow: 0 8px 20px rgba(245,165,36,.30); }
.btn-primary:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(245,165,36,.38); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline { border-color: var(--navy-700); color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn svg { width: 18px; height: 18px; }

/* ---------- 顶部导航 ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 2px 16px rgba(14,42,71,.08);
  height: 64px;
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 19px; color: #fff; letter-spacing: .02em; }
.site-header.scrolled .brand { color: var(--navy-900); }
.brand .logo {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center; color: var(--accent); font-weight: 800;
  box-shadow: inset 0 0 0 1.5px rgba(245,165,36,.5);
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 16px; border-radius: 8px; font-weight: 500; font-size: 15px;
  color: rgba(255,255,255,.92); transition: all .2s ease;
}
.site-header.scrolled .nav-links a { color: var(--navy-800); }
.nav-links a:hover { color: var(--accent); background: rgba(255,255,255,.08); }
.site-header.scrolled .nav-links a:hover { background: var(--bg-soft); }
.nav-links a.active { color: var(--accent); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; border-radius: 2px; }
.site-header.scrolled .nav-toggle span { background: var(--navy-900); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,31,54,.92) 0%, rgba(10,31,54,.72) 42%, rgba(10,31,54,.35) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 60px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,165,36,.16); color: var(--accent);
  padding: 7px 16px; border-radius: 999px; font-size: 14px; font-weight: 600;
  border: 1px solid rgba(245,165,36,.35); margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 5.2vw, 60px); color: #fff; margin-bottom: 20px; font-weight: 800; }
.hero h1 .hl { color: var(--accent); }
.hero p.lead { font-size: clamp(16px, 2vw, 20px); max-width: 620px; color: rgba(255,255,255,.9); margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 38px; }
.hero-stats .stat .num { font-size: 34px; font-weight: 800; color: #fff; }
.hero-stats .stat .num span { color: var(--accent); }
.hero-stats .stat .label { font-size: 14px; color: rgba(255,255,255,.78); }

/* ---------- 通用 section ---------- */
.section { padding: 92px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.eyebrow {
  display: inline-block; color: var(--accent-600); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; font-size: 13px; margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }

/* ---------- 网格 ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 卡片 ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: all .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

/* 产品卡 */
.product-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.product-media {
  height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: grid; place-items: center;
}
.product-media .ico { width: 84px; height: 84px; color: var(--accent); opacity: .95; }
.product-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.92); color: var(--navy-800);
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px;
}
.product-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 20px; margin-bottom: 10px; }
.product-body p { color: var(--muted); font-size: 14.5px; flex: 1; margin-bottom: 18px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip { font-size: 12.5px; color: var(--navy-700); background: var(--bg-soft); border: 1px solid var(--line); padding: 4px 11px; border-radius: 999px; }
.product-body .more { font-weight: 600; color: var(--accent-600); font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }
.product-body .more svg { width: 16px; height: 16px; transition: transform .2s; }
.product-card:hover .more svg { transform: translateX(4px); }

/* ---------- 优势 ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .fico {
  flex: 0 0 auto; width: 50px; height: 50px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent-600);
  display: grid; place-items: center; box-shadow: inset 0 0 0 1px rgba(245,165,36,.25);
}
.feature .fico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 18px; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- 步骤 ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding: 28px 26px 28px 76px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 22px; top: 26px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-800); color: var(--accent); font-weight: 800;
  display: grid; place-items: center; font-size: 18px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- 数据条 ---------- */
.stats-band { background: var(--bg-deep); color: #fff; border-radius: var(--radius); padding: 46px 30px; }
.stats-band .grid { gap: 20px; }
.stat-box { text-align: center; }
.stat-box .num { font-size: 42px; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-box .lbl { color: rgba(255,255,255,.8); font-size: 15px; margin-top: 10px; }

/* ---------- 关于块（图文） ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split ul.checks { margin-top: 22px; display: grid; gap: 12px; }
.split ul.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; }
.split ul.checks li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--accent-600); margin-top: 2px; }
.split .section-head { text-align: left; margin: 0 0 18px; }

/* ---------- 应用场景 ---------- */
.case-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 260px; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-sm); }
.case-card .case-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); }
.case-card .case-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(10,31,54,.85), rgba(10,31,54,.1)); }
.case-card .case-ico { position: absolute; top: 22px; right: 22px; width: 56px; height: 56px; color: rgba(255,255,255,.5); }
.case-card .case-body { position: relative; z-index: 2; padding: 26px; }
.case-card .case-body h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.case-card .case-body p { color: rgba(255,255,255,.82); font-size: 14px; margin: 0; }

/* ---------- 新闻 ---------- */
.news-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.news-media { height: 170px; background: linear-gradient(135deg, var(--navy-700), var(--navy-600)); display: grid; place-items: center; color: rgba(255,255,255,.25); }
.news-media svg { width: 54px; height: 54px; }
.news-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 13px; color: var(--accent-600); font-weight: 600; margin-bottom: 10px; }
.news-body h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.news-body p { color: var(--muted); font-size: 14px; margin: 0 0 14px; flex: 1; }
/* 新闻卡片封面图 */
.news-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 文章详情封面图与正文图片 */
.article-cover { margin: 0 0 28px; }
.article-cover img { width: 100%; max-height: 440px; object-fit: cover; border-radius: var(--radius-sm); display: block; }
.prose img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 18px 0; border: 1px solid var(--line); display: block; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; background: #fff; overflow: hidden; transition: box-shadow .25s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: transparent; }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 600; font-size: 16.5px; display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--navy-900); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-soft); color: var(--navy-700); display: grid; place-items: center; transition: transform .3s, background .3s; position: relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: var(--navy-700); border-radius: 2px; }
.faq-item summary .plus::before { width: 12px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 12px; transition: transform .3s; }
.faq-item[open] summary .plus { background: var(--accent-soft); }
.faq-item[open] summary .plus::after { transform: scaleY(0); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* FAQ 分类导航 + 分组标题 */
.faq-cats { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 46px; }
.faq-cat { padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--navy-700); background: #fff; transition: all .2s; }
.faq-cat:hover { border-color: var(--navy-600); color: var(--accent-600); transform: translateY(-1px); }
.faq-group { max-width: 860px; margin: 0 auto 48px; scroll-margin-top: 90px; }
.faq-group-title { font-size: 22px; margin-bottom: 20px; padding-left: 14px; border-left: 4px solid var(--accent); }

/* ---------- CTA 条 ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy-800), var(--navy-600)); color: #fff; border-radius: var(--radius); padding: 56px 48px; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; font-size: 17px; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }

/* ---------- 面包屑 ---------- */
.breadcrumb { background: var(--bg-soft); padding: 14px 0; font-size: 14px; color: var(--muted); border-bottom: 1px solid var(--line); }
.breadcrumb a:hover { color: var(--accent-600); }
.breadcrumb .sep { margin: 0 8px; opacity: .5; }

/* ---------- 页面头图（内页） ---------- */
.page-hero { background: linear-gradient(120deg, var(--navy-800), var(--navy-600)); color: #fff; padding: calc(var(--header-h) + 70px) 0 70px; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 640px; font-size: 17px; margin: 0; }
.page-hero .eyebrow { color: var(--accent); }

/* ---------- 表单 ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14.5px; font-weight: 600; color: var(--navy-800); }
.field input, .field textarea, .field select {
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: #fff; transition: border .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(29,78,126,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.field .err { color: #c0392b; font-size: 13px; display: none; }
.field.invalid input, .field.invalid textarea { border-color: #c0392b; }
.field.invalid .err { display: block; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* 联系信息卡 */
.contact-info { display: grid; gap: 16px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.contact-row .cico { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 11px; background: var(--navy-800); color: var(--accent); display: grid; place-items: center; }
.contact-row .cico svg { width: 22px; height: 22px; }
.contact-row h4 { font-size: 15px; margin-bottom: 3px; color: var(--navy-900); }
.contact-row p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--bg-deep); color: rgba(255,255,255,.75); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; max-width: 320px; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: 14.5px; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; margin-bottom: 12px; color: rgba(255,255,255,.72); }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13.5px; color: rgba(255,255,255,.6); }
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--accent); }
.footer-flinks { border-top: 1px solid rgba(255,255,255,.1); margin-top: 22px; padding-top: 18px; display: flex; flex-wrap: wrap; align-items: center; font-size: 14px; }
.footer-flinks .fl-label { color: rgba(255,255,255,.55); font-weight: 600; margin-right: 10px; flex: 0 0 auto; }
.footer-flinks a { color: rgba(255,255,255,.72); transition: color .2s; padding: 2px 16px; border-left: 1px solid rgba(255,255,255,.16); }
.footer-flinks a:first-of-type { border-left: 0; padding-left: 0; }
.footer-flinks a:hover { color: var(--accent); text-decoration: underline; }

/* ---------- 滚动渐显 ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- 返回顶部 ---------- */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-800); color: #fff; border: 0; cursor: pointer;
  display: grid; place-items: center; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transform: translateY(12px); transition: all .3s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--accent); color: #2a1a00; }
.to-top svg { width: 22px; height: 22px; }

/* ---------- 响应式 ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: var(--header-h); right: 0; left: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 18px 22px; box-shadow: 0 12px 30px rgba(14,42,71,.14);
    transform: translateY(-130%); transition: transform .35s ease; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .site-header.scrolled .nav-links { top: 64px; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { color: var(--navy-800); padding: 13px 14px; border-bottom: 1px solid var(--line); }
  .nav-links a:hover { background: var(--bg-soft); }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero-stats { gap: 26px; }
  .hero-stats .stat .num { font-size: 28px; }
  .cta-band { padding: 42px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats-band { padding: 34px 20px; }
}

/* ---------- 正文富文本（详情/单页） ---------- */
.prose { color: var(--muted); font-size: 16px; line-height: 1.9; }
.prose p { margin: 0 0 1em; }
.prose img { border-radius: var(--radius-sm); margin: 14px 0; max-width: 100%; }
.prose h2, .prose h3 { color: var(--navy-900); margin: 1.2em 0 .5em; }
.prose ul, .prose ol { margin: 0 0 1em; padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }

/* 图文块兜底高度（避免无缩略图时塌陷） */
.split-media { min-height: 320px; }

/* ---------- 分页 ---------- */
.pager { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pager a, .pager span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 14px; border-radius: 10px; border: 1px solid var(--line); font-size: 14.5px; color: var(--navy-800); background: #fff; transition: all .2s; }
.pager a:hover { border-color: var(--navy-600); color: var(--accent-600); }
.pager .active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.pager .disabled { opacity: .45; pointer-events: none; }
