:root {
  --green: #0d5516;
  --green-2: #17651f;
  --green-3: #eaf4eb;
  --ink: #111411;
  --muted: #5f675f;
  --line: #dfe6df;
  --soft: #f6f8f6;
  --white: #fff;
  --shadow: 0 10px 35px rgba(10, 55, 16, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92%); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 100; background: #fff; padding: 10px 14px; }
.skip-link:focus { left: 8px; }

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid #edf0ed;
  backdrop-filter: blur(8px);
}
.nav { min-height: 102px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.logo { width: 285px; border-radius: 7px; overflow: hidden; background: #0b0d0b; box-shadow: 0 2px 8px #0002; flex: 0 0 auto; }
.logo img { width: 100%; height: 74px; object-fit: cover; }
.menu { display: flex; align-items: center; justify-content: flex-end; gap: 25px; font-size: 13px; font-weight: 800; }
.menu > a:not(.call-btn) { position: relative; padding: 16px 0; }
.menu > a:not(.call-btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 8px; height: 2px; background: var(--green); transition: right .2s ease; }
.menu > a:hover::after, .menu > a:focus-visible::after { right: 0; }
.call-btn, .button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 5px; font-weight: 800; }
.call-btn { background: var(--green); color: #fff; padding: 13px 20px; white-space: nowrap; }
.call-btn:hover, .button.primary:hover { background: var(--green-2); }
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 5px; padding: 9px 11px; font-weight: 800; cursor: pointer; }

.hero { background: linear-gradient(90deg, #f4f7f4 0%, #fff 55%, #f7f9f7 100%); overflow: hidden; }
.hero-inner { min-height: 440px; display: grid; grid-template-columns: 1.08fr .78fr; align-items: center; gap: 38px; }
.hero-copy { padding: 50px 0; }
.kicker { color: var(--green); font-size: 16px; font-weight: 900; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 12px; }
h1 { font-size: clamp(35px, 4.1vw, 54px); line-height: 1.08; margin: 0 0 20px; letter-spacing: -1.4px; }
h1 .green { display: block; color: var(--green); }
.hero-copy p { max-width: 680px; font-size: 17px; color: #343934; margin: 0 0 25px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 48px; padding: 12px 21px; border: 1px solid var(--green); }
.button.primary { background: var(--green); color: #fff; }
.button.secondary { color: var(--green); background: #fff; }
.button.secondary:hover { background: var(--green-3); }
.hero-photo { align-self: stretch; min-height: 440px; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.trust-strip { background: linear-gradient(90deg, #075112, #16631d); color: #fff; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 82px; padding: 17px 24px; border-right: 1px solid #ffffff2c; display: flex; align-items: center; gap: 13px; }
.trust-item:last-child { border-right: 0; }
.trust-mark { font-size: 25px; font-weight: 900; }
.trust-item b, .trust-item small { display: block; }
.trust-item b { font-size: 13px; }
.trust-item small { font-size: 12px; color: #edf5ee; }

section { padding: 62px 0; }
.section-title { text-align: center; font-size: clamp(27px, 3vw, 36px); line-height: 1.15; margin: 0 0 14px; font-weight: 900; }
.section-title::after { content: ""; display: block; width: 48px; height: 3px; margin: 13px auto 0; background: var(--green); }
.section-lead { max-width: 800px; margin: 0 auto 34px; text-align: center; color: var(--muted); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { display: flex; flex-direction: column; min-height: 315px; padding: 27px 23px; border: 1px solid var(--line); border-radius: 7px; background: #fff; box-shadow: 0 2px 12px rgba(0, 0, 0, .035); transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-icon { width: 74px; height: 74px; display: grid; place-items: center; color: var(--green); font-size: 40px; background: var(--green-3); border-radius: 50%; }
.service-icon img { width: 90px; height: 90px; object-fit: contain; }
.service-card h3 { font-size: 19px; line-height: 1.2; margin: 18px 0 10px; }
.service-card p { color: var(--muted); font-size: 14px; margin: 0 0 18px; }
.text-link { color: var(--green); font-weight: 900; font-size: 13px; margin-top: auto; }
.text-link:hover { text-decoration: underline; }

.soft { background: var(--soft); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 55px; align-items: center; }
.copy h2 { font-size: clamp(27px, 3vw, 38px); line-height: 1.18; margin: 0 0 18px; }
.copy h3 { font-size: 20px; margin: 28px 0 8px; }
.copy p { color: #3e453e; }
.check-list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900; }
.area-image { border-radius: 9px; overflow: hidden; box-shadow: var(--shadow); min-height: 330px; }
.area-image img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; }

.segment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.segment { padding: 20px; border-left: 4px solid var(--green); background: #fff; box-shadow: 0 2px 12px #0000000c; }
.segment h3 { font-size: 16px; margin: 0 0 7px; }
.segment p { font-size: 13px; color: var(--muted); margin: 0; }
.coverage { background: #0d4f16; color: #fff; }
.coverage .section-title::after { background: #fff; }
.coverage .section-lead { color: #ecf5ed; }
.place-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; max-width: 1000px; margin: auto; }
.place-list span { padding: 8px 12px; border: 1px solid #ffffff45; border-radius: 99px; font-size: 13px; background: #ffffff0c; }

.faq { max-width: 900px; margin: 0 auto; display: grid; gap: 11px; }
.faq details { border: 1px solid var(--line); border-radius: 6px; background: #fff; padding: 0 18px; }
.faq summary { cursor: pointer; list-style: none; padding: 17px 30px 17px 0; position: relative; font-weight: 800; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; color: var(--green); font-size: 22px; top: 10px; }
.faq details[open] summary::after { content: "−"; }
.faq p { color: var(--muted); margin: 0; padding: 0 0 18px; }

.cta { background: linear-gradient(90deg, #0b4d13, #17651f); color: #fff; padding: 40px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta h2 { font-size: clamp(24px, 3vw, 34px); margin: 0 0 5px; }
.cta p { margin: 0; color: #eef7ef; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta .button { border-color: #fff; white-space: nowrap; }
.cta .button.primary { background: #fff; color: var(--green); }
.cta .button.secondary { color: #fff; background: transparent; }

footer { padding: 38px 0 16px; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 240px 1fr 1.25fr; gap: 45px; align-items: start; }
.footer-logo img { width: 205px; height: 62px; object-fit: cover; border-radius: 5px; background: #0b0d0b; }
footer h2 { font-size: 13px; margin: 0 0 10px; }
footer p, footer a, footer address { font-size: 12px; line-height: 1.8; font-style: normal; color: #333833; margin: 0; }
footer a:hover { color: var(--green); text-decoration: underline; }
.copyright { border-top: 1px solid #edf0ed; margin-top: 24px; padding-top: 14px; text-align: center; font-size: 11px; color: #858c85; }

.page-hero { padding: 66px 0 58px; background: linear-gradient(100deg, #eef5ef, #fff); border-bottom: 1px solid var(--line); }
.breadcrumbs { font-size: 12px; color: var(--muted); margin-bottom: 17px; }
.breadcrumbs a { color: var(--green); }
.page-hero h1 { max-width: 900px; }
.page-hero p { max-width: 780px; font-size: 18px; color: #3f463f; margin: 0 0 24px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 55px; align-items: start; }
.article h2 { font-size: 29px; line-height: 1.2; margin: 40px 0 13px; }
.article h2:first-child { margin-top: 0; }
.article h3 { font-size: 20px; margin: 26px 0 8px; }
.article p, .article li { color: #3d443d; }
.article ul, .article ol { padding-left: 22px; }
.article li { margin: 7px 0; }
.process { counter-reset: step; display: grid; gap: 14px; margin: 20px 0; }
.process-item { counter-increment: step; position: relative; padding: 18px 18px 18px 64px; border: 1px solid var(--line); border-radius: 6px; background: #fff; }
.process-item::before { content: counter(step); position: absolute; left: 18px; top: 17px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-weight: 900; }
.process-item h3 { margin: 0 0 4px; font-size: 17px; }
.process-item p { margin: 0; font-size: 14px; }
.side-card { position: sticky; top: 124px; padding: 25px; border-radius: 8px; background: var(--soft); border: 1px solid var(--line); }
.side-card h2 { font-size: 21px; margin: 0 0 10px; }
.side-card p { color: var(--muted); font-size: 14px; }
.side-card .button { width: 100%; margin-top: 10px; }
.related { display: grid; gap: 8px; margin-top: 20px; }
.related a { font-size: 13px; color: var(--green); font-weight: 800; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.contact-card { padding: 26px; border: 1px solid var(--line); border-radius: 7px; text-align: center; }
.contact-card h2 { font-size: 18px; margin: 0 0 8px; }
.contact-card p, .contact-card address { font-style: normal; color: var(--muted); margin: 0; }
.contact-card a { color: var(--green); font-weight: 800; }

@media (max-width: 1050px) {
  .logo { width: 230px; }
  .menu { gap: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .segment-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 850px) {
  .nav { min-height: 82px; flex-wrap: wrap; padding: 10px 0; }
  .nav-toggle { display: block; }
  .menu { display: none; width: 100%; padding: 8px 0 18px; flex-direction: column; align-items: stretch; }
  .menu.open { display: flex; }
  .menu > a { text-align: center; }
  .hero-inner, .two-col, .content-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 25px; }
  .hero-photo { min-height: 320px; max-height: 390px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .side-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .logo { width: 205px; }
  .logo img { height: 58px; }
  h1 { letter-spacing: -.7px; }
  .services-grid, .segment-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid #ffffff2c; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .button, .cta-actions .button { width: 100%; }
  section { padding: 48px 0; }
  .page-hero { padding: 48px 0 42px; }
}
