/*
  home-v2.css — redesign v2
  Loaded only on /preview-home-v2 via home-v2.blade.php
  Brand: accent #f4ce47, dark #1e2229, text #1a1a1a
*/

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --v2-accent:       #f4ce47;
  --v2-accent-dark:  #d4ad2c;
  --v2-dark:         #1e2229;
  --v2-dark-2:       #2c323c;
  --v2-text:         #1a1a1a;
  --v2-muted:        #6b7280;
  --v2-border:       #e5e7eb;
  --v2-bg:           #ffffff;
  --v2-bg-muted:     #f4f5f7;
  --v2-radius:       12px;
  --v2-radius-lg:    18px;
  --v2-shadow:       0 4px 20px rgba(0,0,0,0.08);
  --v2-shadow-md:    0 8px 32px rgba(0,0,0,0.12);
}

/* ─── SECTION BASE ────────────────────────────────────────── */
.v2-section { padding: 44px 0; }
.v2-section--muted { background: var(--v2-bg-muted); }

.v2-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.v2-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--v2-accent-dark);
  margin-bottom: 4px;
}
.v2-section__eyebrow--light { color: var(--v2-accent); }

.v2-section__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--v2-text);
  margin: 0;
}
.v2-section__title--light { color: #ffffff; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.v2-btn--accent {
  background: var(--v2-accent);
  color: #111;
  border-color: var(--v2-accent);
}
.v2-btn--accent:hover {
  background: var(--v2-accent-dark);
  border-color: var(--v2-accent-dark);
  box-shadow: none;
}
.v2-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.v2-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}
.v2-btn--outline {
  background: transparent;
  color: var(--v2-text);
  border-color: var(--v2-border);
  padding: 10px 22px;
  font-size: 14px;
}
.v2-btn--outline:hover {
  border-color: var(--v2-text);
  background: var(--v2-text);
  color: #fff;
}
.v2-btn--full { width: 100%; justify-content: center; }

/* ─── HERO ────────────────────────────────────────────────── */
.v2-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--v2-dark);
  border-radius: 0;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.v2-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
}
.v2-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.v2-hero__overlay {
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: linear-gradient(
    100deg,
    rgba(20,24,30,0.82) 0%,
    rgba(20,24,30,0.66) 52%,
    rgba(20,24,30,0.28) 100%
  );
}

.v2-hero__inner {
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 40px;
  padding-bottom: 44px;
  text-align: left;
}

.v2-hero__content {
  width: min(100%, 760px);
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.v2-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.v2-hero__label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--v2-accent);
  flex-shrink: 0;
}

.v2-hero__title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.02;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.v2-hero__divider {
  width: 48px;
  height: 3px;
  background: var(--v2-accent);
  margin: 16px 0;
}

.v2-hero__subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin: 0 0 24px;
  line-height: 1.55;
}
.v2-hero__subtitle strong { color: #fff; font-weight: 700; }

.v2-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.v2-hero__trust {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
}
.v2-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.60);
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.v2-hero__trust-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.v2-hero__trust-item i { color: var(--v2-accent); font-size: 13px; }

/* Hero sidebar */
.v2-hero__sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.v2-hero__manager-card {
  background: #fff;
  border-radius: var(--v2-radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v2-hero__manager-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--v2-muted);
}
.v2-hero__manager-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v2-hero__manager-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--v2-accent);
  flex-shrink: 0;
}
.v2-hero__manager-name { font-size: 15px; font-weight: 700; color: var(--v2-text); }
.v2-hero__manager-id  { font-size: 12px; color: var(--v2-muted); margin-top: 2px; }

