:root {
  --c-acc: #6b8e5a;
  --c-acc-dark: #4f6e41;
  --c-dark: #1c2018;
  --c-bg: #fbfaf5;
  --c-bg-soft: #f0eee3;
  --c-border: #d8d4c0;
  --c-text: #1c1f17;
  --c-muted: rgba(0,0,0,.55);
  --rhythm: 96px;
  --radius: 20px;
  --shadow: 0 4px 24px rgba(28,32,24,.08);
  --ff-h: 'DM Serif Display', serif;
  --ff-b: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-b);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
}

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

.sec {
  padding: var(--rhythm) 0;
  background: var(--c-bg);
}

.sec:nth-child(even) {
  background: var(--c-bg-soft);
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-h);
  margin-bottom: 0.5em;
  color: var(--c-dark);
}

h1 { font-size: 2.5em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.4em; }

a { color: var(--c-acc); text-decoration: none; }
a:hover { text-decoration: underline; }

p { margin-bottom: 1em; }

ul, ol { margin-left: 2em; margin-bottom: 1em; }
li { margin-bottom: 0.5em; }

header.hd {
  background: var(--c-dark);
  color: #fff;
  padding: 1em 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.hd .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hd-logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
}

.hd-nav {
  display: flex;
  gap: 2em;
  flex: 1;
  justify-content: center;
}

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

.hd-link:hover { color: var(--c-acc); }

.hd-burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5em;
  cursor: pointer;
}

.sec.hero {
  background: linear-gradient(135deg, var(--c-bg-soft), var(--c-bg));
  padding: calc(var(--rhythm) * 1.5) 0;
}

.hero-content {
  text-align: center;
}

.hero-subtitle {
  font-size: 1.2em;
  color: var(--c-muted);
  margin-bottom: 2em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin-bottom: 2em;
  flex-wrap: wrap;
}

.hero-chips {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-chip {
  background: white;
  padding: 0.75em 1.5em;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.95em;
}

.trust-bar {
  background: var(--c-bg-soft);
}

.trust-bar .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2em;
}

.trust-item {
  text-align: center;
}

.trust-n {
  font-size: 2em;
  font-weight: bold;
  color: var(--c-acc);
}

.trust-l {
  color: var(--c-muted);
  font-size: 0.95em;
}

.comparison {
  overflow-x: auto;
}

.cmp {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
}

.cmp th {
  background: var(--c-dark);
  color: white;
  padding: 1em;
  text-align: left;
  font-weight: 600;
}

.cmp td {
  padding: 1em;
  border-bottom: 1px solid var(--c-border);
}

.cmp tr:hover { background: var(--c-bg-soft); }

.cmp-name {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  color: var(--c-acc);
}

