/**
 * BORMASH главная — Industrial Premium Hybrid (графит / сталь + золото акцентом).
 * Только .bormash-home и вложенное.
 */
.bormash-home {
  --bh-bg: #0f1113;
  --bh-bg2: #0b0d0f;
  --bh-panel: #1a1d20;
  --bh-panel2: #0f1113;
  --bh-line: #2a2e33;
  --bh-line-soft: rgba(255, 255, 255, 0.06);
  --bh-line-hover: #32373d;
  --bh-text: #ffffff;
  --bh-muted: #b0b3b8;
  --bh-kicker: #b0b3b8;
  --bh-gold-hi: #e6cc73;
  --bh-gold: #d6b55a;
  --bh-gold-deep: #b7923a;
  --bh-btn-text: #1a1d20;
  --bh-glow: rgba(214, 181, 90, 0.08);

  background: var(--bh-bg);
  color: var(--bh-text);
}

.bormash-home .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.bormash-home__section {
  padding: clamp(48px, 8vw, 88px) 0;
  border-top: 1px solid var(--bh-line-soft);
}

.bormash-home__section--tight {
  padding-top: clamp(32px, 5vw, 48px);
}

.bormash-home__section--seo {
  padding-bottom: clamp(48px, 10vw, 88px);
}

.bormash-home__section--alt {
  background: linear-gradient(180deg, var(--bh-bg2) 0%, var(--bh-bg) 100%);
}

.bormash-home__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px 28px;
  margin-bottom: clamp(26px, 4.5vw, 38px);
}

.bormash-home__head-main {
  max-width: 640px;
}

.bormash-home__kicker {
  margin: 0 0 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(176, 179, 184, 0.88);
}

.bormash-home__title {
  margin: 0;
  font-size: clamp(1.42rem, 3.5vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.14;
  color: var(--bh-text);
}

.bormash-home__lead {
  margin: 12px 0 0;
  font-size: clamp(0.9rem, 2vw, 1.04rem);
  line-height: 1.55;
  font-weight: 400;
  color: var(--bh-muted);
  max-width: 52ch;
}

.bormash-home__link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bh-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 181, 90, 0.35);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.bormash-home__link:hover {
  color: var(--bh-gold-hi);
  border-bottom-color: rgba(230, 204, 115, 0.45);
}

/* ─── Карточки сеток (почему / задачи / серии / сервис) ─── */
.bormash-home__grid {
  display: grid;
  gap: clamp(16px, 2.5vw, 20px);
}

.bormash-home__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bormash-home__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

@media (max-width: 900px) {
  .bormash-home__grid--3,
  .bormash-home__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .bormash-home__grid--2,
  .bormash-home__grid--3,
  .bormash-home__grid--4 {
    grid-template-columns: 1fr;
  }
}

.bormash-home__card {
  position: relative;
  padding: 18px 18px 20px;
  border-radius: 2px;
  background: var(--bh-panel);
  border: 1px solid var(--bh-line);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

a.bormash-home__card:hover {
  border-color: var(--bh-line-hover);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  filter: brightness(1.02);
}

.bormash-home__card-title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--bh-text);
}

a.bormash-home__card-titlelink {
  color: inherit;
  text-decoration: none;
}

a.bormash-home__card-titlelink:hover {
  color: rgba(230, 204, 115, 0.95);
}

.bormash-home__card-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--bh-muted);
}

.bormash-home__card-cta {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(176, 179, 184, 0.9);
}

a.bormash-home__card:hover .bormash-home__card-cta {
  color: var(--bh-gold);
}

/* ─── Подборка из каталога (карточки товара) ─── */
.bormash-home__product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 920px) and (min-width: 560px) {
  .bormash-home__product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 559px) {
  .bormash-home__product-grid {
    grid-template-columns: 1fr;
  }
}

.bormash-home .bormash-home__product {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: 2px;
  overflow: hidden;
  background: var(--bh-panel) !important;
  border: 1px solid var(--bh-line) !important;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.35) !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.bormash-home .bormash-home__product:hover {
  border-color: var(--bh-line-hover) !important;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.42) !important;
  filter: brightness(1.03);
}

