:root {
    --color-bg: #f8f5f2;
    --color-accent: #198903;
    --color-text: #1f1f1f;
    --color-muted: #6f6f6f;
  
    --font-title: "Lora", serif;
    --font-main: "Inter", sans-serif;
  
    --container-width: 1620px;
    --container-padding: 20px;
  }

  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
  }
  
  .container {
    width: min(100% - 40px, var(--container-width));
    margin: 0 auto;
  }
  
  section,
  [id] {
    scroll-margin-top: 120px;
  }
  
  .site-header {
    position: sticky;
    top: 14px;
    z-index: 1000;
    padding: 14px 0;
  
    opacity: 0;
    transform: translateY(-18px);
    animation: headerFadeIn 0.7s ease forwards;
  }
  
  @keyframes headerFadeIn {
    from {
      opacity: 0;
      transform: translateY(-18px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 14px 28px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }
  
  .header-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  
  .header-logo__img {
    display: block;
    width: 187px;
    height: auto;
  }
  
  .header-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
  }
  
  .header-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 54px);
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .header-nav__link {
    position: relative;
    display: inline-flex;
    padding: 8px 0;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.25s ease;
  }
  
  .header-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
  }
  
  .header-nav__link:hover,
  .header-nav__link:focus-visible {
    color: var(--color-accent);
  }
  
  .header-nav__link:hover::after,
  .header-nav__link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
  }
  
  .header-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    text-decoration: none;
  }
  
  .header-phone__icon {
    width: 24px;
    height: 24px;
  }
  
  .header-phone__number,
  .header-phone__note {
    display: block;
    white-space: nowrap;
  }
  
  .header-phone__number {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
  }
  
  .header-phone__note {
    margin-top: 2px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
  }
  
  .header-cta {
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    border-radius: 12px;
    background: var(--color-accent);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  }
  
  .header-cta:hover,
  .header-cta:focus-visible {
    background: #147202;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(25, 137, 3, 0.22);
  }
  
  .header-cta__icon {
    width: 24px;
    height: 24px;
  }
  
  .header-burger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: rgba(25, 137, 3, 0.08);
    cursor: pointer;
  }
  
  .header-burger span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--color-accent);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  
  .header-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .header-burger.is-active span:nth-child(2) {
    opacity: 0;
  }
  
  .header-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .mobile-menu {
    display: none;
  }
  
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
  }
  
  @media (max-width: 1199px) {
    .header-inner {
      gap: 20px;
      padding: 12px 20px;
    }
  
    .header-nav {
      display: none;
    }
  
    .header-actions {
      margin-left: auto;
      gap: 18px;
    }
  
    .header-burger {
      display: block;
    }
  
    .mobile-menu {
      display: block;
      max-height: 0;
      overflow: hidden;
      margin-top: 10px;
      padding: 0 22px;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      opacity: 0;
      visibility: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
    }
  
    .mobile-menu.is-open {
      max-height: 520px;
      padding: 22px;
      opacity: 1;
      visibility: visible;
    }
  
    .mobile-menu__nav {
      display: grid;
      gap: 16px;
    }
  
    .mobile-menu__nav a,
    .mobile-menu__phone {
      color: var(--color-text);
      font-size: 17px;
      font-weight: 500;
      text-decoration: none;
    }
  
    .mobile-menu__phone {
      display: block;
      margin-top: 22px;
      font-weight: 700;
    }
  
    .mobile-menu__phone span {
      display: block;
      margin-top: 4px;
      color: #333;
      font-size: 14px;
      font-weight: 400;
    }
  
    .mobile-menu__cta {
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 18px;
      border-radius: 12px;
      background: var(--color-accent);
      color: #fff;
      font-weight: 600;
      text-decoration: none;
    }
  }
  
  @media (max-width: 767px) {
    .container {
      width: min(100% - 24px, var(--container-width));
    }
  
    .site-header {
      top: 8px;
      padding: 8px 0;
    }
  
    .header-inner {
      min-height: 68px;
      border-radius: 16px;
    }
  
    .header-logo__img {
      width: 160px;
    }
  
    .header-phone,
    .header-cta {
      display: none;
    }
  
    .header-actions {
      gap: 0;
    }
  }
  
  @media (max-width: 380px) {
    .header-logo__img {
      width: 140px;
    }
  }

 /* Hero */

.main {
  padding-top: 12px;
}

.hero {
  padding: 0 0 45px;
}

.hero__inner {
  position: relative;
  min-height: clamp(540px, 42vw, 720px);
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(
      90deg,
      rgba(248, 245, 242, 0.97) 0%,
      rgba(248, 245, 242, 0.93) 28%,
      rgba(248, 245, 242, 0.58) 48%,
      rgba(248, 245, 242, 0.12) 72%
    ),
    url("../images/hero-bg.png") center right / cover no-repeat;
  box-shadow: 0 18px 40px rgba(24, 40, 20, 0.06);

  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeIn 0.75s ease forwards;
  animation-delay: 0.12s;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__inner::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 150px;
  pointer-events: none;
  background:
    radial-gradient(circle at 4% 85%, rgba(41, 104, 10, 0.3), transparent 18%),
    radial-gradient(circle at 96% 80%, rgba(41, 104, 10, 0.32), transparent 22%);
  filter: blur(10px);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  padding: clamp(42px, 3.9vw, 64px) 0 42px clamp(38px, 4.7vw, 78px);
}

