:root {
  --bg: #ffffff;
  --bg-2: #f6f7fb;
  --surface: #ffffff;
  --surface-2: #eef0f8;
  --ink: #152047;
  --muted: #5c657a;
  --faint: #8a93a8;
  --line: #e4e7f0;
  --line-strong: #cfd5e4;
  --navy: #1e3a8a;
  --navy-2: #152c6e;
  --amber: #e8770a;
  --amber-2: #1e3a8a;
  --teal: #1e4db7;
  --danger: #c24141;
  --ok: #1f7a4d;
  --banner: #eceef8;
  --shadow: 0 12px 40px rgba(21, 32, 71, 0.08);
  --shadow-orange: 0 14px 34px rgba(232, 119, 10, 0.28);
  --radius: 14px;
  --max: 1140px;
  --sans: "Manrope", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--amber); }
code {
  font-size: 0.86em;
  color: var(--navy);
  background: var(--banner);
  padding: 0.1em 0.35em;
  border-radius: 6px;
}
.lede { font-size: 18px; }
button, input, select, textarea { font: inherit; color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--ink);
  font-weight: 800;
}
.brand:hover { color: var(--ink); }
.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(240px, 52vw);
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav a {
  padding: 8px 11px;
  border-radius: 8px;
  color: #2b3450;
  font-size: 14px;
  font-weight: 700;
}
.nav a:hover, .nav a.active {
  color: var(--navy);
  background: var(--banner);
}
.nav-item { position: relative; }
.nav-item-row {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-sub-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
  color: #2b3450;
  line-height: 0;
  border-radius: 8px;
}
.nav-sub-toggle svg { transition: transform 0.2s ease; }
.nav-item.open .nav-sub-toggle svg { transform: rotate(180deg); }
.nav-item .dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  right: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 50;
}
.nav-item .dropdown a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { display: block; }
.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
  line-height: 0;
  z-index: 70;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-menu { display: none; }
.nav-toggle.is-open .icon-close { display: block; }
.nav-backdrop { display: none; }

.hero {
  background-color: #EFEEF6;
  padding: 100px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 0 rgba(194, 65, 65, 0.5);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(194, 65, 65, 0); }
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 16px 0 18px;
  max-width: 18ch;
  color: var(--navy-2);
}
.hero p.lede {
  max-width: 54ch;
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--amber); color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { color: #fff; }
.disclaimer {
  margin-top: 28px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  max-width: 70ch;
  background: var(--bg-2);
}

.section { padding: 28px 0 64px; }
.highlights { padding: 36px 0 12px; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
}
.highlights-grid h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy-2);
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}
.highlights-grid p {
  margin: 0;
  color: #7e85a5;
  font-size: 16px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--navy-2);
}
.section-head p { margin: 6px 0 0; color: var(--muted); }

