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

:root {
  --accent: #6b9d40;
  --accent-dark: #5a8433;
  --accent-light: #7bb551;
  --accent-tint: #e8f0dd;
  --accent-tint-2: #f4f7ee;
  --dark: #16210d;
  --dark-2: #1e2e14;
  --dark-3: #0f1808;
  --light: #faf8f3;
  --light-2: #f3efe5;
  --white: #ffffff;
  --text: #2a3520;
  --text-muted: #5a6b4a;
  --text-on-dark: #d4e5c0;
  --text-on-dark-muted: #8a9d76;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --font: 'Manrope', sans-serif;
  --nav-h: 64px;
  --banner-h: 42px;
  --max-w: 1140px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 800;
  color: var(--text);
}

p {
  max-width: 65ch;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 180ms ease;
}

a:hover {
  color: var(--accent);
}

/* ---------- Layout ---------- */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  scroll-margin-top: 120px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
  text-align: center;
  min-height: 44px;
}

.btn-filled {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-filled:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: #cdd6c0;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

/* ---------- Eyebrows ---------- */

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.eyebrow-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  background: rgba(107, 157, 64, 0.2);
  border: 1px solid rgba(107, 157, 64, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

/* ---------- Navigation ---------- */

.site-nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: rgba(250, 248, 243, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #d8dfd0;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--text);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--text);
}

.brand-gear {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.nav-cta {
  display: none;
  margin-left: auto;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  margin-left: auto;
}

.nav-toggle:hover {
  color: var(--accent-dark);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  padding: 12px 20px 20px;
  gap: 4px;
  border-bottom: 1px solid #d8dfd0;
  background: var(--light);
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 14px 8px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-mobile .btn {
  margin-top: 8px;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--dark);
  padding: 48px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(107, 157, 64, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(107, 157, 64, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 560px;
}

.hero-title {
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.1875rem);
  color: var(--text-on-dark);
  margin-bottom: 28px;
  max-width: 50ch;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn-outline {
  color: var(--text-on-dark);
  border-color: rgba(212, 229, 192, 0.35);
}

.hero-actions .btn-outline:hover {
  border-color: var(--accent);
  color: var(--white);
}

.hero-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-graphic-card {
  width: 100%;
  max-width: 320px;
}

.hero-graphic-card svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-on-dark);
  background: rgba(107, 157, 64, 0.15);
  border: 1px solid rgba(107, 157, 64, 0.3);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

/* ---------- Notice Bar ---------- */

.notice-bar {
  background: var(--accent);
  padding: 14px 20px;
  text-align: center;
}

.notice-bar p {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  max-width: 90ch;
  margin: 0 auto;
  line-height: 1.45;
}

/* ---------- Trust Section ---------- */

.trust {
  background: var(--light);
  padding: 80px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.trust-about h2 {
  font-size: clamp(1.625rem, 5vw, 2.25rem);
  margin-bottom: 16px;
}

.trust-about p {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.trust-checklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  padding: 14px 16px;
  background: var(--accent-tint-2);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.trust-checklist li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Services Section ---------- */

.services {
  background: var(--white);
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.625rem, 5vw, 2.25rem);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0 auto;
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}