/* =========================================================
   Monterra — стили блоков главной
   Подключается на главной и страницах с шорткодами темы.
   Зависит от theme.css (переменные, базовые кнопки).

   Секции:
   1. Hero (BOROWAY)
   2. Benefits (4 карточки)
   3. Promo light (база ZINWAY/Косайд)
   4. Promo Косайд (модификатор)
   5. Categories (табы «Выбор по потребности»)
   6. Season banner (флеш-баннер «Сезон 2025»)
   7. About (О компании)
   8. FAQ teaser
   ========================================================= */


/* ╔══════════════════════════════════════════════════════
   1. HERO
   ╚══════════════════════════════════════════════════════ */
.mtr-hero {
  position: relative;
  background: var(--mtr-navy-2);
}
.mtr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55,193,89,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,193,89,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}
.mtr-hero__bg-label-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.mtr-hero__glow-l {
  position: absolute;
  left: 0; top: -80px;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at left center, rgba(20,49,77,.7) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.mtr-hero__glow-r {
  position: absolute;
  right: 0; bottom: -60px;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at right bottom, rgba(55,193,89,.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.mtr-hero__bg-label {
  position: absolute;
  left: -8px; top: 50%;
  transform: translateY(-58%);
  font-family: var(--mtr-fh);
  font-size: clamp(80px, 12vw, 150px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,.022);
  white-space: nowrap;
  pointer-events: none; user-select: none;
  line-height: 1; z-index: 0;
}

.mtr-hero__inner {
  position: relative; z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  min-height: 600px;
  gap: 0;
}

/* Левая колонка */
.mtr-hero__content {
  flex: 1 1 0;
  max-width: 600px;
  padding: 64px 48px 64px 0;
}
.mtr-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mtr-fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mtr-green);
  margin-bottom: 22px;
  opacity: 0;
  animation: mtrFadeUp .55s ease forwards .08s;
}
.mtr-hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1.5px;
  background: var(--mtr-green);
}
.mtr-hero__headline {
  font-family: var(--mtr-fh);
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--mtr-white);
  margin: 0 0 20px;
  opacity: 0;
  animation: mtrFadeUp .6s ease forwards .18s;
}
.mtr-hero__headline em { font-style: normal; color: var(--mtr-green); }

.mtr-hero__sub {
  font-family: var(--mtr-fb);
  font-size: 15px;
  line-height: 1.72;
  color: var(--mtr-muted);
  max-width: 440px;
  margin: 0 0 32px;
  opacity: 0;
  animation: mtrFadeUp .6s ease forwards .3s;
}
.mtr-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  opacity: 0;
  animation: mtrFadeUp .6s ease forwards .42s;
}
.mtr-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mtr-fb);
  font-size: 13px;
  font-weight: 500;
  color: var(--mtr-muted);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 7px 15px;
}
.mtr-hero__pill::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mtr-green);
  flex-shrink: 0;
}
.mtr-hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: mtrFadeUp .6s ease forwards .54s;
}
.mtr-hero__ctas .mtr-btn-primary svg { transition: transform .2s; }
.mtr-hero__ctas .mtr-btn-primary:hover svg { transform: translateX(3px); }

/* Правая колонка — фото */
.mtr-hero__visual {
  flex: 0 0 480px;
  width: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  opacity: 0;
  animation: mtrFadeIn .9s ease forwards .25s;
  margin-right: -60px;
}
.mtr-hero__ring {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(55,193,89,.11);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.mtr-hero__ring::after {
  content: '';
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px solid rgba(55,193,89,.06);
}
.mtr-hero__img-wrap {
  position: relative; z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mtr-hero__img-wrap img {
  max-width: 420px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.55)) drop-shadow(0 0 60px rgba(55,193,89,.15));
  animation: mtrFloat 4.2s ease-in-out infinite;
}

/* Плавающие бейджи. По правке клиента — сдвинуты дальше за пределы круга,
   чтобы не перекрывали сам флакон (-44px вместо -12px). */
