/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #212121;
  background: #fff;
  line-height: 1.85;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── VARIABLES ─────────────────────────────────── */
:root {
  --green-dark:    #1B5E20;
  --green-primary: #2E7D32;
  --green-medium:  #388E3C;
  --green-light:   #4CAF50;
  --green-pale:    #E8F5E9;
  --green-xpale:   #F1F8E9;
  --black:         #212121;
  --white:         #FFFFFF;
  --gray-100:      #F5F5F5;
  --gray-200:      #EEEEEE;
  --gray-400:      #BDBDBD;
  --gray-600:      #757575;
  --radius:        8px;
  --shadow:        0 2px 16px rgba(0,0,0,0.09);
  --shadow-hover:  0 6px 24px rgba(0,0,0,0.15);
}

/* ─── UTILITY ────────────────────────────────────── */
.container     { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; color: var(--black); margin-bottom: 8px; }
.section-sub   { color: var(--gray-600); font-size: 1.05rem; margin-bottom: 40px; font-style: italic; }
.badge {
  display: inline-block; padding: 4px 12px;
  background: var(--green-pale); color: var(--green-dark);
  border-radius: 30px; font-size: .78rem; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 14px; font-family: 'Helvetica Neue', Arial, sans-serif;
}
.btn-primary {
  display: inline-block; padding: 14px 32px;
  background: var(--green-primary); color: var(--white);
  border-radius: var(--radius); font-weight: 700;
  font-size: 1rem; font-family: 'Helvetica Neue', Arial, sans-serif;
  transition: background .2s, transform .15s;
  letter-spacing: .3px;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; padding: 13px 30px;
  border: 2px solid rgba(255,255,255,.55); color: var(--white);
  border-radius: var(--radius); font-weight: 600;
  font-size: 1rem; font-family: 'Helvetica Neue', Arial, sans-serif;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ─── DISCLOSURE BAR ────────────────────────────── */
.disclosure-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,.92);
  text-align: center;
  padding: 9px 24px;
  font-size: .82rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.4;
}
.disclosure-bar strong { color: #fff; }

/* ─── NAV ────────────────────────────────────────── */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 8px rgba(0,0,0,.07);
}
.nav-wrap nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 24px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex; gap: 6px; align-items: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .9rem;
}
.nav-links a {
  padding: 8px 14px; border-radius: 6px;
  color: var(--black); font-weight: 500;
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--green-pale); color: var(--green-primary); }
.nav-cta {
  background: var(--green-primary); color: var(--white);
  border: none; cursor: pointer;
  padding: 10px 22px; border-radius: var(--radius);
  font-weight: 700; font-size: .9rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  transition: background .2s;
}
.nav-cta:hover { background: var(--green-dark); }

