:root {
  color-scheme: light;
  --forest: #1f4b3f;
  --pine: #2f6a57;
  --mist: #f5f2ee;
  --stone: #e3ded8;
  --ink: #1b1b1b;
  --slate: #4a5451;
  --sun: #d7b98a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--accent {
  background: var(--white);
}

.section--tone {
  background: var(--stone);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--pine);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p {
  color: var(--slate);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 75, 63, 0.18);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(31, 75, 63, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--forest);
}

.brand svg {
  width: 34px;
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--stone);
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 0;
}

.nav-menu a {
  font-weight: 600;
}

.nav-menu--open {
  display: flex;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 27, 27, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.nav-overlay--show {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    padding: 0;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(31, 75, 63, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.card {
  flex: 1 1 230px;
  background: var(--white);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(31, 75, 63, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card--tone {
  background: var(--stone);
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(31, 75, 63, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  background: var(--white);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(31, 75, 63, 0.08);
}

@media (min-width: 880px) {
  .split {
    flex-direction: row;
    align-items: stretch;
  }
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--white);
  padding: 18px;
  border-radius: 14px;
  border-left: 4px solid var(--forest);
}

@media (min-width: 720px) {
  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }
}

.quote-block {
  background: var(--forest);
  color: var(--white);
  padding: 28px;
  border-radius: 20px;
  margin-top: 28px;
}

.quote-block p {
  color: rgba(255, 255, 255, 0.84);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: var(--stone);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--forest);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: var(--forest);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(31, 75, 63, 0.08);
}

@media (min-width: 860px) {
  .comparison-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

.faq-item {
  border-bottom: 1px solid rgba(31, 75, 63, 0.1);
  padding: 12px 0;
}

.faq-item button {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  padding: 8px 0;
}

.faq-item .faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-panel {
  max-height: 220px;
}

.footer {
  background: var(--forest);
  color: var(--white);
  padding: 40px 0;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 18px;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  background: var(--white);
  color: var(--forest);
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(31, 75, 63, 0.15);
  display: none;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(27, 27, 27, 0.18);
  z-index: 30;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(27, 27, 27, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 12px;
  background: var(--stone);
}

.cookie-toggle button {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 6px 14px;
  border-radius: 999px;
}

.cookie-toggle button[aria-pressed="true"] {
  background: var(--pine);
}

.notice-panel {
  background: var(--stone);
  padding: 20px;
  border-radius: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding-left: 18px;
}

.list li {
  color: var(--slate);
}

.divider {
  height: 2px;
  background: rgba(31, 75, 63, 0.08);
  margin: 32px 0;
}