.mtr-badge {
  position: absolute;
  background: rgba(10,26,39,.94);
  border: 1px solid rgba(55,193,89,.18);
  backdrop-filter: blur(14px);
  border-radius: 10px;
  padding: 11px 15px;
  z-index: 3;
}
.mtr-badge--1 { bottom: 12%; left: -44px; animation: mtrFloat2 5s ease-in-out infinite; }
.mtr-badge--2 { top: 6%; right: -60px; animation: mtrFloat2 5.5s ease-in-out infinite .8s; max-width: 230px; }
.mtr-badge__label {
  font-family: var(--mtr-fb);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mtr-muted); margin-bottom: 3px;
}
.mtr-badge__val {
  font-family: var(--mtr-fh);
  font-size: 15px; font-weight: 600;
  color: var(--mtr-white); white-space: nowrap;
  line-height: 1.25;
}
/* Многострочный val (например, длинный состав Косайда) */
.mtr-badge__val br + * { white-space: nowrap; }
.mtr-badge--2 .mtr-badge__val { white-space: normal; font-size: 14px; }
.mtr-badge__val span { color: var(--mtr-green); }

.mtr-hero__prod-name {
  position: absolute;
  bottom: 16px; right: 8px;
  font-family: var(--mtr-fh);
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(159,181,199,.28);
  writing-mode: vertical-lr;
  z-index: 3;
}

@keyframes mtrFloat2 {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

@media (max-width: 1100px) {
  .mtr-hero__inner { padding: 0 40px; }
  .mtr-hero__visual { flex: 0 0 400px; width: 400px; margin-right: -40px; }
  .mtr-hero__img-wrap img { max-width: 360px; }
  .mtr-badge--1 { left: -28px; }
  .mtr-badge--2 { right: -28px; }
}
@media (max-width: 900px) {
  .mtr-hero__inner {
    flex-direction: column;
    padding: 40px 24px 0;
    gap: 0;
    align-items: flex-start;
    min-height: auto;
  }
  .mtr-hero__content { padding: 0 0 24px; max-width: 100%; }
  .mtr-hero__visual {
    flex: 0 0 auto;
    width: 100%;
    min-height: 300px;
    margin-right: 0;
    justify-content: center;
  }
  .mtr-hero__img-wrap img { max-width: 260px; }
  .mtr-badge--1 { left: 8px; }
  .mtr-badge--2 { right: 8px; }
}
@media (max-width: 540px) {
  .mtr-hero__inner { padding: 32px 16px 0; }
  .mtr-hero__headline { font-size: 22px; }
  .mtr-hero__img-wrap img { max-width: 200px; }
  .mtr-badge { display: none; }
}


/* ╔══════════════════════════════════════════════════════
   2. BENEFITS
   ╚══════════════════════════════════════════════════════ */
.mtr-benefits {
  background: var(--mtr-navy);
  border-top: 1px solid var(--mtr-border);
  position: relative;
  z-index: 2;
}
.mtr-benefits__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.mtr-benefit {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 20px;
  border-right: 1px solid var(--mtr-border);
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
  border-top: none !important;
  color: inherit !important;
  transition: background .18s;
  position: relative;
}
.mtr-benefit:first-child { border-left: none !important; padding-left: 0 !important; }
.mtr-benefit:last-child { border-right: none !important; }
.mtr-benefit:hover,
.mtr-benefit:focus,
.mtr-benefit:active {
  background: rgba(55,193,89,.03);
  outline: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
  text-decoration: none !important;
  color: inherit !important;
}
.mtr-benefit::before {
  content: '';
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 2px;
  background: var(--mtr-green);
  border-radius: 2px;
  opacity: 0;
  transition: opacity .2s;
}
.mtr-benefit:first-child::before { display: none; }
.mtr-benefit:hover::before { opacity: 1; }

.mtr-benefit__icon {
  width: 64px; height: 64px;
  min-width: 64px;
  border-radius: 14px;
  background: rgba(55,193,89,.1);
  border: 1px solid rgba(55,193,89,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s, background .2s;
}
.mtr-benefit__icon > svg { width: 40px !important; height: 40px !important; }
.mtr-benefit:hover .mtr-benefit__icon {
  transform: scale(1.06);
  background: rgba(55,193,89,.17);
}
.mtr-benefit__body { flex: 1; min-width: 0; }
.mtr-benefit__title {
  font-family: var(--mtr-fh);
  font-size: 12px;
  font-weight: 600;
  color: var(--mtr-white);
  line-height: 1.3;
  margin-bottom: 6px;
}
.mtr-benefit__desc {
  font-family: var(--mtr-fb);
  font-size: 12px;
  font-weight: 400;
  color: var(--mtr-muted);
  line-height: 1.55;
}
.mtr-benefit__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mtr-fb);
  font-size: 11px;
  font-weight: 600;
  color: var(--mtr-green) !important;
  margin-top: 8px;
  opacity: 0;
  transition: opacity .18s;
}
.mtr-benefit__link svg { width: 12px !important; height: 12px !important; transition: transform .18s; }
.mtr-benefit:hover .mtr-benefit__link { opacity: 1; }
.mtr-benefit:hover .mtr-benefit__link svg { transform: translateX(3px); }