/* ─── HEADER (homepage + articles shared style) ─────────────────── */
header {
  background: var(--white);
  border-bottom: 2px solid var(--green-primary);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px; gap: 24px;
}
header .logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.1rem;
  color: var(--green-dark); white-space: nowrap;
}
header .logo img { height: 38px; width: 38px; border-radius: 50%; object-fit: cover; }
header .logo span { color: var(--green-dark); }
header nav { flex: 1; }
header nav ul {
  display: flex; gap: 6px; list-style: none;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
header nav a {
  font-size: .88rem; font-weight: 600; color: var(--black);
  padding: 7px 12px; border-radius: 6px;
  transition: background .15s, color .15s;
}
header nav a:hover { background: var(--green-pale); color: var(--green-primary); }

/* ─── HAMBURGER / MOBILE NAV ──────────────────────── */
.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 10px;
  flex-direction: column; justify-content: center; gap: 5px;
  flex-shrink: 0; z-index: 101;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--green-dark);
  transition: transform .3s, opacity .3s; border-radius: 2px;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-cta { display: none; }
  header nav ul {
    display: none; position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 2px solid #2e7d32;
    flex-direction: column; padding: 8px 0; gap: 0;
    z-index: 99; box-shadow: 0 4px 12px rgba(0,0,0,.15);
  }
  header nav ul.open { display: flex; }
  header nav li { border-bottom: 1px solid #eee; }
  header nav li:last-child { border-bottom: none; }
  header nav a { display: block; padding: 14px 24px; font-size: 1rem; border-radius: 0; color: var(--black); }
  header nav a:hover { background: var(--green-pale); }
}
body.best-page .menu-toggle span,
body.dark-page .menu-toggle span { background: #fff; }
body.best-page header nav ul.open,
body.dark-page header nav ul.open { background: #0a2e0a; border-bottom-color: #1b5e20; }
body.best-page header nav ul.open a,
body.dark-page header nav ul.open a { color: rgba(255,255,255,.85); }
body.best-page header nav ul.open a:hover,
body.dark-page header nav ul.open a:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 0;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 48px;
}
.hero-content { padding-bottom: 72px; }
.hero-content .badge {
  background: rgba(76,175,80,.18);
  color: #66BB6A;
}
.hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-content h1 .green { color: var(--green-light); }
.hero-content p {
  font-size: 1.12rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 36px;
  font-style: italic;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-illustration { align-self: flex-end; }

/* ─── Hero inline SVG chameleon ─── */
.hero-svg { width: 100%; height: auto; }

/* ─── TRUST BAR ──────────────────────────────────── */
.trust-bar {
  background: var(--green-xpale);
  border-top: 3px solid var(--green-light);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
}
.trust-items {
  display: flex; gap: 36px; justify-content: center;
  align-items: center; flex-wrap: wrap;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .88rem; font-weight: 600;
  color: var(--green-dark);
}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-icon { font-size: 1.1rem; }

/* ─── QUICK START ─────────────────────────────────── */
.quick-start { padding: 68px 0; }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.quick-card {
  display: flex; flex-direction: column;
  padding: 28px 24px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s, transform .15s;
  background: var(--white);
}
.quick-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.quick-card-icon {
  font-size: 2rem; margin-bottom: 14px;
}
.quick-card-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--black); margin-bottom: 8px;
  font-family: 'Georgia', serif;
}
.quick-card-desc {
  font-size: .88rem; color: var(--gray-600);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  flex: 1;
}
.quick-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 16px; font-size: .85rem;
  font-weight: 700; color: var(--green-primary);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ─── FEATURED ARTICLES ───────────────────────────── */
