@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(4, 44, 20, 0.08);
  backdrop-filter: blur(14px);
}

.nav-link {
  color: #374151;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #17642e;
}

.mobile-link {
  display: block;
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
}

.mobile-link:last-child {
  border-bottom: 0;
}

.mobile-link:hover {
  color: #17642e;
}

.section-kicker {
  display: inline-block;
  color: #17642e;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 0.75rem;
  color: #042c14;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.85rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #17642e;
  color: white;
  box-shadow: 0 8px 20px rgba(23, 100, 46, 0.2);
}

.btn-primary:hover {
  background: #0d5124;
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid #d1d5db;
  background: white;
  color: #17642e;
}

.btn-secondary:hover {
  border-color: #17642e;
  background: #f2f8f3;
}

.pill {
  border: 1px solid #b9ddbf;
  border-radius: 9999px;
  background: #f2f8f3;
  padding: 0.5rem 0.8rem;
  color: #17642e;
  font-size: 0.75rem;
  font-weight: 700;
}

.info-card {
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  background: white;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(4, 44, 20, 0.05);
}

.info-card h3,
.service-card h3 {
  margin-top: 1rem;
  color: #083d1c;
  font-weight: 800;
}

.info-card p,
.service-card p {
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

.icon-box {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: #dceede;
  color: #17642e;
  font-size: 0.75rem;
  font-weight: 900;
}

.objective-card {
  border-radius: 1.25rem;
  background: white;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(4, 44, 20, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.objective-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(4, 44, 20, 0.1);
}

.objective-card > span {
  color: #5fa66e;
  font-size: 0.75rem;
  font-weight: 900;
}

.objective-card h3 {
  margin-top: 1rem;
  color: #083d1c;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.objective-card p {
  margin-top: 0.6rem;
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.6;
}

.service-card {
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  background: white;
  padding: 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-icon {
  display: flex;
  height: 3.25rem;
  width: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: #f2f8f3;
  font-size: 1.4rem;
}

.service-card a {
  display: inline-block;
  margin-top: 1.25rem;
  color: #17642e;
  font-size: 0.8rem;
  font-weight: 800;
}

.stat-card {
  display: flex;
  min-height: 9rem;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.07);
  padding: 1.25rem;
}

.stat-card strong {
  color: #bef264;
  font-size: 2rem;
  font-weight: 900;
}

.stat-card span {
  color: #dcfce7;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
}

.footer-link:hover {
  color: white;
}


/* Mobile / tablet responsiveness */
*, *::before, *::after { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; }

@media (max-width: 1023px) {
  #header .container { max-width: 100%; }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 2rem;
    line-height: 1.12;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 0.9rem 1.25rem;
  }

  .info-card,
  .objective-card,
  .service-card {
    padding: 1.25rem;
  }

  .stat-card {
    min-height: 7.5rem;
    padding: 1rem;
  }

  .stat-card strong { font-size: 1.6rem; }

  #mobileMenu {
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 479px) {
  .section-kicker { font-size: 0.68rem; letter-spacing: 0.13em; }

  .section-title {
    font-size: 1.75rem;
  }

  .service-card h3,
  .info-card h3,
  .objective-card h3 {
    font-size: 0.98rem;
  }

  .objective-card p,
  .service-card p,
  .info-card p {
    font-size: 0.82rem;
  }
}
