:root {
  --green: #22a722;
  --green-dark: #157c19;
  --green-soft: #eef9ee;
  --ink: #101412;
  --muted: #5e6861;
  --line: #dfe7e0;
  --white: #fff;
  --shadow: 0 18px 50px rgba(16, 20, 18, .1);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 8px; padding: 10px 16px; background: var(--green); color: #fff; z-index: 20; }
.skip-link:focus { left: 8px; }
.topbar { background: var(--ink); color: #dce5dd; font-size: .8rem; letter-spacing: .04em; }
.topbar .container { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { color: #fff; font-weight: 700; }
.header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { width: 172px; height: auto; }
.nav-toggle { border: 0; background: transparent; font-size: 1.65rem; cursor: pointer; color: var(--ink); padding: 8px; }
.nav { display: none; position: absolute; left: 0; right: 0; top: 82px; background: #fff; border-bottom: 1px solid var(--line); padding: 12px 20px 20px; }
.nav.open { display: block; }
.nav a { display: block; padding: 11px 0; font-weight: 700; font-size: .94rem; }
.nav a[aria-current="page"] { color: var(--green-dark); }
.header-phone { display: none; font-weight: 800; color: var(--green-dark); white-space: nowrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 13px 21px; font-weight: 800; border: 2px solid transparent; transition: transform .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--green); }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.hero { background: radial-gradient(circle at 90% 15%, rgba(34,167,34,.18), transparent 36%), var(--ink); color: #fff; padding: 78px 0 86px; overflow: hidden; }
.hero-grid { display: grid; gap: 42px; align-items: center; }
.eyebrow { color: var(--green); font-size: .77rem; text-transform: uppercase; font-weight: 900; letter-spacing: .16em; margin: 0 0 14px; }
.hero h1 { font-size: clamp(2.5rem, 10vw, 5.4rem); line-height: .98; letter-spacing: -.06em; margin: 0 0 22px; max-width: 700px; }
.hero h1 span { color: var(--green); }
.hero p { color: #c7d0c9; font-size: 1.08rem; max-width: 570px; margin: 0 0 30px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .btn-outline { border-color: #768179; color: #fff; }
.hero-art { min-height: 190px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: linear-gradient(135deg, rgba(34,167,34,.22), rgba(255,255,255,.03)); padding: 25px; display: flex; flex-direction: column; justify-content: space-between; }
.hero-art strong { font-size: 2.8rem; line-height: 1; }
.hero-art small { color: #c7d0c9; max-width: 210px; }
.trust-strip { padding: 18px 0; background: var(--green); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; font-weight: 800; font-size: .91rem; }
.trust-item { display: flex; align-items: center; gap: 8px; }
.section { padding: 78px 0; }
.section-soft { background: var(--green-soft); }
.section-heading { max-width: 650px; margin-bottom: 38px; }
.section-heading h2 { font-size: clamp(2rem, 6vw, 3.25rem); line-height: 1.05; letter-spacing: -.045em; margin: 0 0 14px; }
.section-heading p { color: var(--muted); margin: 0; }
.cards { display: grid; gap: 16px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 25px; background: #fff; }
.service-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.service-card { padding: 0 20px 22px; overflow: hidden; }
.service-card > img { width: calc(100% + 40px); height: 145px; object-fit: cover; margin: 0 -20px 20px; background: var(--green-soft); }
.service-card .icon { width: 38px; height: 38px; font-size: .9rem; }
.service-card h3 { margin-top: 12px; }
.card h3 { margin: 16px 0 7px; font-size: 1.2rem; }
.card p { color: var(--muted); margin: 0; font-size: .94rem; }
.icon { width: 45px; height: 45px; border-radius: 12px; display: grid; place-items: center; background: var(--green-soft); color: var(--green-dark); font-weight: 900; font-size: 1.2rem; }
.split { display: grid; gap: 32px; align-items: center; }
.checklist { list-style: none; padding: 0; margin: 22px 0 28px; }
.checklist li { display: flex; gap: 11px; margin: 11px 0; font-weight: 700; }
.checklist li::before { content: "✓"; color: var(--green); font-weight: 900; }
.callout { border-radius: var(--radius); background: var(--ink); color: #fff; padding: 30px; }
.callout p { color: #c7d0c9; }
.page-hero { background: var(--green-soft); padding: 62px 0; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.4rem, 8vw, 4.5rem); letter-spacing: -.06em; line-height: 1; margin: 0 0 13px; }
.page-hero p { color: var(--muted); max-width: 590px; margin: 0; font-size: 1.08rem; }
.area-grid { display: grid; gap: 14px; }
.area { padding: 23px; border-left: 4px solid var(--green); background: var(--green-soft); border-radius: 0 14px 14px 0; }
.area h3 { margin: 0 0 5px; }
.area p { color: var(--muted); margin: 0; font-size: .94rem; }
.form { display: grid; gap: 15px; }
.field { display: grid; gap: 6px; }
label { font-size: .87rem; font-weight: 800; }
input, textarea, select { width: 100%; border: 1px solid #cbd6cc; border-radius: 10px; font: inherit; padding: 13px 14px; background: #fff; color: var(--ink); }
textarea { min-height: 135px; resize: vertical; }
.form-note { color: var(--muted); font-size: .82rem; }
.footer { padding: 48px 0 26px; background: var(--ink); color: #fff; }
.footer-grid { display: grid; gap: 28px; }
.footer .logo { filter: brightness(0) invert(1); width: 185px; }
.footer p, .footer a { color: #bfcac1; }
.footer h3 { font-size: .88rem; text-transform: uppercase; letter-spacing: .12em; color: var(--green); }
.footer-links { display: grid; gap: 8px; }
.copyright { border-top: 1px solid #303934; margin-top: 32px; padding-top: 19px; color: #89948c; font-size: .78rem; }
@media (min-width: 700px) {
  .nav-toggle { display: none; }
  .nav { position: static; display: flex; align-items: center; gap: 24px; padding: 0; border: 0; }
  .nav a { padding: 0; }
  .header-phone { display: block; }
  .hero-grid, .split { grid-template-columns: 1.18fr .82fr; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
@media (min-width: 1000px) { .cards.five { grid-template-columns: repeat(5, 1fr); } }