.cmp-logo {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

.cmp-badge {
  background: var(--c-acc);
  color: white;
  padding: 0.25em 0.75em;
  border-radius: 4px;
  font-size: 0.75em;
  font-weight: bold;
  margin-left: 0.5em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.5em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1em;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-acc {
  background: var(--c-acc);
  color: white;
}

.btn-acc:hover {
  background: var(--c-acc-dark);
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 1px solid var(--c-acc);
  color: var(--c-acc);
  background: transparent;
}

.btn-outline:hover {
  background: var(--c-acc);
  color: white;
}

.btn-sm { padding: 0.5em 1em; font-size: 0.9em; }
.btn-lg { padding: 1em 2em; font-size: 1.1em; }

.edit-big {
  background: linear-gradient(135deg, var(--c-acc-dark), var(--c-acc));
}

.edit-container {
  max-width: 900px;
  margin: 0 auto;
}

.edit-big h2 {
  color: white;
  text-align: center;
  margin-bottom: 2em;
}

.edit-card {
  background: white;
  padding: 2em;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2em;
  box-shadow: var(--shadow);
}

.edit-logo { width: 80px; height: 80px; }

.edit-info h3 { margin-top: 0; }

.edit-bullets {
  list-style: none;
  margin: 1em 0;
  padding: 0;
}

.edit-bullets li {
  margin-bottom: 0.5em;
  color: var(--c-acc);
}

.edit-body { color: var(--c-muted); line-height: 1.8; }

.meth {
  background: var(--c-bg-soft);
}

.meth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.meth-card {
  background: white;
  padding: 2em;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.meth-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--c-acc);
  color: white;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 1em;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.guide-card {
  background: white;
  padding: 2em;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(107,142,90,.15);
}

.read-more {
  display: inline-block;
  color: var(--c-acc);
  font-weight: 600;
  margin-top: 1em;
}

.faq-list {
  margin
:root {
  --c-acc: #6b8e5a;
  --c-acc-dark: #4f6e41;
  --c-dark: #1c2018;
  --c-bg: #fbfaf5;
  --c-bg-soft: #f0eee3;
  --c-border: #d8d4c0;
  --c-text: #1c1f17;
  --c-muted: rgba(0,0,0,.55);
  --rhythm: 96px;
  --radius: 20px;
  --shadow: 0 4px 24px rgba(28,32,24,.08);
  --ff-h: 'DM Serif Display', serif;
  --ff-b: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-b); background: var(--c-bg); color: var(--c-text); line-height: 1.6; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.sec { padding: var(--rhythm) 0; background: var(--c-bg); }
.sec:nth-child(even) { background: var(--c-bg-soft); }
h1, h2, h3, h4, h5 { font-family: var(--ff-h); margin-bottom: 0.5em; color: var(--c-dark); }
h1 { font-size: 2.5em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.4em; }
a { color: var(--c-acc); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin-bottom: 1em; }
ul, ol { margin-left: 2em; margin-bottom: 1em; }
li { margin-bottom: 0.5em; }

header.hd { background: var(--c-dark); color: #fff; padding: 1em 0; position: sticky; top: 0; z-index: 100; }
.hd .wrap { display: flex; justify-content: space-between; align-items: center; }
.hd-logo { font-size: 1.5em; font-weight: bold; color: #fff; }
.hd-nav { display: flex; gap: 2em; flex: 1; justify-content: center; }
.hd-link { color: #fff; text-decoration: none; }
.hd-link:hover { color: var(--c-acc); }
.hd-burger { display: none; background: none; border: none; color: #fff; font-size: 1.5em; cursor: pointer; }

.sec.hero { background: linear-gradient(135deg, var(--c-bg-soft), var(--c-bg)); padding: calc(var(--rhythm) * 1.5) 0; }
.hero-content { text-align: center; }
.hero-subtitle { font-size: 1.2em; color: var(--c-muted); margin-bottom: 2em; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 1em; justify-content: center; margin-bottom: 2em; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 1em; justify-content: center; flex-wrap: wrap; }
.hero-chip { background: white; padding: 0.75em 1.5em; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.5em; font-size: 0.95em; }

.trust-item { text-align: center; }
.trust-n { font-size: 2em; font-weight: bold; color: var(--c-acc); }
.trust-l { color: var(--c-muted); font-size: 0.95em; }

.comparison { overflow-x: auto; }
.cmp { width: 100%; border-collapse: collapse; margin-bottom: 2em; }
.cmp th { background: var(--c-dark); color: white; padding: 1em; text-align: left; font-weight: 600; }
.cmp td { padding: 1em; border-bottom: 1px solid var(--c-border); }
.cmp tr:hover { background: var(--c-bg-soft); }
.cmp-name { display: flex; align-items: center; gap: 0.5em; font-weight: 600; color: var(--c-acc); }
.cmp-logo { width: 32px; height: 32px; border-radius: 4px; }
.cmp-badge { background: var(--c-acc); color: white; padding: 0.25em 0.75em; border-radius: 4px; font-size: 0.75em; font-weight: bold; margin-left: 0.5em; }

.btn { display: inline-flex; align-items: center; gap: 0.5em; padding: 0.75em 1.5em; border: none; border-radius: var(--radius); cursor: pointer; font-size: 1em; text-decoration: none; transition: all 0.3s; }
.btn-acc { background: var(--c-acc); color: white; }
.btn-acc:hover { background: var(--c-acc-dark); box-shadow: var(--shadow); }
.btn-outline { border: 1px solid var(--c-acc); color: var(--c-acc); background: transparent; }
.btn-outline:hover { background: var(--c-acc); color: white; }
.btn-sm { padding: 0.5em 1em; font-size: 0.9em; }
.btn-lg { padding: 1em 2em; font-size: 1.1em; }

.edit-big { background: linear-gradient(135deg, var(--c-acc-dark), var(--c-acc)); }
.edit-container { max-width: 900px; margin: 0 auto; }
.edit-big h2 { color: white; text-align: center; margin-bottom: 2em; }
.edit-card { background: white; padding: 2em; border-radius: var(--radius); display: grid; grid-template-columns: 100px 1fr; gap: 2em; box-shadow: var(--shadow); }
.edit-logo { width: 80px; height: 80px; }
.edit-info h3 { margin-top: 0; }
.edit-bullets { list-style: none; margin: 1em 0; padding: 0; }
.edit-bullets li { margin-bottom: 0.5em; color: var(--c-acc); }
.edit-body { color: var(--c-muted); line-height: 1.8; }

.meth { background: var(--c-bg-soft); }
.meth-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2em; margin-top: 2em; }
.meth-card { background: white; padding: 2em; border-radius: var(--radius); box-shadow: var(--shadow); text-align: center; }
.meth-num { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: var(--c-acc); color: white; border-radius: 50%; font-size: 1.8em; font-weight: bold; margin-bottom: 1em; }

.guides-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2em; margin-top: 2em; }
.guide-card { background: white; padding: 2em; border-radius: var(--radius); box-shadow: var(--shadow); display: block; transition: transform 0.3s, box-shadow 0.3s; }
.guide-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(107,142,90,.15); }
.read-more { display: inline-block; color: var(--c-acc); font-weight: 600; margin-top: 1em; }

.faq-list { margin-top: 2em; }
.faq-item { background: white; border-radius: var(--radius); margin-bottom: 1em; box-shadow: var(--shadow); }
.faq-q { width: 100%; padding: 1.5em; background: none; border: none; font-size: 1.1em; font-weight: 600; color: var(--c-text); cursor: pointer; text-align: left; display: flex; justify-content: space-between; align-items: center; }
.faq-q:hover { color: var(--c-acc); }
.faq-a { max-height: 0; overflow: hidden; padding: 0 1.5em; transition: max-height 0.3s, padding 0.3s; }
.faq-item.open .faq-a { max-height: 500px; padding: 0 1.5em 1.5em; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-q i { transition: transform 0.3s; }

.alternatives-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2em; margin-top: 2em; }
.alt-card { background: white; padding: 1.5em; border-radius: var(--radius); box-shadow: var(--shadow); }
.alt-card h4 { display: flex; align-items: center; gap: 0.5em; }
.inline-logo { width: 20px; height: 20px; border-radius: 2px; }

.brand-header { background: white; padding: 2em; border-radius: var(--radius); display: flex; gap: 2em; align-items: flex-start; margin-bottom: 2em; box-shadow: var(--shadow); }
.brand-logo { width: 80px; height: 80px; border-radius: var(--radius); }
.brand-official { margin-top: 1em; }
.brand-official a { color: var(--c-acc); font-weight: 600; }

.stars { color: var(--c-acc); font-weight: 600; }

.info-table { width: 100%; margin: 2em 0; }
.info-table tr { border-bottom: 1px solid var(--c-border); }
.info-table td { padding: 1em; }
.info-table td:first-child { font-weight: 600; width: 200px; }

.scoring-table { width: 100%; margin: 2em 0; }
.scoring-table tr { border-bottom: 1px solid var(--c-border); }
.scoring-table td { padding: 1em; }
.scoring-table td:first-child { font-weight: 600; width: 150px; }
.score-bar { display: inline-block; width: 150px; height: 8px; background: var(--c-border); border-radius: 4px; overflow: hidden; }
.score-bar span { display: block; height: 100%; background: var(--c-acc); }

.pros, .cons { list-style: none; padding: 0; }
.pros li, .cons li { padding: 0.5em 0; margin-left: 0; }
.cons li { color: var(--c-muted); }

.breadcrumb { margin-bottom: 2em; color: var(--c-muted); }
.breadcrumb a { color: var(--c-acc); }

.byline { color: var(--c-muted); font-size: 0.95em; margin-bottom: 1.5em; }

.updated { color: var(--c-muted); font-size: 0.9em; }

footer.ft { background: var(--c-dark); color: white; padding: var(--rhythm) 0; }
.ft a { color: #fff; }
.ft a:hover { color: var(--c-acc); }
.ft-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2em; margin-bottom: 2em; }
.ft-col h4, .ft-col h5 { color: white; margin-bottom: 1em; }
.ft-col ul { list-style: none; margin: 0; padding: 0; }
.ft-col li { margin-bottom: 0.5em; }
.ft-small { font-size: 0.85em; color: rgba(255,255,255,.7); }
.ft-bottom { padding-top: 2em; border-top: 1px solid rgba(255,255,255,.1); text-align: center; font-size: 0.9em; color: rgba(255,255,255,.7); }

.cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 400px; background: white; padding: 1.5em; border-radius: var(--radius); box-shadow: 0 8px 32px rgba(0,0,0,.2); z-index: 999; }
.cookie-banner.hidden { display: none; }
.cookie-banner h3 { margin-top: 0; }
.cookie-row { margin: 1em 0; }
.cookie-row label { display: block; margin-bottom: 0.5em; cursor: pointer; }
.cookie-btns { display: flex; gap: 1em; margin-top: 1.5em; flex-wrap: wrap; }
.cookie-reopen { position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; border-radius: 50%; background: var(--c-acc); color: white; border: none; cursor: pointer; font-size: 1.2em; z-index: 998; display: none; }
.cookie-reopen.show { display: flex; align-items: center; justify-content: center; }

.cta-section { text-align: center; margin: var(--rhythm) 0; }

.error-links { display: flex; gap: 1em; justify-content: center; flex-wrap: wrap; }

.editor-card { background: white; padding: 2em; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; gap: 2em; align-items: flex-start; margin: 2em 0; }
.editor-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--c-acc); color: white; display: flex; align-items: center; justify-content: center; font-size: 2em; font-weight: bold; flex-shrink: 0; }
.editor-info h4 { margin-top: 0; }
.editor-role { color: var(--c-muted); font-size: 0.95em; margin-bottom: 0.5em; }
.editor-bio { line-height: 1.8; }

@media (max-width: 768px) {
  .hd-nav { display: none; }
  .hd-burger { display: block; }
  .hd-nav.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--c-dark); padding: 1em; gap: 1em; }
  .hero h1 { font-size: 1.8em; }
  .edit-card { grid-template-columns: 1fr; }
  .brand-header { flex-direction: column; }
  .cmp { font-size: 0.9em; }
  .cmp th, .cmp td { padding: 0.75em 0.5em; }
  .meth-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .cookie-banner { left: 10px; right: 10px; max-width: none; }
}
