/* @bundled in css/rotuval-public.css */
/* ============================================================
   ROTUVAL — Homepage "MONO/ELECTRIC"
   Immersive monochrome layout with an electric-lime accent.
   Split full-height hero · kinetic marquee · horizontal-scroll
   work rail · oversized numbered capability rows · dark stats.
   ============================================================ */

.page-home {
  --ink: #0c0d0e;
  --ink-2: #161719;
  --ink-3: #1f2123;
  --paper: #f3f3ee;
  --paper-2: #e9e9e2;
  --line: #e2e2da;
  --line-d: rgba(255, 255, 255, 0.12);
  --lime: #b6cc4f;
  --lime-d: #a3b941;
  --tx: #0c0d0e;
  --tx-mut: #5e6166;
  --txd: #f3f3ee;
  --txd-mut: rgba(243, 243, 238, 0.6);
  --fd: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  background: var(--paper);
}

.page-home .im-container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .page-home .im-container { padding: 0 2.5rem; }
}

.page-home .im-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--fd);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-home .im-eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 2px;
  background: var(--lime-d);
}

.page-home .im-eyebrow--light { color: var(--lime); }
.page-home .im-eyebrow--light::before { background: var(--lime); }
.page-home .im-eyebrow--dark { color: #4a5a12; }

/* Buttons (homepage scope) */
.page-home .im-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.7rem;
  font-family: var(--fd);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-home .im-btn svg { transition: transform 0.25s ease; }
.page-home .im-btn:hover { transform: translateY(-2px); }
.page-home .im-btn--lime { background: var(--lime); color: var(--ink); }
.page-home .im-btn--lime:hover { background: var(--lime-d); }
.page-home .im-btn--lime:hover svg { transform: translateX(3px); }
.page-home .im-btn--ghost-d { color: var(--txd); border-color: rgba(255,255,255,0.28); }
.page-home .im-btn--ghost-d:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.page-home .im-btn--ink { background: var(--ink); color: var(--txd); }
.page-home .im-btn--ink:hover { background: var(--ink-2); }

/* reveal */
.page-home .im-rv { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.page-home .im-rv.is-visible { opacity: 1; transform: none; }

/* ===================== HERO ===================== */
.im-hero {
  position: relative;
  background: var(--ink);
  color: var(--txd);
  overflow: hidden;
}

.im-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

@media (min-width: 980px) {
  .im-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: clamp(28rem, 62vh, 36rem);
    align-items: stretch;
  }

  .im-hero__grid > .im-hero__content {
    grid-column: 1;
    grid-row: 1;
  }

  .im-hero__grid > .im-hero__media {
    grid-column: 2;
    grid-row: 1;
  }
}

.im-hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 3.5rem 1.5rem 3rem;
}

@media (min-width: 768px) { .im-hero__content { padding: 4rem 2rem; } }
@media (min-width: 980px) {
  .im-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: none;
    padding: 4.5rem clamp(1.25rem, 3vw, 2.75rem);
  }
}

.im-hero__main {
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (min-width: 980px) {
  .im-hero__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.9fr);
    gap: clamp(1rem, 2.5vw, 2rem);
    align-items: center;
  }
}

.im-hero__copy {
  min-width: 0;
}

.im-hero__highlights {
  display: none;
}

@media (min-width: 980px) {
  .im-hero__highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    width: 100%;
    align-self: center;
  }

  .im-hero__highlight {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .im-hero__highlight:hover {
    border-color: rgba(182, 204, 79, 0.35);
    background: rgba(182, 204, 79, 0.06);
  }

  .im-hero__highlight-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 2px;
    background: rgba(182, 204, 79, 0.12);
    color: var(--lime);
  }

  .im-hero__highlight-body {
    min-width: 0;
  }

  .im-hero__highlight-body strong {
    display: block;
    font-family: var(--fd);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: var(--txd);
  }

  .im-hero__highlight-body span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--txd-mut);
  }
}

.im-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 15%, rgba(182,204,79,0.12), transparent 60%),
    linear-gradient(180deg, #121315, var(--ink) 70%);
  pointer-events: none;
}

.im-hero__content > *:not(.im-hero__bg) {
  position: relative;
  z-index: 1;
}

