/* ==========================================================================
   Riddhi Siddhi Impex — Services & Quality Assurance page styles
   EXTRA stylesheet only. Loads AFTER style.css + swarangi.css and adds
   page-scoped `.sq-*` classes for service.html and quality.html.
   Reuses the same design tokens, fonts (Barlow Condensed + Inter) and
   palette as the rest of the site. The page banner extends .abt-hero.
   ========================================================================== */

/* ==========================================================================
   0. Shared helpers
   ========================================================================== */
.sq-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* gradient accent rule under a heading */
.sq-rule {
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad);
  margin: 12px 0 20px;
}
.sq-rule--center {
  margin-inline: auto;
}
.sq-rule--light {
  background: linear-gradient(90deg, var(--red) 0%, var(--red-2) 60%, transparent 100%);
}

/* faint blueprint grid — a nod to precision engineering */
.sq-grid-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 20%, transparent 78%);
}

/* keyframes */
@keyframes sqFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes sqDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ==========================================================================
   1. Page banner extras (chips under the breadcrumb)
   ========================================================================== */
.abt-hero.sq-hero {
  min-height: clamp(360px, 48vw, 520px);
}
.sq-hero .abt-hero__bg img {
  transform: scale(1.06);
  animation: sqHeroZoom 12s var(--ease) forwards;
}
@keyframes sqHeroZoom {
  to { transform: scale(1); }
}
.sq-hero h1 {
  max-width: 20ch;
}
.sq-hero__sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16.5px;
  max-width: 62ch;
  margin: -4px 0 20px;
}
/* ==========================================================================
   2. Layered image frame (used by process rows + quality control)
   ========================================================================== */
.sq-frame {
  position: relative;
  isolation: isolate;
}
.sq-frame__inner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--paper-3);
}
.sq-frame__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.1;
  transition: transform 0.7s var(--ease);
}
.sq-frame:hover .sq-frame__inner img {
  transform: scale(1.05);
}
/* soft gradient halo behind the top-left corner */
.sq-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -26px auto auto -26px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 49, 146, 0.24), transparent 68%);
  filter: blur(6px);
}
/* floating gradient outline square, bottom-right */
.sq-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -20px -20px auto;
  width: 132px;
  height: 132px;
  border-radius: 22px;
  border: 2px solid transparent;
  background: var(--grad) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.55;
}
/* label chip riding on the photo */
.sq-frame__chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--pill);
  background: rgba(14, 17, 56, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sq-frame__chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-2);
}

/* credential badge that floats over a photo */
.sq-badge {
  position: absolute;
  z-index: 3;
  right: clamp(-8px, -1.2vw, -24px);
  bottom: 26px;
  background: var(--grad);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 18px 24px;
  min-width: 158px;
  text-align: center;
  box-shadow: var(--sh-md);
  animation: sqFloat 6s ease-in-out infinite;
}
.sq-badge b {
  display: block;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.sq-badge span {
  display: block;
  margin-top: 6px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
}

/* ==========================================================================
   3. Dark feature band (video / statement)
   ========================================================================== */
.sq-feature {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: 50px;
  background: radial-gradient(900px 380px at 88% -10%, rgba(61, 67, 196, 0.45), transparent 62%),
    radial-gradient(760px 320px at 0% 100%, rgba(232, 37, 45, 0.16), transparent 60%),
    linear-gradient(180deg, var(--indigo-deep) 0%, var(--indigo-deeper) 100%);
  color: #fff;
}
.sq-feature__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}
.sq-feature .eyebrow {
  color: var(--red-2);
}
.sq-feature h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 44px);
  text-transform: capitalize;
}
.sq-feature p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16.5px;
}
.sq-feature__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.sq-feature__stats li {
  flex: 1 1 150px;
  padding: 14px 18px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.sq-feature__stats b {
  display: block;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
  color: #fff;
}
.sq-feature__stats span {
  display: block;
  margin-top: 3px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.64);
}

