/* ================================================================
   STOLAB REDESIGN — redesign.css
   Новые компоненты для улучшенного UX главной страницы
   ================================================================ */

/* ---- КНОПКИ ---- */
.sl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none !important;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.sl-btn-primary {
  background: #7e3fc7;
  background: var(--theme-base-color, #7e3fc7);
  color: #fff !important;
  border-color: #7e3fc7;
  border-color: var(--theme-base-color, #7e3fc7);
}
.sl-btn-primary:hover {
  background: #6b34aa;
  border-color: #6b34aa;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(126,63,199,0.35);
}
.sl-btn-outline {
  background: transparent;
  color: #7e3fc7 !important;
  color: var(--theme-base-color, #7e3fc7) !important;
  border-color: #7e3fc7;
  border-color: var(--theme-base-color, #7e3fc7);
}
.sl-btn-outline:hover {
  background: #7e3fc7;
  background: var(--theme-base-color, #7e3fc7);
  color: #fff !important;
}
.sl-btn-white-outline {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.65);
}
.sl-btn-white-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff !important;
}
.sl-btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

/* ---- ЗАГОЛОВКИ СЕКЦИЙ ---- */
.sl-section-header {
  margin-bottom: 32px;
}
.sl-section-title {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  color: var(--white_text_black2, #222);
  margin: 0 0 8px;
  line-height: 1.3;
}
.sl-section-subtitle {
  font-size: 15px;
  color: #666;
  color: var(--basic_text_black, #666);
  margin: 0;
  line-height: 1.6;
}

/* ================================================================
   HERO — первый экран
   ================================================================ */
/* Standard flow: новые секции живут внутри контентной колонки,
   без выхода за пределы right_block */
.sl-hero,
.sl-b2b,
.sl-how,
.sl-industries {
  position: relative;
  left: auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.sl-hero {
  background-color: #3a1870 !important;
  background-image: linear-gradient(135deg, #180a2e 0%, #3a1870 55%, #7e3fc7 100%) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  overflow: hidden;
  display: block;
  z-index: auto;
}

/* template_styles: .maxwidth-theme { background: #fff } — внутри hero даёт белый «лист» и белый текст не виден */
body#main .sl-hero > .maxwidth-theme,
#main .sl-hero > .maxwidth-theme,
.sl-hero > .maxwidth-theme,
.sl-hero > .maxwidth-theme > .inner-theme {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

.sl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: none;
  pointer-events: none;
  opacity: 0;
}
.sl-hero__inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px;
}
.sl-hero__content {
  max-width: 620px;
}
.sl-hero__tag {
  display: inline-block !important;
  background: rgba(255,255,255,0.13) !important;
  color: rgba(255,255,255,0.88) !important;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
}
.sl-hero__title {
  font-size: 40px;
  font-weight: 700;
  color: #fff !important;
  line-height: 1.22;
  margin: 0 0 18px;
}
.sl-hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.65;
  margin: 0 0 30px;
  max-width: 520px;
}
.sl-hero__advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 36px;
}
.sl-hero__adv {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.86) !important;
  font-size: 14px;
  font-weight: 400;
}
.sl-hero__adv-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sl-hero__adv-icon svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}
.sl-hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ================================================================
   B2B QUICK ACTIONS — быстрые сценарии
   ================================================================ */
.sl-b2b {
  padding: 48px 0;
  background: #fff;
  background: var(--black_bg_black, #fff);
  border-bottom: 1px solid #ececec;
  border-bottom-color: var(--stroke_black, #ececec);
}
.sl-b2b__header {
  text-align: center;
  margin-bottom: 28px;
}
.sl-b2b__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7e3fc7;
  color: var(--theme-base-color, #7e3fc7);
  margin-bottom: 8px;
}
.sl-b2b__title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  color: var(--white_text_black2, #222);
  margin: 0;
}
.sl-b2b__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sl-b2b__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  border: 1.5px solid #ececec;
  border-color: var(--stroke_black, #ececec);
  border-radius: 8px;
  background: #fafafa;
  background: var(--darkerblack_bg_black, #fafafa);
  text-decoration: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.sl-b2b__item:hover {
  border-color: #7e3fc7;
  border-color: var(--theme-base-color, #7e3fc7);
  background: #fff;
  background: var(--black_bg_black, #fff);
  box-shadow: 0 4px 20px rgba(126,63,199,0.12);
  transform: translateY(-2px);
}
.sl-b2b__icon {
  width: 44px;
  height: 44px;
  background: #7e3fc71a;
  background: var(--theme-base-opacity-color, #7e3fc71a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sl-b2b__icon svg {
  width: 22px;
  height: 22px;
  fill: #7e3fc7;
  fill: var(--theme-base-color, #7e3fc7);
}
.sl-b2b__item-title {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  color: var(--white_text_black2, #222);
  line-height: 1.3;
}
.sl-b2b__item-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}
.sl-b2b__item-cta {
  font-size: 13px;
  font-weight: 500;
  color: #7e3fc7;
  color: var(--theme-base-color, #7e3fc7);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.sl-b2b__item-cta svg {
  width: 12px;
  height: 12px;
  fill: #7e3fc7;
  fill: var(--theme-base-color, #7e3fc7);
  transition: transform 0.2s ease;
}
.sl-b2b__item:hover .sl-b2b__item-cta svg {
  transform: translateX(3px);
}

/* ================================================================
   INDUSTRY FILTER — по отраслям
   ================================================================ */
.sl-industries {
  padding: 48px 0;
  background: #f5f4f9;
}
.sl-industries__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.sl-industries__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 12px 18px;
  border-radius: 10px;
  background: #fff;
  background: var(--black_bg_black, #fff);
  border: 1.5px solid #e8e6f0;
  text-decoration: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  gap: 10px;
}
.sl-industries__item:hover {
  border-color: #7e3fc7;
  border-color: var(--theme-base-color, #7e3fc7);
  box-shadow: 0 6px 20px rgba(126,63,199,0.12);
  transform: translateY(-3px);
}
.sl-industries__img-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #e8e6f0;
  flex-shrink: 0;
  background: #f0eef8;
}
.sl-industries__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sl-industries__name {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  color: var(--white_text_black, #333);
  line-height: 1.3;
}
.sl-industries__desc {
  font-size: 11px;
  color: #999;
  line-height: 1.4;
  margin: 0;
}

/* ================================================================
   TRUST STATS — блок доверия с цифрами
   ================================================================ */
.sl-trust {
  padding: 56px 0;
  background: #fff;
  background: var(--black_bg_black, #fff);
}
.sl-trust__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.sl-trust__stat {
  text-align: center;
  padding: 28px 16px;
  border-radius: 10px;
  background: #f8f6fc;
  border: 1px solid #ede8f7;
}
.sl-trust__stat-num {
  font-size: 40px;
  font-weight: 700;
  color: #7e3fc7;
  color: var(--theme-base-color, #7e3fc7);
  line-height: 1.1;
  display: block;
}
.sl-trust__stat-label {
  font-size: 14px;
  color: #666;
  color: var(--basic_text_black, #666);
  margin-top: 6px;
  line-height: 1.4;
  display: block;
}
.sl-trust__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid #ececec;
  border-top-color: var(--stroke_black, #ececec);
}
.sl-trust__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sl-trust__feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #7e3fc71a;
  background: var(--theme-base-opacity-color, #7e3fc71a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sl-trust__feature-icon svg {
  width: 20px;
  height: 20px;
  fill: #7e3fc7;
  fill: var(--theme-base-color, #7e3fc7);
}
.sl-trust__feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  color: var(--white_text_black2, #222);
  margin: 0 0 4px;
}
.sl-trust__feature-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

/* ================================================================
   BRANDS SECTION HEADING
   ================================================================ */
.sl-brands-section {
  padding-top: 8px;
}
.sl-brands-heading {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  color: var(--white_text_black, #333);
  text-align: center;
  margin: 0 0 28px;
}

/* ================================================================
   NOT FOUND — блок «не нашли оборудование»
   ================================================================ */
.sl-notfound {
  padding: 52px 0;
  background: linear-gradient(130deg, #5a2d9c 0%, #7e3fc7 60%, #9b5de5 100%);
}
.sl-notfound__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.sl-notfound__text {
  flex: 1;
  min-width: 260px;
}
.sl-notfound__title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}
.sl-notfound__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.6;
}
.sl-notfound__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

/* ================================================================
   FAQ — часто задаваемые вопросы
   ================================================================ */
.sl-faq {
  padding: 56px 0;
  background: #f8f7fc;
}
.sl-faq__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sl-faq__item {
  border-radius: 8px;
  border: 1px solid #e6e2f0;
  background: #fff;
  background: var(--black_bg_black, #fff);
  overflow: hidden;
}
.sl-faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  color: var(--white_text_black2, #222);
  cursor: pointer;
  gap: 12px;
  user-select: none;
}
.sl-faq__item summary::-webkit-details-marker { display: none; }
.sl-faq__toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #7e3fc71a;
  background: var(--theme-base-opacity-color, #7e3fc71a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  color: #7e3fc7;
  color: var(--theme-base-color, #7e3fc7);
  transition: background 0.2s ease, transform 0.2s ease;
}
.sl-faq__item[open] .sl-faq__toggle {
  background: #7e3fc7;
  background: var(--theme-base-color, #7e3fc7);
  color: #fff;
  transform: rotate(45deg);
}
.sl-faq__body {
  padding: 0 20px 18px;
  font-size: 14px;
  color: #666;
  color: var(--basic_text_black, #666);
  line-height: 1.7;
  border-top: 1px solid #eeebf6;
}

/* ================================================================
   STICKY MOBILE — кнопка связи на мобильных
   ================================================================ */
.sl-sticky-contact {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 9998;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.sl-sticky-contact__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sl-sticky-contact__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
}
.sl-sticky-contact__btn--phone {
  background: #7e3fc7;
  background: var(--theme-base-color, #7e3fc7);
}
.sl-sticky-contact__btn--wa {
  display: none !important;
}
.sl-sticky-contact__btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* ================================================================
   FULL-BLEED КОНТЕЙНЕРЫ — убираем overflow:hidden чтобы sl-секции выходили за пределы
   ================================================================ */
.wrapper1.with_left_block .right_block,
.wrapper1.with_left_block .middle,
.wrapper1.with_left_block .container_inner,
.wrapper1.with_left_block .wrapper_inner.front {
  overflow: visible;
}

/* ================================================================
   СКРЫВАЕМ СТАРЫЕ СЕКЦИИ
   ================================================================ */
/* Скрываем старый тяжёлый слайдер */
.drag-block.BIG_BANNER_INDEX { display: none !important; }
/* Скрываем старый COLLECTIONS (заменён новым фильтром по отраслям) */
.drag-block.COLLECTIONS { display: none !important; }
/* Скрываем пустые/устаревшие блоки */
.drag-block.CATALOG_TAB { display: none !important; }
.drag-block.SALE { display: none !important; }
/* Скрываем SEO-мусор */
.seo__text { display: none !important; }

/* ================================================================
   ШАПКА — упрощение
   ================================================================ */
/* Скрываем дублирующиеся или лишние элементы */
#panel { display: none !important; }
/* Плавающий WhatsApp (widjet-div) отключён — не показывать даже с прозрачностью */
.widjet-div {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ================================================================
   АДАПТИВНОСТЬ
   ================================================================ */
@media (max-width: 1200px) {
  .sl-b2b__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sl-industries__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .sl-trust__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .sl-trust__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .sl-hero__title {
    font-size: 32px;
  }
  .sl-hero__inner {
    padding: 52px 0 48px;
  }
}

@media (max-width: 768px) {
  .sl-hero__title {
    font-size: 26px;
  }
  .sl-hero__desc {
    font-size: 15px;
  }
  .sl-hero__inner {
    padding: 40px 0 36px;
  }
  .sl-hero__advantages {
    flex-direction: column;
    gap: 10px;
  }
  .sl-b2b__grid {
    grid-template-columns: 1fr;
  }
  .sl-industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sl-trust__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .sl-trust__features {
    grid-template-columns: 1fr;
  }
  .sl-notfound__inner {
    flex-direction: column;
    text-align: center;
  }
  .sl-notfound__actions {
    justify-content: center;
  }
  .sl-notfound__title {
    font-size: 22px;
  }
  .sl-faq__cols {
    grid-template-columns: 1fr;
  }
  .sl-section-title {
    font-size: 22px;
  }
  .sl-sticky-contact {
    display: flex;
  }
}

@media (max-width: 560px) {
  .sl-industries__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sl-hero__buttons {
    flex-direction: column;
  }
  .sl-hero__buttons .sl-btn {
    width: 100%;
    justify-content: center;
  }
  .sl-b2b__grid {
    grid-template-columns: 1fr;
  }
  .sl-trust__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .sl-trust__stat-num {
    font-size: 32px;
  }
}

/* ================================================================
   HOW WE WORK — как мы работаем
   ================================================================ */
.sl-how {
  padding: 56px 0;
  background: #fff;
  background: var(--black_bg_black, #fff);
}
.sl-how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.sl-how__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: repeating-linear-gradient(90deg, #7e3fc7 0, #7e3fc7 6px, transparent 6px, transparent 14px);
  opacity: 0.3;
  z-index: 0;
}
.sl-how__step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.sl-how__step-num {
  font-size: 12px;
  font-weight: 700;
  color: #7e3fc7;
  color: var(--theme-base-color, #7e3fc7);
  letter-spacing: 1px;
  margin-bottom: 12px;
  opacity: 0.6;
}
.sl-how__step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #7e3fc71a;
  background: var(--theme-base-opacity-color, #7e3fc71a);
  border: 2px solid #7e3fc7;
  border-color: var(--theme-base-color, #7e3fc7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.2s ease;
}
.sl-how__step-icon svg {
  width: 24px;
  height: 24px;
  stroke: #7e3fc7;
  stroke: var(--theme-base-color, #7e3fc7);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sl-how__step:hover .sl-how__step-icon {
  background: #7e3fc7;
  background: var(--theme-base-color, #7e3fc7);
}
.sl-how__step:hover .sl-how__step-icon svg {
  stroke: #fff;
}
.sl-how__step-title {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  color: var(--white_text_black2, #222);
  margin: 0 0 8px;
}
.sl-how__step-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* ================================================================
   WHO WE WORK FOR — для кого работаем
   ================================================================ */
.sl-for-whom {
  padding: 52px 0;
  background: #f8f7fc;
}
.sl-for-whom__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.sl-for-whom__item {
  padding: 24px 18px;
  background: #fff;
  background: var(--black_bg_black, #fff);
  border-radius: 10px;
  border: 1.5px solid #e6e2f0;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.sl-for-whom__item:hover {
  border-color: #7e3fc7;
  border-color: var(--theme-base-color, #7e3fc7);
  box-shadow: 0 6px 20px rgba(126,63,199,0.10);
  transform: translateY(-2px);
}
.sl-for-whom__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #7e3fc71a;
  background: var(--theme-base-opacity-color, #7e3fc71a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.sl-for-whom__icon svg {
  width: 22px;
  height: 22px;
  stroke: #7e3fc7;
  stroke: var(--theme-base-color, #7e3fc7);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sl-for-whom__title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  color: var(--white_text_black2, #222);
  margin: 0 0 8px;
}
.sl-for-whom__desc {
  font-size: 12px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* ================================================================
   LEAD MAGNET
   ================================================================ */
.sl-leadmag {
  padding: 48px 0;
  background: #fff;
  background: var(--black_bg_black, #fff);
  border-top: 1px solid #ececec;
  border-top-color: var(--stroke_black, #ececec);
  border-bottom: 1px solid #ececec;
  border-bottom-color: var(--stroke_black, #ececec);
}
.sl-leadmag__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.sl-leadmag__text {
  flex-shrink: 0;
  min-width: 200px;
}
.sl-leadmag__title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  color: var(--white_text_black2, #222);
  margin: 0 0 8px;
}
.sl-leadmag__desc {
  font-size: 14px;
  color: #777;
  margin: 0;
}
.sl-leadmag__options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}
.sl-leadmag__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid #ececec;
  border-color: var(--stroke_black, #ececec);
  border-radius: 8px;
  text-decoration: none !important;
  background: #fafafa;
  background: var(--darkerblack_bg_black, #fafafa);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  flex: 1;
  min-width: 160px;
}
.sl-leadmag__option:hover {
  border-color: #7e3fc7;
  border-color: var(--theme-base-color, #7e3fc7);
  box-shadow: 0 4px 14px rgba(126,63,199,0.10);
}
.sl-leadmag__opt-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #7e3fc71a;
  background: var(--theme-base-opacity-color, #7e3fc71a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sl-leadmag__opt-icon svg {
  width: 18px;
  height: 18px;
  stroke: #7e3fc7;
  stroke: var(--theme-base-color, #7e3fc7);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sl-leadmag__opt-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  color: var(--white_text_black2, #222);
  line-height: 1.3;
}
.sl-leadmag__opt-sub {
  display: block;
  font-size: 12px;
  color: #999;
  line-height: 1.3;
  margin-top: 2px;
}

/* ================================================================
   MOBILE IMPROVEMENTS — улучшенные отступы на мобильных
   ================================================================ */
@media (max-width: 768px) {
  .sl-how__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .sl-how__steps::before { display: none; }
  .sl-how { padding: 40px 0; }

  .sl-for-whom__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sl-for-whom { padding: 40px 0; }

  .sl-leadmag__inner {
    flex-direction: column;
    gap: 24px;
  }
  .sl-leadmag__options {
    flex-direction: column;
  }
  .sl-leadmag__option {
    min-width: 0;
  }
  .sl-leadmag { padding: 36px 0; }

  .sl-trust { padding: 40px 0; }
  .sl-b2b { padding: 36px 0; }
  .sl-industries { padding: 36px 0; }
  .sl-how { padding: 36px 0; }
  .sl-for-whom { padding: 36px 0; }
  .sl-faq { padding: 40px 0; }

  /* Равные отступы между секциями */
  .sl-hero__inner { padding: 44px 0 36px; }
}

@media (max-width: 560px) {
  .sl-how__steps { grid-template-columns: 1fr; }
  .sl-for-whom__grid { grid-template-columns: 1fr 1fr; }
  .sl-leadmag__options { flex-direction: column; }
  .sl-b2b__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   UNIFORM CARD HEIGHTS — единая высота карточек
   ================================================================ */
.sl-b2b__grid { align-items: stretch; }
.sl-b2b__item { height: 100%; box-sizing: border-box; }

.sl-for-whom__grid { align-items: stretch; }
.sl-for-whom__item { height: 100%; box-sizing: border-box; }

.sl-industries__grid { align-items: stretch; }
.sl-industries__item { height: 100%; box-sizing: border-box; }

/* ================================================================
   VISUAL HIERARCHY — иерархия CTA
   ================================================================ */
/* Главная кнопка: больше и жирнее */
.sl-hero__buttons .sl-btn-primary.sl-btn-lg {
  font-size: 17px;
  padding: 15px 36px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(126,63,199,0.4);
}
/* Вторичная кнопка: чуть скромнее */
.sl-hero__buttons .sl-btn-white-outline.sl-btn-lg {
  font-size: 15px;
  padding: 13px 28px;
  opacity: 0.88;
}
.sl-hero__buttons .sl-btn-white-outline.sl-btn-lg:hover {
  opacity: 1;
}

/* ================================================================
   MID-PAGE KP CTA STRIP
   ================================================================ */

.sl-mid-cta {
  background: linear-gradient(90deg, #5b1fa8 0%, #7e3fc7 100%);
  padding: 28px 20px;
}
.sl-mid-cta .maxwidth-theme {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sl-mid-cta__text {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  flex: 1;
}
.sl-mid-cta .sl-btn-primary {
  white-space: nowrap;
  flex-shrink: 0;
  background: #fff !important;
  color: #7e3fc7 !important;
  color: var(--theme-base-color, #7e3fc7) !important;
  font-weight: 700;
  padding: 12px 28px;
}
.sl-mid-cta .sl-btn-primary:hover {
  background: #f3e8ff !important;
}
@media (max-width: 600px) {
  .sl-mid-cta .maxwidth-theme {
    flex-direction: column;
    text-align: center;
  }
  .sl-mid-cta .sl-btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* ================================================================
   DOCUMENTS BLOCK
   ================================================================ */

.sl-docs {
  padding: 60px 20px;
  background: #f8f6ff;
}
.sl-docs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.sl-docs__item {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid #ede8f6;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.sl-docs__item:hover {
  box-shadow: 0 4px 20px rgba(126,63,199,0.1);
  transform: translateY(-2px);
}
.sl-docs__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: #f3e8ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sl-docs__icon svg {
  width: 26px;
  height: 26px;
  stroke: #7e3fc7;
  stroke: var(--theme-base-color, #7e3fc7);
}
.sl-docs__title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin: 0 0 8px;
}
.sl-docs__desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.sl-docs__cta {
  text-align: center;
  margin-top: 36px;
}
.sl-docs__cta p {
  font-size: 15px;
  color: #555;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .sl-docs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .sl-docs__grid {
    grid-template-columns: 1fr;
  }
  .sl-docs {
    padding: 36px 16px;
  }
}

/* ================================================================
   PRIMARY CTA — single strongest action on the page
   ================================================================ */

/* Hero "Перейти в каталог" — white fill + purple label (must beat .sl-btn-primary { color: #fff !important }) */
.sl-hero__buttons .sl-btn-primary.sl-btn-lg {
  background: #fff !important;
  color: #7e3fc7 !important;
  color: var(--theme-base-color, #7e3fc7) !important;
  border-color: rgba(126, 63, 199, 0.35) !important;
  font-size: 17px;
  font-weight: 800;
  padding: 16px 40px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  letter-spacing: 0.02em;
}
.sl-hero__buttons .sl-btn-primary.sl-btn-lg:hover {
  background: #f3e8ff !important;
  color: #7e3fc7 !important;
  color: var(--theme-base-color, #7e3fc7) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,0.28);
}

/* All other primary buttons on page — normal weight, no extra shadow */
.sl-btn-primary:not(.sl-hero__buttons .sl-btn-primary) {
  font-weight: 600;
  box-shadow: none;
}
