:root {
  --ink: #1a1a1a;
  --ink-2: #3a3a3a;
  --ink-3: #5c5c5c;
  --paper: #ffffff;
  --page: #eceeef;
  --panel: #f5f6f7;
  --line: #cfd3d6;
  --line-strong: #a8adb2;
  --navy: #1e2a38;
  --navy-2: #2b3b4d;
  --link: #1e3a5f;
  --link-hover: #0f243d;
  --ok: #2f4a3c;
  --warn: #5a4a2a;
  --rec: #eef1f4;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "PT Sans", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--page);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.flag-bar {
  height: 6px;
  background: linear-gradient(
    90deg,
    #ffffff 0 33.33%,
    #0039a6 33.33% 66.66%,
    #d52b1e 66.66% 100%
  );
  border-bottom: 1px solid #9aa0a6;
}
.service-bar {
  background: var(--navy);
  color: #e6e8ea;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 7px 0;
}
.service-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.service-bar span { opacity: 0.88; }

.sh { background: var(--paper); }
.sh-top { border-bottom: 1px solid var(--line); }
.sh-brand {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
}
.sh-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.sh-meta {
  margin-left: auto;
  text-align: right;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sh-mark {
  width: 44px;
  height: 52px;
  flex-shrink: 0;
}
.sh-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.sh-logo-text b {
  font-family: "PT Serif", "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}
.sh-logo-text small {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 400;
  margin-top: 3px;
}
.sh-nav { background: var(--navy); }
.sh-nav-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.sh-nav a {
  font-size: 14px;
  color: #e8eaed;
  padding: 11px 14px;
  border-right: 1px solid #3a4a5c;
  white-space: nowrap;
}
.sh-nav a:hover { background: var(--navy-2); color: #fff; }
.sh-nav a.active {
  background: #0f1822;
  color: #fff;
  box-shadow: inset 0 -3px 0 #c5c9ce;
}
.sh-actions { display: none; }
.mob-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}
.mob-menu-btn span,
.mob-menu-btn span::before,
.mob-menu-btn span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}
.mob-menu-btn span::before,
.mob-menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}
.mob-menu-btn span::before { top: -6px; }
.mob-menu-btn span::after { top: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2px;
  padding: 9px 14px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--navy);
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-2); }
.btn-ghost { background: var(--paper); color: var(--navy); }
.btn-ghost:hover { background: var(--panel); }
.btn-sm { padding: 6px 10px; font-size: 13px; }

.hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 26px;
}
.hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.hero h1,
.page-hero h1,
.section h2,
.prose h2,
.prose h3 {
  font-family: "PT Serif", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}
.hero h1 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
  max-width: 18ch;
  margin-bottom: 12px;
  color: var(--navy);
}
.hero-lead {
  max-width: 68ch;
  color: var(--ink-2);
  font-size: 17px;
  margin-bottom: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.stat {
  background: var(--panel);
  padding: 12px 14px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-family: "PT Serif", "Times New Roman", serif;
  font-size: 20px;
  color: var(--navy);
}
.stat span { color: var(--ink-3); font-size: 13px; }

.section { padding: 28px 0; }
.section h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--navy);
  margin-bottom: 8px;
}
.section-lead { color: var(--ink-2); max-width: 74ch; margin-bottom: 16px; }
.section-lead a,
.prose a,
.crumbs a:hover {
  color: var(--link);
  text-decoration: underline;
}

