/* ==========================================================================
   Главная страница — композиция по макету + шагреневое матовое стекло ПОЛИГРАД
   ========================================================================== */

.home-page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- HERO (макет: фото на всю ширину, текст слева, полоска преимуществ внизу) --- */
.home-hero {
  position: relative;
  min-height: 0;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid rgba(24, 73, 57, 0.1);
  box-shadow: 0 22px 56px rgba(28, 45, 37, 0.12);
  background: transparent;
}

.home-hero--showcase {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  min-height: 0;
  height: auto;
  aspect-ratio: 2 / 1;
  max-height: 78vh;
}

.home-hero--slider {
  isolation: isolate;
  overflow: visible;
  margin-top: 0;
  margin-bottom: clamp(118px, 10vw, 148px);
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.home-hero--slider .home-hero__slider {
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 3%, #000 97%, transparent 100%);
  mask-composite: intersect;
}

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

.home-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 clamp(28px, 3.4vw, 64px);
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.home-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.home-hero__slide .home-hero__bg {
  position: absolute;
  inset: 0;
}

.home-hero__dots {
  display: none;
}

.home-hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(23, 77, 60, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.25s ease;
}

.home-hero__dot.is-active {
  width: 28px;
  background: var(--c-emerald-dark);
}

.home-hero__dot:focus-visible {
  outline: 2px solid rgba(23, 77, 60, 0.45);
  outline-offset: 2px;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
}

.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  transform: none;
}

.home-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(239, 251, 244, 0.28) 0%,
      rgba(239, 251, 244, 0.1) 26%,
      transparent 48%
    );
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding: 0;
  pointer-events: none;
}

.home-hero--slider .home-hero__inner {
  padding-bottom: 0;
}

.home-hero__copy {
  position: relative;
  z-index: 3;
  max-width: min(34rem, 46%);
  opacity: 0;
  transform: translate3d(-18px, 10px, 0);
}

.home-hero__slide.is-active .home-hero__copy {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease 0.16s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.16s;
}

.home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.35vw, 2.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  color: var(--c-emerald-forest);
}

.home-hero__lead {
  font-size: clamp(0.84rem, 0.95vw, 0.98rem);
  line-height: 1.5;
  color: #4e5b54;
  margin: 0 0 16px;
  max-width: 34rem;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-hero__actions .btn-primary {
  box-shadow: 0 10px 26px rgba(23, 77, 60, 0.22);
}

.home-hero__actions .btn {
  min-height: 40px;
  padding: 8px 16px;
  font-size: 0.84rem;
}

.home-hero__actions .btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-emerald-forest);
  border: 1.5px solid rgba(23, 77, 60, 0.18);
}

.home-hero__actions .btn-secondary:hover {
  background: #fff;
  border-color: rgba(23, 77, 60, 0.32);
}

.home-hero__trustbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
}

.home-hero__trust-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: clamp(10px, 1.2vw, 14px) clamp(8px, 1vw, 12px) clamp(8px, 1vw, 12px);
  text-align: center;
  border-right: 1px solid rgba(24, 73, 57, 0.08);
}

.home-hero__trust-item:last-child {
  border-right: 0;
}

.home-hero__trust-icon {
  flex-shrink: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: none;
  color: inherit;
  font-size: inherit;
}

.home-hero__trust-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1.3;
  max-width: 220px;
}

.home-hero__trust-text strong {
  color: var(--c-emerald-forest);
  font-size: clamp(0.7rem, 0.85vw, 0.78rem);
  font-weight: 800;
}

.home-hero__trust-text span {
  color: #46524c;
  font-size: clamp(0.62rem, 0.75vw, 0.7rem);
  font-weight: 600;
}

/* Legacy panel variant (если понадобится) */
.home-hero__panel {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 48px);
  padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 44px);
  border-radius: 20px;
  color: var(--c-emerald-forest);
  background-image: var(--glass-grain), linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 100%);
  background-size: 160px 160px, 100% 100%;
  background-blend-mode: soft-light, normal;
  backdrop-filter: blur(var(--glass-blur-md)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur-md)) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-left: 4px solid var(--c-emerald);
  box-shadow: 0 12px 36px rgba(7, 43, 32, 0.08);
}

