/*
  Home page redesign (lighter & stricter).
  This file is loaded only on `/` via `resources/views/home.blade.php`.
*/

:root {
  --home-bg: #ffffff;
  --home-surface: #ffffff;
  --home-muted: #f6f7f9;
  --home-text: #0f172a;
  --home-subtext: #475569;
  --home-border: rgba(15, 23, 42, 0.10);
  --home-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --home-shadow-soft: 0 6px 18px rgba(2, 6, 23, 0.06);
  --home-radius: 14px;
  --home-radius-sm: 10px;
  --home-accent: #f4ce47;
  --home-accent-ink: #111827;
  --home-section: var(--section-spacing, 32px);
}

/* ---------- HERO ---------- */
.home-hero {
  background: var(--home-bg);
  padding: 18px 0 12px;
  min-height: 300px;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.home-hero__banner {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.home-hero__swiper {
  width: 100%;
  flex: 1;
  min-height: 300px;
}

.home-hero .swiper-wrapper {
  padding-bottom: 0 !important;
}

.home-hero__slide {
  position: relative;
  min-height: 300px;
  border-radius: var(--home-radius);
  overflow: hidden;
  background: #e5e7eb;
  display: flex;
  flex-direction: column;
  box-shadow: var(--home-shadow-soft);
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* strict overlay, no “glossy” gradients */
.home-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0.08) 0%,
    rgba(2, 6, 23, 0.56) 65%,
    rgba(2, 6, 23, 0.70) 100%
  );
}

.home-hero__slide-content {
  position: relative;
  z-index: 2;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 520px;
}

.home-hero__title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 10px;
}

.home-hero__subtitle {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 16px;
}

.home-hero__subtitle .product-count {
  font-weight: 700;
  color: var(--home-accent);
  font-size: 15px;
}

.home-hero__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home-hero__btn-catalog,
.home-hero__btn-consultation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  text-transform: none;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  will-change: transform;
}

.home-hero__btn-catalog {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: #0b1220;
}

.home-hero__btn-consultation {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(8px);
}

.home-hero__btn-catalog:hover,
.home-hero__btn-consultation:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.18);
}

.home-hero__pagination {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
}

.home-hero .swiper-pagination-bullet {
  width: 28px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: rgba(15, 23, 42, 0.28) !important;
  opacity: 1 !important;
  margin: 0 !important;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.home-hero .swiper-pagination-bullet-active {
  width: 42px !important;
  background: rgba(255, 255, 255, 0.90) !important;
}

/* ---------- HERO SIDEBAR ---------- */
.home-hero__sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  min-height: 300px;
}

.home-hero__block {
  background: var(--home-surface);
  border-radius: var(--home-radius);
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--home-border);
  box-shadow: 0 1px 0 rgba(2, 6, 23, 0.03);
}

.home-hero__block-0.home-hero__block--iso {
  background: var(--home-muted);
  border: 1px solid var(--home-border);
  flex: 0 1 auto;
  min-height: 0;
  padding: 14px 16px;
}

.home-hero__sidebar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 0;
}

.new-promo-banner__row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.new-promo-banner__col--info {
  flex: 1;
  min-width: 0;
}

.new-promo-banner__name {
  font-weight: 800;
  margin: 0 0 4px;
  font-size: 13px;
  color: var(--home-text);
  letter-spacing: -0.01em;
}

.new-promo-banner__text {
  font-size: 12px;
  line-height: 1.45;
  color: var(--home-subtext);
  margin: 0;
}

.new-promo-banner__col--icon {
  flex-shrink: 0;
}

.new-promo-banner__icon--plain {
  display: block;
  border: 1px solid var(--home-border);
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
}

.home-hero__block-1 {
  background: #fff;
  border: 1px solid var(--home-border);
  text-align: left;
  flex: 0 1 35%;
  min-height: 0;
  padding: 14px;
}

