:root {
  --forest: #16382c;
  --rust: #c4511a;
  --cream: #f6f1e7;
  --ink: #1d241f;
  --card: #fffaf3;
  --line: #e4d8c8;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Verdana, "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}
a { color: #8d3a12; }
.strip-head { background: var(--forest); color: #f6f1e7; }
.strip-head .inner, .strip .inner, footer .inner { width: min(1000px, calc(100% - 28px)); margin: 0 auto; }
.brandrow { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; gap: 12px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 800; letter-spacing: 0.04em; }
.nav { display: flex; gap: 6px; }
.nav a { color: #f6f1e7; text-decoration: none; padding: 8px 12px; border-radius: 999px; }
.nav a[aria-current="page"] { background: var(--rust); }
.hero { padding: 10px 0 36px; }
.hero h1 { font-size: 34px; line-height: 1.3; margin: 8px 0 12px; }
.points { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 14px; list-style: none; }
.points li { background: rgba(255,255,255,0.08); border-radius: 999px; padding: 6px 12px; font-size: 13px; }
.actions { display: flex; flex-wrap: wrap; gap: 8px; }
.btn { display: inline-block; background: var(--rust); color: #fff; text-decoration: none; font-weight: 800; padding: 12px 16px; border-radius: 14px; }
.btn.ghost { background: transparent; border: 1px solid #f0c2ae; color: #fff; }
.btn.slim { background: var(--forest); color: #fff; }
.strip { padding: 22px 0; }
.strip.deep { background: #214c3c; color: #f6f1e7; }
.strip.deep h2, .strip.deep h3 { color: #fff; }
.strip h2 { margin: 0 0 10px; font-size: 24px; color: var(--forest); }
.panel { background: var(--card); border-radius: 28px; padding: 16px 18px 6px; border: 1px solid var(--line); }
.cols { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 14px; }
.cols3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.comp, .item { background: #fff; border-radius: 18px; padding: 12px 12px 2px; margin: 0 0 10px; }
.comp h3, .item h3, .faq-item h3 { margin: 0 0 6px; font-size: 16px; }
.faq-item { background: #fff; border-radius: 16px; padding: 10px 12px; margin: 0 0 8px; }
table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; }
th, td { padding: 8px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
ol.steps { padding-left: 18px; }
.news { list-style: none; padding: 0; margin: 0; }
.news li { background: #fff; border-radius: 16px; padding: 10px 12px; margin: 0 0 8px; }
.news h3 { margin: 0; font-size: 15px; }
.news time { color: #7a6454; font-size: 12px; }
.note { background: #fff1e8; border-radius: 16px; padding: 10px 12px; margin: 0 0 12px; }
footer { background: #10281f; color: #eadfD2; padding: 22px 0 30px; font-size: 13px; }
footer a { color: #f0b89a; }
@media (max-width: 800px) {
  .brandrow, .cols, .cols3 { display: block; }
  .nav { margin-top: 8px; flex-wrap: wrap; }
  .hero h1 { font-size: 28px; }
}