.hero__title {
  max-width: 560px;
  margin: 0;
  color: #242424;
  font-family: var(--font-main);
  font-size: clamp(36px, 2.4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.hero__subtitle {
  max-width: 520px;
  margin: 22px 0 0;
  color: #4a4a4a;
  font-size: clamp(17px, 1.05vw, 19px);
  font-weight: 400;
  line-height: 1.36;
}

.hero__features {
  display: grid;
  gap: 22px;
  max-width: 540px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.hero__feature {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  color: #2b2b2b;
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 400;
  line-height: 1.32;
}

.hero__feature-icon {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.hero__button {
  width: 340px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding: 0 30px 0 34px;
  border-radius: 9px;
  background: var(--color-accent);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(25, 137, 3, 0.18);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero__button:hover,
.hero__button:focus-visible {
  background: #126f02;
  box-shadow: 0 18px 32px rgba(25, 137, 3, 0.24);
}

.hero__button:focus-visible .hero__button-arrow {
  transform: translateX(5px);
}

.hero__button:active {
  transform: scale(0.98);
}

/* На случай, если декоративные span остались в HTML */
.hero__decor {
  display: none;
}

.hero__button {
  justify-content: flex-start; /* чтобы иконка была слева */
  gap: 14px;
}

/* новая иконка */
.hero__button-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.25s ease;
  flex: 0 0 auto;
}

/* hover эффект увеличения иконки */
.hero__button:hover .hero__button-icon,
.hero__button:focus-visible .hero__button-icon {
  transform: scale(1.25);
}

/* Hero adaptive */

@media (max-width: 1439px) {
  .hero__inner {
    min-height: clamp(520px, 46vw, 640px);
    background-position: 62% center;
  }

  .hero__content {
    width: min(100%, 520px);
    padding-top: 42px;
    padding-left: 52px;
    padding-bottom: 38px;
  }

  .hero__title {
    max-width: 520px;
    font-size: 36px;
  }

  .hero__subtitle {
    max-width: 500px;
  }

  .hero__features {
    max-width: 520px;
    margin-top: 38px;
    gap: 20px;
  }

  .hero__button {
    min-height: 60px;
    margin-top: 32px;
  }
}

@media (max-width: 1199px) {
  .main {
    padding-top: 8px;
  }

  .hero__inner {
    min-height: 540px;
    background:
      linear-gradient(
        90deg,
        rgba(248, 245, 242, 0.99) 0%,
        rgba(248, 245, 242, 0.96) 42%,
        rgba(248, 245, 242, 0.6) 66%,
        rgba(248, 245, 242, 0.18) 100%
      ),
      url("../images/hero-bg.png") 67% center / cover no-repeat;
  }

  .hero__content {
    width: min(100%, 500px);
    padding: 38px 0 36px 40px;
  }

  .hero__title {
    max-width: 500px;
    font-size: 34px;
  }

  .hero__subtitle {
    max-width: 480px;
    margin-top: 18px;
    font-size: 17px;
  }

  .hero__features {
    max-width: 500px;
    margin-top: 34px;
    gap: 18px;
  }

  .hero__feature {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 16px;
    font-size: 16px;
  }

  .hero__feature-icon {
    width: 34px;
    height: 34px;
  }

  .hero__button {
    width: 310px;
    min-height: 58px;
    margin-top: 30px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .main {
    padding-top: 6px;
  }

  .hero {
    padding-bottom: 10px;
  }

  .hero__inner {
    min-height: auto;
    border-radius: 16px;
    background:
      linear-gradient(
        180deg,
        rgba(248, 245, 242, 0.98) 0%,
        rgba(248, 245, 242, 0.96) 42%,
        rgba(248, 245, 242, 0.82) 68%,
        rgba(248, 245, 242, 0.68) 100%
      ),
      url("../images/hero-bg.png") center bottom / cover no-repeat;
  }

  .hero__content {
    width: 100%;
    max-width: none;
    padding: 30px 22px 34px;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(29px, 8vw, 32px);
    line-height: 1.15;
  }

  .hero__subtitle {
    max-width: none;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.42;
  }

  .hero__subtitle br {
    display: none;
  }

  .hero__features {
    max-width: none;
    margin-top: 30px;
    gap: 16px;
  }

  .hero__feature {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 13px;
    font-size: 15px;
  }

  .hero__feature-icon {
    width: 30px;
    height: 30px;
  }

  .hero__button {
    width: 100%;
    max-width: none;
    min-height: 56px;
    margin-top: 28px;
    padding: 0 24px;
    font-size: 16px;
  }

  .hero__button-arrow {
    font-size: 25px;
  }
}

@media (max-width: 420px) {
  .hero__content {
    padding: 28px 18px 32px;
  }

  .hero__title {
    font-size: 29px;
  }

  .hero__features {
    gap: 15px;
  }

  .hero__feature br {
    display: none;
  }
}

/* About */

.about {
  overflow: hidden;
  background: var(--color-bg);
  padding: 0px 0 45px;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(36px, 4vw, 72px);
}

.about__media {
  min-width: 0;
}

.about__image {
  display: block;
  width: min(100%, 800px);
  height: auto;
  margin-left: -2px;
}

.about__content {
  min-width: 0;
  padding-top: 4px;
}

.about__title-row {
  display: flex;
  align-items: center;
  gap: clamp(32px, 3.6vw, 52px);
  margin-bottom: clamp(34px, 4vw, 56px);
}

.about__title {
  margin: 0;
  color: #222;
  font-family: var(--font-main);
  font-size: clamp(52px, 4.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.about__title-line {
  position: relative;
  top: 5px;
  width: clamp(76px, 6vw, 110px);
  height: 2px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-accent);
}

.about__text {
  max-width: 660px;
}

.about__text p {
  margin: 0 0 clamp(26px, 2.4vw, 36px);
  color: #242424;
  font-size: clamp(16px, 1.34vw, 20px);
  font-weight: 400;
  line-height: 1.68;
}

.about__text p:last-child {
  margin-bottom: 0;
}

/* Scroll animation */

.js-scroll-section .js-scroll-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  will-change: opacity, transform;
}

.js-scroll-section .about__media.js-scroll-item {
  transform: translateX(-34px);
}

.js-scroll-section.is-visible .js-scroll-item {
  opacity: 1;
  transform: translate(0, 0);
}

.js-scroll-section.is-visible .js-scroll-item:nth-child(1) {
  transition-delay: 0.05s;
}

.js-scroll-section.is-visible .js-scroll-item:nth-child(2) {
  transition-delay: 0.14s;
}

.js-scroll-section.is-visible .js-scroll-item:nth-child(3) {
  transition-delay: 0.22s;
}

.js-scroll-section.is-visible .js-scroll-item:nth-child(4) {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .js-scroll-section .js-scroll-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* About adaptive */

@media (max-width: 1439px) {
  .about__inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
    gap: clamp(32px, 3.5vw, 56px);
  }

  .about__image {
    width: min(100%, 720px);
  }

  .about__text {
    max-width: 610px;
  }
}

@media (max-width: 1199px) {
  .about {
    padding: 8px 0 78px;
  }

  .about__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 32px;
  }

  .about__title {
    font-size: clamp(44px, 5vw, 58px);
  }

  .about__title-row {
    gap: 28px;
    margin-bottom: 30px;
  }

  .about__title-line {
    width: 78px;
  }

  .about__text p {
    font-size: 18px;
    line-height: 1.62;
  }
}

@media (max-width: 1023px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about__content {
    order: 1;
    max-width: 760px;
  }

  .about__media {
    order: 2;
  }

  .about__image {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .about__text {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 6px 0 0px;
  }

  .about__inner {
    gap: 0px;
  }

  .about__title-row {
    gap: 20px;
    margin-bottom: 24px;
  }

  .about__title {
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.1;
  }

  .about__title-line {
    width: 64px;
  }

  .about__text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.58;
  }

  .js-scroll-section .about__media.js-scroll-item {
    transform: translateY(24px);
  }
}

@media (max-width: 420px) {
  .about {
    padding: 6px 0 0px;
  }

  .about__title-row {
    gap: 16px;
  }

  .about__title-line {
    width: 52px;
  }

  .about__text p {
    font-size: 15.5px;
  }
}

/* Products */

.products {
  overflow: hidden;
  background: var(--color-bg);
  padding: 0px 0 45px;
}

.products__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 45px;
}

.products__title-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.products__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: clamp(42px, 3.2vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.products__title-line {
  position: relative;
  top: 3px;
  width: clamp(76px, 6vw, 110px);
  height: 2px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-accent);
}

.products-tabs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.products-tabs__button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  background: #fff;
  color: var(--color-text);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.products-tabs__button + .products-tabs__button {
  margin-left: -1px;
}

.products-tabs__button.is-active {
  position: relative;
  z-index: 2;
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(25, 137, 3, 0.22);
}

.products-tabs__button:hover,
.products-tabs__button:focus-visible {
  transform: translateY(-1px);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 32px;
}

.product-card {
  min-height: 340px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.product-card__image {
  display: block;
  width: 100%;
  height: 232px;
  object-fit: cover;
}

.product-card__body {
  flex: 1 1 auto;
  padding: 22px 24px 26px;
}

.product-card__title {
  margin: 0;
  color: #111;
  font-size: clamp(21px, 1.55vw, 26px);
  font-weight: 700;
  line-height: 1.15;
}

.product-card__price {
  margin: 14px 0 0;
  color: var(--color-text);
  font-size: clamp(17px, 1.15vw, 20px);
  font-weight: 400;
  line-height: 1.3;
}

/* Products scroll animation */

.products.js-scroll-section .product-card.js-scroll-item {
  transform: translateY(32px);
}

.products.js-scroll-section.is-visible .product-card.js-scroll-item {
  transform: translateY(0);
}

.products.js-scroll-section.is-visible .products__top.js-scroll-item {
  transition-delay: 0.05s;
}

.products.js-scroll-section.is-visible .product-card:nth-child(1) {
  transition-delay: 0.12s;
}

.products.js-scroll-section.is-visible .product-card:nth-child(2) {
  transition-delay: 0.18s;
}

.products.js-scroll-section.is-visible .product-card:nth-child(3) {
  transition-delay: 0.24s;
}

.products.js-scroll-section.is-visible .product-card:nth-child(4) {
  transition-delay: 0.3s;
}

.products.js-scroll-section.is-visible .product-card:nth-child(5) {
  transition-delay: 0.36s;
}

.products.js-scroll-section.is-visible .product-card:nth-child(6) {
  transition-delay: 0.42s;
}

.products.js-scroll-section.is-visible .product-card:nth-child(7) {
  transition-delay: 0.48s;
}

.products.js-scroll-section.is-visible .product-card:nth-child(8) {
  transition-delay: 0.54s;
}

/* Products adaptive */

@media (max-width: 1439px) {
  .products {
    padding: 64px 0 38px;
  }

  .products__grid {
    gap: 28px 26px;
  }

  .product-card {
    min-height: 318px;
  }

  .product-card__image {
    height: 216px;
  }

  .product-card__body {
    padding: 20px 22px 24px;
  }
}

@media (max-width: 1199px) {
  .products {
    padding: 60px 0 36px;
  }

  .products__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 34px;
  }

  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .product-card {
    min-height: 326px;
  }

  .product-card__image {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .products {
    padding: 52px 0 34px;
  }

  .products__top {
    gap: 24px;
    margin-bottom: 30px;
  }

  .products__title-row {
    gap: 20px;
  }

  .products__title {
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.1;
  }

  .products__title-line {
    width: 56px;
  }

  .products-tabs {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .products-tabs::-webkit-scrollbar {
    display: none;
  }

  .products-tabs__button {
    min-height: 50px;
    padding: 0 22px;
    font-size: 15px;
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-card {
    min-height: auto;
  }

  .product-card__image {
    height: 210px;
  }

  .product-card__body {
    padding: 20px 20px 22px;
  }

  .product-card__title {
    font-size: 22px;
  }

  .product-card__price {
    margin-top: 12px;
    font-size: 17px;
  }
}

@media (max-width: 420px) {
  .products {
    padding: 44px 0 26px;
  }

  .products__title-row {
    gap: 16px;
  }

  .products__title-line {
    width: 52px;
  }

  .products-tabs__button {
    padding: 0 18px;
    font-size: 14px;
  }

  .product-card__image {
    height: 190px;
  }

  .product-card__body {
    padding: 18px 18px 20px;
  }

  .product-card__title {
    font-size: 21px;
  }

  .product-card__price {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products.js-scroll-section .product-card.js-scroll-item {
    transform: none;
  }
}

/* Products price switch */

.product-card__price {
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  will-change: opacity, transform;
  font-variant-numeric: tabular-nums;
}

.product-card__price.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.products-tabs__button {
  user-select: none;
}

.products-tabs__button:active {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .product-card__price {
    transition: none;
  }

  .product-card__price.is-changing {
    opacity: 1;
    transform: none;
  }
}

/* Payment */

.payment {
  overflow: hidden;
  background: var(--color-bg);
  padding: 0px 0 45px;
}

.payment__panel {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(560px, 1fr);
  gap: clamp(42px, 5vw, 80px);
  padding:
  clamp(16px, 3.2vw, 36px)
  clamp(48px, 5vw, 88px)
  clamp(54px, 4.8vw, 82px);
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(24, 40, 20, 0.06);
}

.payment__panel::before {
  content: "";
  position: absolute;
  left: -24px;
  bottom: -18px;
  z-index: 0;
  width: min(58%, 920px);
  height: 60%;
  background: url("../images/payment-bg.png") left bottom / contain no-repeat;
  pointer-events: none;
}

.payment__content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding-top: clamp(0px, 3vw, 60px);
}

.payment__title-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
}

.payment__title {
  margin: 0;
  color: #1f1f1f;
  font-family: var(--font-main);
  font-size: clamp(42px, 3.4vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.payment__title-line {
  position: relative;
  top: 4px;
  width: clamp(76px, 6vw, 110px);
  height: 2px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-accent);
}

.payment__lead {
  max-width: 610px;
  margin: 0;
  color: #242424;
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 400;
  line-height: 1.42;
}

.payment__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 24px 22px;
}

.payment-card {
  min-height: 252px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.payment-card__icon {
  display: block;
  width: clamp(310px, 18vw, 352px);
  height: auto;
  object-fit: contain;
}

.payment-factor {
  grid-column: 1 / -1;
  min-height: 196px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: center;
  gap: -20px;
  padding: 5px 5px;
  border: 1px solid rgba(25, 137, 3, 0.18);
  border-radius: 18px;
  background: rgba(248, 252, 246, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.payment-factor__icon {
  display: block;
  width: 310px;
  max-width: none;
  height: auto;
  justify-self: end;
  align-self: center;
  object-fit: contain;
}

.payment-factor__text {
  margin: 0;
  max-width: none;
  color: #242424;
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1.42;
}

/* Payment scroll animation */

.payment.js-scroll-section .payment__panel {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.payment.js-scroll-section.is-visible .payment__panel {
  opacity: 1;
  transform: translateY(0);
}

.payment.js-scroll-section .payment__content.js-scroll-item,
.payment.js-scroll-section .payment-card.js-scroll-item,
.payment.js-scroll-section .payment-factor.js-scroll-item {
  transform: translateY(28px);
}

.payment.js-scroll-section.is-visible .payment__content.js-scroll-item {
  transition-delay: 0.05s;
}

.payment.js-scroll-section.is-visible .payment-card:nth-child(1) {
  transition-delay: 0.12s;
}

.payment.js-scroll-section.is-visible .payment-card:nth-child(2) {
  transition-delay: 0.18s;
}

.payment.js-scroll-section.is-visible .payment-card:nth-child(3) {
  transition-delay: 0.24s;
}

.payment.js-scroll-section.is-visible .payment-card:nth-child(4) {
  transition-delay: 0.3s;
}

.payment.js-scroll-section.is-visible .payment-factor {
  transition-delay: 0.36s;
}

/* Payment adaptive */

@media (max-width: 1439px) {
  .payment {
    padding: 0px 0 40px;
  }

  .payment__panel {
    min-height: 700px;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1fr);
    gap: 52px;
    padding: 58px 56px;
  }

  .payment-card {
    min-height: 232px;
  }

  .payment-factor {
    min-height: 180px;
    grid-template-columns: 170px minmax(0, 1fr);
    padding: 24px 38px;
  }

  .payment-factor__icon {
    width: 138px;
  }
}

@media (max-width: 1199px) {
  .payment__panel {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 44px;
    padding: 0px 42px;
  }

  .payment__content {
    max-width: 760px;
    padding-top: 0;
  }

  .payment__title-row {
    margin-bottom: 36px;
  }

  .payment__panel::before {
    width: 58%;
    height: 46%;
    opacity: 0.5;
  }

  .payment__panel::after {
    left: 38%;
    bottom: 28%;
    width: 42%;
    height: 34%;
  }
}

@media (max-width: 1023px) {
  .payment {
    padding: 0px 0 38px;
  }

  .payment__panel {
    padding: 42px 32px 48px;
  }

  .payment__cards {
    gap: 22px;
  }

  .payment-card {
    min-height: 220px;
  }

  .payment__panel::before {
    opacity: 0.38;
  }
}

@media (max-width: 767px) {
  .payment {
    padding: 0px 0 34px;
  }

  .payment__panel {
    padding: 0px 20px 48px;
    border-radius: 16px;
  }

  .payment__panel::before {
    width: 100%;
    height: 310px;
    opacity: 0.22;
  }

  .payment__panel::after {
    display: none;
  }

  .payment__title-row {
    gap: 20px;
    margin-bottom: 26px;
  }

  .payment__title {
    font-size: clamp(32px, 8vw, 38px);
    line-height: 1.1;
  }

  .payment__title-line {
    width: 60px;
  }

  .payment__lead {
    font-size: 18px;
    line-height: 1.48;
  }

  .payment__lead br {
    display: none;
  }

  .payment__cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .payment-card {
    min-height: 190px;
    border-radius: 16px;
  }

  .payment-card__icon {
    width: 148px;
  }

  .payment-factor {
    min-height: auto;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 22px;
    padding: 24px 22px;
    border-radius: 16px;
  }

  .payment-factor__icon {
    width: 124px;
  }

  .payment-factor__text {
    font-size: 17px;
    line-height: 1.5;
  }

  .payment__cards {
    grid-template-columns: 1fr;
  }

  .payment-card {
    display: none;
  }

  .payment-factor {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
    padding: 24px 22px;
  }

  .payment-factor__icon {
    display: none;
  }

  .payment-factor__text {
    width: 100%;
    max-width: none;
    font-size: 17px;
    line-height: 1.5;
  }
}

@media (max-width: 520px) {
  .payment-factor {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .payment-factor__icon {
    width: 132px;
  }
}

@media (max-width: 420px) {
  .payment__panel {
    padding: 0px 16px;
  }

  .payment__title-row {
    gap: 16px;
  }

  .payment__title-line {
    width: 52px;
  }

  .payment-card {
    min-height: 172px;
  }

  .payment-card__icon {
    width: 132px;
  }

  .payment-factor {
    padding: 22px 18px;
  }

  .payment-factor__text {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .payment.js-scroll-section .payment__panel,
  .payment.js-scroll-section .payment__content.js-scroll-item,
  .payment.js-scroll-section .payment-card.js-scroll-item,
  .payment.js-scroll-section .payment-factor.js-scroll-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Delivery */

.delivery {
  overflow: hidden;
  background: var(--color-bg);
  padding: 0 0 40px;
}

.delivery__inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(42px, 5vw, 82px);
}

.delivery__content {
  min-width: 0;
}

.delivery__title-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 34px;
}

.delivery__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: clamp(42px, 3.4vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.delivery__title-line {
  position: relative;
  top: 5px;
  width: clamp(76px, 6vw, 110px);
  height: 2px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-accent);
}

.delivery__cards {
  display: grid;
  gap: 22px;
}

.delivery-card {
  min-height: 162px;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  padding: 30px 34px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
}

.delivery-card__icon-box {
  width: 136px;
  height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(25, 137, 3, 0.12);
  border-radius: 18px;
  background: rgba(248, 245, 242, 0.45);
}

.delivery-card__icon {
  display: block;
  width: 116px;
  height: 116px;
  object-fit: contain;
}

.delivery-card__title {
  margin: 0;
  color: #111;
  font-size: clamp(19.5px, 1.40vw, 25.5px);
  font-weight: 700;
  line-height: 1.18;
}

.delivery-card__text {
  margin: 18px 0 0;
  color: #2b2b2b;
  font-size: clamp(15px, 1.15vw, 20px);
  font-weight: 400;
  line-height: 1.42;
}

.delivery__media {
  width: 100%;
  min-width: 0;
  justify-self: stretch;
}

.delivery__image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  border-radius: 22px;
}


/* Delivery scroll animation */

.delivery.js-scroll-section .delivery__content.js-scroll-item,
.delivery.js-scroll-section .delivery-card.js-scroll-item,
.delivery.js-scroll-section .delivery__media.js-scroll-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  will-change: opacity, transform;
}

.delivery.js-scroll-section .delivery__media.js-scroll-item {
  transform: translateX(34px);
}

.delivery.js-scroll-section.is-visible .delivery__content.js-scroll-item,
.delivery.js-scroll-section.is-visible .delivery-card.js-scroll-item,
.delivery.js-scroll-section.is-visible .delivery__media.js-scroll-item {
  opacity: 1;
  transform: translate(0, 0);
}

.delivery.js-scroll-section.is-visible .delivery__content.js-scroll-item {
  transition-delay: 0.05s;
}

.delivery.js-scroll-section.is-visible .delivery-card:nth-child(1) {
  transition-delay: 0.12s;
}

.delivery.js-scroll-section.is-visible .delivery-card:nth-child(2) {
  transition-delay: 0.18s;
}

.delivery.js-scroll-section.is-visible .delivery-card:nth-child(3) {
  transition-delay: 0.24s;
}

.delivery.js-scroll-section.is-visible .delivery__media.js-scroll-item {
  transition-delay: 0.3s;
}


/* Delivery adaptive */

@media (max-width: 1439px) {
  .delivery {
    padding: 0 0 38px;
  }

  .delivery__inner {
    grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
    gap: 52px;
  }

  .delivery__title {
    font-size: clamp(48px, 4.8vw, 72px);
  }

  .delivery-card {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 30px;
    padding: 26px 30px;
  }

  .delivery-card__icon-box {
    width: 116px;
    height: 116px;
  }

  .delivery-card__icon {
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 1199px) {
  .delivery__inner {
    grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
    gap: 38px;
  }

  .delivery-card {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 24px;
    padding: 24px 26px;
  }

  .delivery-card__icon-box {
    width: 104px;
    height: 104px;
  }

  .delivery-card__icon {
    width: 70px;
    height: 70px;
  }

  .delivery-card__text {
    margin-top: 14px;
  }
}

@media (max-width: 1023px) {
  .delivery__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .delivery__image {
    max-width: 760px;
    margin: 0 auto;
  }

  .delivery.js-scroll-section .delivery__media.js-scroll-item {
    transform: translateY(28px);
  }
}

@media (max-width: 767px) {
  .delivery {
    padding: 0 0 34px;
  }

  .delivery__title-row {
    gap: 20px;
    margin-bottom: 28px;
  }

  .delivery__title {
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.1;
  }

  .delivery__title-line {
    width: 60px;
  }

  .delivery__cards {
    gap: 18px;
  }

  .delivery-card {
    min-height: auto;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 20px;
    padding: 22px;
    border-radius: 16px;
  }

  .delivery-card__icon-box {
    width: 92px;
    height: 92px;
    border-radius: 16px;
  }

  .delivery-card__icon {
    width: 60px;
    height: 60px;
  }

  .delivery-card__title {
    font-size: 22px;
  }

  .delivery-card__text {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.45;
  }

  .delivery__image {
    border-radius: 16px;
  }

  .delivery__media {
    display: none;
  }
}

@media (max-width: 420px) {
  .delivery__title-row {
    gap: 16px;
  }

  .delivery__title-line {
    width: 52px;
  }

  .delivery-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px;
  }

  .delivery-card__icon-box {
    width: 86px;
    height: 86px;
  }

  .delivery-card__icon {
    width: 58px;
    height: 58px;
  }

  .delivery-card__title {
    font-size: 21px;
  }

  .delivery-card__text {
    font-size: 15.5px;
  }

  .delivery__media {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .delivery.js-scroll-section .delivery__content.js-scroll-item,
  .delivery.js-scroll-section .delivery-card.js-scroll-item,
  .delivery.js-scroll-section .delivery__media.js-scroll-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Trust */

.trust {
  overflow: hidden;
  background: var(--color-bg);
  padding: 0 0 45px;
}

.trust__title-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 45px;
}

.trust__title {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: clamp(42px, 3.4vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.trust__title-line {
  position: relative;
  top: 4px;
  width: clamp(76px, 6vw, 110px);
  height: 2px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-accent);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 26px;
}

.trust-card {
  min-height: 258px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 32px 34px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.trust-card__icon {
  display: block;
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.trust-card__title {
  margin: 34px 0 0;
  color: #111;
  font-size: clamp(17px, 1.3vw, 21px);
  font-weight: 700;
  line-height: 1.18;
}

.trust-card__text {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 400;
  line-height: 1.38;
}

/* Trust scroll animation */

.trust.js-scroll-section .trust__title-row.js-scroll-item,
.trust.js-scroll-section .trust-card.js-scroll-item {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  will-change: opacity, transform;
}

.trust.js-scroll-section.is-visible .trust__title-row.js-scroll-item,
.trust.js-scroll-section.is-visible .trust-card.js-scroll-item {
  opacity: 1;
  transform: translateY(0);
}

.trust.js-scroll-section.is-visible .trust__title-row.js-scroll-item {
  transition-delay: 0.05s;
}

.trust.js-scroll-section.is-visible .trust-card:nth-child(1) {
  transition-delay: 0.12s;
}

.trust.js-scroll-section.is-visible .trust-card:nth-child(2) {
  transition-delay: 0.18s;
}

.trust.js-scroll-section.is-visible .trust-card:nth-child(3) {
  transition-delay: 0.24s;
}

.trust.js-scroll-section.is-visible .trust-card:nth-child(4) {
  transition-delay: 0.30s;
}

.trust.js-scroll-section.is-visible .trust-card:nth-child(5) {
  transition-delay: 0.36s;
}

.trust.js-scroll-section.is-visible .trust-card:nth-child(6) {
  transition-delay: 0.42s;
}

.trust.js-scroll-section.is-visible .trust-card:nth-child(7) {
  transition-delay: 0.48s;
}

.trust.js-scroll-section.is-visible .trust-card:nth-child(8) {
  transition-delay: 0.54s;
}

/* Trust adaptive */

@media (max-width: 1439px) {
  .trust {
    padding: 0 0 40px;
  }

  .trust__grid {
    gap: 26px;
  }

  .trust-card {
    min-height: 240px;
    padding: 36px 28px 30px;
  }

  .trust-card__icon {
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 1199px) {
  .trust__title-row {
    margin-bottom: 38px;
  }

  .trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .trust {
    padding: 0 0 34px;
  }

  .trust__title-row {
    gap: 20px;
    margin-bottom: 28px;
  }

  .trust__title {
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.1;
  }

  .trust__title-line {
    width: 60px;
  }

  .trust__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trust-card {
    min-height: auto;
    padding: 28px 24px 26px;
    border-radius: 16px;
  }

  .trust-card__icon {
    width: 62px;
    height: 62px;
  }

  .trust-card__title {
    margin-top: 24px;
    font-size: 21px;
  }

  .trust-card__text {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .trust__title-row {
    gap: 16px;
  }

  .trust__title-line {
    width: 52px;
  }

  .trust-card {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust.js-scroll-section .trust__title-row.js-scroll-item,
  .trust.js-scroll-section .trust-card.js-scroll-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* REVIEWS */

.reviews {
  padding: 0 0 45px;
  background: var(--color-bg);
}

.reviews__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}

.reviews__title-row {
  display: flex;
  align-items: center;
  gap: 26px;
}

.reviews__title {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(42px, 3.2vw, 56px);
  font-weight: 700;
}

.reviews__title-line {
  width: clamp(76px, 6vw, 110px);
  height: 2px;
  background: var(--color-accent);
}

.reviews__controls {
  display: flex;
  gap: 10px;
}

.reviews__btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  font-size: 22px;
  color: var(--color-text);
}

.reviews__slider {
  overflow: hidden;
}

.reviews__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 72px) / 4);
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  min-height: 220px;
}

.review-card__name {
  font-weight: 700;
  margin-bottom: 8px;
}

.review-card__stars {
  color: #f5b301;
  margin-bottom: 14px;
}

.review-card__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
}

/* dots */

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
}

.reviews__dot.is-active {
  background: var(--color-accent);
}

.reviews__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* кнопки внешних отзывов */
.reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.06);

  text-decoration: none;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.reviews__link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.reviews__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.10);
}

/* adaptive */

@media (max-width: 1199px) {
  .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .review-card {
    flex: 0 0 100%;
  }

  .reviews__actions {
    justify-content: flex-start;
  }

  .reviews__link span {
    display: none; /* на мобиле оставляем только иконки */
  }

  .reviews__link {
    padding: 10px;
  }

  .reviews__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .reviews__title-row {
    width: 100%;
  }

  /* блок управления (стрелки + внешние ссылки) */
  .reviews__controls {
    display: flex;
    gap: 10px;
  }

  .reviews__actions {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
  }

  /* ВАЖНО: переносим на 2 строки через flex-wrap контейнера */
  .reviews__controls-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
}

@media (max-width: 420px) {

  .reviews__controls {
    gap: 8px;
  }

  .reviews__actions {
    gap: 8px;
  }

  .reviews__btn {
    width: 40px;
    height: 40px;
  }

  .reviews__link {
    width: 40px;
    height: 40px;
  }
}

.footer {
  position: relative;
  background: linear-gradient(180deg, #111 0%, #0b0b0b 100%);
  color: #fff;
  padding: 60px 0 40px;
  margin-bottom: -80px;
  z-index: 10;
  overflow: hidden;
}

/* =========================
   CONTAINER (ВАЖНО!)
========================= */

.footer .container {
  max-width: 1620px; /* привязка к сайту */
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* =========================
   TOP SECTION
========================= */

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: 100%;
}

/* логотип */
.footer__logo {
  padding-right: 60px;
}

.footer__logo img {
  width: 180px;
  height: auto;
}

/* меню */
.footer__nav {
  display: flex;
  justify-content: space-between; /* растягиваем по ширине */
  align-items: center;
  width: 100%;
  gap: 0;
}

.footer__nav a {
  color: #fff;
  text-decoration: none;

  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.2px;

  opacity: 0.85;
  transition: 0.2s ease;
  white-space: nowrap;
}

.footer__nav a:hover {
  opacity: 1;
  color: var(--color-accent);
}

/* =========================
   DIVIDER (GLOW)
========================= */

.footer__divider {
  position: relative;
  height: 1px;
  margin: 28px 0;
  background: rgba(255, 255, 255, 0.08);
}

.footer__divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(25, 137, 3, 0.6),
    rgba(25, 137, 3, 0.2),
    transparent
  );
  filter: blur(0.3px);
}

.footer__divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -2px;
  transform: translateX(-50%);
  width: 40%;
  height: 4px;
  background: rgba(25, 137, 3, 0.15);
  filter: blur(6px);
}

/* =========================
   BOTTOM GRID
========================= */

.footer__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* колонки */
.footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 10px 30px;
}

/* разделители */
.footer__col--border {
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

/* строки */
.footer__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

/* иконки */
.footer__row img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

/* текст */
.footer__col p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.88;
  text-align: left;
}

/* акценты */
.footer__strong {
  font-weight: 700;
  color: #fff;
}

.footer__muted {
  font-size: 14px;
  opacity: 0.65;
}

/* =========================
   HOVER
========================= */

.footer__col:hover {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: 0.25s ease;
}

/* =========================
   ANIMATION
========================= */

.footer.js-scroll-section .js-scroll-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.footer.js-scroll-section.is-visible .js-scroll-item {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   FOOTER COPYRIGHT
========================= */

.footer__divider--bottom {
  margin: 30px 0 18px;
}

.footer__copyright {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.footer__copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-align: right;
}

.footer__copyright a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__copyright a:hover,
.footer__copyright a:focus-visible {
  color: var(--color-accent);
}

/* =========================
   ADAPTIVE
========================= */

@media (max-width: 1023px) {
  .footer__bottom {
    grid-template-columns: 1fr;
  }

  .footer__col {
    padding: 16px 0;
  }

  .footer__col--border {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__logo {
    padding-right: 0;
  }

  .footer__nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .footer__nav {
    display: none;
  }

  .footer__copyright {
    justify-content: flex-start;
  }
  
  .footer__copyright p {
    text-align: left;
    font-size: 13px;
  }
}

/* =========================
   CONTACT MODAL
========================= */

.header-cta,
.mobile-menu__cta {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.mobile-menu__cta {
  width: 100%;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 14, 0.62);
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* старые версии Edge */
  padding: 38px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 137, 3, 0.12), transparent 32%),
    #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
}

.contact-modal__dialog::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera, новый Edge */
}

.contact-modal.is-open .contact-modal__dialog {
  transform: translateY(0) scale(1);
}

.contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 12px;
  background: rgba(25, 137, 3, 0.08);
  color: var(--color-accent);

  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;

  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-modal__close:hover,
.contact-modal__close:focus-visible {
  background: rgba(25, 137, 3, 0.14);
  transform: scale(1.04);
}

.contact-modal__header {
  max-width: 500px;
  margin-bottom: 28px;
}

.contact-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(25, 137, 3, 0.1);
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 700;
}