.im-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 90% 75% at 58% 42%, #000, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 58% 42%, #000, transparent 88%);
}

.im-hero__kicker { margin-bottom: 1rem; }

.im-hero__title {
  margin: 0 0 1rem;
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.im-hero__title em {
  font-style: normal;
  color: var(--lime);
}

.im-hero__lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--txd-mut);
}

.im-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.im-hero__actions .im-btn {
  padding: 0.85rem 1.45rem;
  font-size: 0.9rem;
}

.im-hero__media {
  position: relative;
  display: grid;
  grid-template: "stack" clamp(18rem, 52vw, 24rem) / 1fr;
  min-width: 0;
  overflow: hidden;
  border-left: 2px solid var(--lime);
  background-color: var(--ink);
}

@media (min-width: 980px) {
  .im-hero__media {
    height: clamp(28rem, 62vh, 36rem);
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    align-self: stretch;
  }
}

.im-hero__media #image-slider {
  grid-area: stack;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  border-radius: 0;
  z-index: 1;
}

.im-hero__media #image-slider .lp-slide-img {
  opacity: 0 !important;
  z-index: 0;
  transition: opacity 0.9s ease;
  object-fit: cover;
  object-position: center center;
  filter: none;
  will-change: transform, opacity;
}

.im-hero__media #image-slider .lp-slide-img.lp-slide--active {
  opacity: 1 !important;
  z-index: 1;
}
.im-hero__media #image-slider .lp-slide-dot { width: 0.4rem; background: rgba(255,255,255,0.5); }
.im-hero__media #image-slider .lp-slide-dot.lp-slide-dot--active { width: 1.2rem; background: var(--lime); }

.im-hero__media #image-slider .lp-slide-ai-badge {
  position: absolute;
  right: 0.75rem;
  bottom: 0.5rem;
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.im-hero__media #image-slider .lp-slide-ai-badge span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.44rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.im-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 13, 14, 0.28), transparent 42%);
  pointer-events: none;
  z-index: 2;
}

.im-hero__chip {
  grid-area: stack;
  align-self: end;
  justify-self: start;
  position: relative;
  z-index: 5;
  margin: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--lime);
  color: var(--ink);
  border-radius: 2px;
}

.im-hero__chip strong { display: block; font-family: var(--fd); font-size: 1.2rem; font-weight: 700; line-height: 1; }
.im-hero__chip span { display: block; font-size: 0.74rem; font-weight: 500; }

@media (max-width: 979px) {
  .im-hero__media {
    border-left: none;
    border-top: 2px solid var(--lime);
    height: clamp(18rem, 52vw, 24rem);
  }
}

/* ===================== MARQUEE ===================== */
.im-marquee {
  background: var(--lime);
  color: var(--ink);
  padding: 0.85rem 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.im-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: imScroll 30s linear infinite;
  will-change: transform;
}

.im-marquee__group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-shrink: 0;
  padding-right: 2.5rem;
  white-space: nowrap;
}

.im-marquee__track span {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}

.im-marquee__track span::after {
  content: '✳';
  font-size: 0.9rem;
}

@keyframes imScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-25%, 0, 0); }
}

/* ===================== INTRO / MANIFESTO ===================== */
.im-intro {
  background: var(--paper);
  padding: 6rem 0 4rem;
}

.im-intro__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .im-intro__grid { grid-template-columns: 0.32fr 0.68fr; gap: 4rem; align-items: start; }
}

.im-intro__label {
  font-family: var(--fd);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tx-mut);
  padding-top: 0.75rem;
  border-top: 2px solid var(--ink);
}

.im-intro__text {
  margin: 0;
  font-family: var(--fd);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--tx);
}

.im-intro__text mark {
  background: linear-gradient(180deg, transparent 60%, var(--lime) 60%);
  color: inherit;
  padding: 0 0.1em;
}

/* client trust row */
.im-trust {
  background: var(--paper);
  padding: 2.5rem 0;
}

.im-trust__inner {
  padding-top: 0;
  padding-bottom: 0;
}

.im-trust__viewport {
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 3.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.im-trust__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: imScroll 46s linear infinite;
  will-change: transform;
}

.im-trust__group {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-shrink: 0;
  padding-right: 3.5rem;
}

.im-trust__viewport:hover .im-trust__track { animation-play-state: paused; }