@media (max-width: 900px) {
  .mtr-benefits__inner { grid-template-columns: 1fr 1fr; padding: 0 10px; }
  .mtr-benefit { border-right: none; border-bottom: 1px solid var(--mtr-border); padding: 20px 8px; }
  .mtr-benefit:first-child { padding-left: 8px !important; }
  .mtr-benefit:nth-child(2n) { padding-left: 8px; border-left: 1px solid var(--mtr-border); }
  .mtr-benefit::before { display: none; }
}
@media (max-width: 540px) {
  .mtr-benefits__inner { grid-template-columns: 1fr; padding: 0 10px; }
  .mtr-benefit:nth-child(2n) { padding-left: 8px; border-left: none; }
  .mtr-benefit:first-child { padding-left: 8px !important; }
}


/* ╔══════════════════════════════════════════════════════
   3. PROMO LIGHT (база ZINWAY и Косайд)
   ╚══════════════════════════════════════════════════════ */
.mtr-promo-light {
  --pl-bg:       #ffffff;
  --pl-bg2:      #f4f7f4;
  --pl-text:     #0d1f2d;
  --pl-muted:    #5a7080;
  --pl-border:   rgba(13,31,45,0.08);
  --pl-green:    #37c159;
  --pl-green-dk: #2ca34a;

  background: var(--pl-bg);
  position: relative;
}
.mtr-promo-light::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--pl-green) 50%, transparent 100%);
  z-index: 1;
}
.mtr-promo-light__bg-label-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.mtr-promo-light__bg-label {
  position: absolute;
  right: -10px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--mtr-fh);
  font-size: clamp(80px, 11vw, 140px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgba(13,31,45,0.04);
  white-space: nowrap;
  pointer-events: none; user-select: none;
  line-height: 1;
}
.mtr-promo-light__inner {
  position: relative; z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  min-height: 540px;
  gap: 0;
}
.mtr-promo-light__visual {
  flex: 0 0 460px;
  width: 460px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  margin-left: -60px;
}
.mtr-promo-light__visual img {
  max-width: 380px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(13,31,45,.12));
  animation: mtrFloat 4.5s ease-in-out infinite;
}

/* Плавающие бейджи на светлом.
   width: max-content в пределах max-width: 200px — плашка по содержимому,
   но если текст длинный (например «ВДГ водно-дисперг. гранулы»),
   автоматически переносится в 2 строки и не вылезает за края. */
