:root {
  --ink: #2c3a35;
  --muted: #7a8a83;
  --paper: #fbfcfa;
  --surface: #fbfcfa;
  --soft: #f0f5f2;
  --line: #eef2ef;
  --accent: #4a7c6f;
  --platform: #6b93a8;
  --sun: #e8a04c;
  --hero-mist: #eef5f1;
  --shadow: rgba(44, 58, 53, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
}

.skip-link:focus {
  left: 12px;
  z-index: 20;
  background: var(--surface);
  padding: 8px 10px;
  border: 1px solid var(--line);
}

.shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
}

.brand span {
  color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.nav-group {
  position: relative;
}

.nav-group summary,
.nav-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 10px 11px;
  color: var(--muted);
  font-weight: 800;
  list-style: none;
  text-decoration: none;
  cursor: pointer;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-group[open] summary,
.nav-group summary:hover,
.nav-link:hover {
  color: var(--ink);
  background: var(--soft);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 10px;
  box-shadow: 0 8px 24px var(--shadow);
}

.nav-menu a {
  display: block;
  border-radius: 8px;
  padding: 9px 10px;
}

.nav-menu a:hover {
  color: var(--ink);
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: 60vh;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper) 0%, var(--hero-mist) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--paper);
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(44px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Fraunces, Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-family: Fraunces, Georgia, serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.2;
}

.highlight {
  position: relative;
  display: inline;
  color: var(--accent);
}

.highlight::before {
  content: none;
}

.intro {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  stroke-width: 1.5;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  width: min(820px, 100%);
  margin: 24px 0 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: 16px;
  box-shadow: 0 8px 24px var(--shadow);
  transform: none;
}

.hero-audit {
  justify-content: space-between;
}

.hero-audit div {
  display: grid;
  gap: 2px;
  margin-right: auto;
}

.hero-audit strong {
  color: var(--ink);
  font-weight: 700;
}

.hero-audit span {
  color: var(--muted);
  font-size: 14px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: var(--paper);
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
}

.button:hover {
  background: var(--accent);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--accent);
  box-shadow: none;
}

.disclosure-note {
  max-width: 700px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

.platform-section {
  padding: 120px 0;
}

.scenario-section,
.articles-section {
  position: relative;
  padding: 120px 0;
}

.scenario-section {
  background: var(--paper);
}

.articles-section {
  background: var(--paper);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading p {
  color: var(--muted);
}

.platform-grid,
.scenario-grid,
.article-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 18px;
}

.platform-card,
.scenario-card,
.brand-card,
.article-card,
.checklist article,
.disclosure-box,
.subscribe-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: none;
}

.scenario-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 24px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.scenario-card:hover {
  border-color: var(--line);
  box-shadow: 0 12px 32px var(--shadow);
  transform: translateY(-4px);
}

.scenario-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
}