.v2-hero__messenger-row { display: flex; gap: 8px; }
.v2-hero__messenger-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 8px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.v2-hero__messenger-btn:hover { opacity: 0.85; }
.v2-hero__messenger-btn--wa { background: #25d366; }
.v2-hero__messenger-btn--tg { background: #0088cc; }

.v2-hero__iso-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--v2-radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.v2-hero__iso-card img { flex-shrink: 0; filter: brightness(0) invert(1); opacity: 0.80; }
.v2-hero__iso-title { font-size: 13px; font-weight: 700; color: #fff; }
.v2-hero__iso-text  { font-size: 12px; color: rgba(255,255,255,0.58); margin-top: 2px; }

/* ─── STATS ───────────────────────────────────────────────── */
.v2-stats {
  background: var(--v2-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

.v2-stats__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v2-stats__item {
  flex: 1;
  text-align: center;
  padding: 4px 12px;
}
.v2-stats__num {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.v2-stats__num span { color: var(--v2-accent); }
.v2-stats__label {
  font-size: 11px;
  color: rgba(255,255,255,0.46);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.v2-stats__divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}

/* ─── ABOUT RIGHT: ADVANTAGES SLIDER ──────────────────────── */
.v2-about-slider__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 14px;
}
.v2-about-slider__wrap {
  position: relative;
  padding: 0 40px 38px;
}
.v2-about-slider__swiper {
  overflow: hidden;
}
.v2-about-slider__swiper .swiper-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  box-sizing: border-box;
}
.v2-about-slider__swiper .swiper-slide {
  height: auto;
  display: flex;
}
.v2-about-slider__swiper .swiper-slide > .v2-about__feat {
  flex: 1;
  width: 100%;
  margin-bottom: 0;
  min-height: 112px;
}
.v2-about__feat--slide {
  align-items: flex-start;
}
.v2-about__feat-body {
  flex: 1;
  min-width: 0;
}
.v2-about__feat--compact .v2-about__feat-title {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.45;
}
.v2-about-slider__prev,
.v2-about-slider__next {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.v2-about-slider__prev { left: 0; }
.v2-about-slider__next { right: 0; }
.v2-about-slider__prev:hover,
.v2-about-slider__next:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  color: #111;
}
.v2-about-slider__pagination.swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  text-align: center;
}
.v2-about-slider__pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}
.v2-about-slider__pagination .swiper-pagination-bullet-active {
  background: var(--v2-accent);
}

/* ─── CATALOG ─────────────────────────────────────────────── */
.v2-catalog { background: var(--v2-bg); }
.v2-catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--v2-border);
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  overflow: hidden;
}
.v2-catalog__card {
  background: #fff;
  overflow: hidden;
  transition: background 0.15s;
}
.v2-catalog__card:hover { background: #fafafa; }
.v2-catalog__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  min-height: 48px;
}
.v2-catalog__card-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.v2-catalog__card-icon img { width: 22px; height: 22px; object-fit: contain; }
.v2-catalog__card-icon i  { font-size: 14px; color: #9ca3af; }
.v2-catalog__card-title {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  line-height: 1.3;
  min-width: 0;
}
.v2-catalog__card-title:hover { color: #111; }
.v2-catalog__toggle {
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.15s, transform 0.2s;
}
.v2-catalog__toggle:hover { color: #374151; }
.v2-catalog__card.is-open .v2-catalog__toggle { transform: rotate(180deg); }
.v2-catalog__toggle i { font-size: 11px; }
.v2-catalog__card-body {
  display: none;
  flex-direction: column;
  border-top: 1px solid #f3f4f6;
  padding: 6px 0 8px;
  background: #fff;
}
.v2-catalog__card.is-open .v2-catalog__card-body { display: flex; }
.v2-catalog__card-link {
  padding: 5px 14px 5px 56px;
  font-size: 12px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.12s, background 0.12s;
}
.v2-catalog__card-link:hover { color: #111827; background: #f9fafb; }

/* ─── ABOUT (dark) ────────────────────────────────────────── */
.v2-about { background: var(--v2-dark); }
.v2-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.v2-about__text {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  margin: 0 0 18px;
}
.v2-about__checklist {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}
.v2-about__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.v2-about__check i { color: var(--v2-accent); font-size: 13px; flex-shrink: 0; }
.v2-about__feats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.v2-about__feat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--v2-radius);
  background: rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.v2-about__feat:hover { background: rgba(255,255,255,0.07); }
.v2-about__feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--v2-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #111;
  flex-shrink: 0;
}
.v2-about__feat-title { font-size: 13px; font-weight: 700; color: #fff; line-height: 1.3; }
.v2-about__feat-text  { font-size: 12px; color: rgba(255,255,255,0.50); line-height: 1.45; margin: 0; }

/* ─── FEATURED CATEGORIES ────────────────────────────────── */
.v2-featured__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  align-items: stretch;
  min-width: 0;
}
.v2-featured__banner--aside {
  display: flex;
}
.v2-featured__cat-slide {
  display: none !important;
}
.v2-product-card--category {
  height: 100%;
}
@media (min-width: 768px) {
  .v2-featured__swiper .swiper-slide.v2-featured__cat-slide,
  .v2-services__swiper .swiper-slide.v2-feed__intro-slide,
  .v2-news__swiper .swiper-slide.v2-feed__intro-slide,
  .v2-shipments__swiper .swiper-slide.v2-feed__intro-slide {
    display: none !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    pointer-events: none !important;
    flex: 0 0 0 !important;
  }
}
@media (max-width: 767px) {
  .v2-featured__layout {
    display: block;
  }
  .v2-featured .v2-featured__banner--aside,
  .v2-featured a.v2-featured__banner.v2-featured__banner--aside {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }
  .v2-featured__slider-wrap {
    min-width: 0;
    overflow: hidden;
  }
  .v2-featured .v2-row-slider {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
  .v2-featured .v2-row-slider .v2-slider-prev,
  .v2-featured .v2-row-slider .v2-slider-next {
    display: none !important;
  }
  .v2-featured__swiper {
    overflow: hidden;
    touch-action: pan-x;
  }
  .v2-featured__swiper .swiper-wrapper {
    align-items: stretch;
  }
  .v2-featured__swiper .swiper-slide {
    display: flex !important;
    height: auto !important;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  .v2-featured__cat-slide {
    display: flex !important;
    height: auto;
  }
  .v2-featured__swiper .swiper-slide > .v2-product-card {
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 8px;
  }
  .v2-featured .v2-product-card__img {
    aspect-ratio: 1 / 1;
    max-height: none;
  }
  .v2-featured .v2-product-card__no-img {
    font-size: 22px;
  }
  .v2-featured .v2-product-card__body {
    padding: 8px 10px 10px;
    gap: 6px;
  }
  .v2-featured .v2-product-card__title {
    font-size: 11px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    min-height: 0;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .v2-featured .v2-product-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .v2-featured .v2-product-card__price {
    font-size: 11px;
    white-space: normal;
    line-height: 1.2;
  }
  .v2-featured .v2-product-card__price--request {
    font-size: 11px;
  }
  .v2-featured .v2-product-card__btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 4px 6px !important;
    background: var(--v2-accent);
    color: #111;
    border-radius: 5px !important;
    font-size: 11px;
    font-weight: 700;
    border: none !important;
    box-shadow: none !important;
  }
  .v2-featured.v2-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .v2-featured .v2-section__header {
    margin-bottom: 14px;
    gap: 10px;
  }
  .v2-featured .v2-section__title {
    font-size: 20px;
  }
  .v2-featured .v2-section__eyebrow {
    font-size: 10px;
    margin-bottom: 4px;
  }
  .v2-featured .v2-btn.v2-btn--outline {
    padding: 6px 12px;
    font-size: 12px;
  }

  /* Feed: услуги / новости / отгрузки — как featured на мобилке */
  .v2-feed-layout {
    display: block;
  }
  .v2-feed-layout a.v2-feed-rail {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }
  .v2-feed-layout__slider-wrap {
    min-width: 0;
    overflow: hidden;
  }
  .v2-services .v2-row-slider,
  .v2-news .v2-row-slider,
  .v2-shipments .v2-row-slider {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
  .v2-services .v2-row-slider .v2-slider-prev,
  .v2-services .v2-row-slider .v2-slider-next,
  .v2-news .v2-row-slider .v2-slider-prev,
  .v2-news .v2-row-slider .v2-slider-next,
  .v2-shipments .v2-row-slider .v2-slider-prev,
  .v2-shipments .v2-row-slider .v2-slider-next {
    display: none !important;
  }
  .v2-services__swiper,
  .v2-news__swiper,
  .v2-shipments__swiper {
    overflow: hidden;
    touch-action: pan-x;
  }
  .v2-services__swiper .swiper-slide,
  .v2-news__swiper .swiper-slide,
  .v2-shipments__swiper .swiper-slide {
    display: flex !important;
    height: auto !important;
    box-sizing: border-box;
  }
  .v2-feed__intro-slide {
    display: flex !important;
    height: auto;
  }
  .v2-feed-layout .v2-product-card {
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 8px;
  }
  .v2-feed-layout .v2-product-card__img {
    aspect-ratio: 1 / 1;
    max-height: none;
  }
  .v2-feed-layout .v2-product-card__no-img {
    font-size: 22px;
  }
  .v2-feed-layout .v2-product-card__body {
    padding: 8px 10px 10px;
    gap: 6px;
  }
  .v2-feed-layout .v2-product-card__title {
    font-size: 11px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    min-height: 0;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .v2-feed-layout .v2-product-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .v2-feed-layout .v2-product-card__price {
    font-size: 11px;
    white-space: normal;
    line-height: 1.2;
  }
  .v2-feed-layout .v2-product-card__btn {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 4px 6px !important;
    background: var(--v2-accent);
    color: #111;
    border-radius: 5px !important;
    font-size: 11px;
    font-weight: 700;
    border: none !important;
    box-shadow: none !important;
  }
  .v2-services .v2-service-card {
    border-radius: 8px;
    min-height: 0;
    padding: 0;
    border: 1px solid var(--v2-border);
  }
  .v2-services .v2-service-card__img {
    aspect-ratio: 1 / 1;
  }
  .v2-services .v2-service-card__body {
    padding: 8px 10px 10px;
    gap: 6px;
  }
  .v2-services .v2-service-card__title {
    font-size: 11px;
    min-height: 0;
    -webkit-line-clamp: 2;
  }
  .v2-services .v2-service-card__desc {
    display: none;
  }
  .v2-services .v2-service-card__link {
    font-size: 11px;
    padding-top: 0;
    margin-top: auto;
  }
  .v2-news .v2-news-card {
    border-radius: 8px;
    min-height: 0;
  }
  .v2-news a.v2-news-card__link {
    padding: 0;
    gap: 0;
    height: 100%;
  }
  .v2-news .v2-news-card__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 100%;
    background: var(--v2-bg-muted);
    padding: 10px;
    box-sizing: border-box;
    flex-shrink: 0;
  }
  .v2-news .v2-news-card__meta {
    font-size: 10px;
    text-align: center;
    line-height: 1.3;
  }
  .v2-news a.v2-news-card__link > .v2-news-card__title {
    padding: 8px 10px 10px;
    font-size: 11px;
    -webkit-line-clamp: 2;
    min-height: 0;
  }
  .v2-shipments .v2-shipment-card {
    border-radius: 8px;
    min-height: 0;
  }
  .v2-shipments .v2-shipment-card__img-wrap {
    aspect-ratio: 1 / 1;
  }
  .v2-shipments .v2-shipment-card__body {
    padding: 8px 10px 10px;
    gap: 4px;
  }
  .v2-shipments .v2-shipment-card__title {
    font-size: 11px;
    min-height: 0;
  }
  .v2-shipments .v2-shipment-card__title a {
    -webkit-line-clamp: 2;
  }
  .v2-shipments .v2-shipment-card__date {
    font-size: 10px;
    padding-top: 0;
  }
  .v2-services.v2-section,
  .v2-news.v2-section,
  .v2-shipments.v2-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .v2-services .v2-section__header,
  .v2-news .v2-section__header,
  .v2-shipments .v2-section__header {
    margin-bottom: 14px;
    gap: 10px;
  }
  .v2-services .v2-section__title,
  .v2-news .v2-section__title,
  .v2-shipments .v2-section__title {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .v2-featured__layout {
    grid-template-columns: 200px 1fr;
  }
}
.v2-featured__banner {
  position: relative;
  border-radius: var(--v2-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  text-decoration: none;
  flex-shrink: 0;
}
.v2-featured__banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.v2-featured__banner:hover img { transform: scale(1.04); }
.v2-featured__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,24,30,0.15) 0%, rgba(20,24,30,0.80) 100%);
}
.v2-featured__banner-body {
  position: relative;
  z-index: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.v2-featured__banner-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--v2-accent);
}
.v2-featured__banner-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.v2-featured__banner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
  transition: gap 0.2s, color 0.2s;
}
.v2-featured__banner:hover .v2-featured__banner-link {
  gap: 10px;
  color: var(--v2-accent);
}

.v2-featured__slider-wrap { min-width: 0; }

/* ─── FEED LAYOUT (услуги / новости / отгрузки — как v2-featured__layout) ─ */
.v2-feed-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  align-items: stretch;
}
.v2-feed-layout__slider-wrap {
  min-width: 0;
}
a.v2-feed-rail {
  position: relative;
  border-radius: var(--v2-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  flex-shrink: 0;
  background: var(--v2-dark);
  text-decoration: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
}
a.v2-feed-rail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,24,30,0.15) 0%, rgba(20,24,30,0.82) 100%);
  pointer-events: none;
}
.v2-feed-rail__inner {
  position: relative;
  z-index: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v2-feed-rail__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--v2-accent);
}
.v2-feed-rail__headline {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.v2-feed-rail__lead {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.62);
  margin: 0;
}
.v2-feed-rail__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}
a.v2-feed-rail:hover .v2-feed-rail__cta {
  gap: 10px;
  color: var(--v2-accent);
}
.v2-feed__intro-slide {
  display: none !important;
}

