:root {
  --green: #2f5333;
  --green-dark: #213b25;
  --green-soft: #eef5e8;
  --cream: #f7f3e8;
  --text: #223025;
  --muted: #647064;
  --line: #dfe8dc;
  --white: #ffffff;
  --gold: #d6a949;
  --shadow: 0 18px 50px rgba(35, 51, 38, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--green);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 232, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47, 83, 51, 0.14);
}
.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.logo-link img { width: 220px; height: auto; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  color: var(--green);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
}
.nav-menu a:hover { color: var(--green); }
.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 11px 16px;
  border-radius: 12px;
}
.nav-cta:hover { background: var(--green-dark); }

.hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at 16% 18%, rgba(132, 169, 107, 0.30), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(214, 169, 73, 0.22), transparent 26%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
  gap: 48px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
}
.hero h1, .page-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 0.98;
  letter-spacing: -2px;
}
.hero p, .page-hero p {
  color: var(--muted);
  font-size: 19px;
  max-width: 680px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 14px 19px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
}
.button-primary { background: var(--green); color: var(--white); }
.button-primary:hover { background: var(--green-dark); }
.button-secondary { background: var(--white); color: var(--green); border-color: var(--line); }
.button-secondary:hover { border-color: var(--green); }
.hero-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(47, 83, 51, 0.12);
  border-radius: 32px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.hero-card img { border-radius: 24px; }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.trust-item {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.trust-item strong { display: block; color: var(--green); font-size: 20px; }
.trust-item span { color: var(--muted); font-size: 14px; }

.section { padding: 66px 0; }
.section-white { background: var(--white); }
.section-green { background: var(--green); color: var(--white); }
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -1px;
}
.section-title p { margin: 0; color: var(--muted); max-width: 500px; }
.section-green .section-title p { color: rgba(255,255,255,.78); }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 30px rgba(35, 51, 38, 0.06);
}
.card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.2; }
.card p { margin: 0; color: var(--muted); }
.icon-badge {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 24px;
  margin-bottom: 18px;
}
.feature-card {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.feature-card img { border-radius: 24px; }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; }
.check-list li {
  margin: 10px 0;
  padding-left: 34px;
  position: relative;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rank-table th, .rank-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.rank-table th { background: var(--green-soft); color: var(--green-dark); font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }
.rank-table tr:last-child td { border-bottom: 0; }
.score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}
.small-link { color: var(--green); font-weight: 800; text-decoration: none; }
.small-link:hover { text-decoration: underline; }
.disclaimer {
  background: rgba(47,83,51,.08);
  border: 1px solid rgba(47,83,51,.14);
  border-radius: 18px;
  padding: 16px;
  color: var(--muted);
  font-size: 14px;
}
.section-green .disclaimer { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.82); }

.faq { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 20px;
  font-weight: 900;
  color: var(--text);
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.faq-answer { display: none; padding: 0 20px 20px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }

.page-hero {
  padding: 64px 0 42px;
  background: linear-gradient(135deg, var(--green-soft), var(--cream));
}
.content-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.content-wrap h2 { color: var(--green); margin-top: 34px; }
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap p, .content-wrap li { color: var(--muted); }
.content-wrap a { color: var(--green); font-weight: 700; }
.article-list { display: grid; gap: 18px; }
.article-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}
.article-number {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
}
.article-card h2 { margin: 0 0 8px; color: var(--text); }
.article-card p { margin: 0; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 22px;
}
.form-card label { display: block; font-weight: 800; margin: 14px 0 7px; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
  color: var(--text);
}
.form-card textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--muted); font-size: 14px; }

.site-footer {
  background: #182a1b;
  color: rgba(255,255,255,.78);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 32px;
}
.site-footer h3 { color: var(--white); margin-top: 0; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  font-size: 14px;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .hero-grid, .feature-card, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .section-title { display: block; }
  .section-title p { margin-top: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .article-card { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1120px); }
  .hero { padding-top: 44px; }
  .trust-bar { grid-template-columns: 1fr; }
  .rank-table { display: block; overflow-x: auto; white-space: nowrap; }
  .logo-link img { width: 190px; }
}


/* Expanded article and stock-image sections */
.kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  padding: 8px 12px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.article-teaser {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(35, 51, 38, 0.06);
  display: flex;
  flex-direction: column;
}
.article-teaser img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.article-teaser-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.article-tag {
  align-self: flex-start;
  display: inline-flex;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
}
.article-teaser h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}
.article-teaser p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.article-teaser .small-link { margin-top: auto; }
.image-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.image-band img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(35, 51, 38, 0.08);
}
.post-hero {
  padding: 56px 0 34px;
  background: linear-gradient(135deg, var(--green-soft), var(--cream));
}
.post-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 34px;
}
.post-hero img {
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.post-meta {
  color: var(--muted);
  font-weight: 700;
  margin-top: 12px;
}
.post-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(24px, 5vw, 54px);
  box-shadow: var(--shadow);
}
.post-content h2 {
  color: var(--green);
  margin-top: 34px;
  line-height: 1.18;
}
.post-content h2:first-child { margin-top: 0; }
.post-content p, .post-content li { color: var(--muted); font-size: 18px; }
.post-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}
@media (max-width: 1040px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .image-band { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .post-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .article-grid, .image-band { grid-template-columns: 1fr; }
}