.home-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-emerald-dark);
  margin: 0 0 12px;
}

.home-hero__kicker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  padding: 2px 6px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  background: rgba(47, 127, 53, 0.12);
  color: var(--c-emerald-forest);
}

.home-hero__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  color: var(--c-emerald-forest);
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 10px 24px rgba(28, 45, 37, 0.1);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-hero__nav:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 14px 28px rgba(28, 45, 37, 0.14);
}

.home-hero__nav--prev {
  left: clamp(12px, 1.4vw, 22px);
}

.home-hero__nav--next {
  right: clamp(12px, 1.4vw, 22px);
}

.home-hero__index {
  position: absolute;
  left: clamp(28px, 3.4vw, 64px);
  bottom: 18px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 120px);
}

.home-hero__index-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #3f4d46;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, padding 0.25s ease, border-color 0.2s ease;
}

.home-hero__index-num {
  font-variant-numeric: tabular-nums;
  opacity: 0.72;
}

.home-hero__index-name {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width 0.28s ease, opacity 0.2s ease;
}

.home-hero__index-btn.is-active {
  color: var(--c-emerald-forest);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.88);
}

.home-hero__index-btn.is-active .home-hero__index-name,
.home-hero__index-btn:hover .home-hero__index-name {
  max-width: 11rem;
  opacity: 1;
}

.home-hero__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.home-hero__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(47, 127, 53, 0.35), var(--c-emerald-dark));
}

.home-hero__progress-bar.is-running {
  animation: homeHeroProgress 6500ms linear forwards;
}

@keyframes homeHeroProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* --- TRUST STRIP --- */
.home-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: -32px 24px 40px;
  position: relative;
  z-index: 3;
  border-radius: 18px;
  overflow: hidden;
}

.home-trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-right: 1px solid rgba(7, 43, 32, 0.06);
}

.home-trust__item:last-child {
  border-right: none;
}

.home-trust__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(16, 185, 129, 0.15);
  color: var(--c-emerald-dark);
  font-size: 1.1rem;
}

.home-trust__text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--c-emerald-forest);
  line-height: 1.25;
}

.home-trust__text span {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}

/* --- SECTIONS --- */
.home-section {
  margin-bottom: 48px;
}

.home-hero--slider + .home-section {
  margin-top: clamp(20px, 2.8vw, 34px);
  scroll-margin-top: 24px;
}

.home-section__head {
  margin-bottom: 28px;
}

.home-section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--c-emerald-forest);
  margin: 10px 0 8px;
}

.home-section__head p {
  color: var(--c-text-muted);
  font-size: 1rem;
  max-width: 640px;
  line-height: 1.55;
}

/* --- POPULAR CATEGORIES (3×3) --- */
.home-cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-cat {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  background-image: var(--glass-grain), linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
  background-size: 160px 160px, 100% 100%;
  background-blend-mode: soft-light, normal;
  border: 1px solid rgba(7, 43, 32, 0.08);
  box-shadow: 0 8px 28px rgba(7, 43, 32, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.home-cat:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(7, 43, 32, 0.14);
}

.home-cat__img {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: var(--catalog-media-ratio, 16 / 10);
  overflow: hidden;
  z-index: 1;
}

.home-cat__img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.home-cat:hover .home-cat__img img {
  transform: scale(1.05);
}

.home-cat__body {
  position: relative;
  z-index: 2;
  padding: 12px 14px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-cat__title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.home-cat__body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-emerald-forest);
}

.home-cat__body p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.32;
}

.home-cat__arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-emerald);
  color: #fff;
  font-size: 0.85rem;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.home-cat:hover .home-cat__arrow {
  background: var(--c-sun);
  color: #1a1408;
  transform: translateX(3px);
}

