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

* {
  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;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-h);
  line-height: 1.3;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5rem;
  margin-top: 0;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin-bottom: 1em;
}

a {
  color: var(--c-acc);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var----- FILE: assets/css/main.css -----
:root {
  --text-muted: rgba(30, 30, 30, 0.6);
  --c-acc: #6b8e5a;
  --c-acc-dark: #4f6e41;
  --c-dark: #1c2018;
  --c-bg: #fbfaf5;
  --c-bg-soft: #f0eee3;
  --c-border: #d8d4c0;
  --c-text: #1c1f17;
  --rhythm: 96px;
  --radius: 20px;
  --shadow: 0 4px 24px rgba(28, 32, 24, 0.08);
  --ff-h: 'DM Serif Display', system-ui, sans-serif;
  --ff-b: 'DM Sans', system-ui, 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; }
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-h); line-height: 1.3; margin-top: 1.5em; margin-bottom: 0.5em; }
h1 { font-size: 2.5rem; margin-top: 0; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }
p { margin-bottom: 1em; }
a { color: var(--c-acc); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--c-acc-dark); }

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

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

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

.btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--ff-b);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

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

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

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

.btn-outline:hover {
  background: var(--c-bg-soft);
  color: var(--c-acc-dark);
  border-color: var(--c-acc-dark);
}

.header {
  background: white;
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 20px;
}

.header-logo {
  font-family: var(--ff-h);
  font-size: 1.3em;
  font-weight: 700;
  color: var(--c-text);
  text-decoration: none;
}

.header-nav {
  display: flex;
  gap: 2em;
  align-items: center;
}

.header-link {
  color: var(--c-text);
  font-weight: 500;
  transition: color 0.2s;
}

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

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

.header-burger span {
  width: 24px;
  height: 2px;
  background: var(--c-text);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .header-burger { display: flex; }
  .header-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: white; padding: 1em; border-bottom: 1px solid var(--c-border); }
  .header-nav.open { display: flex; }
}

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

.hero-subtitle {
  font-size: 1.2em;
  color: var(--text-muted);
  margin-bottom: 2em;
}

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

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

.hero-chip {
  display: inline-block;
  background: var(--c-bg-soft);
  padding: 0.5em 1em;
  border-radius: var(--radius);
  font-size: 0.9em;
  color: var(--c-text);
}

.hero-chip i {
  margin-right: 0.5em;
  color: var(--c-acc);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}

.comparison-table th {
  background: var(--c-bg-soft);
  padding: 1em;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--c-border);
}

.comparison-table td {
  padding: 1em;
  border-bottom: 1px solid var(--c-border);
  vertical-align: top;
}

.comparison-table tr:hover {
  background: rgba(107, 142, 90, 0.05);
}

.comparison-table a {
  color: var(--c-text);
}

.comparison-table a[target="_blank"] {
  color: var(--c-acc);
}

.featured-pick {
  background: var(--c-bg);
  padding: 2em;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--c-border);
}

.pick-badge {
  display: inline-block;
  background: var(--c-acc);
  color: white;
  padding: 0.3em 0.8em;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: 700;
  margin-bottom: 1em;
}

.pick-rating {
  font-size: 1.2em;
  color: var(--c-acc);
  margin-bottom: 1em;
}

.featured-pick ul {
  list-style: none;
  margin: 1em 0;
}

.featured-pick li {
  padding: 0.5em 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.featured-pick i {
  color: var(--c-acc);
}

.method-card {
  background: var(--c-bg);
  padding: 1.5em;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--c-border);
}

.method-num {
  font-family: var(--ff-h);
  font-size: 2.5em;
  font-weight: 700;
  color: var(--c-acc);
  margin-bottom: 0.5em;
}

.faq-item {
  margin-bottom: 1em;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-q {
  padding: 1.5em;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-q:hover {
  background: var(--c-bg-soft);
}

.faq-q i {
  transition: transform 0.2s;
  color: var(--c-acc);
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 1000px;
  padding: 0 1.5em 1.5em 1.5em;
}

.card-item {
  background: var(--c-bg);
  padding: 1.5em;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--c-border);
}

.card-item h3 {
  margin-top: 0;
  color: var(--c-acc);
}

.guide-card {
  background: var(--c-bg);
  padding: 1.5em;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--c-border);
}

.guide-card a {
  color: var(--c-acc);
  font-weight: 500;
}

.alt-card {
  background: var(--c-bg);
  padding: 1.5em;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.brand-header {
  text-align: center;
  margin: 2em 0;
  padding: 1.5em;
  background: var(--c-bg-soft);
  border-radius: var(--radius);
}

.brand-header img {
  border-radius: 50%;
  background: white;
  padding: 0.5em;
}

.inline-logo {
  display: inline-block;
  margin-right: 0.3em;
  vertical-align: middle;
}

.footer {
  background: var(--c-dark);
  color: white;
  padding: var(--rhythm) 0;
  margin-top: 3em;
}

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

.footer h3, .footer h4 {
  color: white;
  margin-top: 0;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
  color: white;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.5em;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--c-border);
  padding: 1.5em;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-banner.hidden {
  display: none;
}

.cookie-content {
  max-width: 1240px;
  margin: 0 auto;
}

.cookie-banner h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
}

.cookie-btns {
  display: flex;
  gap: 1em;
  margin-top: 1em;
  flex-wrap: wrap;
}

.cookie-prefs {
  background: var(--c-bg-soft);
  padding: 1em;
  border-radius: var(--radius);
  margin-top: 1em;
}

.cookie-row {
  margin: 0.5em 0;
}

.cookie-row label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
}

.cookie-reopen {
  position: fixed;
  bottom: 1.5em;
  right: 1.5em;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--c-acc);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.5em;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}

.cookie-reopen:hover {
  background: var(--c-acc-dark);
  transform: scale(1.1);
}

.cookie-reopen.show {
  display: flex;
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .comparison-table { font-size: 0.9em; }
  .comparison-table th, .comparison-table td { padding: 0.75em; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { padding: 1em; }
  .cookie-btns { flex-direction: column; }
  .cookie-btns .btn { width: 100%; }
}
