@import url('https://cdn.jsdelivr.net/npm/@fontsource/inter@5.0.16/index.css');

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

:root {
  --green: #2C5445;
  --green-light: #E6F0EC;
  --green-mid: #A8C8BA;
  --green-dark: #1A2B24;
  --green-muted: #4A6358;
  --green-hint: #7A9B8C;
  --tint: #F4F8F6;
  --border: #D0DDD8;
  --border-light: #A8C4B8;
  --white: #ffffff;
  --max: 1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  background: var(--white);
  color: var(--green-dark);
  -webkit-font-smoothing: antialiased;
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── NAV ── */
nav {
  border-bottom: 0.5px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  padding: 0 8%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 500;
  color: var(--green-dark);
  letter-spacing: -0.3px;
  text-decoration: none;
}

.nav-links { display: flex; gap: 4px; align-items: center; }

.nav-links a {
  font-size: 14px;
  color: var(--green-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
}
.nav-links a:hover { background: var(--tint); }
.nav-links a.active { color: var(--green); font-weight: 500; background: var(--green-light); }

.nav-cta,
.nav-links a.nav-cta {
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  background: var(--green);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  cursor: pointer;
  margin-left: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-cta:hover,
.nav-links a.nav-cta:hover { opacity: 0.88; background: var(--green); }

/* ── SHARED ELEMENTS ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 24px;
}

.section { padding: 80px 0; background: var(--white); }
.section.tint {
  background: var(--tint);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.section-intro {
  font-size: 16px;
  color: var(--green-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 40px;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 800px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--green-light);
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
}
.card h3 { font-size: 15px; font-weight: 500; color: var(--green-dark); margin-bottom: 8px; }
.card p  { font-size: 14px; color: var(--green-muted); line-height: 1.6; }

.problem-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 7px; }
.problem-item h4 { font-size: 14px; font-weight: 500; color: var(--green-dark); margin-bottom: 5px; }
.problem-item p  { font-size: 14px; color: var(--green-muted); line-height: 1.6; }

.btn-primary {
  font-size: 15px; font-weight: 500;
  font-family: 'Inter', sans-serif;
  background: var(--green); color: var(--white);
  border: none; border-radius: 9px;
  padding: 13px 24px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.88; }

.btn-ghost {
  font-size: 15px; color: var(--green-muted);
  font-family: 'Inter', sans-serif;
  background: none; border: 0.5px solid var(--border-light);
  border-radius: 9px; padding: 13px 24px; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.15s;
}
.btn-ghost:hover { background: var(--tint); }

.cta-bar { padding: 80px 0; background: var(--green); }
.cta-bar-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
}
.cta-bar h2 { font-size: 26px; font-weight: 500; letter-spacing: -0.4px; color: var(--white); margin-bottom: 8px; }
.cta-bar p  { font-size: 16px; color: var(--green-mid); }

.btn-white {
  font-size: 15px; font-weight: 500;
  font-family: 'Inter', sans-serif;
  background: var(--white); color: var(--green);
  border: none; border-radius: 9px;
  padding: 13px 24px; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  text-decoration: none; display: inline-block;
  transition: opacity 0.15s;
}
.btn-white:hover { opacity: 0.9; }

/* ── PAGE HERO (shared inner-page hero pattern) ── */
.page-hero {
  padding: 72px 0 60px;
  border-bottom: 0.5px solid var(--border);
}
.page-hero.tint {
  background: var(--tint);
}
.page-hero h1 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 16px;
  color: var(--green-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}

/* ── TOOL CARDS (tools index page) ── */
.tool-list { display: flex; flex-direction: column; gap: 12px; }

.tool-card {
  display: block;
  padding: 28px 32px;
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.tool-card:hover { background: var(--tint); border-color: var(--green-mid); }

.tool-card-meta {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--green); background: var(--green-light);
  border-radius: 100px; padding: 3px 10px;
  display: inline-block; margin-bottom: 14px;
}
.tool-card h3 {
  font-size: 18px; font-weight: 500;
  color: var(--green-dark); letter-spacing: -0.2px;
  margin-bottom: 8px;
}
.tool-card p {
  font-size: 14px; color: var(--green-muted);
  line-height: 1.65; margin-bottom: 20px;
  max-width: 520px;
}
.tool-card-action {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500; color: var(--green);
}
.tool-card-action svg { transition: transform 0.15s; }
.tool-card:hover .tool-card-action svg { transform: translate(2px, -2px); }

.tool-card.disabled { pointer-events: none; opacity: 0.55; }

footer { border-top: 0.5px solid var(--border); background: var(--white); }
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 20px 40px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; color: var(--green-muted); }
.footer-copy { font-size: 13px; color: var(--green-hint); }

@media (max-width: 600px) {
  .inner { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .cta-bar-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { padding: 20px; }

  /* Hide text nav links on mobile — keep only the CTA button */
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links a.nav-cta { margin-left: 0; }
}