/* ─── PRODUCT CARD ────────────────────────────────────────── */
.v2-product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--v2-border);
  border-radius: var(--v2-radius);
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.2s;
}
.v2-product-card:hover {
  box-shadow: var(--v2-shadow-md);
}

.v2-product-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--v2-bg-muted);
  flex-shrink: 0;
}
.v2-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.v2-product-card:hover .v2-product-card__img img { transform: scale(1.05); }

.v2-product-card__no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v2-bg-muted);
  color: var(--v2-border);
  font-size: 36px;
}

.v2-product-card__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.v2-product-card__title {
  font-size: 12px;
  font-weight: 600;
  color: var(--v2-text);
  line-height: 1.4;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  min-height: calc(1.4em * 3);
}
.v2-product-card__title:hover { color: var(--v2-accent-dark); }

.v2-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.v2-product-card__price {
  font-size: 14px;
  font-weight: 800;
  color: var(--v2-text);
  white-space: nowrap;
}
.v2-product-card__price--request {
  font-size: 12px;
  font-weight: 600;
  color: var(--v2-muted);
}

.v2-product-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: var(--v2-accent);
  color: #111;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.v2-product-card__btn:hover { background: var(--v2-accent-dark); }

/* ─── ROW SLIDER WRAPPER ──────────────────────────────────── */
.v2-row-slider {
  position: relative;
  padding: 0 48px;
  box-sizing: border-box;
}
.v2-row-slider .swiper {
  overflow: hidden;
}
/* prev/next arrows */
.v2-slider-prev,
.v2-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--v2-border);
  background: #fff;
  color: var(--v2-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
  box-shadow: var(--v2-shadow);
}
.v2-slider-prev { left: 0; }
.v2-slider-next { right: 0; }
.v2-slider-prev:hover,
.v2-slider-next:hover {
  background: var(--v2-accent);
  border-color: var(--v2-accent);
  color: #111;
}
.v2-slider-prev.swiper-button-disabled,
.v2-slider-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