.table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--line);
}
table.cmp { width: 100%; border-collapse: collapse; min-width: 820px; }
table.cmp th,
table.cmp td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.cmp th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  background: var(--panel);
  font-weight: 700;
  border-bottom: 1px solid var(--line-strong);
}
table.cmp tr:nth-child(even) { background: #fafbfc; }
table.cmp tr.ours { background: var(--rec); }
table.cmp .name { font-weight: 700; }
table.cmp .name a { color: var(--link); text-decoration: underline; }
table.cmp .name small { display: block; font-weight: 400; color: var(--ink-3); margin-top: 2px; }
table.cmp .name .badge {
  display: block;
  width: max-content;
  margin: 6px 0 0;
  white-space: nowrap;
}
.badge {
  display: inline-block;
  border-radius: 0;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
}
.badge.rec { background: var(--ok); }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
h1 .badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  position: relative;
  top: -2px;
}
.price { font-weight: 700; white-space: nowrap; color: var(--navy); }
.price-old { color: var(--ink-3); text-decoration: line-through; font-weight: 400; margin-right: 6px; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px 18px;
}
.card.ours { border-left: 4px solid var(--navy); }
.card h3 {
  font-family: "PT Serif", "Times New Roman", serif;
  font-size: 20px;
  margin: 8px 0;
  color: var(--navy);
}
.card p { color: var(--ink-2); margin-bottom: 12px; }
.meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.meta span {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 3px 8px;
  font-size: 12px;
  color: var(--ink-2);
}
.card-actions { display: flex; flex-wrap: wrap; gap: 8px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.intent {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px 18px;
  display: block;
}
.intent:hover { border-color: var(--navy); }
.intent h3 {
  font-family: "PT Serif", "Times New Roman", serif;
  margin: 8px 0;
  color: var(--navy);
}
.intent p { color: var(--ink-2); }

.prose { max-width: 78ch; }
.prose h2, .prose h3 { margin: 24px 0 8px; color: var(--navy); }
.prose p, .prose li { color: var(--ink-2); margin-bottom: 10px; }
.prose ul, .prose ol { padding-left: 20px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose strong { color: var(--ink); }

.faq { display: grid; gap: 0; border: 1px solid var(--line); background: var(--paper); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  padding: 12px 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background: var(--panel);
}
.faq-q span { color: var(--ink-3); font-weight: 400; }
.faq-a { display: none; padding: 12px 14px 14px; color: var(--ink-2); background: var(--paper); }
.faq-item.open .faq-a { display: block; }

.crumbs {
  font-size: 13px;
  color: var(--ink-3);
  margin: 16px 0 8px;
}
.crumbs a { color: var(--ink-3); }

.note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  padding: 12px 14px;
  color: var(--ink-2);
  margin: 14px 0;
}

.footer {
  margin-top: 24px;
  background: var(--navy);
  color: #d7dbe0;
  padding: 28px 0 16px;
}
.footer a { color: #d7dbe0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 24px; }
.footer-logo {
  font-family: "PT Serif", "Times New Roman", serif;
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}
.footer-col-title { color: #fff; font-weight: 700; margin-bottom: 10px; font-size: 14px; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 6px; opacity: 0.85; }
.footer-col a:hover { opacity: 1; text-decoration: underline; }
.footer-disclaimer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #3a4a5c;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 92ch;
}
.footer-bottom {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid #3a4a5c;
  font-size: 12px;
  opacity: 0.8;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 6px 0 16px;
}
.page-hero .container,
.page-hero.container { display: block; }
.page-hero h1 {
  font-size: clamp(26px, 4vw, 36px);
  color: var(--navy);
  margin-bottom: 8px;
}

.verdict {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 14px 16px;
  margin: 14px 0 18px;
}
.verdict.good { border-left: 4px solid var(--navy); background: var(--rec); }
.stars { color: var(--navy); letter-spacing: 1px; }
.stale {
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
table.cmp tr.avg-row td {
  font-weight: 700;
  background: var(--panel);
}
.rating-note {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 12px;
  max-width: 74ch;
}

@media (max-width: 980px) {
  .stats, .cards, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .sh-meta { display: none; }
  .sh-nav { display: none; }
  .mob-menu-btn { display: block; margin-left: auto; }
  body.nav-open .sh-nav { display: block; }
  body.nav-open .sh-nav-inner { flex-direction: column; }
  body.nav-open .sh-nav a {
    border-right: 0;
    border-bottom: 1px solid #3a4a5c;
  }
  .hero h1 { max-width: none; }
}