.rank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tested-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 32px;
  padding: 8px 4px 8px 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pick {
  padding: 22px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #eef2ff, #fff 42%);
  box-shadow: var(--shadow-orange);
}
.pick-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}
.badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  padding: 5px 8px;
  border-radius: 999px;
}
.score-orb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  flex-shrink: 0;
  color: var(--navy);
}
.score-orb small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: -4px;
}
.pick h3, .mini h3, .review-card h3 {
  font-size: 26px;
  margin: 18px 0 8px;
  letter-spacing: -0.03em;
}
.muted { color: var(--muted); }
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}
.chip {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
}
.card-cta { margin-top: auto; padding-top: 16px; }
.mini { padding: 20px; }
.mini .score-line {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--navy);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: var(--surface);
}
th, td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
th {
  color: var(--faint);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--surface-2);
}
tr:hover td { background: #fafbff; }
.score-cell { font-family: var(--serif); font-size: 20px; color: var(--navy); }
.name-cell { font-weight: 700; }

.method-grid, .guide-grid, .review-grid, .split, .blog-grid, .services-grid {
  display: grid;
  gap: 16px;
}
.method-grid { grid-template-columns: repeat(3, 1fr); }
.guide-grid { grid-template-columns: repeat(3, 1fr); }
.review-grid { grid-template-columns: repeat(2, 1fr); }
.blog-grid { grid-template-columns: repeat(3, 1fr); }
.services-grid { grid-template-columns: repeat(2, 1fr); }
.split { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
.method-card, .guide-card, .review-card, .side-card, .form-card, .post-card, .service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.post-card {
  padding: 0 0 20px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.post-card:hover {
  box-shadow: 0 16px 36px rgba(21, 32, 71, 0.16);
}
.method-card b { display: block; font-size: 13px; color: var(--navy); margin-bottom: 8px; }
.method-card p { margin: 0; }
.method-grid .method-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 20px;
}
.method-grid .method-card .testimonial-name {
  margin: auto 0 0;
  padding-top: 16px;
  font-size: 13px;
  font-weight: 800;
  color: #1e3a8a;
}
.guide-card h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -0.03em; }

.page-banner {
  background: var(--banner);
  padding: 42px 0;
  text-align: center;
}
.page-banner h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 600;
  color: var(--navy-2);
  margin: 0;
}
.page-banner.post-banner {
  text-align: left;
  padding: 36px 0 32px;
}
.post-hero-inner {
  text-align: left;
}
.post-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 14px;
  margin: 0 0 18px;
  color: #5c657a;
}
.post-crumbs a {
  color: #1e4db7;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.post-crumbs a:hover { color: var(--amber); }
.post-crumbs .crumb-sep {
  margin: 0 8px;
  color: #8a93a8;
}
#post-banner-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--navy-2);
  max-width: 46rem;
  margin: 0 0 22px;
  overflow-wrap: anywhere;
}
.post-byline {
  display: flex;
  align-items: center;
  gap: 12px;
}
.post-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.post-avatar-fallback {
  display: grid;
  place-items: center;
  background: #1e3a8a;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.post-byline p {
  margin: 0;
  font-size: 14px;
  color: #5c657a;
}
.post-author {
  color: #1e4db7;
  font-weight: 700;
}
.byline-dot {
  margin: 0 4px;
  color: #8a93a8;
}
.post-author-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 36px 0 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7f8fc;
}
.post-author-card .post-avatar,
.post-author-card .post-avatar-fallback {
  width: 48px;
  height: 48px;
  font-size: 14px;
}
.post-author-card h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-family: var(--sans);
}
.post-author-card .role {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--faint);
  font-weight: 700;
}
.post-author-card p {
  margin: 0;
  font-size: 14px;
  color: #4a5570;
}
.page-hero { padding: 48px 0 10px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 10px 0;
  color: var(--navy-2);
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 8px;
}
.filter-btn, .check {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.filter-btn.active, .filter-btn:hover { color: var(--navy); border-color: var(--navy); }

.review-hero-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  margin: 20px 0 28px;
}
.review-hero-card h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  margin: 8px 0 10px;
  letter-spacing: -0.03em;
}
.bars { display: grid; gap: 10px; }
.bar-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; font-size: 13px; }
.bar {
  height: 8px;
  background: var(--surface-2);
  border-radius: 99px;
  overflow: hidden;
  grid-column: 1 / -1;
}
.bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--amber));
}
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}
.post-layout.has-toc {
  grid-template-columns: minmax(0, 1fr) 260px;
}
.post-layout.has-toc .post-article {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}
.post-layout.has-toc .post-toc {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  align-self: stretch;
}
.post-article.prose {
  max-width: none;
  margin: 0;
}
.post-article h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: var(--navy);
}
.post-toc {
  min-width: 0;
}
.post-toc-box {
  position: sticky;
  top: 88px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 14px 18px;
  max-height: calc(100vh - 110px);
  overflow: auto;
}
.post-toc-title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.post-toc nav { margin: 0; }
.post-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.post-toc a {
  display: block;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  color: #4a5570;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  text-decoration: none;
}
.post-toc a:hover,
.post-toc a.is-active {
  background: #eef2fb;
  color: var(--navy);
}
.toc-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
}
.toc-main .toc-label {
  flex: 1;
  min-width: 0;
}
.toc-toggle {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  pointer-events: none;
  position: relative;
}
.toc-toggle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #8a93a8;
  border-bottom: 1.5px solid #8a93a8;
  transform: rotate(-45deg);
  transition: transform 0.22s ease;
}
.toc-item.is-open > .toc-main .toc-toggle::after {
  transform: rotate(45deg);
  top: 2px;
}
.toc-sub-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.toc-item.is-open > .toc-sub-wrap {
  grid-template-rows: 1fr;
}
.toc-sub {
  overflow: hidden;
  min-height: 0;
  padding: 0 0 4px;
}
.post-toc .toc-h3 a { padding-left: 22px; font-weight: 500; font-size: 13px; }
.post-toc .toc-h4 a { padding-left: 34px; font-weight: 500; font-size: 13px; }
.prose h2,
.prose h3,
.prose h4 {
  scroll-margin-top: 96px;
}