.mtr-promo-light__badge {
  position: absolute;
  width: max-content;
  max-width: 200px;
  background: #ffffff;
  border: 1px solid var(--pl-border);
  border-radius: 10px;
  padding: 11px 15px;
  z-index: 3;
  box-shadow: 0 18px 40px rgba(13,31,45,.08);
  box-sizing: border-box;
}
.mtr-promo-light__badge--1 { bottom: 14%; left: -16px;  animation: mtrFloat2 5s   ease-in-out infinite;     }
.mtr-promo-light__badge--2 { top: 16%;    right: -16px; animation: mtrFloat2 5.5s ease-in-out infinite .8s; }
.mtr-promo-light__badge-label {
  font-family: var(--mtr-fb);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pl-muted); margin-bottom: 4px;
  /* white-space: normal — позволяет переноситься длинному тексту вроде «Препаративная форма» */
  white-space: normal;
  line-height: 1.3;
}
.mtr-promo-light__badge-val {
  font-family: var(--mtr-fh);
  font-size: 14px; font-weight: 600;
  color: var(--pl-text);
  white-space: normal;
  line-height: 1.3;
}
.mtr-promo-light__badge-val span { color: var(--pl-green); }

.mtr-promo-light__content {
  flex: 1 1 0;
  max-width: 620px;
  padding: 64px 0 64px 48px;
}
.mtr-promo-light__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mtr-fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pl-green);
  margin-bottom: 18px;
}
.mtr-promo-light__eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1.5px;
  background: var(--pl-green);
}
.mtr-promo-light__headline {
  font-family: var(--mtr-fh);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--pl-text);
  margin: 0 0 16px;
}
.mtr-promo-light__headline em {
  font-style: normal;
  color: var(--pl-green);
}
.mtr-promo-light__sub {
  font-family: var(--mtr-fb);
  font-size: 15px;
  line-height: 1.7;
  color: var(--pl-muted);
  margin: 0 0 28px;
  max-width: 540px;
}

/* Spec-карточки. По правке клиента — символ внутри увеличен (28→34px). */
.mtr-promo-light__specs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.mtr-promo-light__spec {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pl-bg2);
  border: 1px solid var(--pl-border);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 145px;
}
.mtr-promo-light__spec-symbol {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(55,193,89,.1);
  border: 1px solid rgba(55,193,89,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mtr-fh);
  font-size: 16px;
  font-weight: 700;
  color: var(--pl-green);
  flex-shrink: 0;
}
.mtr-promo-light__spec-text {
  font-family: var(--mtr-fb);
  font-size: 12px;
  line-height: 1.4;
  color: var(--pl-muted);
}
.mtr-promo-light__spec-text strong {
  display: block;
  font-family: var(--mtr-fh);
  font-size: 13px;
  color: var(--pl-text);
  font-weight: 600;
  margin-bottom: 2px;
}

.mtr-promo-light__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .mtr-promo-light__inner { padding: 0 40px; }
  .mtr-promo-light__visual { flex: 0 0 380px; width: 380px; margin-left: -40px; }
  .mtr-promo-light__visual img { max-width: 320px; }
  .mtr-promo-light__content { padding-left: 32px; }
}
@media (max-width: 900px) {
  .mtr-promo-light__inner {
    flex-direction: column;
    padding: 40px 24px;
    align-items: stretch;
    min-height: auto;
    gap: 24px;
  }
  /* Фото — СВЕРХУ, контент с кнопками — СНИЗУ */
  .mtr-promo-light__visual {
    flex: 0 0 auto;
    width: 100%;
    min-height: 260px;
    margin-left: 0;
    margin-right: 0;
    order: 1;
  }
  .mtr-promo-light__visual img { max-width: 240px; }
  .mtr-promo-light__content {
    padding: 0;
    max-width: 100%;
    order: 2;
  }
  .mtr-promo-light__bg-label { font-size: clamp(60px, 14vw, 100px); }
  /* Бейджи скрываем заранее — на промежуточных мобильных они вылезали за экран */
  .mtr-promo-light__badge { display: none; }
  /* Spec-карточки — сразу в один столбец, чтобы текст не обрезался */
  .mtr-promo-light__specs { gap: 10px; }
  .mtr-promo-light__spec {
    min-width: 0;
    flex: 1 1 100%;
    width: 100%;
  }
  /* CTA-кнопки на мобиле — на всю ширину для удобства тапа */
  .mtr-promo-light__ctas { width: 100%; }
  .mtr-promo-light__ctas .mtr-btn-primary,
  .mtr-promo-light__ctas .mtr-btn-ghost,
  .mtr-promo-light__ctas .mtr-btn-ghost--light { flex: 1 1 100%; justify-content: center; }
}
@media (max-width: 540px) {
  .mtr-promo-light__inner { padding: 32px 16px; }
}