.bormash-home .bormash-home__product .product__shine {
  display: none !important;
}

.bormash-home .bormash-home__product .product__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--bh-bg) !important;
}

.bormash-home .bormash-home__product .product__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  opacity: 0.9;
}

.bormash-home .bormash-home__product .product__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  background: transparent !important;
}

.bormash-home .bormash-home__product .product__img--ph {
  background-size: 70% auto !important;
  background-position: 50% 50% !important;
  background-repeat: no-repeat !important;
  background-color: var(--bh-bg) !important;
}

.bormash-home .bormash-home__product .product__tagsRow {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  pointer-events: none;
}

.bormash-home .bormash-home__product .product__tag {
  position: static;
  padding: 5px 10px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(10, 12, 18, 0.88) !important;
  border: 1px solid var(--bh-line) !important;
  color: var(--bh-gold) !important;
  backdrop-filter: blur(8px);
}

.bormash-home .bormash-home__product .product__tag--line {
  color: var(--bh-muted) !important;
  border-color: var(--bh-line-soft) !important;
}

.bormash-home .bormash-home__product .product__info {
  padding: 14px 16px 16px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}

.bormash-home .bormash-home__product .product__name {
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  color: var(--bh-text) !important;
  text-decoration: none;
  line-height: 1.2 !important;
  min-height: 0 !important;
}

.bormash-home .bormash-home__product .product__sku {
  color: var(--bh-muted) !important;
}

.bormash-home .bormash-home__product .product__stockBadge {
  font-size: 11px;
  font-weight: 700;
  color: var(--bh-muted);
}

.bormash-home .bormash-home__product .product__row {
  margin-top: auto !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bormash-home .bormash-home__product .product__priceVal {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: var(--bh-gold) !important;
}

.bormash-home .bormash-home__product .product__cur,
.bormash-home .bormash-home__product .product__priceUnit {
  color: var(--bh-muted) !important;
}

.bormash-home .bormash-home__product .btn--primary {
  height: 40px !important;
  padding: 0 16px !important;
  border-radius: 2px !important;
  font-weight: 800 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  background: var(--bh-gold) !important;
  color: var(--bh-btn-text) !important;
  border: 1px solid rgba(183, 146, 58, 0.55) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32) !important;
}

.bormash-home .bormash-home__product .btn--primary:hover {
  background: var(--bh-gold-hi) !important;
  border-color: rgba(183, 146, 58, 0.65) !important;
}

.bormash-home .bormash-home__product .btn--primary:active {
  background: var(--bh-gold-deep) !important;
}

.bormash-home .bormash-home__product .btn--primary:disabled {
  opacity: 0.45;
  filter: grayscale(0.3);
}

.bormash-home__product-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18%;
}

.bormash-home__product-ph img {
  width: 100%;
  max-width: 160px;
  height: auto;
  opacity: 0.55;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

.bormash-home__empty {
  padding: 28px 22px;
  border-radius: 2px;
  border: 1px dashed var(--bh-line);
  background: var(--bh-panel2);
  color: var(--bh-muted);
  text-align: center;
}

.bormash-home__empty h3 {
  margin: 0 0 8px;
  color: var(--bh-text);
  font-size: 1.1rem;
}

.bormash-home__cta-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.bormash-home__btn-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bh-btn-text);
  border-radius: 2px;
  border: 1px solid rgba(183, 146, 58, 0.55);
  background: var(--bh-gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.bormash-home__btn-catalog:hover {
  background: var(--bh-gold-hi);
  border-color: rgba(183, 146, 58, 0.68);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.36);
}

.bormash-home__btn-catalog:active {
  background: var(--bh-gold-deep);
}

/* ─── Заглушки каталога (нет товаров в выборке) ─── */
.bormash-home__stub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 900px) {
  .bormash-home__stub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .bormash-home__stub-grid {
    grid-template-columns: 1fr;
  }
}