.home-hero__block-2 {
  background: #0b1220;
  padding: 0;
  overflow: hidden;
  border-radius: var(--home-radius);
  flex: 0 1 75%;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.home-hero__manager {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-hero__manager-title {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 10px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-hero__manager-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.home-hero__manager-photo {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  background: #f3f4f6;
  flex-shrink: 0;
  border: 1px solid var(--home-border);
}

.home-hero__manager-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__manager-info {
  flex: 1;
  min-width: 0;
}

.home-hero__manager-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--home-text);
  margin-bottom: 2px;
  line-height: 1.2;
}

.home-hero__manager-id {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.2;
  font-weight: 600;
}

.home-hero__manager-divider {
  border: none;
  border-top: 1px solid rgba(2, 6, 23, 0.08);
  margin: 0 0 12px 0;
}

.home-hero__manager-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.home-hero__manager-btn {
  width: 100%;
  padding: 10px 14px;
  background: var(--home-accent);
  color: var(--home-accent-ink);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}

.home-hero__manager-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(2, 6, 23, 0.16);
  filter: saturate(1.05);
}

.home-hero__legal-block {
  display: flex;
  height: 100%;
  position: relative;
}

.home-hero__legal-content {
  flex: 1;
  background: transparent;
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.home-hero__legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-hero__legal-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 600;
}

.home-hero__legal-item i {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  flex-shrink: 0;
  width: 16px;
  opacity: 0.85;
}

.home-hero__legal-image {
  flex: 0 0 auto;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.08;
  z-index: 1;
}

.home-hero__legal-image i {
  font-size: 132px;
  color: #fff;
}

/* ---------- ADVANTAGES (goods) ---------- */
.goods {
  padding: var(--home-section) 0;
}

.goods__swiper {
  overflow: hidden;
  padding-bottom: 44px;
}

.goods .swiper-slide {
  height: auto;
}

.goods__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  background: #fff;
  border-radius: var(--home-radius);
  border: 1px solid var(--home-border);
  height: 100%;
  min-height: 86px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.goods__item:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: var(--home-shadow-soft);
}

.goods__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--home-muted);
  border: 1px solid var(--home-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--home-text);
}