/* ╔══════════════════════════════════════════════════════
   4. PROMO КОСАЙД (модификатор: зеркало + другой акцент)
   ╚══════════════════════════════════════════════════════ */
.mtr-promo-kocide { background: var(--mtr-bg-light-3); }
.mtr-promo-kocide .mtr-promo-light__inner { flex-direction: row-reverse; }
.mtr-promo-kocide .mtr-promo-light__visual { margin-left: 0; margin-right: -60px; }
.mtr-promo-kocide .mtr-promo-light__content { padding: 64px 48px 64px 0; }
.mtr-promo-kocide .mtr-promo-light__bg-label { right: auto; left: -10px; }

/* Тёмно-зелёный акцент под медный фунгицид */
.mtr-promo-kocide .mtr-promo-light__eyebrow,
.mtr-promo-kocide .mtr-promo-light__headline em,
.mtr-promo-kocide .mtr-promo-light__spec-symbol,
.mtr-promo-kocide .mtr-promo-light__badge-val span { color: var(--mtr-green-2); }
.mtr-promo-kocide .mtr-promo-light__eyebrow::before { background: var(--mtr-green-2); }
.mtr-promo-kocide .mtr-promo-light__spec-symbol {
  background: rgba(26,122,74,.08);
  border-color: rgba(26,122,74,.2);
}
.mtr-promo-kocide::before {
  background: linear-gradient(90deg, transparent 0%, var(--mtr-green-2) 50%, transparent 100%);
}
.mtr-promo-kocide .mtr-promo-light__badge--1 { left: auto; right: -16px; }
.mtr-promo-kocide .mtr-promo-light__badge--2 { right: auto; left: -16px; }

@media (max-width: 1100px) {
  .mtr-promo-kocide .mtr-promo-light__visual { margin-left: 0; margin-right: -40px; }
  .mtr-promo-kocide .mtr-promo-light__content { padding-right: 32px; padding-left: 0; }
}
@media (max-width: 900px) {
  /* Зеркало схлопываем в обычный column — фото всё равно order: 1 (сверху),
     контент order: 2. Унаследуется от .mtr-promo-light выше. */
  .mtr-promo-kocide .mtr-promo-light__inner { flex-direction: column; }
  .mtr-promo-kocide .mtr-promo-light__visual { margin-right: 0; }
  .mtr-promo-kocide .mtr-promo-light__content { padding: 0; }
}


/* ╔══════════════════════════════════════════════════════
   5. CATEGORIES (табы «Выбор по потребности»)
   ╚══════════════════════════════════════════════════════ */
.mtr-cats {
  background: var(--mtr-navy);
  position: relative;
  padding: 80px 0 72px;
}
.mtr-cats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55,193,89,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,193,89,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.mtr-cats__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.mtr-cats__header { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.mtr-cats__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mtr-fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mtr-green);
  margin-bottom: 14px;
}
.mtr-cats__eyebrow::before,
.mtr-cats__eyebrow::after {
  content: '';
  width: 22px; height: 1.5px;
  background: var(--mtr-green);
}
.mtr-cats__title {
  font-family: var(--mtr-fh);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mtr-white);
  margin: 0 0 14px;
}
.mtr-cats__title em { font-style: normal; color: var(--mtr-green); }
.mtr-cats__sub {
  font-family: var(--mtr-fb);
  font-size: 15px;
  line-height: 1.7;
  color: var(--mtr-muted);
  margin: 0;
}