.prose { max-width: 72ch; margin-inline: auto; }
.prose h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 36px 0 12px;
  color: var(--navy);
}
.prose h3, .prose h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 10px;
}
.prose h3 { font-size: 22px; }
.prose h4 { font-size: 18px; }
.prose ul, .prose ol { color: #2c3550; padding-left: 1.3em; }
.prose li { margin: 6px 0; }
.prose blockquote {
  border-left: 4px solid var(--amber);
  margin: 20px 0;
  padding: 4px 16px;
  color: #50575e;
}
.prose pre {
  background: #f4f6fb;
  padding: 14px;
  overflow: auto;
  border-radius: 8px;
  font-size: 13px;
}
.prose a { color: #1e4db7; }
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
  display: block;
}
.prose table {
  min-width: 0;
  width: 100%;
  margin: 20px 0;
  background: #fff;
}
.prose th, .prose td {
  border: 1px solid var(--line);
  vertical-align: top;
}
.list { margin: 0; padding-left: 18px; }
.list li { margin: 8px 0; }
.pros { color: var(--ok); }
.cons { color: var(--danger); }

.compare-layout { display: grid; grid-template-columns: 280px 1fr; gap: 20px; }
.side-card h3 { margin-top: 0; }
.side-card h3 + h3,
.side-card ul + h3,
.side-card p + h3 { margin-top: 18px; }
.website-link { margin: 0; word-break: break-word; }
.website-link a { font-weight: 700; color: var(--navy); }
.compare-picks { display: grid; gap: 8px; }
.compare-picks label {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
}
.compare-picks label:hover { background: var(--surface-2); }
.compare-empty {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
}
.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.pager-btn,
.pager-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  background: #fff;
}
.pager-btn:hover,
.pager-num:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.pager-num.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.pager-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-split h2 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--navy-2);
  margin: 0 0 8px;
}
.form-card { background: var(--banner); border: 0; }
.form-grid { display: grid; gap: 12px; }
label.field { display: grid; gap: 6px; font-size: 13px; font-weight: 700; color: var(--muted); }
input, select, textarea {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 12px 14px;
}
input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--faint); margin-top: 10px; }
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.captcha-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}
.captcha-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  white-space: nowrap;
}
.form-error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fdecec;
  color: var(--danger);
  font-weight: 700;
  font-size: 14px;
}
.contact-popup {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 90;
  width: min(560px, calc(100% - 32px));
  margin: 0;
  padding: 16px 20px;
  border-radius: 12px;
  background: #1f7a4d;
  color: #fff;
  text-align: center;
  box-shadow: 0 12px 32px rgba(31, 122, 77, 0.28);
  transform: translate(-50%, -140%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.contact-popup.is-open {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.contact-popup-card {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.contact-popup-card p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.toast {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #e8f6ee;
  color: var(--ok);
  font-weight: 700;
}
.toast.show { display: block; }

.post-thumb {
  width: 100%;
  height: 180px;
  border-radius: 0;
  background: linear-gradient(135deg, #1e3a8a, #e8770a);
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
}
.post-cat {
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 18px 22px 8px;
}
.post-meta { color: var(--faint); font-size: 13px; margin: 0 22px 8px; }
.post-card h3 {
  margin: 0 22px 8px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--navy-2);
}
.post-card > p:not(.post-cat):not(.post-meta) {
  margin: 0 22px 12px;
}
.post-card .read-more {
  margin-left: 22px;
}
.read-more { font-weight: 800; font-size: 13px; }
.tested-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #eceff5;
  border-radius: 20px;
  padding: 16px 16px 16px 10px;
  box-shadow: 0 10px 26px rgba(21, 32, 71, 0.07);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.tested-row:hover {
  border-color: rgba(240, 126, 38, 0.55);
  box-shadow: 0 16px 40px rgba(240, 126, 38, 0.45);
}
.tested-row .service-logo {
  width: 100px;
  height: 100px;
  margin: 0 0 0 -36px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(21, 32, 71, 0.12);
  font-size: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tested-row:hover .service-logo {
  transform: rotate(-8deg);
  box-shadow: 0 18px 36px rgba(240, 120, 32, 0.4);
}
.tested-body { flex: 1; min-width: 0; }
.tested-body h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
}
.tested-meta {
  margin: 0;
  font-size: 13px;
  color: #8a93a8;
}
.tested-price {
  margin: 6px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: #f07e26;
}
.tested-price span {
  font-size: 13px;
  font-weight: 700;
  color: #8a93a8;
}
.btn-visit {
  flex-shrink: 0;
  min-width: 108px;
  background: #1e4db7;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
  border-radius: 10px;
  padding: 12px 16px;
  transition: background 0.2s ease;
}
.btn-visit:hover,
.tested-row:hover .btn-visit {
  background: #f07e26;
  color: #fff;
}
.service-logo {
  width: 100px;
  height: 100px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 12px;
  overflow: hidden;
}
.service-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.service-stats {
  list-style: none;
  padding: 0;
  margin: 12px 0 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.site-footer .brand-logo {
  height: 48px;
  margin-bottom: 10px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
  color: var(--muted);
  font-size: 14px;
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.footer-grid h4 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 15px;
}
.footer-grid a {
  display: block;
  color: var(--muted);
  padding: 4px 0;
  font-weight: 600;
}
.footer-grid a:hover { color: var(--navy); }
.footer-legal {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--faint);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--amber);
  color: #fff;
}
.back-to-top svg { display: block; }

@media (max-width: 640px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 960px) {
  .hero-inner,
  .rank-grid, .method-grid, .guide-grid, .review-grid, .split,
  .review-hero-card, .compare-layout, .footer-grid, .blog-grid,
  .services-grid, .contact-split, .tested-grid, .highlights-grid {
    grid-template-columns: 1fr;
  }
  .post-layout.has-toc {
    display: block;
  }
  .post-layout.has-toc .post-article,
  .post-layout.has-toc .post-toc {
    grid-column: auto;
    grid-row: auto;
  }
  .post-toc {
    position: sticky;
    top: 76px;
    z-index: 25;
    margin-bottom: 16px;
  }
  .post-toc-box {
    position: static;
    max-height: min(55vh, 420px);
    box-shadow: 0 10px 24px rgba(21, 32, 71, 0.08);
  }
  .hero-media { order: 1; }
  .hero-copy { order: 0; }
  .hero h1 { max-width: none; }
  .hero { padding: 56px 0; }
  .nav-toggle { display: block; }
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 86vw);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 88px 16px 24px;
    z-index: 60;
    box-shadow: 12px 0 40px rgba(21, 32, 71, 0.12);
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(21, 32, 71, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 50;
  }
  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  body.nav-open { overflow: hidden; }
  .nav-sub-toggle { display: inline-flex; }
  .nav-item-row {
    width: 100%;
    justify-content: space-between;
  }
  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown { display: none; }
  .nav-item .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    min-width: 0;
    padding: 0 0 0 12px;
  }
  .nav-item.open .dropdown { display: block; }
}

@media (max-width: 640px) {
  .hero { padding: 36px 0; }
  .tested-row {
    flex-wrap: wrap;
    padding: 16px;
  }
  .tested-row .service-logo {
    margin-left: -28px;
  }
  .tested-row .btn-visit {
    width: 100%;
  }
}

body.is-loading { cursor: progress; }