/* Row sliders: одинаковая высота карточек в одном ряду */
.v2-featured__swiper .swiper-wrapper,
.v2-services__swiper .swiper-wrapper,
.v2-news__swiper .swiper-wrapper,
.v2-shipments__swiper .swiper-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  box-sizing: border-box;
  align-items: stretch;
}
.v2-featured__swiper .swiper-slide:not(.v2-featured__cat-slide),
.v2-services__swiper .swiper-slide:not(.v2-feed__intro-slide),
.v2-news__swiper .swiper-slide:not(.v2-feed__intro-slide),
.v2-shipments__swiper .swiper-slide:not(.v2-feed__intro-slide) {
  height: auto;
  display: flex;
  box-sizing: border-box;
}
.v2-featured__swiper .swiper-slide > *,
.v2-services__swiper .swiper-slide > *,
.v2-news__swiper .swiper-slide > *,
.v2-shipments__swiper .swiper-slide > * {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
}

/* ─── SERVICES ────────────────────────────────────────────── */
.v2-services { background: var(--v2-bg); }
.v2-service-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--v2-radius-lg);
  overflow: hidden;
  text-decoration: none;
  background: var(--v2-bg-muted);
  border: 1px solid var(--v2-border);
  transition: box-shadow 0.25s;
  height: 100%;
  min-height: 100%;
}
.v2-service-card:hover { box-shadow: var(--v2-shadow-md); }
.v2-service-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--v2-dark);
}
.v2-service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.v2-service-card:hover .v2-service-card__img img { transform: scale(1.04); }
.v2-service-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.v2-service-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--v2-text);
  margin: 0;
  line-height: 1.3;
  min-height: calc(1.3em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-service-card__desc {
  font-size: 13px;
  color: var(--v2-muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
  min-height: calc(1.5em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--v2-accent-dark);
  margin-top: auto;
  padding-top: 6px;
  transition: gap 0.2s;
}
.v2-service-card:hover .v2-service-card__link { gap: 10px; }

/* ─── NEWS ────────────────────────────────────────────────── */
.v2-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.v2-news-card {
  background: #fff;
  border-radius: var(--v2-radius-lg);
  overflow: hidden;
  border: 1px solid var(--v2-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
  height: 100%;
  min-height: 100%;
  min-width: 0;
}
.v2-news-card:hover { box-shadow: var(--v2-shadow-md); }

/* app.css: глобальный a { padding; border } — обнуляем для ссылок внутри карточки новостей */
.v2-news-card__title a {
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.35;
  transition: color 0.2s ease;
}
.v2-news-card:hover .v2-news-card__title a { color: var(--v2-accent-dark); }

/* Одна ссылка на всю карточку (актуальная вёрстка) */
a.v2-news-card__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 22px 22px;
  height: 100%;
  min-height: 0;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  flex: 1 1 auto;
  border: none;
  border-radius: 0;
  font-size: inherit;
  font-family: inherit;
}

/* Кэш / старая вёрстка: тело карточки + отдельная ссылка «Читать далее» */
.v2-news-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
}
.v2-news-card__thumb {
  display: block;
  width: 100%;
  flex-shrink: 0;
}
.v2-news-card__meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--v2-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.v2-news-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--v2-text);
  margin: 0;
  line-height: 1.35;
  flex: 1;
  min-width: 0;
  width: 100%;
  transition: color 0.2s ease;
}
/* Заголовок как текст внутри a.v2-news-card__link (без вложенного a) */
a.v2-news-card__link > .v2-news-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-news-card:hover a.v2-news-card__link > .v2-news-card__title { color: var(--v2-accent-dark); }