.bormash-home__stub-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--bh-line);
  background: var(--bh-panel);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.bormash-home__stub-card:hover {
  border-color: var(--bh-line-hover);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
  filter: brightness(1.03);
}

.bormash-home__stub-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: var(--bh-bg);
  padding: 20px;
}

.bormash-home__stub-media img {
  width: min(120px, 45%);
  height: auto;
  opacity: 0.65;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55));
}

.bormash-home__stub-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.bormash-home__stub-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bh-gold);
  border: 1px solid rgba(182, 190, 202, 0.28);
  padding: 3px 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.02);
}

.bormash-home__stub-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--bh-text);
}

.bormash-home__stub-text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--bh-muted);
  flex: 1;
}

.bormash-home__stub-cta {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bh-gold-deep);
}

/* ─── Видео: крупный первый ролик + остальные ─── */
.bormash-home__video-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3.5vw, 28px);
}

.bormash-home__video-card-visual {
  position: relative;
  align-self: stretch;
  border-radius: 2px;
}

/* ─── Featured: текст в оверлее, фото главное; без blur-плашки по центру ─── */
.bormash-home__video-featured .bormash-home__video-card--featured-layout {
  padding: 0;
  gap: 0;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
  border-color: var(--bh-line);
  overflow: hidden;
}

.bormash-home__video-card--featured-layout .bormash-home__video-embed,
.bormash-home__video-card--featured-layout .bormash-home__video-poster {
  position: relative;
  z-index: 0;
}

/* Лёгкий боковой градиент слева (десктоп); не закрывает правую часть кадра */
.bormash-home__video-card--featured-layout .bormash-home__video-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(10, 11, 13, 0.78) 0%,
    rgba(10, 11, 13, 0.22) 52%,
    transparent 74%
  );
}

.bormash-home__video-card--featured-layout .bormash-home__video-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(14px, 2.8vw, 26px) clamp(16px, 3.2vw, 28px);
  pointer-events: none;
}

.bormash-home__video-card--featured-layout .bormash-home__video-card-copy {
  pointer-events: auto;
  max-width: min(500px, 63%);
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.bormash-home__video-card--featured-layout .bormash-home__video-card-title {
  margin: 0 0 10px;
  font-size: clamp(1.02rem, 2.1vw, 1.32rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--bh-text);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 2px 16px rgba(0, 0, 0, 0.45);
}

.bormash-home__video-card--featured-layout .bormash-home__video-card-text {
  margin: 0 0 12px;
  font-size: clamp(0.84rem, 1.5vw, 0.96rem);
  line-height: 1.5;
  color: rgba(214, 218, 224, 0.95);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.8),
    0 1px 12px rgba(0, 0, 0, 0.35);
}

.bormash-home__video-card--featured-layout .bormash-home__video-card-link {
  margin: 0;
}

.bormash-home__video-card--featured-layout .bormash-home__video-poster .bormash-home__video-play {
  position: relative;
  z-index: 3;
}

.bormash-home__video-card--featured-layout .bormash-home__video-poster-label {
  position: absolute;
  z-index: 3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
}

.bormash-home__video-featured .bormash-home__video-card--featured-layout .bormash-home__video-play {
  width: 64px;
  height: 64px;
}

@media (max-width: 900px) {
  .bormash-home__video-card--featured-layout .bormash-home__video-card-visual::before {
    background: linear-gradient(
      0deg,
      rgba(10, 11, 13, 0.92) 0%,
      rgba(10, 11, 13, 0.36) 40%,
      transparent 70%
    );
  }

  .bormash-home__video-card--featured-layout .bormash-home__video-card-overlay {
    align-items: flex-end;
    justify-content: stretch;
    padding: 0 clamp(12px, 4vw, 18px) clamp(10px, 3.2vw, 18px);
  }

  .bormash-home__video-card--featured-layout .bormash-home__video-card-copy {
    max-width: none;
    width: 100%;
  }

  .bormash-home__video-card--featured-layout .bormash-home__video-card-title {
    margin-bottom: 8px;
    font-size: clamp(0.98rem, 3.8vw, 1.15rem);
  }

  .bormash-home__video-card--featured-layout .bormash-home__video-card-text {
    font-size: clamp(0.82rem, 2.8vw, 0.92rem);
    margin-bottom: 10px;
  }
}

