:root {
  --ink: #111814;
  --muted: #66716b;
  --green: #3d7e1c;
  --green-dark: #245d12;
  --blue: #1769a9;
  --surface: #f5f8f5;
  --line: #e4e9e4;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(16, 46, 28, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228,233,228,.8);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 1rem; letter-spacing: .04em; }
.brand-copy span { color: var(--muted); font-size: .76rem; margin-top: 4px; }
.nav { display: flex; gap: 28px; }
.nav a { font-size: .92rem; color: #435049; font-weight: 500; }
.nav a:hover { color: var(--green-dark); }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 700;
  font-size: .93rem;
  transition: transform .2s ease, opacity .2s ease;
}
.btn:hover { transform: translateY(-1px); opacity: .94; }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: .86rem; }

.hero {
  padding: 96px 0 84px;
  background:
    radial-gradient(circle at 85% 30%, rgba(36,93,18,.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 72px;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  font-size: .76rem;
  color: var(--green);
  margin-bottom: 18px;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.hero-copy > p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 26px 0 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}
.text-link { font-weight: 700; color: var(--green-dark); }
.text-link span { margin-left: 6px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}
.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #4d5a53;
  font-size: .78rem;
  background: #fff;
}
.logo-card {
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.logo-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.section { padding: 92px 0; }
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-copy { color: var(--muted); font-size: 1.02rem; }
.section-copy p { margin-top: 0; }
.section-copy p + p { margin-top: 18px; }

.soft { background: var(--surface); }
.section-head {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head > p { color: var(--muted); margin: 0; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 250px;
}
.card-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #edf5e8;
  color: var(--green-dark);
  font-weight: 800;
  font-size: .8rem;
}
.card h3 { margin: 46px 0 10px; font-size: 1.3rem; }
.card p { margin: 0; color: var(--muted); }

.contact { padding-top: 28px; }
.contact-box {
  background: var(--green-dark);
  color: var(--white);
  border-radius: 30px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 60px;
  align-items: center;
}
.eyebrow.light { color: #cce8be; }
.contact-box h2 { max-width: 760px; }
.contact-actions { text-align: right; }
.btn-light { background: var(--white); color: var(--green-dark); }
.contact-actions p { color: #cce0c5; font-size: .8rem; margin: 12px 0 0; }

footer { padding: 28px 0 38px; }
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7a857f;
  font-size: .8rem;
}
.footer-wrap p { margin: 0; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero { padding-top: 64px; }
  .hero-grid,
  .split,
  .section-head,
  .contact-box { grid-template-columns: 1fr; gap: 42px; }
  .hero-visual { max-width: 520px; }
  .cards { grid-template-columns: 1fr; }
  .contact-actions { text-align: left; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-wrap { min-height: 70px; }
  .brand-copy span { display: none; }
  .btn-sm { display: none; }
  .hero { padding: 50px 0 64px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .section { padding: 70px 0; }
  .contact { padding-top: 12px; }
  .contact-box { padding: 34px 24px; border-radius: 24px; }
  .footer-wrap { flex-direction: column; }
}
