:root {
  --ink: #1a1f2e; --muted: #5a6272; --bg: #ffffff; --soft: #f4f6f9; --line: #e3e7ee;
  --brand: #14532d; --accent: #b45309;
  --a: #16a34a; --b: #65a30d; --c: #d97706; --d: #ea580c; --f: #dc2626;
}
* { box-sizing: border-box; }
body { margin: 0; font: 17px/1.65 -apple-system, "Segoe UI", Roboto, Georgia, serif; color: var(--ink); background: var(--bg); }
.wrap { max-width: 860px; margin: 0 auto; padding: 0 20px; }
a { color: var(--brand); }
h1 { font-size: 1.9rem; line-height: 1.25; } h2 { margin-top: 2.2rem; }
.site-header { border-bottom: 1px solid var(--line); background: var(--bg); }
.site-header .wrap { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; }
.logo { font-weight: 700; text-decoration: none; color: var(--ink); font-size: 1.1rem; }
.site-header nav a { margin-left: 18px; color: var(--muted); text-decoration: none; }
.crumbs { font-size: .85rem; color: var(--muted); margin-top: 18px; }
.crumbs a { color: var(--muted); }
.updated { color: var(--muted); font-size: .85rem; }
.verdict-card { display: flex; gap: 20px; align-items: center; background: var(--soft); border: 1px solid var(--line); border-radius: 12px; padding: 20px; margin: 20px 0; }
.grade-badge { font-size: 2.6rem; font-weight: 800; width: 76px; height: 76px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; }
.grade-A .grade-badge { background: var(--a); } .grade-B .grade-badge { background: var(--b); }
.grade-C .grade-badge { background: var(--c); } .grade-D .grade-badge { background: var(--d); }
.grade-F .grade-badge { background: var(--f); }
.score-line { font-size: 1.15rem; }
.verdict-copy { margin: 4px 0 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; margin: 20px 0; }
.stats-grid div { background: var(--soft); border: 1px solid var(--line); border-radius: 10px; padding: 12px; text-align: center; }
.stats-grid strong { display: block; font-size: 1.3rem; }
.stats-grid span { color: var(--muted); font-size: .8rem; }
table.components { width: 100%; border-collapse: collapse; }
table.components th, table.components td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); }
.bar { background: linear-gradient(90deg, #fde68a var(--w), transparent var(--w)); border-radius: 4px; padding: 0 6px; min-width: 46px; }
blockquote.owner-report { border-left: 4px solid var(--accent); margin: 18px 0; padding: 4px 18px; background: var(--soft); border-radius: 0 10px 10px 0; }
blockquote.owner-report cite { color: var(--muted); font-size: .82rem; }
.recall { border: 1px solid var(--line); border-radius: 10px; padding: 14px 18px; margin: 14px 0; }
.recall h3 { margin: 0 0 4px; font-size: 1.02rem; }
.recall-meta { color: var(--muted); font-size: .82rem; margin: 0 0 8px; }
.cta { border: 2px solid var(--accent); border-radius: 12px; padding: 18px 22px; margin: 26px 0; background: #fffbeb; }
.cta h3 { margin-top: 0; }
.btn { display: inline-block; background: var(--accent); color: #fff; padding: 10px 22px; border-radius: 8px; text-decoration: none; font-weight: 600; }
details.faq { border-bottom: 1px solid var(--line); padding: 10px 0; }
details.faq summary { font-weight: 600; cursor: pointer; }
.note { color: var(--muted); font-size: .88rem; }
.hero { text-align: center; padding: 44px 0 20px; }
.vehicle-list { list-style: none; padding: 0; }
.vehicle-list li { display: flex; justify-content: space-between; align-items: center; padding: 8px 4px; border-bottom: 1px solid var(--line); }
.chip { font-weight: 700; color: #fff; border-radius: 6px; padding: 1px 10px; font-size: .85rem; }
.chip.grade-A { background: var(--a); } .chip.grade-B { background: var(--b); }
.chip.grade-C { background: var(--c); } .chip.grade-D { background: var(--d); }
.chip.grade-F { background: var(--f); }
ul.related { padding-left: 20px; }
.site-footer { border-top: 1px solid var(--line); margin-top: 48px; padding: 22px 0; color: var(--muted); font-size: .82rem; }
@media (max-width: 560px) { .verdict-card { flex-direction: column; text-align: center; } }