.im-trust__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
}

.im-trust__logo {
  display: block;
  height: 1.9rem;
  width: auto;
  max-width: 7rem;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.3s;
}

.im-trust__logo:hover { filter: none; }

/* ===================== SECTION HEAD ===================== */
.im-shead { margin-bottom: 3rem; }
.im-shead__row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.25rem; }
.im-shead h2 {
  margin: 1rem 0 0;
  font-family: var(--fd);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--tx);
}
.im-shead p { margin: 1rem 0 0; max-width: 30rem; font-size: 1.02rem; line-height: 1.6; color: var(--tx-mut); }

/* ===================== WORK RAIL (services, auto-sliding marquee) ===================== */
.im-work { background: var(--paper); padding: 6rem 0; }

.im-work__rail {
  overflow: hidden;
  padding-bottom: 1.5rem;
}

.im-work__track {
  display: flex;
  width: max-content;
  animation: imWorkScroll 60s linear infinite;
  will-change: transform;
}

.im-work__track:hover { animation-play-state: paused; }

.im-work__group {
  display: flex;
  flex-shrink: 0;
  gap: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1024px) { .im-work__group { gap: 1.5rem; padding-right: 1.5rem; } }

@keyframes imWorkScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.im-card {
  width: 20rem;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--txd);
  border-radius: 4px;
  overflow: hidden;
  min-height: 24rem;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}

@media (min-width: 640px) { .im-card { width: 22rem; } }
@media (min-width: 1024px) { .im-card { width: 25rem; } }

.im-card:hover { transform: translateY(-6px); }

.im-card__media {
  position: relative;
  height: 11rem;
  overflow: hidden;
  background: var(--ink-2);
}

.im-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3); transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.im-card:hover .im-card__media img { transform: scale(1.06); }

.im-card__media-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--lime); opacity: 0.85; }

.im-card__num {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  font-family: var(--fd);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--lime);
  padding: 0.35rem 0.7rem;
}

.im-card__body { display: flex; flex: 1; flex-direction: column; padding: 1.5rem; }
.im-card__body h3 { margin: 0 0 0.6rem; font-family: var(--fd); font-size: 1.3rem; font-weight: 600; line-height: 1.2; text-transform: uppercase; letter-spacing: -0.01em; }
.im-card__body p { margin: 0 0 1.1rem; font-size: 0.92rem; line-height: 1.6; color: var(--txd-mut); flex: 1; }
.im-card__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.im-card__tags span { font-size: 0.72rem; font-weight: 500; color: var(--txd); padding: 0.25rem 0.65rem; border: 1px solid rgba(255,255,255,0.16); border-radius: 99px; }
.im-card__cta { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; align-self: flex-start; font-family: var(--fd); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lime); text-decoration: none; transition: gap 0.25s ease; }
.im-card__cta:hover { gap: 0.8rem; }

/* ===================== CAPABILITIES (dark oversized rows) ===================== */
.im-cap { background: var(--ink); color: var(--txd); padding: 6rem 0; }
.im-cap .im-shead h2 { color: #fff; }
.im-cap .im-shead p { color: var(--txd-mut); }

.im-cap__list { border-top: 1px solid var(--line-d); }

.im-caprow {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  align-items: center;
  padding: 1.75rem 0.5rem;
  border-bottom: 1px solid var(--line-d);
  transition: padding-left 0.3s ease, background 0.3s ease;
}

@media (min-width: 768px) { .im-caprow { grid-template-columns: 5.5rem 1fr 1.4fr; gap: 2rem; } }

.im-caprow:hover { padding-left: 1.25rem; background: rgba(255,255,255,0.02); }

.im-caprow__n { font-family: var(--fd); font-size: 1.4rem; font-weight: 700; color: var(--lime); }
.im-caprow h3 { margin: 0; font-family: var(--fd); font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 600; line-height: 1.1; text-transform: uppercase; letter-spacing: -0.02em; }
.im-caprow p { margin: 0; font-size: 0.96rem; line-height: 1.6; color: var(--txd-mut); }

/* ===================== PROCESS ===================== */
.im-process { background: var(--paper); padding: 6rem 0; }

.im-process__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .im-process__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .im-process__grid { grid-template-columns: repeat(4, 1fr); } }

