:root {
  --green: #72bf44;
  --green-d: #4c9a2a;
  --green-dd: #2f6d1c;
  --leaf: #8fd25f;
  --ink: #14231a;
  --ink-2: #3c4a41;
  --muted: #6c7a70;
  --bg: #ffffff;
  --bg-soft: #f4faef;
  --line: #e6ede1;
  --radius: 22px;
  --shadow: 0 24px 60px -24px rgba(28, 64, 20, 0.28);
  --shadow-sm: 0 10px 30px -14px rgba(28, 64, 20, 0.25);
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-gutter: stable;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: var(--green-d) #f2f8ed;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: #f2f8ed;
}
::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 100px;
  background: linear-gradient(180deg, var(--leaf), var(--green-d));
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--green), var(--green-dd));
  background-clip: padding-box;
}
::-webkit-scrollbar-corner {
  background: #f2f8ed;
}
.menu__panel::-webkit-scrollbar {
  width: 6px;
}
.menu__panel::-webkit-scrollbar-track {
  background: transparent;
}
.menu__panel::-webkit-scrollbar-thumb {
  border-width: 1px;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  max-width: 100%;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
.hero__title,
.cta__title,
.section__title {
  font-family: "Unbounded", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.grad-text {
  background: linear-gradient(100deg, var(--green), var(--green-dd));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s;
  white-space: nowrap;
}
.btn--lg {
  padding: 16px 30px;
  font-size: 16px;
}
.btn--block {
  width: 100%;
}
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-d));
  box-shadow: 0 12px 28px -10px rgba(76, 154, 42, 0.7);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -10px rgba(76, 154, 42, 0.8);
}
.btn--ghost {
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green-d);
  transform: translateY(-3px);
}

.topbar {
  position: relative;
  color: #e4efe0;
  font-size: 13.5px;
  background: linear-gradient(90deg, #122019, #1c3125 45%, #122019);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.topbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green),
    var(--leaf),
    var(--green),
    transparent
  );
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 12px;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  color: #c7d6c4;
  letter-spacing: 0.01em;
}
.topbar__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(143, 210, 95, 0.6);
  animation: pulse 1.9s infinite;
}

.topbar__contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
  padding: 4px 6px;
  border-radius: 100px;
  white-space: nowrap;
  transition:
    color 0.25s,
    transform 0.25s;
}
.topbar__phone svg {
  color: var(--leaf);
  transition: transform 0.4s var(--ease);
}
.topbar__phone:hover {
  color: var(--leaf);
}
.topbar__phone:hover svg {
  transform: rotate(-18deg) scale(1.15);
}
.topbar__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 12.5px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.topbar__chip svg {
  position: relative;
  z-index: 1;
}
.topbar__chip span {
  position: relative;
  z-index: 1;
}
.topbar__chip::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.55s var(--ease);
}
.topbar__chip:hover {
  transform: translateY(-2px);
}
.topbar__chip:hover::after {
  left: 130%;
}
.topbar__chip--viber {
  background: linear-gradient(135deg, #8a79ff, #6a54e8);
  box-shadow: 0 6px 16px -6px rgba(115, 96, 242, 0.8);
}
.topbar__chip--tg {
  background: linear-gradient(135deg, #37bbf3, #1e9fe0);
  box-shadow: 0 6px 16px -6px rgba(42, 171, 238, 0.8);
}

.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
@supports not (
  (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))
) {
  .header {
    background: #fff;
  }
}
.header.is-stuck {
  border-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(0, 0, 0, 0.25);
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  transform: scaleX(var(--scroll, 0));
  transform-origin: left center;
  background: linear-gradient(90deg, var(--leaf), var(--green), var(--green-dd));
  pointer-events: none;
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.logo__img {
  height: 34px;
  width: auto;
}
.nav {
  display: flex;
  gap: 30px;
}
.nav__link {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s var(--ease);
}
.nav__link:hover,
.nav__link.active {
  color: var(--green-d);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}
.header__cta {
  padding: 11px 22px;
  font-size: 14.5px;
}
.menu {
  display: none;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 12px;
  transition: background 0.25s;
}
.burger:hover {
  background: var(--bg-soft);
}
.burger span {
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.35s var(--ease),
    opacity 0.25s;
}
.burger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px;
  background: radial-gradient(
    120% 100% at 80% -10%,
    #eaf6e0 0%,
    #f7fcf2 45%,
    #ffffff 80%
  );
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}
.blob--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #b9ec8f, transparent 70%);
  top: -160px;
  right: -120px;
}
.blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #d7f7bf, transparent 70%);
  bottom: -140px;
  left: -100px;
}
.blob--3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  top: -200px;
  left: -100px;
  filter: blur(50px);
}

