:root {
  --lime: #c7e83f;
  --green: #477813;
  --deep: #18310e;
  --ink: #1e281a;
  --muted: #66705f;
  --line: #e4eadb;
  --cream: #fbfcf4;
  --white: #ffffff;
  --gold: #c59a33;
  --blue: #1f5f68;
  --shadow: 0 18px 48px rgba(27, 55, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Raleway", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(228, 234, 219, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 230px;
}

.brand img {
  width: 240px;
  height: auto;
}

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

.nav-links a {
  padding: 10px 13px;
  border-radius: 6px;
  color: #314028;
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(199, 232, 63, 0.22);
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--deep);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.94rem;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(71, 120, 19, 0.22);
}

.btn-primary:hover {
  background: #385f0f;
}

.btn-secondary {
  background: var(--white);
  color: var(--green);
  border-color: rgba(71, 120, 19, 0.28);
}

.btn-light {
  background: var(--lime);
  color: var(--deep);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  color: var(--deep);
}

h1 {
  font-size: clamp(2.05rem, 4vw, 4rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
}

.lead {
  color: #526047;
  font-size: 1.06rem;
  max-width: 720px;
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 38, 9, 0.86), rgba(16, 38, 9, 0.58) 43%, rgba(16, 38, 9, 0.12) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 104px 0 92px;
}

.hero h1,
.hero .eyebrow {
  color: var(--white);
}

.hero .eyebrow {
  color: var(--lime);
}

.hero .lead {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 650px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 14px;
  max-width: 690px;
  margin-top: 44px;
}

.metric {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.metric strong {
  display: block;
  color: var(--lime);
  font-size: 1.55rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--cream);
}

.section-dark {
  background: var(--deep);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .lead,
.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head .lead {
  max-width: 560px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.image-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px rgba(24, 49, 14, 0.16);
}

.image-badge strong {
  display: block;
  color: var(--green);
  font-size: 1.4rem;
}

.image-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #435137;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--lime) 0 42%, var(--green) 43% 100%);
}

.grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(27, 55, 18, 0.06);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(199, 232, 63, 0.28);
  color: var(--green);
  font-size: 1.25rem;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: process;
}

.process-card {
  counter-increment: process;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.process-card::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 18px;
  color: var(--lime);
  font-weight: 900;
  font-size: 1.4rem;
}

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

.quote {
  display: flex;
  flex-direction: column;
  min-height: 238px;
}

.quote p {
  color: #46533f;
  flex: 1;
}

.quote cite {
  margin-top: 20px;
  color: var(--green);
  font-style: normal;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 21px;
  border: 0;
  background: transparent;
  color: var(--deep);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-question span:last-child {
  color: var(--green);
  font-size: 1.25rem;
}

.faq-answer {
  display: none;
  padding: 0 21px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-band {
  padding: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #214b12);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: 88px 0;
  background: linear-gradient(135deg, #f7fae8 0%, #ffffff 54%, #eef6df 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  margin-top: 18px;
}

.breadcrumb {
  margin-bottom: 12px;
  color: var(--green);
  font-weight: 800;
  font-size: 0.88rem;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list.spaced {
  margin-top: 24px;
}

.contact-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-item strong {
  display: block;
  color: var(--deep);
  margin-bottom: 5px;
}

.contact-item a,
.contact-item span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--deep);
  font-weight: 800;
  font-size: 0.9rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d8e1cf;
  border-radius: 6px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.map-wrap {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.site-footer {
  background: #101d0a;
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: 34px;
}

.footer-logo {
  width: 230px;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
}

.footer-col h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--lime);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 205px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-grid,
  .testimonial-grid,
  .value-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 178px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(16, 38, 9, 0.88), rgba(16, 38, 9, 0.68));
  }

  .hero-content {
    padding: 82px 0 58px;
  }

  .hero-metrics,
  .service-grid,
  .process-grid,
  .testimonial-grid,
  .value-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    display: block;
  }

  .section-head .lead {
    margin-top: 14px;
  }

  .image-panel img {
    height: 310px;
  }

  .image-badge {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .cta-band {
    padding: 30px 22px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p + p {
    margin-top: 8px;
  }
}
/* @vn-deploy:1778684619963 */