.contact-modal__title {
  margin: 18px 0 0;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.contact-modal__text {
  margin: 16px 0 0;
  color: #4a4a4a;
  font-size: 17px;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form__label {
  color: #242424;
  font-size: 15px;
  font-weight: 700;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  border: 1px solid rgba(31, 31, 31, 0.12);
  border-radius: 14px;
  background: #f8f5f2;
  color: var(--color-text);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form__input {
  height: 56px;
  padding: 0 16px;
}

.contact-form__textarea {
  min-height: 130px;
  resize: vertical;
  padding: 15px 16px;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: rgba(25, 137, 3, 0.65);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(25, 137, 3, 0.1);
}

.contact-form__field.is-error .contact-form__input,
.contact-form__field.is-error .contact-form__textarea {
  border-color: #d93025;
  background: #fff;
}

.contact-form__error {
  min-height: 18px;
  color: #d93025;
  font-size: 13px;
  line-height: 1.35;
}

.contact-form__hint {
  margin: -2px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-form__agreements {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: 14px;
  background: #f8f5f2;
}

.contact-form__checkbox {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  color: #3f3f3f;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}

.contact-form__checkbox-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-form__checkbox-control {
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 1px solid rgba(31, 31, 31, 0.25);
  border-radius: 6px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form__checkbox-control::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-form__checkbox-input:checked + .contact-form__checkbox-control {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.contact-form__checkbox-input:checked
  + .contact-form__checkbox-control::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.contact-form__checkbox-input:focus-visible
  + .contact-form__checkbox-control {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(25, 137, 3, 0.12);
}

.contact-form__checkbox:hover .contact-form__checkbox-control {
  border-color: var(--color-accent);
}

.contact-form__checkbox-text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form__checkbox-text a:hover {
  text-decoration: none;
}

.contact-form__agreements.is-error {
  border-color: #d93025;
  background: rgba(217, 48, 37, 0.04);
}

.contact-form__agreements.is-error .contact-form__checkbox-control {
  border-color: #d93025;
}

.contact-form__agreement-error {
  display: none;
  color: #d93025;
  font-size: 13px;
  line-height: 1.35;
}

.contact-form__agreement-error:not(:empty) {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.contact-form__submit {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: var(--color-accent);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(25, 137, 3, 0.18);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: #147202;
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(25, 137, 3, 0.24);
}

.contact-form__success {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(25, 137, 3, 0.1);
  color: #147202;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

body.is-contact-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .contact-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .contact-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 30px 20px 22px;
    border-radius: 20px;
  }

  .contact-modal__close {
    top: 14px;
    right: 14px;
  }

  .contact-modal__header {
    padding-right: 44px;
    margin-bottom: 24px;
  }

  .contact-modal__text {
    font-size: 15.5px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form__input {
    height: 54px;
  }

  .contact-form__submit {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .contact-modal {
    padding: 8px;
  }

  .contact-modal__dialog {
    padding: 28px 16px 18px;
    border-radius: 18px;
  }

  .contact-modal__title {
    font-size: 30px;
  }

  .contact-form__agreements {
    padding: 14px;
  }
  
  .contact-form__checkbox {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-modal,
  .contact-modal__dialog,
  .contact-modal__close,
  .contact-form__submit {
    transition: none;
  }
}

/* Скрытое поле против спам-ботов */
.contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Состояние кнопки во время отправки */
.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
  box-shadow: none;
}

/* Сообщение об ошибке отправки */
.contact-form__success.is-error {
  color: #b42318;
  background-color: #fef3f2;
  border-color: #fecdca;
}