.home-cat__wave {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -1px;
  height: 46px;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(186, 236, 214, 0.4) 38%, rgba(16, 185, 129, 0.26) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -12px 20px rgba(5, 150, 105, 0.14),
    0 -8px 20px rgba(16, 185, 129, 0.14);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  transform: perspective(240px) rotateX(16deg);
  transform-origin: center bottom;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 56' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,26 C55,6 105,46 165,26 C225,6 275,44 335,22 C365,12 388,16 400,20 L400,56 L0,56 Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 56' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0,26 C55,6 105,46 165,26 C225,6 275,44 335,22 C365,12 388,16 400,20 L400,56 L0,56 Z'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.home-cat__wave::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 8px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.home-cat__wave::after {
  content: "";
  position: absolute;
  inset: 14px 10% auto;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 72%);
}

/* --- WHY US --- */
.home-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.home-why__card {
  padding: 24px 20px;
  border-radius: 20px;
}

.home-why__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--c-sun-dark);
  font-size: 1.2rem;
}

.home-why__card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-emerald-forest);
  margin-bottom: 8px;
}

.home-why__card p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* --- WORKS GALLERY --- */
.home-works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.home-works__item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: var(--catalog-media-ratio, 16 / 10);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-subtle);
}

.home-works__item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.home-works__item:hover img {
  transform: scale(1.04);
}

/* --- PROMO BANNER --- */
.home-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 36px;
  border-radius: 24px;
  margin-bottom: 48px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.92) 0%, rgba(5, 150, 105, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 40px rgba(5, 150, 105, 0.25);
  color: #fff;
}

.home-promo h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 6px;
}

.home-promo p {
  font-size: 0.95rem;
  opacity: 0.9;
  max-width: 520px;
}

.home-promo .btn {
  flex-shrink: 0;
  background: #fff;
  color: var(--c-emerald-deep);
  border: none;
  font-weight: 800;
}

.home-promo .btn:hover {
  background: var(--c-sun-light);
  color: var(--c-emerald-forest);
}

/* --- PRODUCT HITS (mockup cards) --- */
.home-hits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-hit {
  border-radius: 20px;
  overflow: hidden;
  background-image: var(--glass-grain), var(--glass-bg-card);
  background-size: 160px 160px, 100% 100%;
  background-blend-mode: soft-light, normal;
  backdrop-filter: blur(var(--glass-blur-sm));
  -webkit-backdrop-filter: blur(var(--glass-blur-sm));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-glass);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
}

.home-hit:hover {
  transform: translateY(-4px);
}

.home-hit__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.home-hit__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-hit__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-emerald);
}

.home-hit__body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-emerald-forest);
}

.home-hit__body h3 a {
  color: inherit;
  text-decoration: none;
}

.home-hit__specs {
  list-style: none;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.45;
}

.home-hit__specs li::before {
  content: '• ';
  color: var(--c-emerald);
}

.home-hit__price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-emerald-forest);
  margin-top: 4px;
}

.home-hit__footer {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.home-hit__footer .btn-primary {
  flex: 1;
  justify-content: center;
  padding: 12px 16px;
  font-size: 0.9rem;
}

.home-hit__cart {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  color: var(--c-emerald-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.home-hit__cart:hover {
  background: var(--c-emerald);
  color: #fff;
}

/* --- LEAD + REVIEWS --- */
.home-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.home-lead,
.home-reviews-wrap {
  border-radius: 24px;
  padding: 28px 30px;
  background-image: var(--glass-grain), var(--glass-bg-card);
  background-size: 160px 160px, 100% 100%;
  background-blend-mode: soft-light, normal;
  backdrop-filter: blur(var(--glass-blur-md));
  -webkit-backdrop-filter: blur(var(--glass-blur-md));
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-glass);
}

.home-lead h2,
.home-reviews-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--c-emerald-forest);
  margin-bottom: 8px;
}

.home-lead > p {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  margin-bottom: 20px;
}

.home-lead-form {
  display: grid;
  gap: 12px;
}

.home-lead-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.35);
  font: inherit;
  color: var(--c-text-main);
}