/* video card: gradient hairline frame around a 16:9 embed */
.sq-video {
  position: relative;
  border-radius: calc(var(--r-xl) + 4px);
  padding: 4px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.05) 45%, rgba(232, 37, 45, 0.5));
  box-shadow: 0 34px 80px rgba(4, 6, 30, 0.6);
}
.sq-video__inner {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #05061c;
}
.sq-video__inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* click-to-play facade (replaced by the iframe on click) */
.sq-video__facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  display: block;
  overflow: hidden;
  cursor: pointer;
  background: #05061c;
}
.sq-video__facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.3s var(--ease);
}
.sq-video__facade:hover img,
.sq-video__facade:focus-visible img {
  transform: scale(1.04);
  opacity: 0.82;
}
.sq-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 62px;
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease);
}
.sq-video__play svg {
  width: 100%;
  height: 100%;
}
.sq-video__play .yt-bg {
  fill: #212121;
  opacity: 0.82;
  transition: fill 0.3s var(--ease), opacity 0.3s var(--ease);
}
.sq-video__facade:hover .sq-video__play,
.sq-video__facade:focus-visible .sq-video__play {
  transform: translate(-50%, -50%) scale(1.09);
}
.sq-video__facade:hover .yt-bg,
.sq-video__facade:focus-visible .yt-bg {
  fill: var(--red);
  opacity: 1;
}

/* ==========================================================================
   4. Numbered process rows
   ========================================================================== */
.sq-process {
  position: relative;
  padding-block: 50px;
  background: var(--paper);
}
.sq-process__head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.sq-process__head .h-sec {
  font-size: clamp(28px, 3.6vw, 44px);
  text-transform: capitalize;
}
.sq-process__head .lead {
  color: #000;
}

.sq-proc {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(26px, 4.6vw, 62px);
  align-items: center;
}
.sq-proc + .sq-proc {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
/* photo right, copy left */
.sq-proc--flip .sq-proc__media {
  order: 2;
}
.sq-proc--flip .sq-proc__copy {
  order: 1;
}

.sq-proc__copy {
  position: relative;
}
/* big ghost index numeral behind the copy */
.sq-proc__ghost {
  position: absolute;
  z-index: 0;
  top: -46px;
  left: -14px;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(96px, 12vw, 168px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(46, 49, 146, 0.14);
  pointer-events: none;
  user-select: none;
}
.sq-proc__copy > *:not(.sq-proc__ghost) {
  position: relative;
  z-index: 1;
}
.sq-proc__step {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--paper-3);
  border-radius: var(--pill);
  padding: 7px 15px;
  margin-bottom: 14px;
}
.sq-proc__step::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
}
.sq-proc h3 {
  font-size: clamp(25px, 2.9vw, 36px);
  text-transform: capitalize;
}
.sq-proc p {
  color: #000;
  font-size: 16.5px;
  margin-bottom: 14px;
}
.sq-proc p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   5. Capability cards (icon + ghost number + check list)
   ========================================================================== */
.sq-caps {
  position: relative;
  padding-block: 50px;
  background: var(--paper-2);
}
.sq-caps__head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.sq-caps__head .h-sec {
  font-size: clamp(28px, 3.6vw, 44px);
  text-transform: capitalize;
}
.sq-caps__head .lead {
  color: #000;
}
.sq-caps__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.8vw, 32px);
}
.sq-cap {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease),
    border-color 0.32s var(--ease);
}
/* colored top accent that blooms on hover */
.sq-cap::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.sq-cap:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.sq-cap:hover::before {
  transform: scaleX(1);
}
/* ghost index watermark */
.sq-cap__num {
  position: absolute;
  right: 14px;
  top: 2px;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
  color: rgba(46, 49, 146, 0.05);
  pointer-events: none;
  user-select: none;
}
.sq-cap__ic {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 26px rgba(46, 49, 146, 0.28);
  margin-bottom: 18px;
  transition: transform 0.32s var(--ease);
}
.sq-cap__ic svg {
  width: 26px;
  height: 26px;
}
.sq-cap:hover .sq-cap__ic {
  transform: translateY(-3px) rotate(-4deg);
}
.sq-cap h3 {
  font-size: clamp(21px, 2.2vw, 27px);
  text-transform: capitalize;
}