.scenario-icon svg,
.scenario-icon i {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scenario-card p,
.article-card p,
.brand-card p,
.brand-group-heading p,
.subscribe-panel p {
  color: var(--muted);
}

.platform-card {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.platform-card.featured {
  border-color: var(--line);
  box-shadow: none;
}

.platform-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.rank {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.platform-card p,
.platform-card li,
.compare-grid p,
.disclosure-box p {
  color: var(--muted);
}

.platform-card ul {
  margin: 4px 0 24px;
  padding-left: 20px;
}

.platform-card li {
  margin: 8px 0;
}

.card-button {
  align-self: flex-end;
  margin-top: auto;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.brand-wall {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  border-top: 0;
  border-bottom: 0;
  background: var(--soft);
  color: var(--ink);
}

.brand-wall::after {
  content: none;
}

.brand-wall .section-heading p,
.brand-wall .brand-group-heading p {
  color: var(--muted);
}

.brand-wall h2,
.brand-wall .brand-group-heading h3 {
  color: var(--ink);
}

.brand-groups {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 44px;
}

.brand-group {
  scroll-margin-top: 96px;
}

.brand-group-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.brand-group-heading h3 {
  margin-bottom: 0;
}

.brand-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-card {
  --category-color: var(--accent);
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  color: var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.brand-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--category-color);
}

.brand-card::after {
  content: "";
  position: absolute;
  left: -58px;
  bottom: -58px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--category-color) 5%, transparent);
  pointer-events: none;
}

.brand-card > * {
  position: relative;
  z-index: 1;
}

.brand-card h3 {
  color: var(--ink);
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.brand-card-top {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.brand-card-name {
  margin: 0;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.card-arrow:hover {
  background: var(--accent);
  color: var(--paper);
}

.brand-card.category-hotel .tag {
  background: transparent;
  color: var(--accent);
}

.brand-card.category-hotel {
  --category-color: var(--accent);
}

.brand-card.category-platform .tag {
  background: transparent;
  color: var(--platform);
}

.brand-card.category-platform {
  --category-color: var(--platform);
}

.brand-card.category-rental .tag {
  background: transparent;
  color: var(--sun);
}

.brand-card.category-rental {
  --category-color: var(--sun);
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 22px;
}

.feature-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.feature-tags svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.loading-note {
  margin: 0;
  color: var(--muted);
}

.article-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.article-card:hover {
  box-shadow: 0 12px 32px var(--shadow);
  transform: translateY(-4px);
}

.article-image {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-image::after {
  content: none;
}

.article-image .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
}

.article-image svg {
  width: 64px;
  height: 64px;
  color: var(--accent);
}

.article-image-fees {
  background: var(--soft);
}

.article-image-road {
  background: var(--soft);
}

.article-image-pet {
  background: var(--soft);
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.text-link {
  margin-top: auto;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  color: var(--accent);
}

.subscribe-band {
  background: var(--paper);
  padding: 120px 0;
}

.subscribe-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: 36px;
  box-shadow: none;
}

.subscribe-panel h2 {
  color: var(--ink);
  max-width: 620px;
}

.subscribe-panel p {
  max-width: 680px;
}

.subscribe-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.subscribe-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
}

.subscribe-form input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.closing-band {
  padding: 120px 0;
  background: var(--ink);
  color: var(--paper);
}

.closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
}

.closing-band h2 {
  max-width: 520px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(44px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.08;
}

.closing-points {
  display: grid;
  gap: 24px;
}

.closing-points article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.closing-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
}

.closing-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.closing-points h3 {
  margin: 0 0 4px;
  color: var(--paper);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.closing-points p {
  margin: 0;
  color: var(--paper);
  font-size: 14px;
  line-height: 1.6;
}

.brand-detail {
  padding: 120px 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}

.brand-detail h1 {
  max-width: 900px;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 52px);
}

.brand-lede {
  max-width: 820px;
  color: var(--muted);
  font-size: 20px;
}

.last-updated {
  margin: -8px 0 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.review-dimensions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.review-dimensions article,
.author-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 20px;
}

.review-dimensions h3 {
  margin-bottom: 6px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 800;
}

.author-box {
  margin-top: 42px;
}

.author-box h2 {
  margin-bottom: 8px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.author-box p {
  margin-bottom: 10px;
  color: var(--muted);
}

.author-box a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.affiliate-disclosure {
  max-width: 920px;
  margin: 26px 0 42px;
  border-left: 4px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 700;
}

.content-section {
  max-width: 920px;
  margin-top: 34px;
}

.content-section p {
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  font-size: 13px;
}

tr:last-child td {
  border-bottom: 0;
}

.checklist-box {
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 24px;
  box-shadow: none;
}

.checklist-box ul {
  margin: 0;
  padding-left: 22px;
}

.checklist-box li {
  margin: 10px 0;
  color: var(--ink);
}

.detail-cta {
  margin-top: 12px;
}

.related-guides {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.related-guides h2 {
  width: 100%;
}

.related-guides a {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.related-guides a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.guide-index,
.guide-article {
  padding: 120px 0;
}

.guide-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.guide-filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  padding: 9px 13px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.guide-filters button.is-active,
.guide-filters button:hover {
  border-color: var(--line);
  background: var(--soft);
  color: var(--ink);
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guide-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 24px;
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.guide-card:hover {
  box-shadow: 0 12px 32px var(--shadow);
  transform: translateY(-4px);
}

.guide-card p,
.guide-article p,
.guide-article li {
  color: var(--muted);
}

.verdict-box {
  margin: 42px 0;
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: 12px;
  background: var(--surface);
  padding: 26px;
}

.verdict-box.category-platform {
  border-left-color: var(--platform);
}

.verdict-box.category-rental {
  border-left-color: var(--sun);
}

.verdict-grid,
.dual-cta,
.vs-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.verdict-column h2 {
  margin-bottom: 12px;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.verdict-column ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.comparison-table tbody tr:nth-child(even) {
  background: var(--soft);
}

.comparison-table th:first-child {
  width: 24%;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 16px 18px;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
}

.dual-cta {
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  padding: 18px;
}

.dual-cta .button,
.dual-cta .button-secondary {
  width: 100%;
}

.vs-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 24px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.vs-card:hover {
  box-shadow: 0 12px 32px var(--shadow);
  transform: translateY(-4px);
}

.vs-card a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.top-picks {
  margin: 42px 0 72px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 24px;
}

.top-picks h2 {
  font-size: 31px;
}

.top-pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.top-pick-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: 18px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.top-pick-card:hover {
  box-shadow: 0 12px 32px var(--shadow);
  transform: translateY(-4px);
}

.pick-rank {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.top-pick-card strong {
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.top-pick-card span:last-child {
  color: var(--muted);
  font-size: 15px;
}

.ranking-detail {
  display: grid;
  gap: 72px;
}

.ranked-brand {
  scroll-margin-top: 96px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 28px;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.pros-cons div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  padding: 18px;
}

.pros-cons h3 {
  font-size: 22px;
}

.pros-cons ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.watch-out {
  margin: 18px 0 0;
  border-left: 3px solid var(--sun);
  padding-left: 14px;
  color: var(--muted);
}

.methodology-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
  padding: 24px;
}

.methodology-box a {
  color: var(--accent);
  font-weight: 800;
}

.supporting-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 18px;
}

.supporting-links h2 {
  width: 100%;
  margin-bottom: 0;
  font-size: 27px;
}

.supporting-links a {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--accent);
  padding: 9px 13px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: none;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 14px;
  transform: translateY(100%);
  transition: transform 160ms ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta .button {
  min-height: 44px;
  flex: 1;
  padding: 10px 14px;
  font-size: 14px;
}

.sticky-cta-close {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.lp-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.lp-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lp-return {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.lp-main {
  padding: 96px 0 120px;
}

.lp-hero {
  max-width: 840px;
}

.lp-hero h1 {
  max-width: 820px;
}

.lp-steps {
  display: grid;
  gap: 28px;
  max-width: 820px;
  margin: 42px 0;
}

.lp-step {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

.lp-step h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.lp-step p {
  color: var(--muted);
}

.lp-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.lp-actions .button-secondary {
  min-height: 48px;
}

.lp-footnote {
  max-width: 780px;
  color: var(--muted);
  font-size: 14px;
}

.guide-article h1 {
  color: var(--ink);
  font-size: clamp(44px, 5vw, 52px);
}

.guide-article .content-section {
  max-width: 860px;
}

.guide-callout {
  border-left: 4px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 18px;
  font-weight: 700;
}

.tool-page {
  padding: 120px 0;
}

.tool-hero {
  max-width: 820px;
  margin-bottom: 30px;
}

.print-sheet,
.estimator-card,
.estimate-result {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 24px;
  box-shadow: none;
}

.checklist-print-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.checklist-print-grid section {
  border-top: 3px solid var(--line);
  padding-top: 14px;
}

.checklist-print-grid label,
.estimator-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.checklist-print-grid label {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin: 10px 0;
  color: var(--muted);
  font-weight: 600;
}

.checklist-print-grid input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.tool-subscribe {
  padding-top: 34px;
}

.estimator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 20px;
  align-items: start;
}

.estimator-card {
  display: grid;
  gap: 16px;
}

.estimator-card input,
.estimator-card select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
}

.estimate-result output {
  display: block;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}

.estimate-result dl {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.estimate-result dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.estimate-result dt {
  color: var(--muted);
  font-weight: 700;
}

.estimate-result dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.estimate-note {
  color: var(--muted);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 16px;
  box-shadow: 0 8px 24px var(--shadow);
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-banner div {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.has-cookie-banner .sticky-cta {
  bottom: 112px;
}

.compare-band {
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.1fr);
  gap: 44px;
  align-items: start;
}

.checklist {
  display: grid;
  gap: 14px;
}

.checklist article {
  padding: 20px;
}

.checklist strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
}

.disclosure-section {
  padding: 120px 0;
}

.disclosure-box {
  max-width: 920px;
  padding: 28px;
}

.site-footer {
  border-top: 0;
  color: var(--muted);
  background: var(--soft);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 44px 0 30px;
}

.footer-grid h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.footer-grid h2 svg {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--accent);
  padding: 4px;
  vertical-align: -6px;
}

.site-footer nav {
  display: grid;
  gap: 9px;
}

.site-footer a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-disclosure {
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-disclosure p {
  max-width: 980px;
  margin-bottom: 10px;
}

@media (max-width: 1100px) {
  .header-inner {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: var(--surface);
    padding: 10px;
    box-shadow: 0 24px 44px var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .nav-group summary,
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 13px 12px;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    border: 0;
    border-radius: 8px;
    background: var(--soft);
    padding: 8px;
    box-shadow: none;
  }
}

@media (max-width: 940px) {
  .platform-grid,
  .scenario-grid,
  .article-grid,
  .compare-grid,
  .top-pick-grid,
  .brand-group-heading,
  .subscribe-panel,
  .closing-inner {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: auto;
  }

  .brand-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
  }

  .brand {
    font-size: 19px;
  }

  .hero-overlay {
    background: var(--paper);
  }

  .hero-content {
    min-height: 60vh;
    padding: 64px 0;
  }

  h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  .intro {
    font-size: 17px;
  }

  .hero-proof {
    gap: 8px 14px;
    font-size: 13px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 0;
    transform: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .disclosure-note {
    margin-top: 22px;
  }

  .platform-section,
  .scenario-section,
  .brand-wall,
  .articles-section,
  .disclosure-section,
  .closing-band,
  .brand-detail,
  .guide-index,
  .guide-article,
  .tool-page,
  .compare-band {
    padding: 64px 0;
  }

  .brand-card-grid,
  .guide-card-grid,
  .checklist-print-grid,
  .estimator-grid,
  .review-dimensions,
  .verdict-grid,
  .dual-cta,
  .vs-card-grid,
  .pros-cons,
  .subscribe-form {
    grid-template-columns: 1fr;
  }

  .top-picks,
  .ranked-brand {
    padding: 20px;
  }

  .ranking-detail {
    gap: 44px;
  }

  .sticky-cta {
    display: flex;
  }

  .has-cookie-banner .sticky-cta {
    bottom: 188px;
  }

  .lp-main {
    padding: 64px 0;
  }

  .lp-step h2 {
    font-size: 26px;
  }

  .subscribe-band {
    padding: 64px 0;
  }

  .subscribe-panel {
    padding: 24px;
  }

  .closing-inner {
    gap: 36px;
  }

  .closing-band h2 {
    font-size: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-banner div {
    justify-content: stretch;
  }

  .cookie-banner .button {
    flex: 1;
  }
}

@media print {
  .site-header,
  .site-footer,
  .print-button,
  .tool-subscribe,
  .cookie-banner,
  .breadcrumbs,
  .skip-link {
    display: none !important;
  }

  body {
    background: var(--paper);
    color: var(--ink);
  }

  .tool-page,
  .print-sheet {
    width: 100%;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border: 0;
  }

  .checklist-print-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