.im-pstep { position: relative; padding-top: 2.25rem; border-top: 2px solid var(--ink); }
.im-pstep__n {
  position: absolute;
  top: -1.1rem;
  left: 0;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--lime);
  border-radius: 99px;
}
.im-pstep h3 { margin: 0 0 0.5rem; font-family: var(--fd); font-size: 1.1rem; font-weight: 600; text-transform: uppercase; letter-spacing: -0.01em; color: var(--tx); }
.im-pstep p { margin: 0; font-size: 0.92rem; line-height: 1.6; color: var(--tx-mut); }

/* ===================== STATS ===================== */
.im-stats { background: var(--ink); color: var(--txd); padding: 4.5rem 0; }
.im-stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
@media (min-width: 768px) { .im-stats__grid { grid-template-columns: repeat(4, 1fr); } }
.im-stat { text-align: center; }
.im-stat strong { display: block; font-family: var(--fd); font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; line-height: 1; letter-spacing: -0.03em; color: var(--lime); }
.im-stat span { display: block; margin-top: 0.6rem; font-size: 0.85rem; color: var(--txd-mut); }

/* ===================== FAQ ===================== */
.im-faq { background: var(--paper); padding: 6rem 0; }
.im-faq__grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .im-faq__grid { grid-template-columns: 0.4fr 0.6fr; gap: 4rem; align-items: start; } }
.im-faq__intro { position: sticky; top: 6rem; }
.im-faq__list { border-top: 2px solid var(--ink); }
.im-fitem { border-bottom: 1px solid var(--line); }
.im-fitem summary { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.35rem 0.25rem; font-family: var(--fd); font-size: 1.05rem; font-weight: 600; color: var(--tx); cursor: pointer; list-style: none; }
.im-fitem summary::-webkit-details-marker { display: none; }
.im-fitem summary::after { content: '+'; font-family: var(--fd); font-size: 1.5rem; font-weight: 500; color: var(--tx); transition: transform 0.3s ease; line-height: 1; }
.im-fitem[open] summary::after { transform: rotate(45deg); color: var(--lime-d); }
.im-fitem__a { padding: 0 0.25rem 1.35rem; font-size: 0.96rem; line-height: 1.7; color: var(--tx-mut); max-width: 40rem; }

/* ===================== CONTACT ===================== */
.im-contact { background: var(--ink); color: var(--txd); padding: 6rem 0; }
.im-contact__grid { display: grid; gap: 3rem; }
@media (min-width: 1000px) { .im-contact__grid { grid-template-columns: 1fr 1.05fr; gap: 4rem; align-items: start; } }
.im-contact h2 { margin: 1rem 0 1.25rem; font-family: var(--fd); font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; line-height: 1; text-transform: uppercase; letter-spacing: -0.03em; color: #fff; }
.im-contact__lead { margin: 0 0 2rem; font-size: 1.05rem; line-height: 1.6; color: var(--txd-mut); max-width: 28rem; }
.im-contact__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.im-contact__list li { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--line-d); }
.im-contact__list svg { flex-shrink: 0; color: var(--lime); }
.im-contact__list strong { display: block; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txd-mut); }
.im-contact__list a, .im-contact__list span.v { display: block; font-size: 1.05rem; font-weight: 500; color: #fff; text-decoration: none; }
.im-contact__list a:hover { color: var(--lime); }

/* ===================== CTA STRIP ===================== */
.im-cta { background: var(--lime); color: var(--ink); padding: 4rem 0; }
.im-cta__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
@media (min-width: 768px) { .im-cta__inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.im-cta h2 { margin: 0; font-family: var(--fd); font-size: clamp(1.8rem, 3.6vw, 2.75rem); font-weight: 700; line-height: 1; text-transform: uppercase; letter-spacing: -0.03em; }
.im-cta p { margin: 0.5rem 0 0; font-size: 1rem; font-weight: 500; color: #2c3406; }

@media (prefers-reduced-motion: reduce) {
  .page-home .im-marquee__track,
  .page-home .im-trust__track,
  .page-home .im-work__track { animation: none; }
  .page-home .im-work__rail { overflow-x: auto; }
  .page-home .im-rv { opacity: 1; transform: none; }
}