.v2-news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--v2-accent-dark);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.v2-news-card__more:hover { gap: 10px; color: var(--v2-text); }

/* ─── SHIPMENTS ───────────────────────────────────────────── */
.v2-shipments { background: var(--v2-bg-muted); }

.v2-shipment-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--v2-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--v2-border);
  transition: box-shadow 0.2s;
  height: 100%;
}
.v2-shipment-card:hover {
  box-shadow: var(--v2-shadow-md);
}
.v2-shipment-card__img-wrap {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--v2-dark);
}
.v2-shipment-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.v2-shipment-card:hover .v2-shipment-card__img-wrap img { transform: scale(1.04); }
.v2-shipment-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-height: 0;
}
.v2-shipment-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--v2-text);
  margin: 0;
  line-height: 1.35;
  flex: 1;
  min-height: calc(1.35em * 3);
}
.v2-shipment-card__title a {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v2-shipment-card__title a:hover { color: var(--v2-accent-dark); }
.v2-shipment-card__date {
  font-size: 11px;
  color: var(--v2-muted);
  font-weight: 600;
  margin-top: auto;
  padding-top: 6px;
}

/* ─── CONTACT ─────────────────────────────────────────────── */
.v2-contact { background: var(--v2-dark-2); }
.v2-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Left column */
.v2-contact__headline {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 14px 0 18px;
  letter-spacing: -0.3px;
}
.v2-contact__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  margin: 0 0 32px;
}
.v2-contact__features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v2-contact__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.v2-contact__feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(244,206,71,0.12);
  border: 1.5px solid rgba(244,206,71,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v2-accent);
  font-size: 16px;
}
.v2-contact__feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.v2-contact__feature span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.v2-contact__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v2-contact__phone,
.v2-contact__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.2s;
}
.v2-contact__phone i,
.v2-contact__email i { color: var(--v2-accent); font-size: 15px; }
.v2-contact__phone:hover,
.v2-contact__email:hover { color: var(--v2-accent); }
.v2-contact__email { font-size: 14px; font-weight: 500; }
.v2-contact__messengers { display: flex; gap: 10px; margin-top: 8px; }
.v2-contact__msg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.v2-contact__msg:hover { opacity: 0.85; }
.v2-contact__msg--wa { background: #25d366; }
.v2-contact__msg--tg { background: #0088cc; }
.v2-contact__msg i   { font-size: 17px; }
.v2-contact__msg--max { background: #111827; }
.v2-contact__msg img { display: block; }

/* Right column — card */
.v2-contact__card {
  background: #fff;
  border-radius: var(--v2-radius-lg);
  overflow: hidden;
}

/* Form — clean variant */
.v2-form--clean {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v2-form__field-clean {
  position: relative;
}
.v2-form__field-clean input,
.v2-form__field-clean textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--v2-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--v2-text);
  background: #f9fafb;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
  box-sizing: border-box;
}
.v2-form__field-clean input:focus,
.v2-form__field-clean textarea:focus {
  outline: none;
  border-color: var(--v2-accent);
  background: #fff;
}
.v2-form__field-clean textarea { min-height: 90px; }
.v2-form__error {
  display: none;
  font-size: 11px;
  color: #ef4444;
  position: absolute;
  bottom: -15px;
  left: 4px;
}
.v2-form__field-clean input:invalid:not(:placeholder-shown) ~ .v2-form__error { display: block; }
.v2-form__submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--v2-accent);
  color: var(--v2-dark);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.v2-form__submit-btn:hover { background: var(--v2-accent-dark); }
.v2-form__file-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.v2-form__file-input { display: none; }
.v2-form__file-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1.5px dashed var(--v2-border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--v2-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.v2-form__file-btn:hover { border-color: var(--v2-accent); color: var(--v2-text); }
.v2-form__file-name { font-size: 12px; color: var(--v2-muted); max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.v2-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11.5px;
  color: var(--v2-muted);
  cursor: pointer;
  line-height: 1.5;
}
.v2-form__checkbox input[type="checkbox"] { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; accent-color: var(--v2-accent); }
.v2-form__checkbox a { color: var(--v2-text); text-decoration: underline; }
.v2-form__checkbox a:hover { color: var(--v2-accent-dark); }
.v2-form__trust {
  display: flex;
  gap: 20px;
  padding-top: 4px;
}
.v2-form__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--v2-muted);
}
.v2-form__trust-item i { color: #10b981; font-size: 13px; }
.v2-alert { padding: 14px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 4px; }
.v2-alert--success { background: #d1fae5; color: #065f46; }
.v2-alert--error   { background: #fee2e2; color: #991b1b; }

/* ─── CLIENTS (внутри блока отгрузок) ─────────────────────── */
.v2-shipments__clients {
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--v2-border);
}
.v2-clients__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--v2-text);
  text-align: center;
  margin: 0 0 36px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.v2-clients__swiper { overflow: hidden; }
.v2-clients__swiper .swiper-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  box-sizing: border-box;
}
.v2-clients__slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  opacity: 0.50;
  transition: opacity 0.2s;
}
.v2-clients__slide:hover { opacity: 1; }
.v2-clients__slide img {
  max-height: 48px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.2s;
}
.v2-clients__slide:hover img { filter: grayscale(0%); }

