:root {
  --bg: #f7f8f4;
  --surface: #fff;
  --surface-2: #eef3e7;
  --text: #172015;
  --muted: #5f6b5b;
  --primary: #184d2a;
  --primary-2: #0f351d;
  --accent: #a9d64f;
  --border: #dfe7d8;
  --danger: #ef4444;
  --shadow: 0 18px 50px rgba(23, 32, 21, 0.1);
  --radius: 22px;
  --max: 1180px;
  --header: 76px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img,
video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(247, 248, 244, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 2vw, 12px);
  min-width: 0;
  font-weight: 800;
}
.logo img,
.logo svg {
  width: clamp(34px, 10vw, 52px);
  height: auto;
}
.logo-mark {
  display: block;
  /* width: clamp(56px, 12vw, 110px); */
  height: auto;
  max-width: 100%;
  flex-shrink: 0;
}
.logo-mark path[fill="#1E7F2E"] {
  fill: var(--logo-green, #1e7f2e);
}
.logo-mark path[fill="#949494"] {
  fill: var(--logo-gray, #949494);
}
.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.desktop-nav a {
  font-weight: 700;
  color: var(--muted);
}
.desktop-nav a:hover,
.footer a:hover {
  color: var(--primary);
}
.lang {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
}
.lang a,
.lang span {
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 800;
}
.lang .active {
  background: var(--primary);
  color: #fff;
}
.phone {
  font-weight: 800;
  color: var(--primary);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 14px 0 18px;
}
.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-weight: 750;
  color: var(--muted);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 850;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2f7a39);
  color: #fff;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  padding: calc(var(--header) + 70px) 0 70px;
}
.hero-media,
.hero-media video,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media video,
.hero-media img {
  object-fit: cover;
}
.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(8, 22, 13, 0.86),
    rgba(8, 22, 13, 0.56) 45%,
    rgba(8, 22, 13, 0.28)
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 900;
}
.hero .eyebrow {
  color: var(--accent);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  margin-bottom: 22px;
  letter-spacing: -0.05em;
}
h1 span {
  display: block;
  color: var(--accent);
}
h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.035em;
}
h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 650px;
}
.section {
  padding: 96px 0;
}
.section-muted {
  background: var(--surface-2);
}
.section-dark {
  background: var(--text);
  color: #fff;
}
.section-primary {
  background: var(--primary);
  color: #fff;
}
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 46px;
}
.section-head p {
  font-size: 18px;
  color: var(--muted);
}
.section-dark .section-head p,
.section-primary p {
  color: rgba(255, 255, 255, 0.76);
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.stat strong {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  color: #fff;
}
.stat span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.74);
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(23, 32, 21, 0.04);
  overflow: hidden;
}
.service-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-media {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-media img {
  transform: scale(1.04);
}
.service-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}
.service-media h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-size: 28px;
}
.card-body {
  padding: 24px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}
.benefit {
  padding: 26px;
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #2f7a39);
  color: #fff;
  font-size: 23px;
  margin-bottom: 18px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: start;
}
.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.check-list span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.check-list span:before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
}
.stats-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 30px;
}
.stats-card strong {
  display: block;
  font-size: 46px;
  line-height: 1;
  color: #fff;
}
.stats-card span {
  color: rgba(255, 255, 255, 0.72);
}
.map-card {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}
.problem {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}
.problem .icon {
  background: rgba(239, 68, 68, 0.16);
  color: #f87171;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item .icon {
  flex: 0 0 auto;
  margin: 0;
  background: var(--surface-2);
  color: var(--primary);
}
.form {
  padding: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.field {
  margin-bottom: 15px;
}
.field label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
}
.site-footer {
  background: #10180f;
  color: #fff;
  padding: 58px 0 28px;
}
.site-footer .logo img{
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer p,
.footer a,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}
.site-footer h4 {
  margin: 0 0 14px;
}
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-footer li {
  margin: 8px 0;
}
.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.56);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 960px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }
  .mobile-nav.is-open {
    display: block;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    text-align: center;
    margin-inline: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  :root {
    --header: 68px;
  }
  .section {
    padding: 70px 0;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .check-list,
  .form-row,
  .stats {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-bottom: 48px;
  }
  .hero-overlay {
    background: rgba(8, 22, 13, 0.72);
  }
  .service-media {
    height: 220px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-card strong {
    font-size: 36px;
  }
}