.bormash-home__video-rest {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  .bormash-home__video-rest {
    display: flex;
    flex-direction: row;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 calc(-1 * clamp(16px, 4.5vw, 20px));
    padding: 0 clamp(16px, 4.5vw, 20px) 12px;
    scrollbar-width: thin;
  }

  .bormash-home__video-rest .bormash-home__video-card {
    flex: 0 0 min(86vw, 300px);
    scroll-snap-align: start;
  }
}

@media (max-width: 520px) {
  .bormash-home__video-rest .bormash-home__video-card {
    flex-basis: min(88vw, 320px);
  }
}

/* Legacy: трёхколоночная сетка */
.bormash-home__video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 900px) {
  .bormash-home__video-grid {
    grid-template-columns: 1fr;
  }
}

.bormash-home__video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 2px;
  border: 1px solid var(--bh-line);
  background: var(--bh-panel);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.bormash-home__video-rest .bormash-home__video-card {
  opacity: 0.94;
}

.bormash-home__video-rest .bormash-home__video-card-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.bormash-home__video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--bh-line-soft);
  background: #000;
}

.bormash-home__video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bormash-home__video-poster {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--bh-line);
  background:
    radial-gradient(ellipse 70% 70% at 50% 40%, rgba(120, 128, 140, 0.08), transparent 55%),
    linear-gradient(165deg, #1a1d20 0%, #0f1113 100%);
  transition: border-color 0.15s ease;
}

.bormash-home__video-poster:hover {
  border-color: var(--bh-line-hover);
}

.bormash-home__video-play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid var(--bh-line);
  position: relative;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.bormash-home__video-play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--bh-gold);
}

.bormash-home__video-poster-label {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bh-muted);
}

.bormash-home__video-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bh-text);
  line-height: 1.25;
}

.bormash-home__video-card-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--bh-muted);
  flex: 1;
}

.bormash-home__video-card-link {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bh-gold-deep);
  text-decoration: none;
}

.bormash-home__video-card-link:hover {
  color: var(--bh-gold-hi);
}

@media (max-width: 720px) {
  .bormash-home__video-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    margin-top: 4px;
    border-radius: 2px;
    border: 1px solid rgba(182, 190, 202, 0.35);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    align-self: flex-start;
  }

  .bormash-home__video-card-link:hover {
    border-color: rgba(214, 181, 90, 0.45);
    background: rgba(214, 181, 90, 0.08);
  }

  .bormash-home__lead--video {
    font-size: clamp(0.93rem, 2.4vw, 1.05rem);
    max-width: 36ch;
  }
}

.bormash-home__btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bh-text);
  border-radius: 2px;
  border: 1px solid rgba(182, 190, 202, 0.38);
  background: rgba(255, 255, 255, 0.025);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.bormash-home__btn-ghost:hover {
  border-color: rgba(200, 208, 218, 0.52);
  background: rgba(255, 255, 255, 0.045);
}

@media (max-width: 720px) {
  .bormash-home .container {
    padding: 0 clamp(16px, 4.5vw, 20px);
  }

  .bormash-home__head {
    margin-bottom: clamp(20px, 4vw, 28px);
  }

  .bormash-home__kicker {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    font-weight: 600;
  }

  .bormash-home__title {
    font-size: clamp(1.48rem, 5vw, 1.9rem);
    line-height: 1.12;
    font-weight: 700;
  }

  .bormash-home__lead {
    font-size: clamp(0.93rem, 2.5vw, 1.06rem);
    max-width: 40ch;
  }

  .bormash-home__card-text {
    font-size: 0.9rem;
  }

  .bormash-home__grid {
    gap: clamp(14px, 3vw, 18px);
  }

  .bormash-home__card {
    padding: 22px 20px 24px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  }

  .bormash-home__product-grid {
    gap: clamp(14px, 3.5vw, 20px);
  }

  .bormash-home__video-card {
    padding: 18px 16px 20px;
  }

  .bormash-home__video-play {
    width: 56px;
    height: 56px;
  }

  .bormash-home__cta-row {
    margin-top: 24px;
    padding: 0 2px;
  }

  .bormash-home__section {
    padding: clamp(32px, 6vw, 56px) 0;
  }
}