.leaf {
  position: absolute;
  color: var(--leaf);
  opacity: 0.35;
}
.leaf--a {
  width: 90px;
  top: 12%;
  left: 6%;
  animation: float 7s ease-in-out infinite;
}
.leaf--b {
  width: 56px;
  top: 60%;
  left: 14%;
  color: var(--green);
  opacity: 0.25;
  animation: float 9s ease-in-out infinite reverse;
}
.leaf--c {
  width: 70px;
  top: 22%;
  right: 8%;
  animation: float 8s ease-in-out infinite 1s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-24px) rotate(8deg);
  }
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(114, 191, 68, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(114, 191, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(114, 191, 68, 0);
  }
}

.hero__title {
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 800;
  margin: 0 0 18px;
}
.hero__lead {
  font-size: clamp(16px, 1.4vw, 18.5px);
  color: var(--ink-2);
  max-width: 520px;
}
.hero__lead b {
  color: var(--green-dd);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}
.hero__stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.stat__num {
  font-family: "Unbounded", sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--green-dd);
  display: block;
  line-height: 1;
}
.stat__label {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__card {
  position: relative;
  width: min(420px, 90%);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #ffffff, #eef8e4);
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px rgba(114, 191, 68, 0.15);
}
.hero__ring::before {
  content: "";
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  border: 2px dashed rgba(114, 191, 68, 0.35);
  animation: spin 26s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hero__product {
  position: relative;
  width: 74%;
  filter: drop-shadow(0 30px 30px rgba(28, 64, 20, 0.28));
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.hero__tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 9px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.hero__tag svg {
  flex-shrink: 0;
}
.hero__tag--1 {
  top: 8%;
  left: -4%;
  animation: float 6s ease-in-out infinite;
}
.hero__tag--2 {
  bottom: 12%;
  right: -6%;
  animation: float 7s ease-in-out infinite 1s;
}
.sprout {
  position: absolute;
  bottom: -6%;
  left: 2%;
  width: 110px;
  opacity: 0.9;
}
.sprout__stem {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: draw 1.6s var(--ease) 0.3s forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.sprout__leaf {
  transform: scale(0);
  transform-origin: 60px 70px;
  animation: pop 0.6s var(--ease) forwards;
}
.sprout__leaf--l {
  animation-delay: 1.3s;
}
.sprout__leaf--r {
  animation-delay: 1.6s;
}
@keyframes pop {
  to {
    transform: scale(1);
  }
}

.scroll-down {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(76, 154, 42, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-down span {
  width: 4px;
  height: 8px;
  background: var(--green-d);
  border-radius: 2px;
  animation: scroll 1.6s infinite;
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }
  40% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

.marquee {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  animation: marquee 26s linear infinite;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.marquee__track .dot {
  color: var(--green);
}
.marquee span {
  opacity: 0.92;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 96px 0;
}
.section--muted {
  background: var(--bg-soft);
}

.section__head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-d);
  margin-bottom: 14px;
}
.eyebrow--light {
  color: #c9f0aa;
}
.section__title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  overflow-wrap: break-word;
}
.section__head .section__title {
  text-wrap: balance;
  line-height: 1.14;
}
.section__sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}
.section__head .section__sub {
  max-width: 660px;
  margin-inline: auto;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(114, 191, 68, 0.06));
  opacity: 0;
  transition: 0.35s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card:hover::after {
  opacity: 1;
}
.card__icon {
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
}
.card__icon svg {
  width: 100%;
  height: 100%;
}
.card__title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}
.card__text {
  color: var(--muted);
  font-size: 15px;
}

.catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.product:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}
.product__media {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 35%, #f2fae9, #e6f4d9);
  padding: 22px;
  overflow: hidden;
}
.product__media img {
  width: auto;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
  filter: drop-shadow(0 18px 22px rgba(28, 64, 20, 0.22));
}
.product:hover .product__media img {
  transform: scale(1.07) rotate(-2deg);
}
.product__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product__tag {
  align-self: flex-start;
  background: #eaf7de;
  color: var(--green-dd);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 100px;
}
.product__name {
  font-size: 20px;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
}
.product__desc {
  color: var(--muted);
  font-size: 14.5px;
  flex: 1;
}
.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.product__vol {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.product__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--green-d);
  transition: color 0.25s;
}
.product__btn svg {
  transition: transform 0.3s var(--ease);
}
.product__btn:hover {
  color: var(--green-dd);
}
.product__btn:hover svg {
  transform: translateX(4px);
}