.goods_text {
  color: var(--home-text);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.goods__pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.goods__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(15, 23, 42, 0.20);
  opacity: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.goods__pagination .swiper-pagination-bullet-active {
  background: var(--home-accent);
  transform: scale(1.2);
}

/* ---------- CATALOG ---------- */
.production {
  padding: var(--home-section) 0;
}

.production__title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.production__title-wrapper h2 {
  color: var(--home-text);
  font-family: Inter, sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: -0.02em;
}

.prod-btn {
  border-radius: 12px;
  border: 1px solid var(--home-border);
  color: var(--home-text);
  background: #fff;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.main-catalog__card {
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  overflow: hidden;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.main-catalog__card:hover {
  transform: translateY(-1px);
  box-shadow: var(--home-shadow-soft);
  border-color: rgba(15, 23, 42, 0.16);
}

.main-catalog__card-head {
  padding: 14px 40px 14px 14px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.main-catalog__card-head img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.main-catalog__card-head .svg-icon.placeholder {
  width: 40px;
  height: 40px;
  background: var(--home-muted);
  border: 1px solid var(--home-border);
  border-radius: 10px;
}

.main-catalog__card-title {
  color: var(--home-text);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  flex: 1;
  min-width: 0;
}

.main-catalog__card-title:hover {
  text-decoration: underline;
}

.main-catalog__card-head a {
  text-decoration: none;
}

.main-catalog__toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 0;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.15s ease;
}

.main-catalog__toggle:hover {
  opacity: 1;
}

.main-catalog__card-body {
  padding: 0 14px 14px 14px;
}

.main-catalog__card.has-children .main-catalog__card-body {
  display: none;
}

.main-catalog__card.has-children.is-open .main-catalog__card-body {
  display: block;
}

.main-catalog__card.has-children.is-open .main-catalog__toggle svg {
  transform: rotate(180deg);
}

.main-catalog__toggle svg {
  transition: transform 0.2s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-catalog__card-link {
  display: block;
  color: var(--home-subtext);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  padding: 8px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.main-catalog__card-link:hover {
  color: var(--home-text);
  text-decoration: underline;
  text-decoration-color: rgba(15, 23, 42, 0.35);
}

/* ---------- COMMON / TITLES / BUTTONS ---------- */
.section-title {
  color: var(--home-text);
  font-family: Inter, sans-serif;
  font-size: 44px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: -0.02em;
}

.btn {
  border-radius: 12px;
  border: 1px solid var(--home-border);
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: normal;
  padding: 12px 18px;
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  color: var(--home-text);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: var(--home-shadow-soft);
}

.btn--primary {
  background: var(--home-accent);
  color: var(--home-accent-ink);
  border-color: rgba(15, 23, 42, 0.10);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn--primary:hover {
  filter: saturate(1.04);
}

/* ---------- FADE-IN ---------- */
.fadein {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

html.js.fadein-init .fadein {
  opacity: 0;
  transform: translateY(14px);
}

html.js.fadein-init .fadein.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js.fadein-init .fadein,
  html.js.fadein-init .fadein.visible {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* ---------- ABOUT ---------- */
.about {
  padding: var(--home-section) 0;
}

.about__wrapper {
  display: flex;
  flex-wrap: wrap;
  border-radius: var(--home-radius);
  background: #fff;
  justify-content: space-between;
  border: 1px solid var(--home-border);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(2, 6, 23, 0.03);
}

.about__item {
  width: 50%;
}

.about__title {
  color: var(--home-text);
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-transform: none;
  padding-bottom: 14px;
  padding-top: 4px;
  letter-spacing: -0.02em;
}

.about__text {
  color: var(--home-subtext);
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  border-left: 3px solid var(--home-accent);
  padding-left: 16px;
}

.about__left {
  background: #fff;
  padding: 18px;
  max-width: 46%;
}

.about__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- ABOUT 2 ---------- */
.about-2 {
  padding: var(--home-section) 0;
}

.about-2__wrapper {
  display: flex;
  gap: 12px;
}

.about-2__title {
  color: var(--home-text);
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-transform: none;
  padding-bottom: 14px;
  padding-top: 4px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-2__left {
  width: 41.66%;
  padding: 18px;
  border-radius: var(--home-radius);
  background: #fff;
  border: 1px solid var(--home-border);
}

.about-2__left ul {
  padding-left: 18px;
  list-style: disc;
}

.about-2__left ul li {
  color: var(--home-subtext);
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  padding-top: 6px;
  padding-bottom: 6px;
}

.about-2__left ul li:first-child {
  padding-top: 0;
}

.about-2__right {
  width: 58.33%;
  padding: 18px 16px 16px 20px;
}

.about-2__right h2 {
  color: var(--home-text);
  font-family: Inter, sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: -0.02em;
}

.about-2__right h2 span {
  color: var(--home-subtext);
  display: block;
  padding-bottom: 14px;
  font-weight: 800;
}

.about-2__right-items {
  gap: 16px;
  display: flex;
  flex-wrap: wrap;
}

.about-2__right-item {
  display: flex;
  gap: 14px;
}

.about-2__right-img {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--home-muted);
  border: 1px solid var(--home-border);
  font-size: 24px;
  color: var(--home-text);
}

.about-2__right-text {
  color: var(--home-subtext);
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

/* ---------- SERVICES ---------- */
.services-section {
  padding: var(--home-section) 0;
}

.services-section__header {
  margin-bottom: 22px;
}

.services-section__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.services-section__title-row .section-title {
  margin: 0;
}

.services-section__btn {
  flex-shrink: 0;
}

.services-section__subtitle {
  color: var(--home-subtext);
  font-size: 15px;
  margin-top: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid var(--home-border);
  box-shadow: 0 1px 0 rgba(2, 6, 23, 0.03);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.service-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--home-shadow-soft);
  border-color: rgba(15, 23, 42, 0.16);
}

.service-card__image {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: var(--home-muted);
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.03);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.55) 100%);
}

.service-card__content {
  padding: 16px;
}

.service-card__title {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--home-text);
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 13px;
  color: var(--home-subtext);
  margin-bottom: 10px;
  line-height: 1.45;
  font-weight: 500;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-text);
  font-weight: 800;
  font-size: 13px;
  opacity: 0.85;
}

.service-card:hover .service-card__link {
  opacity: 1;
}

/* ---------- NEWS ---------- */
.news-section {
  padding: var(--home-section) 0;
}

.news-section__header {
  margin-bottom: 22px;
}

.news-section__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.news-section__title-row .section-title {
  margin: 0;
}

.news-section__btn {
  flex-shrink: 0;
}

.news-section__subtitle {
  color: var(--home-subtext);
  font-size: 15px;
  margin-top: 10px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: var(--home-radius);
  overflow: hidden;
  border: 1px solid var(--home-border);
  box-shadow: 0 1px 0 rgba(2, 6, 23, 0.03);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.news-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--home-shadow-soft);
  border-color: rgba(15, 23, 42, 0.16);
}

.news-card__image {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: var(--home-muted);
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.03);
}