/* ---------- Check lists ---------- */
.sq-list {
  display: grid;
  gap: 13px;
}
.sq-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #000;
  font-size: 15.6px;
  line-height: 1.65;
}
.sq-list__ic {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 3px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(46, 49, 146, 0.1);
  color: var(--indigo);
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.sq-list__ic svg {
  width: 13px;
  height: 13px;
}
.sq-list li:hover .sq-list__ic {
  background: var(--indigo);
  color: #fff;
  transform: scale(1.08);
}

/* ==========================================================================
   6. Quality — pull-quote lead
   ========================================================================== */
.sq-lead {
  position: relative;
  padding-block: 50px;
  background: var(--paper);
  overflow: hidden;
}
/* soft decorative glow */
.sq-lead::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -140px;
  top: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 49, 146, 0.09), transparent 66%);
  pointer-events: none;
}
.sq-lead__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(24px, 4.4vw, 60px);
}
.sq-lead__aside {
  position: relative;
  padding-left: 26px;
  border-left: 3px solid transparent;
  background: linear-gradient(var(--grad)) left / 3px 100% no-repeat border-box;
}
.sq-lead__aside::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 3px;
  background: var(--grad);
}
.sq-lead__quote {
  display: block;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 88px;
  line-height: 0.7;
  color: rgba(46, 49, 146, 0.16);
  margin-bottom: 8px;
}
.sq-lead__aside .eyebrow {
  margin-bottom: 10px;
}
.sq-lead__aside p {
  color: var(--ink);
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.16;
}
.sq-lead__copy p {
  color: #000;
  font-size: 17px;
  margin-bottom: 16px;
}
/* .sq-lead__copy p:first-child {
  font-size: 18.5px;
  font-weight: 500;
} */
.sq-lead__copy p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   7. Quality control split (photo + numbered policy steps)
   ========================================================================== */
.sq-qc {
  position: relative;
  padding-block: clamp(44px, 6vw, 86px);
  background: var(--paper-2);
}
.sq-qc__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.sq-qc h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  text-transform: capitalize;
}
.sq-qc__intro {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 24px;
}

/* numbered policy cards */
.sq-steps {
  display: grid;
  gap: 14px;
  counter-reset: sqstep;
}
.sq-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
}
.sq-step::before {
  counter-increment: sqstep;
  content: counter(sqstep, decimal-leading-zero);
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  background: var(--paper-3);
  color: var(--indigo);
  transition: background 0.28s var(--ease), color 0.28s var(--ease);
}
.sq-step:hover {
  transform: translateX(5px);
  box-shadow: var(--sh-sm);
  border-color: rgba(46, 49, 146, 0.28);
}
.sq-step:hover::before {
  background: var(--grad);
  color: #fff;
}
.sq-step p {
  color: var(--muted);
  font-size: 15.6px;
  line-height: 1.66;
}

/* ==========================================================================
   8. Statement band
   ========================================================================== */
.sq-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(46px, 6.4vw, 90px);
  background: radial-gradient(900px 360px at 82% -12%, rgba(61, 67, 196, 0.46), transparent 62%),
    radial-gradient(720px 320px at 6% 108%, rgba(232, 37, 45, 0.18), transparent 62%),
    linear-gradient(180deg, var(--indigo-deep) 0%, var(--indigo-deeper) 100%);
  color: #fff;
  text-align: center;
}
.sq-band__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
}
.sq-band .eyebrow {
  color: var(--red-2);
  justify-content: center;
}
.sq-band__mark {
  display: block;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 76px;
  line-height: 0.7;
  color: rgba(255, 255, 255, 0.16);
  margin-bottom: 10px;
}
.sq-band h2 {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 42px);
  text-transform: capitalize;
  margin-bottom: 18px;
}
.sq-band p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17.5px;
  line-height: 1.75;
}
.sq-band__seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.sq-band__seals li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.84rem;
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.sq-band__seals li svg {
  width: 16px;
  height: 16px;
  color: var(--red-2);
  flex: none;
}
.sq-band__seals li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   9. Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .sq-feature__grid,
  .sq-qc__grid {
    grid-template-columns: 1fr;
  }
  .sq-feature__grid > .sq-video {
    order: -1;
  }
}

