:root {
  --vswy-accent: #6b8e5a;
  --vswy-accent-dark: #4f6e41;
  --vswy-dark: #1c2018;
  --vswy-bg: #fbfaf5;
  --vswy-bg-soft: #f0eee3;
  --vswy-border: #d8d4c0;
  --vswy-text: #1c1f17;
  --vswy-muted: rgba(0,0,0,.55);
  --vswy-rhythm: 96px;
  --vswy-radius: 20px;
  --vswy-shadow: 0 4px 24px rgba(28,32,24,.08);
  --vswy-corner: 20px;
  --vswy-font-head: 'DM Serif Display', Georgia, serif;
  --vswy-font-body: 'DM Sans', system-ui, sans-serif;
  --vswy-hue-shift: 10deg;
  --vswy-header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--vswy-font-body);
  background: var(--vswy-bg);
  color: var(--vswy-text);
  line-height: 1.65;
  font-size: 1rem;
}

h1, h2, h3, h4 { font-family: var(--vswy-font-head); line-height: 1.2; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .75rem; }
h3 { font-size: 1.2rem; margin-bottom: .5rem; }

a { color: var(--vswy-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.page-wrap { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

.section { padding: var(--vswy-rhythm) 0; }
.section-soft { background: var(--vswy-bg-soft); }
.section-dark { background: var(--vswy-dark); color: #fff; }
.section-dark h2 { color: #fff; }

.section-head { text-align: center; margin-bottom: 2rem; }
.section-head p { color: var(--vswy-muted); font-size: 1.05rem; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vswy-bg);
  border-bottom: 1px solid var(--vswy-border);
  height: var(--vswy-header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-logo {
  font-family: var(--vswy-font-head);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--vswy-text);
  text-decoration: none;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-link {
  color: var(--vswy-text);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.header-link:hover { color: var(--vswy-accent); text-decoration: none; }

.header-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vswy-text);
  border-radius: 2px;
  transition: .3s;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .65rem 1.4rem;
  border-radius: var(--vswy-corner);
  font-family: var(--vswy-font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  border: 2px solid transparent;
  white-space: nowrap;
}

.button-acc {
  background: var(--vswy-accent);
  color: #fff;
  border-color: var(--vswy-accent);
}

.button-acc:hover {
  background: var(--vswy-accent-dark);
  border-color: var(--vswy-accent-dark);
  color: #fff;
  text-decoration: none;
}

.button-out {
  background: transparent;
  color: var(--vswy-accent);
  border-color: var(--vswy-accent);
}

.button-out:hover {
  background: var(--vswy-accent);
  color: #fff;
  text-decoration: none;
}

.intro {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--vswy-accent-dark);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,32,24,.85) 0%, rgba(28,32,24,.45) 100%);
}

.intro .page-wrap { position: relative; z-index: 1; width: 100%; }

.intro-content {
  max-width: 680px;
  padding: calc(var(--vswy-rhythm) * 1.2) 0;
  color: #fff;
}

.intro-content h1 { color: #fff; margin-bottom: 1rem; }

.intro-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
}

.intro-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.intro-pills {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.intro-pill {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  padding: .3rem .8rem;
  border-radius: 99px;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.tbl-cmp {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  font-size: .95rem;
}

.tbl-cmp thead th {
  background: var(--vswy-bg-soft);
  border-bottom: 2px solid var(--vswy-border);
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--vswy-muted);
}

.tbl-cmp tbody tr {
  border-bottom: 1px solid var(--vswy-border);
  transition: background .15s;
}

.tbl-cmp tbody tr:hover { background: var(--vswy-bg-soft); }

.tbl-cmp tbody td {
  padding: .85rem 1rem;
  vertical-align: middle;
}

.tbl-cmp .row-top { background: rgba(107,142,90,.06); }

.tbl-name {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}

.tbl-logo {
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: contain;
}

.tbl-badge {
  background: var(--vswy-accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}

.rate { color: #c4943a; font-weight: 600; white-space: nowrap; }

.featured {
  background: var(--vswy-bg);
  border: none;
  box-shadow: var(--vswy-shadow);
  border-radius: var(--vswy-corner);
  padding: 2rem;
}

.featured-badge {
  display: inline-block;
  background: var(--vswy-accent);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: .3rem .8rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.featured-logo { margin-bottom: 1rem; border-radius: 8px; }

.featured-rate { font-size: 1.2rem; color: #c4943a; font-weight: 600; margin-bottom: 1rem; }

.featured-list {
  list-style: none;
  margin-bottom: 1rem;
}

.featured-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .4rem;
  font-size: .95rem;
}

.featured-list li i { color: var(--vswy-accent); margin-top: .2rem; flex-shrink: 0; }

.featured p { margin-bottom: 1.25rem; color: var(--vswy-muted); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step-card {
  background: var(--vswy-bg);
  border: none;
  box-shadow: var(--vswy-shadow);
  border-radius: var(--vswy-corner);
  padding: 1.5rem;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--vswy-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .75rem;
}

.step-card h3 { margin-bottom: .5rem; }

.step-card p { color: var(--vswy-muted); font-size: .95rem; }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.guide-card {
  background: var(--vswy-bg);
  border: none;
  box-shadow: var(--vswy-shadow);
  border-radius: var(--vswy-corner);
  overflow: hidden;
}

.guide-body { padding: 1.25rem; }

.guide-body h2, .guide-body h3 { margin-bottom: .5rem; font-size: 1.1rem; }

.guide-body h2 a, .guide-body h3 a { color: var(--vswy-text); }

.guide-body h2 a:hover, .guide-body h3 a:hover { color: var(--vswy-accent); }

.guide-body p { color: var(--vswy-muted); font-size: .9rem; }

.qna-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }

.qna {
  background: var(--vswy-bg);
  border: none;
  box-shadow: var(--vswy-shadow);
  border-radius: var(--vswy-corner);
  overflow: hidden;
}

.qna-q {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--vswy-font-body);
  font-size: 1rem;
}

.qna-q::after { content: '+'; font-size: 1.2rem; color: var(--vswy-accent); flex-shrink: 0; }

details[open] .qna-q::after { content: '−'; }

.qna-a { padding: 0 1.25rem 1rem; color: var(--vswy-muted); }

.qna-a p { margin: 0; }

.cta-block { text-align: center; }

.cta-block h2 { color: #fff; margin-bottom: .75rem; }

.cta-block p { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; }

.risk-band {
  background: var(--vswy-bg-soft);
  border-top: 1px solid var(--vswy-border);
  padding: 1rem 0;
}

.risk-band p {
  font-size: .85rem;
  color: var(--vswy-muted);
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}

.risk-band i { color: #d4743a; flex-shrink: 0; margin-top: .15rem; }

.footer { background: var(--vswy-dark); color: rgba(255,255,255,.85); padding: var(--vswy-rhythm) 0 2rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
}

.ft-brand .header-logo { color: #fff; font-size: 1.2rem; margin-bottom: 1rem; display: inline-block; }

.ft-desc { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: .75rem; }

.ft-copy { font-size: .8rem; color: rgba(255,255,255,.45); }

.ft-heading {
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.45);
  margin-bottom: .75rem;
}

.ft-link {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  margin-bottom: .35rem;
  text-decoration: none;
  transition: color .2s;
}

.ft-link:hover { color: #fff; text-decoration: none; }

.ft-text { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: .5rem; }

.ft-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.ft-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); }

.crumbs {
  padding: .75rem 0;
  border-bottom: 1px solid var(--vswy-border);
  background: var(--vswy-bg-soft);
}

.crumbs-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  font-size: .85rem;
  color: var(--vswy-muted);
}

.crumbs-inner a { color: var(--vswy-muted); }
.crumbs-inner a:hover { color: var(--vswy-accent); }

.crumbs__sep { opacity: .5; }

.review-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.review-main h2 { margin-top: 1.5rem; margin-bottom: .6rem; }

.review-main p { margin-bottom: 1rem; }

.review-rate { font-size: 1.4rem; margin-bottom: .5rem; }

.byline {
  font-size: .875rem;
  color: var(--vswy-muted);
  margin-bottom: 1rem;
  display: flex;
  gap: .5rem;
  align-items: center;
  flex-wrap: wrap;
}

.byline-end { margin-top: 2rem; }

.byline i { color: var(--vswy-accent); }

.brand-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--vswy-bg-soft);
  border-radius: var(--vswy-corner);
  border: 1px solid var(--vswy-border);
}

.brand-hero-logo { border-radius: 8px; object-fit: contain; }

.brand-hero-cap { font-size: .9rem; color: var(--vswy-muted); }

.brand-hero-cap a { color: var(--vswy-accent); }

.review-cta { margin-bottom: 1.5rem; }

.review-image-wrap { margin: 1.5rem 0; border-radius: var(--vswy-corner); overflow: hidden; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.pros, .cons {
  padding: 1.25rem;
  border-radius: var(--vswy-corner);
}

.pros { background: rgba(107,142,90,.08); border: 1px solid rgba(107,142,90,.2); }

.cons { background: rgba(212,116,58,.06); border: 1px solid rgba(212,116,58,.15); }

.pros h3 { color: var(--vswy-accent); margin-bottom: .75rem; }

.cons h3 { color: #c4743a; margin-bottom: .75rem; }

.pros ul, .cons ul { list-style: none; }

.pros li, .cons li {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  margin-bottom: .4rem;
  font-size: .9rem;
}

.pros li i { color: var(--vswy-accent); margin-top: .15rem; flex-shrink: 0; }

.cons li i { color: #c4743a; margin-top: .15rem; flex-shrink: 0; }

.scoring-table { margin: 1.5rem 0; }

.score-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.score-tbl th {
  background: var(--vswy-bg-soft);
  padding: .6rem .75rem;
  text-align: left;
  border-bottom: 2px solid var(--vswy-border);
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--vswy-muted);
}

.score-tbl td {
  padding: .55rem .75rem;
  border-bottom: 1px solid var(--vswy-border);
}

.atglance {
  background: var(--vswy-bg);
  border: 1px solid var(--vswy-border);
  border-radius: var(--vswy-corner);
  padding: 1.25rem;
  position: sticky;
  top: calc(var(--vswy-header-h) + 1rem);
}

.atglance h3 { margin-bottom: 1rem; }

.atglance dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .5rem 1rem;
  font-size: .9rem;
}

.atglance dt { color: var(--vswy-muted); }

.atglance dd { text-align: right; font-weight: 600; }

.disclosure-box {
  font-size: .85rem;
  color: var(--vswy-muted);
  border-left: 3px solid var(--vswy-accent);
  padding: .6rem .85rem;
  background: var(--vswy-bg-soft);
  margin: 1.5rem 0;
  border-radius: 0 var(--vswy-corner) var(--vswy-corner) 0;
}

.alternatives { margin-top: 2rem; }

.alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.alt-card {
  background: var(--vswy-bg);
  border: 1px solid var(--vswy-border);
  border-radius: var(--vswy-corner);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: flex-start;
}

.alt-card .button { width: 100%; justify-content: center; margin-top: auto; }

.logo-inline {
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
  object-fit: contain;
}

.list-intro { color: var(--vswy-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }

.content-narrow { max-width: 780px; }

.content-narrow h2 { margin-top: 2rem; margin-bottom: .6rem; }

.content-narrow p { margin-bottom: 1rem; color: var(--vswy-muted); }

.content-narrow ul { margin: .5rem 0 1rem 1.5rem; }

.content-narrow li { margin-bottom: .3rem; color: var(--vswy-muted); }

.not-found-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.editor-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--vswy-bg-soft);
  border-radius: var(--vswy-corner);
  margin: 1.5rem 0;
}

.editor-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--vswy-accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.editor-info strong { display: block; margin-bottom: .15rem; }

.editor-info span { font-size: .85rem; color: var(--vswy-muted); display: block; margin-bottom: .5rem; }

.editor-info p { font-size: .9rem; color: var(--vswy-muted); margin: 0; }

.guide-layout { max-width: 820px; }

.guide-article h2 { margin-top: 1.75rem; margin-bottom: .6rem; }

.guide-article p { margin-bottom: 1rem; color: var(--vswy-muted); }

.guide-article a { color: var(--vswy-accent); }

.cookie-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  margin: 1rem 0;
}

.cookie-tbl th {
  background: var(--vswy-bg-soft);
  padding: .6rem .75rem;
  text-align: left;
  border-bottom: 2px solid var(--vswy-border);
  font-weight: 600;
}

.cookie-tbl td {
  padding: .55rem .75rem;
  border-bottom: 1px solid var(--vswy-border);
  color: var(--vswy-muted);
}

.gdpr {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 540px;
  background: var(--vswy-dark);
  color: #fff;
  border-radius: var(--vswy-corner);
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  z-index: 9999;
  display: none;
}

.gdpr.visible { display: block; }

.gdpr-inner { padding: 1.25rem 1.5rem; }

.gdpr-text { font-size: .9rem; color: rgba(255,255,255,.8); margin-bottom: 1rem; }

.gdpr-text a { color: var(--vswy-accent); }

.gdpr-btns { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: .5rem; }

.gdpr-prefs { margin-top: 1rem; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1rem; }

.gdpr-row { margin-bottom: .6rem; font-size: .9rem; color: rgba(255,255,255,.8); }

.gdpr-row label { display: flex; align-items: center; gap: .5rem; cursor: pointer; }

.gdpr-reopen {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vswy-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--vswy-shadow);
  z-index: 9998;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .atglance { position: static; }
}

@media (max-width: 768px) {
  .header-nav { display: none; flex-direction: column; position: absolute; top: var(--vswy-header-h); left: 0; right: 0; background: var(--vswy-bg); padding: 1rem 1.5rem; border-bottom: 1px solid var(--vswy-border); z-index: 99; }
  .header-nav.open { display: flex; }
  .header { position: relative; }
  .header-burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .intro-cta { flex-direction: column; }
  .intro-content { padding: 2.5rem 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .alt-grid { grid-template-columns: 1fr; }
  .tbl-cmp { font-size: .82rem; }
  .tbl-cmp td, .tbl-cmp th { padding: .6rem .6rem; }
  .gdpr { left: .75rem; right: .75rem; bottom: .75rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .button { padding: .55rem 1rem; font-size: .88rem; }
  .featured { padding: 1.25rem; }
}