.news-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0) 0%, rgba(2, 6, 23, 0.40) 100%);
}

.news-card__date {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 12px;
  padding: 6px 10px;
  text-align: center;
  min-width: 44px;
  backdrop-filter: blur(10px);
}

.news-card__day {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--home-text);
  line-height: 1;
}

.news-card__month {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--home-subtext);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.news-card__content {
  padding: 16px;
}

.news-card__title {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--home-text);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.news-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-text);
  font-weight: 800;
  font-size: 13px;
  opacity: 0.85;
}

.news-card:hover .news-card__read-more {
  opacity: 1;
}

/* ---------- CLIENTS ---------- */
.clients {
  padding: var(--home-section) 0;
}

.clients--after-hero {
  padding: 12px 0 22px;
  background: #0b1220;
}

.clients--after-form {
  padding: var(--home-section) 0;
}

.clients__title {
  color: var(--home-text);
  font-family: Inter, sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: none;
  letter-spacing: -0.02em;
  padding-bottom: 22px;
}

.clients__title--small {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
  padding-bottom: 12px;
  margin: 0;
}

.clients--after-hero .clients__title--small {
  color: rgba(255, 255, 255, 0.90);
}

.clients__slider {
  overflow: hidden;
}

.clients__swiper-container {
  padding: 0;
}

.clients__slide {
  width: auto;
}

.clients__img {
  width: 180px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: var(--home-radius);
  padding: 15px;
  border: 1px solid var(--home-border);
  box-shadow: 0 1px 0 rgba(2, 6, 23, 0.03);
}

.clients--after-hero .clients__img {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.clients__img img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.25s ease, opacity 0.25s ease;
  opacity: 0.92;
}

.clients__img:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.clients--after-hero .clients__img img {
  filter: brightness(0) invert(1);
  opacity: 0.90;
}

.clients--after-hero .clients__img:hover img {
  opacity: 1;
}

/* ---------- REQUEST / FORM ---------- */
.request {
  padding: var(--home-section) 0;
}

.request .background-section {
  background: #0b1220;
  border-radius: var(--home-radius);
  padding: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-managers__content {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  padding: 0 24px;
}

.contact-managers__text {
  flex: 0 0 40%;
  color: #fff;
}

.contact-managers__text h2 {
  color: #fff !important;
  font-family: Inter, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 14px;
  text-transform: none;
  letter-spacing: -0.02em;
}

.contact-managers__text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.contact-managers__links-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-managers__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.contact-managers__link:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.contact-managers__link i {
  font-size: 20px;
}

.contact-managers__link-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  justify-content: center;
  border-radius: 999px;
}

.contact-managers__form {
  flex: 1;
}

.contact-managers__form-fields-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.callback__label {
  position: relative;
  display: block;
}

.callback__label:nth-child(3),
.callback__textaria {
  grid-column: span 2;
}

.callback__input,
.callback__textarea {
  width: 100%;
  padding: 12px 12px 12px 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 15px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.callback__input::placeholder,
.callback__textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.callback__input:focus,
.callback__textarea:focus {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
  outline: none;
}

.callback__textarea {
  min-height: 96px;
  resize: vertical;
}

.callback__label .icon,
.callback__textaria .icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.60);
  font-size: 16px;
}