.featured { padding: 68px 0; background: var(--gray-100); }
.section-header { margin-bottom: 0; }
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .15s;
  display: flex; flex-direction: column;
}
.article-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.article-card-thumb {
  height: 160px;
  background: var(--green-primary);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.article-card-thumb.dark  { background: #1A1A1A; }
.article-card-thumb.pale  { background: var(--green-pale); }
.article-card-thumb.mid   { background: var(--green-medium); }
.article-card-thumb.xdark { background: #0D3B1E; }
.thumb-label {
  font-size: 3.2rem; opacity: .22; user-select: none;
}
.article-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.article-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.article-card-title {
  font-size: 1.05rem; font-weight: 700;
  line-height: 1.35; margin-bottom: 10px;
  color: var(--black);
}
.article-card-title:hover { color: var(--green-primary); }
.article-card-excerpt {
  font-size: .87rem; color: var(--gray-600);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6; flex: 1;
}
.article-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--gray-200);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .8rem; color: var(--gray-600);
}
.read-more {
  color: var(--green-primary); font-weight: 700; font-size: .82rem;
  display: inline-flex; align-items: center; gap: 3px;
}
.view-all-wrap { text-align: center; margin-top: 40px; }
.btn-green-outline {
  display: inline-block; padding: 13px 32px;
  border: 2px solid var(--green-primary); color: var(--green-primary);
  border-radius: var(--radius); font-weight: 700;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  transition: background .2s, color .2s;
}
.btn-green-outline:hover { background: var(--green-primary); color: var(--white); }

/* ─── SPECIES ─────────────────────────────────────── */
.species-section { padding: 68px 0; }
.species-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.species-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  transition: border-color .2s, box-shadow .2s, transform .15s;
  text-align: center;
}
.species-card:hover {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.species-thumb {
  height: 110px;
  background: var(--green-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
}
.species-thumb.v2 { background: var(--green-dark); }
.species-thumb.v3 { background: #1A3A2A; }
.species-thumb.v4 { background: #0D2E1A; }
.species-thumb.v5 { background: var(--green-medium); }
.species-info { padding: 16px 12px; }
.species-name { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.species-level {
  font-size: .75rem; color: var(--gray-600);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.species-info .read-more { font-size: .8rem; margin-top: 10px; display: flex; justify-content: center; }
.species-intro {
  font-size: .98rem; color: var(--gray-600);
  font-style: italic; max-width: 680px;
  margin: -20px 0 28px;
  line-height: 1.65;
}
.species-blurb {
  font-size: .78rem; color: var(--gray-600);
  line-height: 1.5; margin: 6px 0 8px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-style: normal;
}

/* ─── FAQ ────────────────────────────────────────── */
.faq-section { padding: 72px 0; background: var(--green-xpale); }
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.faq-item {
  border-bottom: 1px solid rgba(46,125,50,.14);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 1.05rem; font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  cursor: default;
}
.faq-a {
  font-size: .97rem; color: #3E3E3E;
  line-height: 1.7; max-width: 820px;
}

/* ─── AFFILIATE DISCLOSURE (section) ─────────────── */
.affiliate-note {
  background: #FFF8E1;
  border: 1px solid #FFE082;
  border-radius: var(--radius);
  padding: 14px 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .84rem;
  color: #5D4037;
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 36px;
}
.affiliate-note-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ─── TOP GEAR ────────────────────────────────────── */
.gear-section { padding: 68px 0; background: var(--gray-100); }
.gear-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gear-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .15s;
}
.gear-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.gear-thumb {
  height: 140px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.gear-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.gear-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: var(--green-primary);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin-bottom: 6px;
}
.gear-title { font-size: .98rem; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.gear-desc { font-size: .84rem; color: var(--gray-600); font-family: 'Helvetica Neue', Arial, sans-serif; flex: 1; }
.gear-stars { color: #F9A825; font-size: .85rem; margin-top: 10px; }
.gear-btn {
  display: block; margin-top: 14px;
  background: var(--green-primary); color: var(--white);
  text-align: center; padding: 10px 16px;
  border-radius: var(--radius); font-weight: 700;
  font-size: .88rem; font-family: 'Helvetica Neue', Arial, sans-serif;
  transition: background .2s;
}
.gear-btn:hover { background: var(--green-dark); }
.amazon-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; color: var(--gray-600);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin-top: 8px;
}

/* ─── ABOUT ───────────────────────────────────────── */
.about-section {
  padding: 68px 0;
  background: var(--black);
  color: var(--white);
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-content h2 { color: var(--white); margin-bottom: 16px; }
.about-content h2 .green { color: var(--green-light); }
.about-content p { color: rgba(255,255,255,.78); font-style: italic; margin-bottom: 20px; line-height: 1.75; }
.about-content .btn-primary { margin-top: 8px; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px 20px; text-align: center;
}
.stat-num { font-size: 2rem; font-weight: 700; color: var(--green-light); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.6); font-family: 'Helvetica Neue', Arial, sans-serif; margin-top: 4px; }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: #111;
  color: rgba(255,255,255,.75);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p {
  font-size: .88rem; line-height: 1.7;
  color: rgba(255,255,255,.55); font-style: italic;
}
.footer-disclosure {
  margin-top: 18px; padding: 14px 16px;
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--green-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .8rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem; color: rgba(255,255,255,.65);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: .8rem; color: rgba(255,255,255,.35);
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-illustration { display: none; }
  .quick-grid    { grid-template-columns: repeat(2, 1fr); }
  .article-grid  { grid-template-columns: repeat(2, 1fr); }
  .species-grid  { grid-template-columns: repeat(3, 1fr); }
  .gear-grid     { grid-template-columns: repeat(2, 1fr); }
  .about-inner   { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .article-grid { grid-template-columns: 1fr; }
  .faq-q { font-size: .97rem; }
  .quick-grid   { grid-template-columns: 1fr; }
  .species-grid { grid-template-columns: repeat(2, 1fr); }
  .gear-grid    { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
}

/* ─── SHARED COMPONENTS (used by best/ and pages/ sections) ──── */

/* Shared callout boxes */
.highlight-box{background:#e8f5e9;border-left:4px solid #2e7d32;padding:16px 20px;border-radius:4px;margin:24px 0}
.highlight-box strong{color:#1b5e20}
.warning-box{background:#fff3e0;border-left:4px solid #e65100;padding:16px 20px;border-radius:4px;margin:24px 0}
.warning-box strong{color:#e65100}
.danger-box{background:#fce4ec;border-left:4px solid #c62828;padding:16px 20px;border-radius:4px;margin:24px 0}

/* CTA box */
.cta-box{background:#1b5e20;color:#fff;padding:28px;border-radius:10px;margin:32px 0;text-align:center}
.cta-box h3{color:#fff;margin:0 0 10px}
.cta-box p{margin-bottom:18px;opacity:.92}
.cta-box a{display:inline-block;background:#ff9900;color:#111;font-weight:800;padding:11px 26px;border-radius:7px;margin:6px;font-size:.97rem}
.cta-box a:hover{background:#e68900;text-decoration:none}

/* Comparison table */
.compare-table{width:100%;border-collapse:collapse;margin:24px 0;font-size:15px}
.compare-table th{background:#2e7d32;color:#fff;padding:10px 14px;text-align:left}
.compare-table td{padding:10px 14px;border-bottom:1px solid #e0e0e0}
.compare-table tr:nth-child(even) td{background:#f9f9f9}

/* Article sidebar + TOC */
.article-sidebar{position:sticky;top:80px}
.toc{background:#f9f9f9;border:1px solid #e0e0e0;border-radius:8px;padding:20px;margin-bottom:24px}
.toc h4{font-size:.95rem;font-weight:700;color:#1b5e20;margin-bottom:12px;text-transform:uppercase;letter-spacing:.5px}
.toc ol{margin:0 0 0 18px;padding:0}
.toc li{font-size:14px;margin-bottom:6px}
.toc a{color:#2e7d32}
.sidebar-card{background:#fff;border:1px solid #e0e0e0;border-radius:8px;padding:18px;margin-bottom:18px}
.sidebar-card h4{font-size:.95rem;font-weight:700;color:#1b5e20;margin-bottom:14px}
.product-item{display:flex;flex-direction:column;gap:6px;padding:12px 0;border-bottom:1px solid #f0f0f0}
.product-item:last-child{border-bottom:none;padding-bottom:0}
.product-item span{font-size:13px;color:#555;font-weight:600}
.product-item a.btn{display:block;background:#ff9900;color:#111;padding:9px;border-radius:6px;font-weight:700;font-size:13px;text-align:center;margin-top:4px}
.product-item a.btn:hover{background:#e68900;text-decoration:none}

/* Shared dark footer (ftr-* classes) */
.ftr-wrap,.ftr-inner{max-width:1160px;margin:0 auto;padding:0 24px}
.ftr-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:40px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,.1);margin-bottom:0}
.ftr-brand img{height:52px;width:auto;margin-bottom:16px;display:block}
.ftr-brand p{font-size:.88rem;line-height:1.7;color:rgba(255,255,255,.55);font-style:italic}
.ftr-disc{margin-top:18px;padding:14px 16px;background:rgba(255,255,255,.05);border-left:3px solid #6fcf6f;border-radius:0 4px 4px 0;font-size:.8rem;color:rgba(255,255,255,.5);line-height:1.6}
.ftr-col h4{font-size:.8rem;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;color:rgba(255,255,255,.4)!important;margin-bottom:16px}
.ftr-col ul{list-style:none!important;display:flex!important;flex-direction:column;gap:10px}
.ftr-col ul li a{font-size:.88rem;color:rgba(255,255,255,.65)!important;text-decoration:none;transition:color .15s}
.ftr-col ul li a:hover{color:#6fcf6f!important}
.ftr-btm,.ftr-bottom{padding:20px 0;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px;font-size:.8rem;color:rgba(255,255,255,.35)}
.ftr-btm a{display:inline-block}
@media(max-width:900px){.ftr-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.ftr-grid{grid-template-columns:1fr}}

/* ─── DARK-PAGE (pages/ static pages + best/ care guides) ──────── */
body.dark-page{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;background:#f8f9fa;color:#222}
body.dark-page header{background:#0a2e0a;padding:0 24px;height:64px;display:flex;align-items:center;justify-content:space-between;position:sticky;top:0;z-index:100;box-shadow:0 2px 8px rgba(0,0,0,.4)}
body.dark-page header .logo{display:flex;align-items:center;gap:.6rem;text-decoration:none}
body.dark-page header .logo img{height:40px}
body.dark-page header .logo span{color:#fff;font-size:1.2rem;font-weight:700}
body.dark-page nav ul{list-style:none;display:flex;gap:1.5rem}
body.dark-page nav a{color:#c8e6c8;text-decoration:none;font-size:.92rem}
body.dark-page nav a:hover{color:#fff}
body.dark-page .nav-cta{background:#2e7d32;color:#fff!important;padding:.4rem .9rem;border-radius:4px;font-weight:600}
body.dark-page .breadcrumb{font-size:.82rem;color:#666;margin-bottom:1.5rem}
body.dark-page .breadcrumb a{color:#2e7d32;text-decoration:none}
body.dark-page footer{background:#111!important;color:rgba(255,255,255,.75)!important;padding:56px 0 0!important;margin-top:4rem!important}
.page-container{max-width:820px;margin:0 auto;padding:3rem 1.5rem}
.page-header{margin-bottom:2.5rem}
.page-header h1{font-size:2rem;color:#0a2e0a;margin-bottom:.5rem}
.page-header p{color:#666;font-size:.9rem}
.page-body h2{font-size:1.2rem;color:#0a2e0a;margin:2rem 0 .75rem;padding-bottom:.25rem;border-bottom:2px solid #e8f5e9}
.page-body p{margin-bottom:1.5rem;color:#333}
.page-body ul{margin:0 0 1rem 1.5rem}
.page-body li{margin-bottom:.4rem}
.page-body a{color:#2e7d32;font-weight:600}
@media(max-width:480px){.page-container{padding:2rem 1rem}}

/* ─── BEST-PAGE (best/ lifestyle articles) ──────────────────────── */
body.best-page{font-family:'Segoe UI',Arial,sans-serif}
body.best-page .disclosure{background:#f1f8e9;border-bottom:1px solid #c8e6c9;padding:8px 20px;font-size:13px;color:#555;text-align:center}
body.best-page header{background:#0a2e0a;border-bottom-color:#1b5e20}
body.best-page header .logo,body.best-page header .logo span{color:#fff}
body.best-page header nav a{color:rgba(255,255,255,.85)}
body.best-page header nav a:hover{background:rgba(255,255,255,.12);color:#fff}
body.best-page header .nav-cta{background:rgba(255,255,255,.15);color:#fff!important}
body.best-page header .nav-cta:hover{background:rgba(255,255,255,.25)}
body.best-page .header-inner{max-width:1100px;margin:0 auto;padding:0;display:flex;align-items:center;justify-content:space-between;height:64px;gap:24px;width:100%}
body.best-page .hero{background:linear-gradient(135deg,#1b5e20 0%,#2e7d32 60%,#388e3c 100%);color:#fff;padding:60px 20px 50px;text-align:center}
body.best-page .hero h1{font-size:2rem;font-weight:800;max-width:800px;margin:0 auto 16px;line-height:1.25}
body.best-page .hero p{font-size:1.1rem;max-width:640px;margin:0 auto 28px;opacity:.93}
body.best-page .hero-cta{display:inline-block;background:#ff9900;color:#111;font-weight:800;padding:14px 32px;border-radius:8px;font-size:1rem}
body.best-page .hero-cta:hover{background:#e68900;text-decoration:none}
body.best-page .container{max-width:1100px;margin:0 auto;padding:40px 20px}
body.best-page .article-layout{display:grid;grid-template-columns:1fr 300px;gap:40px;align-items:start}
body.best-page article h2{font-size:1.45rem;color:#1b5e20;margin:32px 0 12px;font-weight:700}
body.best-page article h3{font-size:1.15rem;color:#2e7d32;margin:24px 0 10px;font-weight:700}
body.best-page article p{margin-bottom:1.5rem}
body.best-page article ul,body.best-page article ol{margin:12px 0 16px 24px}
body.best-page article li{margin-bottom:6px}
body.best-page footer{background:#111!important;color:#ccc;padding:48px 20px 24px}
body.best-page .ftr-inner{max-width:1100px;margin:0 auto}
body.best-page .ftr-grid{grid-template-columns:repeat(4,1fr);gap:32px;margin-bottom:36px;padding-bottom:0;border-bottom:none}
body.best-page .ftr-col a{color:#ccc}
body.best-page .ftr-bottom{border-top:1px solid #333;padding-top:20px;font-size:13px;color:#888;text-align:center;display:block}
@media(max-width:768px){
  body.best-page .article-layout{grid-template-columns:1fr}
  body.best-page .article-sidebar{position:static}
  body.best-page .hero h1{font-size:1.5rem}
  body.best-page .ftr-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
  body.best-page .ftr-grid{grid-template-columns:1fr}
  body.best-page .hero h1{font-size:1.3rem}
  body.best-page .container{padding:24px 16px}
}

/* ─── VALUES GRID (about page) ─────────────────────── */
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin:20px 0}
.value-card{background:#f0f7f0;border:1px solid #c8e6c9;border-radius:8px;padding:16px}
.value-card h3{font-size:.95rem;color:#1b5e20;margin-bottom:6px}
.value-card p{font-size:.85rem;color:#555;margin:0}
@media(max-width:900px){.values-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.values-grid{grid-template-columns:1fr}}
.mission-banner{background:#0a2e0a;color:#fff;padding:24px 28px;border-radius:8px;margin-bottom:24px}
.mission-banner h2{color:#fff;border:none;margin-bottom:8px}
.mission-banner p{color:rgba(255,255,255,.85);margin:0}

/* ─── SHARED CONTENT COMPONENTS (best/ pages) ──────────────────── */
.meta{font-size:.82rem;color:#888;font-family:'Helvetica Neue',Arial,sans-serif;margin-bottom:1.5rem}
.related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:24px 0}
.related-card{background:#fff;border:1px solid #e0e0e0;border-radius:8px;padding:16px;transition:border-color .2s}
.related-card:hover{border-color:#2e7d32}
.related-card a{color:#2e7d32;font-size:.88rem;font-weight:700;display:block;margin-bottom:4px}
.related-card a:hover{text-decoration:underline}
@media(max-width:680px){.related-grid{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.related-grid{grid-template-columns:1fr}}
.sidebar-card a.btn{display:block;background:#ff9900;color:#111;text-align:center;padding:10px;border-radius:6px;font-weight:700;font-size:.88rem;margin-top:8px;text-decoration:none}
.sidebar-card a.btn:hover{background:#e68900}
.price{font-size:.85rem;color:#888;font-family:'Helvetica Neue',Arial,sans-serif;margin-bottom:6px}
.faq-item h3{font-size:1rem;color:#1b5e20;margin-bottom:6px;font-weight:700;font-family:'Helvetica Neue',Arial,sans-serif}
.faq-item p{font-size:.93rem;color:#444;line-height:1.85;margin:0 0 .75rem}
