:root {
  --bg: #f7faf4;
  --bg-soft: #eef5e6;
  --bg-highlight: #e4f0d4;
  --border-soft: #d4e0c4;
  --text-main: #1e2a14;
  --text-muted: #5a6650;
  --accent: #55b300;
  --accent-soft: rgba(85, 179, 0, 0.14);
  --accent-dark: #447911;
  --accent-mid: #6bc41a;
  --pink: #ff62a1;
  --pink-hot: #fc4e6e;
  --pink-deep: #f445a7;
  --shadow-soft: 0 14px 40px rgba(40, 55, 20, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 17px;
  background: radial-gradient(circle at top left, #e8f2d8 0, #f7faf4 40%, #fdfdfd 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

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

.page {
  min-height: 100vh;
  
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(247, 250, 244, 0.94), rgba(247, 250, 244, 0.82));
  border-bottom: 1px solid rgba(196, 214, 178, 0.75);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-img {
  width: 101px;
  height: auto;
  display: block;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: conic-gradient(from 200deg, #447911, #55b300, #6bc41a, #447911);
  color: #f5fff9;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.logo-mark--small {
  width: 32px;
  height: 32px;
  font-size: 11px;
  border-radius: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text__title {
  font-size: 17px;
  font-weight: 600;
}

.logo-text__subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 16px;
}

.header__link {
  position: relative;
  color: var(--text-muted);
  padding-bottom: 3px;
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  transition: width 0.18s ease-out;
}

.header__link:hover::after {
  width: 100%;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header__phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.header__phone-label {
  font-size: 13px;
  color: var(--text-muted);
}

.header__phone-number {
  font-size: 16px;
  font-weight: 600;
}

.header__cta {
  font-size: 15px;
  padding-inline: 22px;
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: var(--text-main);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background-color 0.12s ease-out,
    border-color 0.12s ease-out, color 0.12s ease-out;
}

.button--primary {
  background: var(--accent);
  color: #f8fff2;
  /*box-shadow: 0 14px 36px rgba(68, 121, 17, 0.35);*/
}

.button--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(68, 121, 17, 0.45);
}

.button--ghost {
  border-color: rgba(68, 121, 17, 0.35);
  background: rgba(244, 250, 236, 0.8);
  color: var(--accent-dark);
}

.button--ghost:hover {
  background: rgba(232, 244, 216, 0.95);
}

.button--wide {
  width: 100%;
}

/* Hero */

.hero {
  padding: 56px 0 48px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(228, 240, 212, 0.95);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 500;
}

.hero__label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

.hero__title {
  margin: 16px 0 0;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero__title-accent {
  display: block;
  background: linear-gradient(120deg, #447911, #55b300);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.hero__meta-separator {
  width: 1px;
  height: 16px;
  background: var(--border-soft);
}

.hero__meta-item--accent {
  color: var(--accent-dark);
  font-weight: 500;
}

.hero__visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: #fafdf6;
  box-shadow: var(--shadow-soft);
  padding: 22px 22px 18px;
  border: 1px solid rgba(196, 214, 178, 0.9);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at top left, rgba(85, 179, 0, 0.22), transparent 60%),
    radial-gradient(circle at bottom right, rgba(255, 98, 161, 0.08), transparent 55%);
  opacity: 0.9;
  z-index: -1;
}

.hero-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.hero-card__title {
  font-size: 17px;
  font-weight: 600;
}

.hero-card__badge {
  font-size: 15px;
  padding: 5px 12px;
  border-radius: 999px;
  background:rgba(85, 179, 0, 0.22);
  border: 1px solid rgba(68, 121, 17, 0.45);
  color: var(--accent-dark);
}

.hero-card__grid {
  border-radius: 16px;
  background: rgba(245, 253, 248, 0.92);
  overflow: hidden;
  font-size: 11px;
}

.hero-card__row {
  display: grid;
  grid-template-columns: 1.1fr repeat(5, 0.9fr);
  gap: 6px;
  padding: 8px 10px;
  align-items: center;
}

.hero-card__row--head {
  background: rgba(218, 239, 226, 0.9);
  font-weight: 600;
}

.hero-card__row:nth-child(even):not(.hero-card__row--head) {
  background: rgba(235, 247, 239, 0.8);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  white-space: nowrap;
}

.badge--green {
  background: rgba(22, 160, 87, 0.12);
  color: var(--accent-dark);
}

.badge--yellow {
  background: rgba(245, 188, 68, 0.14);
  color: #81520a;
}

.badge--blue {
  background: rgba(79, 166, 235, 0.14);
  color: #1d5a8e;
}

.badge--grey {
  background: rgba(152, 167, 161, 0.14);
  color: #4f5b56;
}

.hero__hint {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Sections */

.section {
  padding: 56px 0;
}

.section--soft {
  background: linear-gradient(to bottom, rgba(228, 240, 212, 0.7), rgba(247, 250, 244, 0.25));
}

.section--highlight {
  background: radial-gradient(circle at top left, #dce8c8 0, #eaf2dc 40%, #f7faf4 100%);
}

.section__head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section__title {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.section__subtitle {
  margin: 14px 0 0;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Cards */

.cards {
  display: grid;
  gap: 22px;
}

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

.card {
  background: #fafdf6;
  border-radius: var(--radius-md);
  padding: 24px 24px 20px;
  border: 1px solid rgba(196, 214, 178, 0.9);
  box-shadow: 0 10px 26px rgba(40, 55, 20, 0.08);
  transition: transform 0.14s ease-out, box-shadow 0.14s ease-out, border-color 0.14s ease-out,
    background-color 0.14s ease-out;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(40, 55, 20, 0.16);
  border-color: rgba(85, 179, 0, 0.55);
  background-color: #f5faeb;
}

.card__title {
  margin: 0 0 10px;
  font-size: 19px;
}

.card__text {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

.cards--icons {
  margin-top: 12px;
}

.card--icon {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgba(85, 179, 0, 0.2);
}

/* About */

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.about__extra {
  margin-top: 12px;
  font-size: 17px;
  color: var(--text-muted);
}

.about__trust {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about__badge {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(179, 204, 150, 0.9);
  background: rgba(240, 248, 230, 0.95);
  font-size: 15px;
  color: var(--text-main);
}

.about__badge::before {
  content: "●";
  color: var(--pink-hot);
  margin-right: 6px;
  font-size: 10px;
}

.about__side {
  display: flex;
  align-items: stretch;
}

.about-card {
  flex: 1;
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  background: #f9fffb;
  border: 1px solid rgba(203, 222, 209, 0.9);
  box-shadow: var(--shadow-soft);
}

.about-card__label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--pink-deep);
}

.about-card__metric {
  margin-top: 12px;
}

.about-card__metric-value {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--accent-dark);
}

.about-card__metric-caption {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  color: var(--text-muted);
}

.about-card__note {
  margin-top: 18px;
  font-size: 16px;
  color: var(--text-muted);
}

/* FAQ */

.faq {
  max-width: 760px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(196, 214, 178, 0.95);
  background: #f8fcf4;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item__header {
  width: 100%;
  border: none;
  background: transparent;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-item__question {
  font-size: 18px;
  text-align: left;
}

.faq-item__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(170, 224, 118, 0.45);
  position: relative;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  inset: 50% 4px auto;
  height: 1.4px;
  background: var(--accent-dark);
  transform: translateY(-50%);
  transition: transform 0.12s ease-out, opacity 0.12s ease-out;
}

.faq-item__icon::after {
  inset: 4px 50% 4px auto;
  width: 1.4px;
  height: auto;
  transform: translateX(50%);
}

.faq-item--open .faq-item__icon::after {
  opacity: 0;
  transform: translateX(50%) scaleY(0.2);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.5;
  transition: max-height 0.18s ease-out, padding-top 0.16s ease-out, padding-bottom 0.16s ease-out;
}

.faq-item--open .faq-item__body {
  padding-top: 0;
  margin-bottom: 14px;
}

.faq-item__body p {
  margin: 0;
}

/* Demo form */

.demo {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.demo__form {
  background: #fafdf6;
  border-radius: var(--radius-lg);
  padding: 24px 24px 20px;
  border: 1px solid rgba(196, 214, 178, 0.95);
  box-shadow: 0 16px 42px rgba(40, 55, 20, 0.14);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.form-grid__full {
  grid-column: 1 / -1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.field__label {
  font-size: 15px;
}

.field__input {
  border-radius: 12px;
  border: 1px solid rgba(194, 214, 178, 0.9);
  padding: 12px 14px;
  font-size: 16px;
  outline: none;
  background: #fafffb;
  transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out, background-color 0.12s ease-out;
}

.field__input:focus {
  border-color: rgba(85, 179, 0, 0.8);
  box-shadow: 0 0 0 1px rgba(85, 179, 0, 0.35);
  background: #ffffff;
}

.demo__note {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Footer */

.footer {
  border-top: 1px solid rgba(196, 214, 178, 0.75);
  padding: 28px 0 32px;
  background: linear-gradient(to bottom, #f7faf4, #f0f5ea);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 28px;
  font-size: 15px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer__logo-img {
  width: 62px;
  height: auto;
  display: block;
}

.footer__logo-text {
  max-width: 220px;
}

.footer__copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.footer__title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer__link {
  color: var(--accent-dark);
  font-size: 15px;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__text {
  margin: 0;
  color: var(--text-muted);
}

.footer__links {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Functional panel */

.functional {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  background: #f3f8ec;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(196, 214, 178, 0.95);
  box-shadow: 0 16px 42px rgba(40, 55, 20, 0.1);
}

.functional__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.functional__tab {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(196, 214, 178, 0.7);
  background: #fafdf6;
  color: var(--text-main);
  font-size: 17px;
  font-weight: 500;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.functional__tab:hover {
  background: #f5faeb;
  border-color: rgba(85, 179, 0, 0.4);
}

.functional__tab--active {
  background: linear-gradient(135deg, rgba(85, 179, 0, 0.14), rgba(228, 240, 212, 0.95));
  border-color: rgba(85, 179, 0, 0.55);
  box-shadow: inset 4px 0 0 var(--accent-dark);
  font-weight: 600;
}

.functional__tab-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 3px outset solid rgba(85, 179, 0, 0.18);
}

.functional__tab--active .functional__tab-icon {
  
  border-color: rgba(252, 78, 110, 0.25);
}

.functional__panel {
  position: relative;
  min-height: 480px;
}

.functional__content {
  display: none;
  animation: functionalFade 0.28s ease;
}

.functional__content--active {
  display: block;
}

@keyframes functionalFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.functional__content-title {
  margin: 0 0 16px;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--accent-dark);
}

.functional__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.functional__list li {
  position: relative;
  padding-left: 22px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
}

.functional__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.functional__carousel {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fafdf6;
  border: 1px solid rgba(196, 214, 178, 0.9);
  box-shadow: 0 10px 28px rgba(40, 55, 20, 0.1);
}

.functional__slides {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f5ea;
}

.functional__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.functional__slide--active {
  opacity: 1;
  pointer-events: auto;
}

.functional__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.functional__carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(240, 248, 230, 0.8);
  border-top: 1px solid rgba(196, 214, 178, 0.7);
}

.functional__carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(85, 179, 0, 0.35);
  background: #fafdf6;
  color: var(--accent-dark);
  font-size: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.12s ease, border-color 0.12s ease;
}

.functional__carousel-btn:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.functional__carousel-dots {
  display: flex;
  gap: 8px;
}

.functional__carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(85, 179, 0, 0.25);
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.12s ease;
}

.functional__carousel-dot--active {
  background: var(--pink-hot);
  transform: scale(1.2);
}

.grecaptcha-badge {
			visibility: hidden !important;
			opacity: 0 !important;
			transition: visibility 0s 0.5s, opacity 0.5s linear !important;
		}

.card_img
{
  width: 100%;
  vertical-align: bottom;
}

.block_link
{
  cursor: pointer; 
}

.stroke {
  display: flex;
  background-color:#447911;
  width: 100vw;
  max-width: 3000px;
  margin: 0 auto;
  overflow: hidden;
}

.stroke__item {
  flex-shrink: 0;
  color: #d8ffb4;
  font-size: clamp(1.125rem, 0.8023rem + 1.2064vw, 2.25rem);
  line-height: 0.5;
  font-weight: 900;
  text-transform: uppercase;
  animation: running-animation 15s linear infinite;
  white-space: nowrap;
}

@keyframes running-animation {
  0% {
    transform: translateZ(0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