/* Табы */
.mtr-cats__tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
  padding: 6px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--mtr-border);
  border-radius: 14px;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.mtr-cats__tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  background: transparent;
  border: none;
  border-radius: 10px;
  font-family: var(--mtr-fb);
  font-size: 13px;
  font-weight: 500;
  color: var(--mtr-muted);
  cursor: pointer;
  transition: color .18s, background .18s;
  white-space: nowrap;
  outline: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
}
.mtr-cats__tab:hover { color: var(--mtr-white); }
.mtr-cats__tab.active {
  background: var(--mtr-green);
  color: #fff;
}
.mtr-cats__tab-icon { font-size: 16px; }

/* Панели */
.mtr-cats__panels { position: relative; }
.mtr-cats__panel { display: none; }
.mtr-cats__panel.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  animation: mtrFadeUp .35s ease;
}
.mtr-cats__panel-empty {
  display: none;
}
.mtr-cats__panel.active.mtr-cats__panel--empty {
  display: block;
  text-align: center;
  padding: 48px 24px;
  background: rgba(255,255,255,.02);
  border: 1px dashed var(--mtr-border);
  border-radius: 14px;
}
.mtr-cats__panel--empty .mtr-cats__empty-text {
  font-family: var(--mtr-fb);
  font-size: 14px;
  color: var(--mtr-muted);
  line-height: 1.6;
}

/* Карточка товара в табе */
.mtr-cats__card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--mtr-border);
  border-radius: 16px;
  padding: 22px 22px 20px;
  text-decoration: none !important;
  border-bottom: 1px solid var(--mtr-border) !important;
  color: inherit !important;
  transition: transform .2s, border-color .2s, background .2s;
  position: relative;
  overflow: hidden;
}
.mtr-cats__card:hover {
  transform: translateY(-3px);
  border-color: rgba(55,193,89,.3) !important;
  background: rgba(55,193,89,.04);
}
.mtr-cats__card-img {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.mtr-cats__card-img img {
  max-height: 170px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.mtr-cats__card-tag {
  font-family: var(--mtr-fb);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mtr-green);
  margin-bottom: 6px;
}
.mtr-cats__card-title {
  font-family: var(--mtr-fh);
  font-size: 15px;
  font-weight: 600;
  color: var(--mtr-white);
  line-height: 1.25;
  margin: 0 0 8px;
}
.mtr-cats__card-desc {
  font-family: var(--mtr-fb);
  font-size: 12px;
  line-height: 1.55;
  color: var(--mtr-muted);
  margin: 0 0 14px;
}
.mtr-cats__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mtr-fb);
  font-size: 12px;
  font-weight: 600;
  color: var(--mtr-green) !important;
  margin-top: auto;
}
.mtr-cats__card-link svg { width: 12px; height: 12px; transition: transform .18s; }
.mtr-cats__card:hover .mtr-cats__card-link svg { transform: translateX(3px); }

@media (max-width: 900px) {
  .mtr-cats { padding: 56px 0 48px; }
  .mtr-cats__panel.active { grid-template-columns: 1fr 1fr; gap: 14px; }
  .mtr-cats__tabs { padding: 4px; }
  .mtr-cats__tab { padding: 9px 14px; font-size: 12px; }
}
@media (max-width: 540px) {
  .mtr-cats__panel.active { grid-template-columns: 1fr; }
  .mtr-cats__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    max-width: 100%;
  }
  .mtr-cats__tab { flex-shrink: 0; }
}


/* ╔══════════════════════════════════════════════════════
   6. SEASON BANNER (флеш-баннер)
   ╚══════════════════════════════════════════════════════ */