/* ─── Комплекты (split) ─── */
.bormash-home__kits {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--bh-line-soft);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

@media (max-width: 820px) {
  .bormash-home__kits {
    grid-template-columns: 1fr;
  }
}

.bormash-home__kits-visual {
  position: relative;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 48%),
    var(--bh-panel2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.bormash-home__kits-visual img {
  width: min(200px, 55vw);
  height: auto;
  opacity: 0.85;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
}

.bormash-home__kits-body {
  padding: clamp(22px, 4vw, 32px);
  background: var(--bh-panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.bormash-home__kits-subtitle {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bh-gold);
}

.bormash-home__kits-tasks {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bormash-home__kits-tasks li {
  position: relative;
  padding-left: 18px;
  margin-top: 8px;
  font-size: 0.88rem;
  color: var(--bh-muted);
  line-height: 1.45;
}

.bormash-home__kits-tasks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--bh-gold-deep);
  border-radius: 1px;
}

.bormash-home__kits-note {
  margin: 4px 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--bh-muted);
}

.bormash-home__kits-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bormash-home__kits-list li {
  position: relative;
  padding-left: 18px;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--bh-muted);
  line-height: 1.45;
}

.bormash-home__kits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--bh-gold-deep);
  border-radius: 1px;
}

.bormash-home__kits-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

/* ─── Отзывы ─── */
.bormash-home__reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 900px) {
  .bormash-home__reviews {
    grid-template-columns: 1fr;
  }
}

.bormash-home__quote {
  margin: 0;
  padding: 18px 18px 20px;
  border-radius: 2px;
  background: var(--bh-panel);
  border: 1px solid var(--bh-line-soft);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}

.bormash-home__quote p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--bh-text);
}

.bormash-home__quote footer {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--bh-muted);
}

/* ─── SEO низ ─── */
.bormash-home__seo {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--bh-muted);
  max-width: 900px;
}

.bormash-home__seo a {
  color: var(--bh-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bormash-home__seo a:hover {
  color: var(--bh-gold-hi);
}

/* ─── Маркетинговые индустриальные баннеры (структура, без теней/рамок на фото) ─── */

.bormash-home__ind-accent {
  color: var(--bh-gold);
  font-weight: 700;
}

.bormash-home__ind-expert {
  padding: clamp(40px, 7vw, 72px) 0;
  background: var(--bh-bg);
  border-top: 1px solid var(--bh-line-soft);
}

.bormash-home__ind-expert-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 48px);
  /* Одна высота ряда с фото; текст центрируем во второй колонке (см. .ind-expert-copy) */
  align-items: stretch;
}

.bormash-home__ind-expert-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(52vw, 420px);
  max-height: 520px;
  background: #0f1113;
  overflow: hidden;
}

/* contain: весь кадр баннера (в т.ч. вшитый текст), без обрезки по краям как у cover */
.bormash-home__ind-expert-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  border: 0;
  box-shadow: none;
}

.bormash-home__ind-expert-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
}

.bormash-home__ind-expert-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bh-muted);
}

.bormash-home__ind-expert-title {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--bh-text);
}

.bormash-home__ind-expert-text {
  margin: 0 0 20px;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  line-height: 1.55;
  color: var(--bh-muted);
  max-width: 46ch;
}

.bormash-home__ind-expert-cta {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bh-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 181, 90, 0.35);
  padding-bottom: 2px;
}

.bormash-home__ind-expert-cta:hover {
  color: var(--bh-gold-hi);
  border-bottom-color: rgba(230, 204, 115, 0.45);
}

.bormash-home__ind-process {
  padding: 0;
  border-top: 1px solid var(--bh-line-soft);
}

