.site-header {
  width: 100%;
  background: #f8f4ef;
}

.site-header__inner {
  max-width: 1280px;
  height: 96px;
  margin: 0 auto;
  padding: 0 80px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-header__logo {
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #8fa600;
  text-decoration: none;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-header__link {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  color: #1f1f1f;
  text-decoration: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header__lang {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header__lang-link,
.site-header__lang-separator {
  font-size: 12px;
  line-height: 1;
  color: #1f1f1f;
  text-decoration: none;
}

.site-header__lang-link--active {
  font-weight: 600;
}

.site-header__cta {
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  color: #1f1f1f;
  text-decoration: none;
  border-bottom: 1px solid #b89448;
  padding-bottom: 6px;
}

.benefits {
  background: #fbf8f4;
  padding: 120px 0;
}

.benefits__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;

  display: grid;
  grid-template-columns: 32% 68%;
  gap: 80px;
}

.benefits__eyebrow {
  display: block;
  margin-bottom: 24px;

  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #b89448;
}

.benefits__title {
  margin: 0;

  font-size: 34px;
  line-height: 1.18;
  font-weight: 400;
  color: #1f1f1f;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.benefits__card {
  padding-left: 32px;
  border-left: 1px solid rgba(184, 148, 72, 0.25);
}

.benefits__card h3 {
  margin: 0 0 16px;

  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1f1f1f;
}

.benefits__card p {
  margin: 0;

  font-size: 15px;
  line-height: 1.55;
  color: #4a4a4a;
}

@media (max-width: 768px) {
  .hero__container,
  .benefits__container {
    padding: 0 24px;
  }

  .hero__container {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;

    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__visual {
    height: 420px;
  }

  .benefits {
    padding: 80px 0;
  }

  .benefits__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .benefits__card {
    padding-left: 24px;
  }
}

.product {
  background: #f8f4ef;
  padding: 120px 0;
}

.product__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;

  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 96px;
}

.product__visual {
  height: 420px;
  overflow: hidden;
  background: #eee7df;
}

.product__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__eyebrow {
  display: block;
  margin-bottom: 24px;

  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #b89448;
}

.product__title {
  max-width: 560px;
  margin: 0 0 64px;

  font-size: 38px;
  line-height: 1.18;
  font-weight: 400;
  color: #1f1f1f;
}

.product__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(184, 148, 72, 0.25);
}

.product__feature {
  padding: 24px 24px 0;
  border-left: 1px solid rgba(184, 148, 72, 0.25);
}

.product__feature:first-child {
  border-left: none;
  padding-left: 0;
}

.product__feature-label {
  display: block;

  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1f1f1f;
}

.product__feature-value {
  display: block;
  margin-top: 8px;

  font-size: 13px;
  color: #4a4a4a;
}