.mtr-season {
  position: relative;
  background: var(--mtr-navy-2);
  padding: 110px 0 100px;
  overflow: hidden;
  text-align: center;
}
.mtr-season::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(55,193,89,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(20,49,77,.6) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.mtr-season::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55,193,89,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,193,89,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}
.mtr-season__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.mtr-season__big {
  font-family: var(--mtr-fh);
  font-size: clamp(48px, 9vw, 130px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: .95;
  background: linear-gradient(135deg, #ffffff 0%, var(--mtr-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0 0 24px;
}
.mtr-season__sub {
  font-family: var(--mtr-fb);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
  color: var(--mtr-muted);
  max-width: 620px;
  margin: 0 auto 32px;
}
.mtr-season__cta {
  display: inline-flex;
}


/* ╔══════════════════════════════════════════════════════
   7. ABOUT (О компании)
   ╚══════════════════════════════════════════════════════ */
.mtr-about {
  background: var(--mtr-bg-light);
  padding: 90px 0;
  position: relative;
}
.mtr-about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.mtr-about__top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 56px;
}
.mtr-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mtr-fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mtr-green);
  margin-bottom: 16px;
}
.mtr-about__eyebrow::before {
  content: '';
  width: 22px; height: 1.5px;
  background: var(--mtr-green);
}
.mtr-about__title {
  font-family: var(--mtr-fh);
  font-size: clamp(22px, 2.6vw, 36px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--mtr-text-dark);
  margin: 0;
}
.mtr-about__title em { font-style: normal; color: var(--mtr-green); }
.mtr-about__lead {
  font-family: var(--mtr-fb);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--mtr-muted-dk);
  margin: 0 0 16px;
}
.mtr-about__lead-strong {
  font-family: var(--mtr-fh);
  font-size: 18px;
  font-weight: 600;
  color: var(--mtr-text-dark);
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

.mtr-about__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}
.mtr-about__pillar {
  background: var(--mtr-bg-light-2);
  border: 1px solid var(--mtr-border-lt);
  border-radius: 14px;
  padding: 26px 22px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.mtr-about__pillar:hover {
  border-color: rgba(55,193,89,.4);
  transform: translateY(-2px);
}
.mtr-about__pillar-num {
  font-family: var(--mtr-fh);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--mtr-green);
  margin-bottom: 12px;
  display: block;
}
.mtr-about__pillar-title {
  font-family: var(--mtr-fh);
  font-size: 16px;
  font-weight: 600;
  color: var(--mtr-text-dark);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.mtr-about__pillar-desc {
  font-family: var(--mtr-fb);
  font-size: 13px;
  line-height: 1.55;
  color: var(--mtr-muted-dk);
  margin: 0;
}

.mtr-about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  background: var(--mtr-text-dark);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.mtr-about__stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55,193,89,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55,193,89,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.mtr-about__stat {
  position: relative;
  z-index: 2;
  text-align: center;
}
.mtr-about__stat-num {
  font-family: var(--mtr-fh);
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 700;
  color: var(--mtr-green);
  line-height: 1;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.mtr-about__stat-label {
  font-family: var(--mtr-fb);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mtr-muted);
}

@media (max-width: 1100px) {
  .mtr-about__pillars { grid-template-columns: 1fr 1fr; }
  .mtr-about__top { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 900px) {
  .mtr-about { padding: 60px 0; }
  .mtr-about__stats { grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px; }
}
@media (max-width: 540px) {
  .mtr-about__pillars { grid-template-columns: 1fr; }
}


/* ╔══════════════════════════════════════════════════════
   8. FAQ TEASER
   ╚══════════════════════════════════════════════════════ */
.mtr-faq-teaser {
  background: var(--mtr-bg-light-2);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.mtr-faq-teaser__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.mtr-faq-teaser__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--mtr-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 18px 40px rgba(55,193,89,.25);
}
.mtr-faq-teaser__icon svg { width: 32px; height: 32px; stroke: #fff; }
.mtr-faq-teaser__title {
  font-family: var(--mtr-fh);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--mtr-text-dark);
  margin: 0 0 14px;
}
.mtr-faq-teaser__sub {
  font-family: var(--mtr-fb);
  font-size: 15px;
  line-height: 1.7;
  color: var(--mtr-muted-dk);
  margin: 0 0 28px;
}