.bormash-home__ind-process-inner {
  position: relative;
  /* Выше полоса — на фото внизу фреза; cover + anchor снизу */
  min-height: clamp(280px, 48vw, 520px);
  background: #0f1113;
}

.bormash-home__ind-process-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Чуть выше якорь — в кадре и руки, и инструмент; оверлей больше не «глушит» низ */
  object-position: center 72%;
  border: 0;
  box-shadow: none;
  filter: brightness(1.07) contrast(1.04);
}

.bormash-home__ind-process-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  background: transparent;
  padding: clamp(28px, 6vw, 56px) 0;
}

/* Десктоп: одно «стекло» на заголовок + абзац; внутренний .ind-process-glass прозрачен */
.bormash-home__ind-process-panel {
  width: fit-content;
  max-width: min(42rem, 100%);
  padding: clamp(14px, 2.6vw, 22px) clamp(16px, 3vw, 26px);
  border-radius: 2px;
  background: rgba(12, 14, 16, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: saturate(130%) blur(12px);
  -webkit-backdrop-filter: saturate(130%) blur(12px);
}

.bormash-home__ind-process-glass {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .bormash-home__ind-process-panel {
    background: rgba(12, 14, 16, 0.45);
  }
}

.bormash-home__ind-process-title {
  margin: 0 0 14px;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--bh-text);
  max-width: 22ch;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.75),
    0 2px 18px rgba(0, 0, 0, 0.4);
}

.bormash-home__ind-process-text {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1.02rem);
  line-height: 1.55;
  color: var(--bh-muted);
  max-width: 40ch;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.65),
    0 1px 12px rgba(0, 0, 0, 0.35);
}

.bormash-home__catalog-strip {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  background: #0f1113;
  border: 0;
  box-shadow: none;
}

.bormash-home__catalog-strip-link {
  display: block;
  line-height: 0;
  border: 0;
  box-shadow: none;
}

.bormash-home__catalog-strip img {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  box-shadow: none;
  vertical-align: top;
}

@media (max-width: 920px) {
  .bormash-home__ind-expert-grid {
    grid-template-columns: 1fr;
  }

  .bormash-home__ind-expert-copy {
    display: block;
  }

  .bormash-home__ind-expert-media {
    order: -1;
    min-height: min(56vw, 320px);
    max-height: none;
  }

  /* Градиент снизу на фото — читаемость без blur-плашки по центру */
  .bormash-home__ind-process-inner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      0deg,
      rgba(6, 7, 9, 0.92) 0%,
      rgba(6, 7, 9, 0.45) 32%,
      rgba(6, 7, 9, 0.12) 52%,
      transparent 68%
    );
  }

  .bormash-home__ind-process-overlay {
    z-index: 2;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    padding: 0 0 clamp(14px, 4.5vw, 24px);
  }

  .bormash-home__ind-process-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    max-width: 100%;
    padding: 0 clamp(14px, 4vw, 18px);
    gap: clamp(10px, 2.5vw, 14px);
  }

  .bormash-home__ind-process-panel {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 2vw, 12px);
  }

  .bormash-home__ind-process-title {
    margin: 0;
    order: 1;
    max-width: none;
    padding: 0;
    font-size: clamp(1.12rem, 4vw, 1.38rem);
    line-height: 1.15;
    text-shadow:
      0 1px 4px rgba(0, 0, 0, 0.95),
      0 2px 22px rgba(0, 0, 0, 0.65);
  }

  /* Без «стекла»: только лёгкий разделитель; читаемость даёт градиент ::after на inner */
  .bormash-home__ind-process-glass {
    order: 2;
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: transparent !important;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(8px, 2.2vw, 12px);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none;
  }

  .bormash-home__ind-process-text {
    max-width: none;
    margin: 0;
    text-shadow:
      0 1px 3px rgba(0, 0, 0, 0.9),
      0 1px 14px rgba(0, 0, 0, 0.45);
  }

  .bormash-home__ind-process-img {
    object-position: center 70%;
  }
}

/* static-revision: 20260417indProcess */