/* ─── FADE-IN ─────────────────────────────────────────────── */
html.fadein-init .fadein {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
html.fadein-init .fadein.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .v2-hero__title { font-size: 44px; }
  .v2-catalog__grid { grid-template-columns: repeat(3, 1fr); }
  .v2-featured__banner { min-height: 260px; }
  .v2-feed-rail { min-height: 260px; }
}

@media (max-width: 991px) {
  .v2-section { padding: 52px 0; }
  .v2-section__title { font-size: 28px; }

  .v2-hero__sidebar { display: none; }
  .v2-hero__title { font-size: 38px; }

  .v2-stats__grid { flex-wrap: wrap; }
  .v2-stats__item { flex: 0 0 50%; }
  .v2-stats__divider { display: none; }

  .v2-featured__layout { grid-template-columns: 200px 1fr; }
  .v2-feed-layout { grid-template-columns: 200px 1fr; }
  .v2-about__grid   { grid-template-columns: 1fr; gap: 36px; }
  .v2-about-slider__wrap { padding: 0 36px 40px; }
  .v2-contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .v2-services__grid { grid-template-columns: repeat(2, 1fr); }
  .v2-news__grid     { grid-template-columns: repeat(2, 1fr); }
  .v2-catalog__grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .v2-section { padding: 40px 0; }
  .v2-section__header { flex-direction: column; align-items: flex-start; }
  .v2-section__title { font-size: 24px; }

  .v2-hero { min-height: auto; }
  .v2-hero__inner { padding-top: 28px; padding-bottom: 32px; }
  .v2-hero__content { max-width: none; }
  .v2-hero__title { font-size: 28px; }
  .v2-hero__divider { margin: 16px 0; }
  .v2-hero__subtitle { font-size: 15px; }
  .v2-hero__actions { flex-direction: column; }
  .v2-hero__trust { gap: 10px; }
  .v2-hero__trust-item { border-right: none; padding-right: 0; margin-right: 0; }

  .v2-stats__num { font-size: 26px; }

  .v2-feed-layout { grid-template-columns: 1fr; gap: 16px; }
  .v2-feed-rail { min-height: 180px; }
  .v2-services__grid { grid-template-columns: 1fr; }
  .v2-news__grid     { grid-template-columns: 1fr; }
  .v2-catalog__grid  { grid-template-columns: 1fr 1fr; }

  .v2-form__row { grid-template-columns: 1fr; }
  .v2-form { padding: 20px; }
  .v2-form__footer { flex-direction: column; align-items: stretch; }
  .v2-form__footer .v2-btn { width: 100%; justify-content: center; }

  .v2-row-slider { padding: 0 40px; }
  .v2-slider-prev,
  .v2-slider-next { width: 34px; height: 34px; font-size: 12px; }
}

@media (max-width: 480px) {
  .v2-catalog__grid { grid-template-columns: 1fr; }
  .v2-stats__item { flex: 0 0 100%; }
}