@media (max-width: 991px) {
  .sq-proc,
  .sq-proc--flip {
    grid-template-columns: 1fr;
    gap: clamp(22px, 4vw, 34px);
  }
  /* keep the photo above the copy on every row once stacked */
  .sq-proc .sq-proc__media,
  .sq-proc--flip .sq-proc__media {
    order: 1;
  }
  .sq-proc .sq-proc__copy,
  .sq-proc--flip .sq-proc__copy {
    order: 2;
  }
  .sq-proc__ghost {
    top: -38px;
    left: -6px;
    font-size: clamp(78px, 15vw, 120px);
  }
  .sq-caps__grid {
    grid-template-columns: 1fr;
  }
  .sq-lead__grid {
    grid-template-columns: 1fr;
  }
  .sq-frame::after {
    width: 96px;
    height: 96px;
    inset: auto -10px -12px auto;
  }
  .sq-badge {
    right: 12px;
    bottom: 14px;
    padding: 14px 18px;
    min-width: 128px;
  }
  .sq-badge b {
    font-size: 27px;
  }
}

@media (max-width: 767px) {
  .abt-hero.sq-hero {
    min-height: 0;
    padding-block: 18px;
  }
  .sq-feature,
  .sq-process,
  .sq-caps,
  .sq-qc,
  .sq-band,
  .sq-lead {
    padding-block: 40px;
  }
  .sq-process__head,
  .sq-caps__head {
    margin-bottom: 26px;
  }
  .sq-proc + .sq-proc {
    margin-top: 30px;
    padding-top: 30px;
  }
  .sq-cap {
    padding: 20px 20px;
  }
  .sq-frame__inner img {
    aspect-ratio: 16 / 11;
  }
  .sq-frame::before,
  .sq-frame::after {
    display: none;
  }
  .sq-frame__chip {
    left: 12px;
    bottom: 12px;
    font-size: 0.7rem;
    padding: 7px 13px;
  }
  .sq-badge {
    position: static;
    display: block;
    margin: 16px auto 0;
    animation: none;
    max-width: 220px;
  }
  .sq-video {
    padding: 3px;
  }
  .sq-video__play {
    width: 66px;
    height: 46px;
  }
  .sq-cap__num {
    font-size: 74px;
  }
  .sq-cap__ic {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    margin-bottom: 14px;
  }
  .sq-cap__ic svg {
    width: 22px;
    height: 22px;
  }
  .sq-proc p,
  .sq-qc__intro,
  .sq-feature p {
    font-size: 15.5px;
  }
  .sq-list li,
  .sq-step p {
    font-size: 15px;
  }
  .sq-lead__copy p,
  .sq-band p {
    font-size: 16px;
  }
  .sq-lead__copy p:first-child {
    font-size: 17px;
  }
  .sq-lead__quote,
  .sq-band__mark {
    font-size: 62px;
  }
  .sq-step {
    padding: 15px 16px;
    gap: 13px;
  }
  .sq-step::before {
    width: 36px;
    height: 36px;
    font-size: 15px;
    border-radius: 10px;
  }
  .sq-step:hover {
    transform: none;
  }
  .sq-feature__stats li {
    flex: 1 1 100%;
  }
}

/* ==========================================================================
   10. Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .sq-hero .abt-hero__bg img,
  .sq-badge {
    animation: none;
    transform: none;
  }
  .sq-frame__inner img,
  .sq-video__facade img,
  .sq-video__play,
  .sq-cap,
  .sq-cap::before,
  .sq-cap__ic,
  .sq-step,
  .sq-step::before,
  .sq-list__ic,
  .sq-band__seals li {
    transition: none;
  }
  .sq-frame:hover .sq-frame__inner img,
  .sq-cap:hover,
  .sq-cap:hover .sq-cap__ic,
  .sq-step:hover {
    transform: none;
  }
}