.usage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.usage__text .section__title {
  text-align: left;
}
.checklist {
  margin: 26px 0 32px;
  display: grid;
  gap: 12px;
}
.checklist li {
  position: relative;
  padding-left: 36px;
  font-weight: 600;
  color: var(--ink-2);
  font-size: 16px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12l4 4 10-10'/%3E%3C/svg%3E")
    center/13px no-repeat;
}
.usage__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.usecase {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.usecase:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}
.usecase__ic {
  font-size: 32px;
  margin-bottom: 12px;
}
.usecase h4 {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.usecase p {
  color: var(--muted);
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.step h3 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 9px;
}

@media (min-width: 981px) {
  .step.numbered {
    display: block;
    --fig: 46px;
  }
  .step.numbered::before {
    display: block;
    margin-bottom: 18px;
  }
  .step.numbered::after {
    left: calc(var(--fig-col) + 10px);
    right: -30px;
    top: calc(var(--fig) / 2 - 1px);
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(114, 191, 68, 0.5),
      rgba(114, 191, 68, 0.12)
    );
    transform: scaleX(0);
    transform-origin: left center;
  }
  .step.numbered.in::after {
    transform: scaleX(1);
  }

  .step.numbered:last-child::after {
    right: auto;
    width: 48px;
    height: 10px;
    top: calc(var(--fig) / 2 - 5px);
    border-radius: 0;
    background:
      linear-gradient(
          90deg,
          rgba(114, 191, 68, 0.5),
          rgba(114, 191, 68, 0.32)
        )
        left center / 34px 2px no-repeat,
      radial-gradient(
          circle at center,
          rgba(114, 191, 68, 0.5) 0 4.5px,
          transparent 5px
        )
        right center / 10px 10px no-repeat;
  }
}
.step p {
  color: var(--muted);
  font-size: 14.5px;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: #fff;
  background-color: var(--green-dd);
  background-image: linear-gradient(
      120deg,
      rgba(20, 46, 14, 0.95),
      rgba(35, 88, 26, 0.89) 50%,
      rgba(47, 122, 37, 0.82)
    ),
    url("../img/catalog/field.webp");
  background-size: cover;
  background-position: center 62%;
  background-repeat: no-repeat;
}

@media (max-width: 620px) {
  .cta {
    background-position: 50% 78%;
  }
}
.cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.cta__title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  margin: 12px 0 16px;
}
.cta__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  max-width: 460px;
}
.cta__phone {
  display: inline-block;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  margin: 26px 0 20px;
  transition: transform 0.3s;
}
.cta__phone:hover {
  transform: scale(1.03);
}
.cta__chips {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  transition: transform 0.25s;
}
.chip:hover {
  transform: translateY(-3px);
}
.chip--viber {
  background: #7360f2;
}
.chip--tg {
  background: #2aabee;
}