.callback__textaria .icon {
  top: 18px;
  transform: none;
}

.form__error {
  display: none;
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 4px;
}

.contact-managers__form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}

.callback__file {
  position: relative;
}

.callback__file_input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.callback__file_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.callback__file_button:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

.callback__file_span {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.callback__file_span.active {
  display: flex;
}

.callback__submit {
  padding: 12px 18px;
  background: var(--home-accent);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 12px;
  color: var(--home-accent-ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.callback__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.20);
  filter: saturate(1.04);
}

.checkbox__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox__input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--home-accent);
}

.checkbox__txt {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

.checkbox__txt a {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__banner {
    order: -1;
  }

  .home-hero__sidebar {
    order: 1;
    min-height: auto;
    gap: 10px;
  }

  .home-hero__block {
    padding: 12px;
    border-radius: var(--home-radius);
  }

  .home-hero__block-0.home-hero__block--iso {
    padding: 12px;
  }

  .home-hero__sidebar-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-hero__block-2 {
    min-height: 140px;
  }

  .new-promo-banner__icon--plain {
    width: 48px;
    height: 48px;
  }

  .home-hero__manager-actions {
    flex-direction: row;
    align-items: center;
  }

  .home-hero__manager-btn {
    flex: 1;
  }

  .home-hero__slide {
    min-height: 280px;
  }

  .home-hero__slide-content {
    max-width: 100%;
  }

  .cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__item {
    width: 100%;
  }

  .about__left {
    max-width: unset;
  }

  .about-2__wrapper {
    flex-wrap: wrap;
  }

  .about-2__left {
    width: 100%;
  }

  .about-2__right {
    width: 100%;
    padding: 18px 16px 0 16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-managers__content {
    flex-direction: column;
    gap: 26px;
    padding: 0 20px;
  }

  .contact-managers__text {
    flex: 1;
    text-align: left;
  }

  .contact-managers__links-wrapper {
    justify-content: flex-start;
  }

  .section-title {
    font-size: 34px !important;
  }
}

@media (max-width: 768px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
  }

  .production {
    padding-bottom: 48px;
  }

  .production__title-wrapper h2 {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .about-2__right h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .about-2__title {
    font-size: 28px;
    padding-bottom: 12px;
  }

  .clients__title {
    font-size: 28px;
    line-height: 1.25;
  }

  .clients__title--small {
    font-size: 16px;
    padding-bottom: 10px;
  }

  .clients--after-form {
    padding-top: 0;
    padding-bottom: 0;
  }

  .request .background-section {
    padding: 28px 0;
  }

  .contact-managers__form-fields-wrapper {
    grid-template-columns: 1fr;
  }

  .callback__label:nth-child(3),
  .callback__textaria {
    grid-column: span 1;
  }

  .contact-managers__form-footer {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .services-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 4px 4px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .services-grid::-webkit-scrollbar {
    height: 4px;
  }

  .services-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 2px;
  }

  .services-grid .service-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .news-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 4px 4px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .news-grid::-webkit-scrollbar {
    height: 4px;
  }

  .news-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 2px;
  }

  .news-grid .news-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}

@media (max-width: 576px) {
  .home-hero {
    padding-top: 12px;
  }

  .home-hero__title {
    font-size: 20px;
  }

  .home-hero__subtitle {
    font-size: 13px;
  }

  .home-hero__slide {
    min-height: 250px;
  }

  .section-title {
    font-size: 22px !important;
    line-height: 1.25 !important;
  }

  .btn {
    font-size: 14px;
  }

  .goods__icon {
    min-width: 48px;
    min-height: 48px;
  }

  .about {
    padding: 20px 0;
  }

  .about__title {
    font-size: 26px;
    padding-bottom: 12px;
  }

  .about__text {
    font-size: 14px;
    line-height: 1.55;
  }

  .about-2 {
    padding: 20px 0;
  }

  .about-2__left ul li {
    font-size: 14px;
    line-height: 1.55;
  }

  .about-2__right {
    padding: 16px 0;
  }

  .about-2__right-text {
    font-size: 14px;
    line-height: 1.55;
  }
}