.home-lead-form input:focus {
  outline: none;
  border-color: var(--c-emerald);
  background: rgba(255, 255, 255, 0.55);
}

.home-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-review {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.home-review__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.home-review__head strong {
  font-size: 0.92rem;
  color: var(--c-emerald-forest);
}

.home-review__head span {
  font-size: 0.78rem;
  color: var(--c-text-light);
}

.home-review__stars {
  color: var(--c-sun);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.home-review p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* --- RESPONSIVE --- */
@media (min-width: 1025px) and (max-width: 1366px) {
  .home-hero--slider {
    margin-bottom: clamp(108px, 9vw, 132px);
  }

  .home-hero--showcase {
    min-height: 0;
    max-height: none;
  }

  .home-hero__title {
    font-size: clamp(1.2rem, 2vw, 1.7rem);
  }

  .home-cats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .home-why,
  .home-works {
    gap: 12px;
  }
}

@media (min-width: 1025px) and (max-height: 860px) {
  .home-hero--slider {
    margin-bottom: 108px;
  }

  .home-hero--showcase {
    min-height: 0;
    max-height: none;
  }

  .home-hero__inner {
    padding: clamp(14px, 2vh, 20px) clamp(10px, 1.5vw, 16px);
  }

  .home-hero__trustbar {
    padding: 6px 8px;
  }
}

@media (max-width: 1100px) {
  .home-hero__trustbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero__trust-item:nth-child(2) {
    border-right: 0;
  }

  .home-hero__trust-item:nth-child(1),
  .home-hero__trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(24, 73, 57, 0.08);
  }

  .home-cats,
  .home-why,
  .home-works {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .home-trust {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 16px;
    margin-right: 16px;
  }

  .home-trust__item:nth-child(2) {
    border-right: none;
  }

  .home-trust__item:nth-child(1),
  .home-trust__item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 768px) {
  .home-hero--showcase {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .home-hero--slider {
    margin-bottom: clamp(88px, 18vw, 160px);
  }

  .home-hero__inner {
    padding: 16px 14px 16px;
  }

  .home-hero--slider .home-hero__inner {
    padding-bottom: 16px;
  }

  .home-hero__slide {
    align-items: flex-start;
    padding: 18px 16px 56px;
  }

  .home-hero__copy {
    max-width: none;
    width: 100%;
  }

  .home-hero__title {
    font-size: clamp(1.2rem, 5.4vw, 1.55rem);
  }

  .home-hero__nav {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: 54px;
    transform: none;
  }

  .home-hero__nav:hover {
    transform: none;
  }

  .home-hero__nav--prev {
    left: 10px;
  }

  .home-hero__nav--next {
    right: 10px;
  }

  .home-hero__index {
    left: 16px;
    right: 16px;
    bottom: 10px;
    max-width: none;
  }

  .home-hero__index-name {
    display: none;
  }

  .home-hero__trustbar {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    transform: translate(-50%, calc(100% + 10px));
  }

  .home-hero--slider + .home-section {
    margin-top: clamp(14px, 3.5vw, 24px);
  }

  .home-hero__trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(24, 73, 57, 0.08);
    padding: 10px 12px;
  }

  .home-hero__trust-item:last-child {
    border-bottom: 0;
  }

  .home-hero__panel {
    margin: 24px 16px;
    padding: 24px 20px;
    max-width: none;
  }
  .home-trust {
    grid-template-columns: 1fr;
    margin: -20px 0 32px;
  }
  .home-trust__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  .home-trust__item:last-child {
    border-bottom: none;
  }
  .home-cats,
  .home-why,
  .home-works,
  .home-hits,
  .home-bottom {
    grid-template-columns: 1fr;
  }
  .home-promo {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__slide,
  .home-hero__slide.is-active .home-hero__copy,
  .home-hero__bg img {
    transition: none;
    animation: none;
  }

  .home-hero__progress-bar.is-running {
    animation: none;
    transform: scaleX(1);
  }
}
