:root {
  --bg: #f4f6f3;
  --surface: #ffffff;
  --ink: #172018;
  --muted: #4f5c53;
  --primary: #2f6b2f;
  --primary-dark: #244f24;
  --accent: #d7a83e;
  --line: #d7dfd6;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.hero {
  background:
    linear-gradient(120deg, rgba(26, 66, 31, 0.96), rgba(39, 87, 40, 0.92)),
    radial-gradient(circle at top right, rgba(215, 168, 62, 0.35), transparent 45%);
  color: #fff;
  padding-bottom: 4rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: #edf4ec;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover {
  text-decoration: underline;
}

.nav-links .link-privacy {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 220px;
  max-width: 100%;
  height: auto;
}

.hero-content {
  padding: 3rem 0 0.8rem;
  max-width: 820px;
}

.tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  border-radius: 12px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  padding: 0.7rem 1rem;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #1a1a1a;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover,
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.section {
  padding: 3.6rem 0;
}

.section.alt {
  background: #eef2ea;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
}

.lead {
  color: var(--muted);
  max-width: 860px;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.service,
.contact-box,
.highlight {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem;
  box-shadow: 0 6px 20px rgba(14, 25, 14, 0.06);
}

.card p,
.service p,
.contact-box p,
.highlight p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.highlight {
  border-left: 5px solid var(--accent);
}

.simple-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.hero-points {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-points span {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.87rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.stats article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.stats article h3 {
  margin-bottom: 0.45rem;
}

.stats article p {
  margin: 0;
  color: var(--muted);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.partner-logos img {
  width: 100%;
  height: 84px;
  object-fit: contain;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.footer {
  background: #121a13;
  color: #f3f5f2;
  border-top: 2px solid #1f2f20;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem 0;
}

.footer-content p {
  margin: 0;
  color: #e3e7e2;
}

.footer-link {
  color: #f4d386;
  text-decoration: none;
  font-weight: 600;
}

.footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 170px;
  }

  .hero-content {
    padding-top: 2.4rem;
  }
}