.socnet-block {
  margin-top: 18px;
}
.socnet-block__cap {
  display: block;
  margin-bottom: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.socnet {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.socnet__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    transform 0.25s var(--ease);
}
.socnet__btn svg {
  flex-shrink: 0;
}
.socnet__btn:hover {
  transform: translateY(-2px);
  border-color: transparent;
  color: #fff;
}
.socnet__btn--fb:hover {
  background: #1877f2;
}
.socnet__btn--ig:hover {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b 55%, #6228d7);
}
.socnet__btn--tt:hover {
  background: linear-gradient(135deg, #25f4ee, #141414 48%, #fe2c55);
}
/* вариант для светлых поверхностей: мобильное меню и модалка контактов */
.socnet-block--onlight .socnet-block__cap {
  color: var(--muted);
}

.socnet--onlight .socnet__btn {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

/* form */
.form {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-radius: 26px;
  padding: 34px 30px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.4);
}
.form__title {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
}
.form__sub {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 22px;
}
.field {
  margin-bottom: 14px;
}
.field input,
.field select {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fbfdfa;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%235a6b52' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}
.field select::-ms-expand {
  display: none;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(114, 191, 68, 0.15);
}
.field input.err,
.field select.err {
  border-color: #e5484d;
  box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.12);
}
.form__note {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  margin-top: 12px;
}

.form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__ok,
.form__err {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  background: #eaf7de;
  color: var(--green-dd);
  border-radius: 12px;
  font-weight: 700;
  font-size: 14.5px;
  text-align: center;
}
.form__err {
  background: #fdeced;
  color: #b3272b;
}
.form__err a {
  text-decoration: underline;
  white-space: nowrap;
}
.form__ok.show,
.form__err.show {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  animation: fadeUp 0.5s var(--ease);
}
.form__ok svg,
.form__err svg {
  flex-shrink: 0;
}

.footer {
  background: var(--ink);
  color: #c4d2c4;
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer__logo {
  height: 32px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer__brand p {
  font-size: 14.5px;
  max-width: 280px;
}
.footer__col h4 {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer__col a:not(.footer__contact):not(.footer__soc-btn):not(.socnet__btn) {
  display: block;
  font-size: 14.5px;
  padding: 5px 0;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer__col
  a:not(.footer__contact):not(.footer__soc-btn):not(.socnet__btn):hover {
  color: var(--green);
  padding-left: 5px;
}
.footer__contact {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  padding: 5px 0;
  transition: color 0.2s;
}
.footer__contact svg {
  flex-shrink: 0;
  color: var(--green);
}
.footer__contact:hover {
  color: var(--green);
}
.footer__contact--main span {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}
.footer__soc {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer__soc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.25s,
    transform 0.25s var(--ease);
}
.footer__soc-btn svg {
  flex-shrink: 0;
}
.footer__soc-btn:hover {
  transform: translateY(-2px);
}
.footer__soc-btn--viber:hover {
  background: #7360f2;
  border-color: transparent;
}
.footer__soc-btn--tg:hover {
  background: #2aabee;
  border-color: transparent;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #8a9a8a;
}
.footer__place {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer__place svg {
  color: #5f7a5f;
}

.ksibe {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #8b9b8b;
  transition: color 0.25s;
}
.ksibe img {
  height: 14px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition:
    opacity 0.25s,
    transform 0.25s var(--ease);
}
.ksibe:hover img {
  opacity: 1;
  transform: translateY(-1px);
}
.ksibe:hover {
  color: #c4d2c4;
}

.fab {
  position: fixed;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-d));
  box-shadow: 0 14px 30px -8px rgba(76, 154, 42, 0.7);
  opacity: 0;
  transform: translateZ(0) scale(0.4);
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.fab.show {
  opacity: 1;
  transform: translateZ(0) scale(1);
  pointer-events: auto;
  animation: ring 2.4s ease-in-out infinite;
}

@media (hover: hover) {
  .fab:hover {
    transform: translateZ(0) scale(1.08);
  }
}
@keyframes ring {
  0%,
  100% {
    box-shadow:
      0 14px 30px -8px rgba(76, 154, 42, 0.7),
      0 0 0 0 rgba(114, 191, 68, 0.5);
  }
  50% {
    box-shadow:
      0 14px 30px -8px rgba(76, 154, 42, 0.7),
      0 0 0 14px rgba(114, 191, 68, 0);
  }
}

.totop {
  position: fixed;
  right: 22px;
  bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-d);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(76, 154, 42, 0.28);
  box-shadow: 0 10px 24px -10px rgba(20, 35, 26, 0.45);
  opacity: 0;
  transform: translateZ(0) scale(0.4);
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.totop.show {
  opacity: 1;
  transform: translateZ(0) scale(1);
  pointer-events: auto;
}
@media (hover: hover) {
  .totop:hover {
    transform: translateZ(0) scale(1.08);
    background: #fff;
  }
}

body.modal-lock {
  overflow: hidden;
}

.cmodal {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  pointer-events: none;
}
.cmodal.open {
  visibility: visible;
  pointer-events: auto;
}
.cmodal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 28, 20, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.cmodal.open .cmodal__overlay {
  opacity: 1;
}

.cmodal__sheet {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(420px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 30px 26px 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #f8fcf4);
  box-shadow: 0 40px 90px -30px rgba(16, 40, 12, 0.55);
  opacity: 0;
  transform: translate(-50%, -46%) scale(0.94);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.cmodal.open .cmodal__sheet {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.cmodal__grab {
  display: none;
}
.cmodal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s var(--ease),
    color 0.25s,
    background 0.25s;
}
.cmodal__close:hover {
  color: #fff;
  background: var(--green-d);
  transform: rotate(90deg);
}
.cmodal__title {
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 800;
  padding-right: 40px;
}
.cmodal__sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}
.cmodal__list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.cmodal__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  transition:
    border-color 0.25s,
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.cmodal__item:hover {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}
.cmodal__ic {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
}
.cmodal__item--phone .cmodal__ic {
  background: linear-gradient(150deg, var(--green), var(--green-d));
}
.cmodal__item--viber .cmodal__ic {
  background: linear-gradient(150deg, #8a79ff, #6a54e8);
}
.cmodal__item--tg .cmodal__ic {
  background: linear-gradient(150deg, #37bbf3, #1e9fe0);
}
.cmodal__item--mail .cmodal__ic {
  background: linear-gradient(150deg, #3c4a41, #1c2b21);
}
.cmodal__txt {
  min-width: 0;
  flex: 1;
}
.cmodal__txt b {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: break-word;
}
.cmodal__txt i {
  display: block;
  margin-top: 1px;
  font-style: normal;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}
.cmodal__go {
  flex-shrink: 0;
  color: var(--green-d);
  transition: transform 0.25s var(--ease);
}

.cmodal__socnet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}
.cmodal__socnet .socnet-block__cap {
  margin-bottom: 0;
  font-size: 11.5px;
}
.cmodal__socnet .socnet {
  gap: 8px;
}
.cmodal__socnet .socnet__btn {
  width: 36px;
  height: 36px;
}
.cmodal__socnet .socnet__btn svg {
  width: 17px;
  height: auto;
}
.cmodal__item:hover .cmodal__go {
  transform: translateX(4px);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.cards .reveal.in,
.catalog .reveal.in,
.steps .reveal.in,
.usage__cards .reveal.in {
  transition-delay: var(--d, 0s);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.pcard {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.pcard__media {
  position: relative;
  min-height: 420px;
}
.pcard__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.pcard:hover .pcard__media img {
  transform: scale(1.04);
}

.pcard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(114, 191, 68, 0.22), transparent 42%),
    linear-gradient(transparent 45%, rgba(18, 40, 12, 0.72));
}
.pcard__badge {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
}
.pcard__badge svg {
  flex: none;
  color: var(--leaf);
}
.pcard__body {
  padding: 46px 46px 42px;
  display: flex;
  flex-direction: column;
}
.pcard__name {
  font-family: "Manrope", sans-serif;
  font-size: clamp(21px, 2.1vw, 27px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}
.pcard__desc {
  color: var(--ink-2);
  font-size: 16px;
}
.pcard__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pcard__fact {
  padding: 20px 0 18px;
}
.pcard__fact + .pcard__fact {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.pcard__fact dt {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pcard__fact dd {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink);
  margin-top: 6px;
}
.checklist--tight {
  margin: 0;
  gap: 12px;
}
.checklist--tight li {
  font-size: 15px;
  font-weight: 600;
}
.pcard__list {
  margin-bottom: 32px;
}
.pcard__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: auto;
}
.pcard__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  color: var(--green-d);
}
.pcard__link svg {
  transition: transform 0.3s var(--ease);
}
.pcard__link:hover svg {
  transform: translateX(4px);
}

.numbered {
  position: relative;
  display: grid;
  grid-template-columns: var(--fig-col) 1fr;
  column-gap: var(--fig-gap);
  --fig: 40px;
  --fig-col: calc(var(--fig) * 1.62);
  --fig-gap: 20px;
  --pad-x: 0px;
  --spine-top: 2px;
  --spine-bottom: 2px;
}
.numbered > * {
  grid-column: 2;
}
.numbered::before {
  content: attr(data-num);
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: var(--fig);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums tabular-nums;
  background: linear-gradient(
    140deg,
    var(--leaf),
    var(--green-d) 50%,
    var(--green-dd)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.numbered::after {
  content: "";
  position: absolute;
  left: calc(var(--pad-x) + var(--fig-col) + var(--fig-gap) / 2 - 1px);
  top: var(--spine-top);
  bottom: var(--spine-bottom);
  width: 2px;
  border-radius: 2px;
  background: rgba(114, 191, 68, 0.34);
  transform: scaleY(0);
  transform-origin: center top;
  transition: transform 0.8s var(--ease) calc(var(--d, 0s) + 0.15s);
}
.numbered.in::after {
  transform: scaleY(1);
}

.steps .reveal {
  transition-duration: 0.48s;
}
.steps .numbered::after {
  transition: transform 0.36s var(--ease) calc(var(--d, 0s) + 0.36s);
}
.rate {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.rate:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}
.rate__ic {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.rate__ic svg {
  width: 100%;
  height: 100%;
}
.rate h4 {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.rate__num {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--green-dd);
  line-height: 1.2;
}
.rate__num i {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.rate p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13.5px;
}

.pl {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
  padding: 28px 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #16281d, #21402b);
  color: #dfeadb;
}
.pl__ic {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--leaf);
  background: rgba(143, 210, 95, 0.14);
}
.pl__text h4 {
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.pl__text p {
  font-size: 14.5px;
  max-width: 640px;
}
.pl__btn {
  white-space: nowrap;
}

.lab {
  display: grid;
  gap: 22px;
}

.lab__key {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: var(--radius);
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.lab__kpi {
  background: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "tag num"
    "tag cap";
  align-items: center;
  gap: 2px 16px;
  padding: 22px 24px;
}

.lab__kpi-tag {
  grid-area: tag;
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 52px;
  text-align: center;
  white-space: nowrap;
  color: var(--green-dd);
  background: linear-gradient(150deg, #e8f6dc, #f7fcf2);
}
.lab__kpi-tag sub {
  font-size: 0.62em;
  vertical-align: -0.15em;
}
.lab__kpi-tag svg {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  color: var(--green-d);
}
.lab__kpi-num {
  grid-area: num;
  align-self: end;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.1;
  color: var(--ink);
}
.lab__kpi-num i {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.55em;
  color: var(--green-d);
  margin-left: 3px;
}
.lab__kpi-cap {
  grid-area: cap;
  align-self: start;
  color: var(--muted);
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.lab__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.labcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px 24px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.labcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.labcard__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--line);
}
.labcard__ic {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--green-d);
  background: linear-gradient(150deg, #e8f6dc, #f7fcf2);
}
.labcard__ic svg {
  width: 22px;
  height: 22px;
}
.labcard__title {
  font-family: "Unbounded", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
}
.labcard__unit {
  margin-left: auto;
  color: var(--muted);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
.labcard__row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.labcard__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.labcard__row dt {
  font-size: 14.5px;
  color: var(--ink-2);
}
.labcard__row dd {
  margin-left: auto;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--green-dd);
  white-space: nowrap;
}
.labcard__row dd i {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
  margin-left: 5px;
}

.lab__passport {
  display: grid;
  gap: 18px;
  padding: 24px 26px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.lab__pass-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.lab__pass-ic {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(150deg, var(--green), var(--green-d));
}
.lab__pass-ic svg {
  width: 23px;
  height: 23px;
}
.lab__pass-k {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lab__pass-v {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.4;
}
.lab__chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: 16px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
}
.lab__chips li {
  background: #fff;
  padding: 14px 16px;
}
.lab__chips span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.lab__chips b {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  line-height: 1.35;
  overflow-wrap: break-word;
}
.lab__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.lab__note svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green-d);
}

.org {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; 
  border-radius: var(--radius);
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 34px;
}
.org__item {
  background: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "ic k"
    "ic v";
  align-items: start;
  gap: 2px 14px;
  padding: 22px 24px;
}
.org__ic {
  grid-area: ic;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--green-d);
  background: linear-gradient(150deg, #e8f6dc, #f7fcf2);
}
.org__ic svg {
  width: 21px;
  height: 21px;
}
.org__k {
  grid-area: k;
  align-self: end;
  color: var(--muted);
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.org__v {
  grid-area: v;
  align-self: start;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: break-word;
}

.flow {
  padding: 34px 34px 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.flow__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.flow__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
}
.flow__note {
  color: var(--muted);
  font-size: 14px;
}
.flow__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 34px 0 8px;
  list-style: none;
}
.flow__step {
  position: relative;
  padding: 0 16px;
  text-align: center;
}
.flow__step:not(:last-child)::before,
.flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(50% + 46px);
  right: calc(-50% + 46px);
  height: 3px;
  border-radius: 3px;
}
.flow__step:not(:last-child)::before {
  background: var(--line);
}
.flow__step:not(:last-child)::after {
  background: linear-gradient(90deg, var(--leaf), var(--green-d));
  transform: scaleX(0);
  transform-origin: left center;
}
.flow.in .flow__step:not(:last-child)::after {
  animation: flowFill 0.55s var(--ease) forwards;
}
.flow.in .flow__step:nth-child(1)::after {
  animation-delay: 0.35s;
}
.flow.in .flow__step:nth-child(2)::after {
  animation-delay: 0.85s;
}
.flow.in .flow__step:nth-child(3)::after {
  animation-delay: 1.35s;
}
@keyframes flowFill {
  to {
    transform: scaleX(1);
  }
}
@keyframes flowFillV {
  to {
    transform: scaleY(1);
  }
}
.flow__ic {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: var(--green-d);
  background: linear-gradient(150deg, #e8f6dc, #f7fcf2);
  border: 1px solid var(--line);
  box-shadow: 0 0 0 8px #fff;
  transition:
    transform 0.35s var(--ease),
    color 0.35s,
    border-color 0.35s;
}
.flow__step:hover .flow__ic {
  transform: translateY(-4px);
  color: var(--green-dd);
  border-color: rgba(114, 191, 68, 0.55);
}
.flow__ic svg {
  width: 38px;
  height: 38px;
}
.flow__step h4 {
  font-family: "Manrope", sans-serif;
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 7px;
}
.flow__step p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.flow__out {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.flow__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--green-d);
  transition: gap 0.25s var(--ease), color 0.25s;
}
.flow__link:hover {
  gap: 12px;
  color: var(--green-dd);
}

.cta__contacts {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}
.cta__contact {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.25s;
}
.cta__contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #c9f0aa;
}
a.cta__contact:hover {
  color: #d9f7bd;
}
.cta__contact--plain {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 980px) {
  .header__cta {
    display: none;
  }
  .burger {
    display: flex;
    z-index: 82;
  }

  .nav {
    display: none;
  }

  .menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 80;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
  }
  .menu.open {
    visibility: visible;
    pointer-events: auto;
  }

  .menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(16, 28, 20, 0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
  }
  .menu.open .menu__overlay {
    opacity: 1;
  }

  .menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(340px, 86vw);
    height: 100%;
    padding: 26px 26px calc(26px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, #ffffff, #f6faf0);
    box-shadow: -30px 0 70px -30px rgba(20, 35, 26, 0.5);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .menu.open .menu__panel {
    transform: none;
  }

  .menu__close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-2);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition:
      transform 0.3s var(--ease),
      color 0.25s,
      background 0.25s;
  }
  .menu__close:hover {
    color: #fff;
    background: var(--green-d);
    transform: rotate(90deg);
  }

  .menu__brand {
    display: block;
    margin-bottom: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }
  .menu__brand img {
    height: 32px;
    width: auto;
  }

  .menu__link {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    opacity: 0;
    transform: translateX(24px);
  }
  .menu__link span {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    transition:
      color 0.25s,
      padding-left 0.25s;
  }
  .menu__link span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    transform: scale(0);
    transition: transform 0.3s var(--ease);
  }
  .menu__link:hover span,
  .menu__link.active span {
    color: var(--green-d);
    padding-left: 10px;
  }
  .menu__link:hover span::before,
  .menu__link.active span::before {
    transform: scale(1);
  }
  .menu.open .menu__link {
    opacity: 1;
    transform: none;
    transition:
      opacity 0.45s var(--ease),
      transform 0.45s var(--ease);
  }
  .menu.open .menu__link:nth-child(2) {
    transition-delay: 0.1s;
  }
  .menu.open .menu__link:nth-child(3) {
    transition-delay: 0.16s;
  }
  .menu.open .menu__link:nth-child(4) {
    transition-delay: 0.22s;
  }
  .menu.open .menu__link:nth-child(5) {
    transition-delay: 0.28s;
  }
  .menu.open .menu__link:nth-child(6) {
    transition-delay: 0.34s;
  }

  .menu__footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .menu__order {
    margin-bottom: 16px;
  }
  .menu__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: var(--ink);
    padding: 6px 0 14px;
  }
  .menu__phone svg {
    color: var(--green-d);
  }
  .menu__soc {
    display: flex;
    gap: 12px;
  }
  .menu__soc-btn {
    flex: 1;
    text-align: center;
    padding: 11px;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.25s;
  }
  .menu__soc-btn:hover {
    transform: translateY(-2px);
  }
  .menu__soc-btn--viber {
    background: linear-gradient(135deg, #8a79ff, #6a54e8);
  }
  .menu__soc-btn--tg {
    background: linear-gradient(135deg, #37bbf3, #1e9fe0);
  }
  .menu__socnet {
    margin-top: 16px;
    text-align: center;
  }
  .menu__socnet .socnet {
    justify-content: center;
  }

  body.nav-lock {
    overflow: hidden;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .scroll-down {
    display: none;
  }
  .hero__content {
    order: 2;
  }
  .hero__visual {
    order: 1;
    margin-bottom: 10px;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__lead {
    margin-inline: auto;
  }
  .hero__stats {
    justify-content: center;
  }

  .usage__grid,
  .cta__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .usage__text {
    text-align: center;
  }
  .usage__text .section__title {
    text-align: center; 
  }
  .usage__text .section__sub {
    max-width: 560px;
    margin-inline: auto;
  }
  .checklist {
    max-width: 440px;
    margin-inline: auto;
  }

  .checklist li {
    text-align: left;
  }
  .cards,
  .catalog {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .org {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow {
    padding: 26px 24px 24px;
  }
  .flow__track {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 26px 0 4px;
  }
  .flow__step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "ic h"
      "ic p";
    align-content: start;
    gap: 2px 18px;
    padding: 0;
    text-align: left;
  }
  .flow__ic {
    grid-area: ic;
    align-self: start;
    width: 56px;
    height: 56px;
    margin: 0;
    box-shadow: 0 0 0 5px #fff;
  }
  .flow__ic svg {
    width: 28px;
    height: 28px;
  }
  .flow__step h4 {
    grid-area: h;
    align-self: end;
  }
  .flow__step p {
    grid-area: p;
    align-self: start;
  }

  .flow__step:not(:last-child)::before,
  .flow__step:not(:last-child)::after {
    top: 0;
    bottom: -32px;
    left: 26.5px;
    right: auto;
    width: 3px;
    height: auto;
  }
  .flow__step:not(:last-child)::after {
    background: linear-gradient(180deg, var(--leaf), var(--green-d));
    transform: scaleY(0);
    transform-origin: center top;
  }
  .flow.in .flow__step:not(:last-child)::after {
    animation-name: flowFillV;
  }
  .flow__step:hover .flow__ic {
    transform: none;
  }

  .pcard {
    grid-template-columns: 1fr;
  }
  .pcard__media {
    min-height: 0;
    aspect-ratio: 16/9;
  }
  .pcard__body {
    padding: 34px 30px 32px;
  }

  .lab__key,
  .lab__chips {
    grid-template-columns: repeat(2, 1fr);
  }
  .lab__grid {
    grid-template-columns: 1fr;
  }
  .labcard:hover {
    transform: none;
    box-shadow: none;
  }

  .pl {
    grid-template-columns: auto 1fr;
    row-gap: 18px;
  }
  .pl__btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}
@media (max-width: 620px) {
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 70px 0;
  }
  .topbar__item {
    display: none;
  }
  .topbar__row {
    justify-content: center;
    min-height: auto;
    padding: 7px 0;
  }
  .topbar__phone {
    font-size: 13.5px;
  }
  .topbar__chip {
    padding: 5px 12px;
    font-size: 12px;
  }
  .cards,
  .catalog,
  .steps,
  .usage__cards {
    grid-template-columns: 1fr;
  }

  .numbered {
    --fig: 34px;
    --fig-gap: 16px;
  }
  .steps {
    gap: 26px;
  }
  .step.numbered {
    --spine-bottom: -28px;
  }
  .step.numbered:last-child {
    --spine-bottom: 4px;
  }
  .org {
    grid-template-columns: 1fr;
    margin-bottom: 26px;
  }
  .org__item {
    padding: 16px 18px;
  }
  .flow {
    padding: 22px 18px 20px;
  }
  .flow__track {
    gap: 28px;
  }
  .flow__ic {
    width: 50px;
    height: 50px;
  }
  .flow__ic svg {
    width: 25px;
    height: 25px;
  }
  .flow__step {
    gap: 2px 14px;
  }
  .flow__step:not(:last-child)::before,
  .flow__step:not(:last-child)::after {
    bottom: -28px;
    left: 23.5px;
  }
  .footer {
    padding: 48px 0 22px;
    text-align: center;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
  .footer__brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer__logo {
    height: 30px;
    margin-bottom: 14px;
  }
  .footer__brand p {
    max-width: 300px;
    font-size: 14px;
  }
  .footer__col h4 {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .footer__col a:not(.socnet__btn) {
    padding: 6px 0;
    font-size: 14px;
  }
  .footer__col a:hover {
    padding-left: 0;
  }
  .footer .socnet {
    justify-content: center;
  }
  .footer__col--contacts {
    grid-column: 1 / -1;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer__contact {
    justify-content: center;
  }
  .footer__soc {
    justify-content: center;
    margin-top: 18px;
  }
  .footer__soc-btn {
    flex: 1;
    max-width: 170px;
    padding: 12px 14px;
    font-size: 14px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-top: 26px;
    padding-top: 18px;
    font-size: 12.5px;
  }
  .ksibe {
    width: 100%;
    justify-content: center;
    margin-top: 2px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pcard__facts {
    grid-template-columns: 1fr;
    margin: 22px 0;
  }
  .pcard__fact {
    padding: 14px 0 13px;
  }
  .pcard__fact + .pcard__fact {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .pcard__fact dd {
    margin-top: 3px;
  }
  .pcard__media {
    aspect-ratio: 4/3;
  }
  .pcard__badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 12.5px;
  }
  .pcard__body {
    padding: 28px 20px 26px;
  }
  .pcard__list {
    margin-bottom: 26px;
  }
  .pcard__foot {
    gap: 14px 20px;
  }
  .lab__key,
  .lab__chips {
    grid-template-columns: 1fr;
  }
  .lab__kpi {
    padding: 18px 20px;
    gap: 2px 14px;
  }
  .lab__kpi-tag {
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 14px;
  }
  .labcard {
    padding: 20px 20px 22px;
  }
  .labcard__unit {
    display: none;
  }
  .labcard__row {
    padding: 12px 0;
    gap: 10px;
  }
  .labcard__row dt {
    font-size: 14px;
  }
  .lab__passport {
    padding: 20px;
  }
  .pl {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }
  .pl__btn {
    width: 100%;
  }
  .hero__stats {
    gap: 22px;
  }
  .stat__num {
    font-size: 28px;
  }
  .hero__tag {
    font-size: 11.5px;
    padding: 7px 11px;
  }
  .btn--lg {
    padding: 14px 22px;
  }

  .section__title,
  .cta__title {
    font-size: 26px;
  }
  .section__head .section__title {
    text-wrap: pretty;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .pcard__foot {
    flex-direction: column;
    align-items: stretch;
  }
  .pcard__foot .btn {
    width: 100%;
  }
  .pcard__link {
    justify-content: center;
  }
  .usage__text > .btn {
    width: 100%;
  }
  .cta__chips {
    flex-direction: column;
    align-items: stretch;
  }
  .cta__chips .chip {
    width: 100%;
    justify-content: center;
  }
  .cmodal__sheet {
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    max-width: none;
    padding: 18px 16px calc(20px + env(safe-area-inset-bottom));
    border-radius: 24px 24px 0 0;
    max-height: 88vh;
    transform: translateY(100%);
    opacity: 1;
    transition: transform 0.4s var(--ease);
  }
  .cmodal.open .cmodal__sheet {
    transform: none;
  }
  .cmodal__grab {
    display: block;
    width: 44px;
    height: 4px;
    margin: 0 auto 14px;
    border-radius: 100px;
    background: var(--line);
  }
  .cmodal__close {
    top: 16px;
    right: 12px;
    width: 32px;
    height: 32px;
    box-shadow: none;
    background: var(--bg-soft);
  }
  .cmodal__title {
    font-size: 19px;
  }

  .cmodal__list {
    gap: 8px;
    margin-top: 16px;
  }
  .cmodal__item {
    padding: 10px 12px;
  }
  .cmodal__ic {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .cmodal__socnet {
    margin-top: 12px;
    padding-top: 11px;
  }
  .cmodal__item:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--line);
  }

  .pcard__desc,
  .pl__text p {
    text-align: justify;
  }
 
  .hero__lead,
  #about .section__sub {
    text-align: justify;
    text-align-last: center;
  }
}
@media (max-width: 980px) and (max-height: 680px) {
  .menu__panel {
    padding-top: 18px;
  }
  .menu__brand {
    margin-bottom: 4px;
    padding-bottom: 14px;
  }
  .menu__link span {
    padding: 12px 4px;
  }
  .menu__footer {
    margin-top: 16px;
    padding-top: 16px;
  }
  .menu__order {
    margin-bottom: 12px;
  }
  .menu__phone {
    font-size: 17px;
    padding: 4px 0 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }

  .flow__step:not(:last-child)::after {
    transform: none;
  }
}
