body.services-skew-body {
  overflow: hidden;
  background: #101113;
}

/* Mobile requested: no prev/next buttons, softer social strip. */
.services-skew__arrows button {
  display: none !important;
}

@media (max-width: 760px) {
  .services-skew__social {
    left: 16px !important;
    right: 16px !important;
    bottom: 92px !important;
    top: auto !important;
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    transform: none !important;
    background: rgba(255,255,255,.88) !important;
    border: 1px solid rgba(17,24,39,.10) !important;
    border-radius: 999px !important;
    padding: 8px !important;
    backdrop-filter: blur(12px) !important;
  }

  .services-skew__social a {
    width: 34px !important;
    height: 34px !important;
    border-color: rgba(23,32,47,.14) !important;
    color: #17202f !important;
    background: #fff !important;
  }

  .services-skew__arrows {
    justify-content: center !important;
  }
}

/* Final requested services controls. */
.services-skew__arrows button { display: none !important; }
@media (max-width: 760px) {
  .services-skew__social {
    left: 16px !important;
    right: 16px !important;
    bottom: 92px !important;
    top: auto !important;
    width: auto !important;
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    transform: none !important;
    background: rgba(255,255,255,.9) !important;
    border: 1px solid rgba(17,24,39,.10) !important;
    border-radius: 999px !important;
    padding: 8px !important;
  }
  .services-skew__social a {
    width: 34px !important;
    height: 34px !important;
    color: #17202f !important;
    background: #fff !important;
    border-color: rgba(23,32,47,.14) !important;
  }
}

.services-skew {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: #101113;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.services-skew * {
  box-sizing: border-box;
}

.services-skew__track,
.services-skew__slide {
  position: absolute;
  inset: 0;
}

.services-skew__slide {
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8%) skewY(-2deg) scale(1.04);
  transition: opacity 720ms ease, visibility 720ms ease, transform 920ms cubic-bezier(.2, .82, .2, 1);
}

.services-skew__slide.is-active {
  z-index: 2;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) skewY(0) scale(1);
}

.services-skew__slide.is-exiting {
  z-index: 1;
  opacity: 0;
  visibility: visible;
  transform: translateY(-8%) skewY(2deg) scale(1.04);
}

.services-skew__image {
  position: absolute;
  inset: -5%;
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.06) brightness(1.04);
  transition: transform 1200ms cubic-bezier(.2, .82, .2, 1), filter 720ms ease;
}

.services-skew__slide.is-active .services-skew__image {
  transform: scale(1);
  filter: saturate(1.18) contrast(1.06) brightness(1.05);
}

.services-skew__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 17, 19, .18) 0%, transparent 22%, transparent 58%, rgba(16, 17, 19, .55) 100%),
    linear-gradient(90deg, rgba(16, 17, 19, .72) 0%, rgba(16, 17, 19, .42) 32%, transparent 58%);
}

.services-skew__shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: .34;
}

.services-skew__content {
  position: relative;
  z-index: 3;
  width: min(100% - 48px, 1280px);
  padding: 68px 0 20px;
  transform: translateY(22px);
  opacity: 0;
  transition: opacity 520ms ease 180ms, transform 760ms ease 180ms;
}

.services-skew__slide.is-active .services-skew__content {
  opacity: 1;
  transform: translateY(0);
}

.services-skew__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.services-skew__eyebrow::before {
  content: "";
  width: 60px;
  height: 3px;
  background: #da1018;
}

.services-skew h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(58px, 10vw, 150px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.services-skew p {
  max-width: 760px;
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.58;
}

.services-skew strong {
  display: block;
  max-width: 680px;
  margin-top: 20px;
  color: #fff;
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 800;
}

.services-skew__social {
  position: absolute;
  z-index: 80;
  left: max(14px, env(safe-area-inset-left));
  top: 50svh;
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: translateY(-50%);
  backdrop-filter: none;
}

.services-skew__social a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 2px solid rgb(255 255 255 / 0.98);
  border-radius: 50%;
  background: rgb(0 0 0 / 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 0.08), 0 10px 24px rgb(0 0 0 / 0.24);
  filter: drop-shadow(0 2px 7px rgb(0 0 0 / 0.72));
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.services-skew__social svg {
  width: 17px;
  height: 17px;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgb(0 0 0 / 0.88));
}

.services-skew__social svg * {
  stroke-width: 2.6;
}

.services-skew__social span {
  display: inline-block;
  color: #fff;
  letter-spacing: 0;
  text-shadow: 0 1px 4px rgb(0 0 0 / 0.9);
}

.services-skew__social a:hover,
.services-skew__social a:focus-visible {
  color: #fff;
  border-color: rgb(255 255 255 / 0.68);
  background: transparent;
  opacity: .78;
  transform: translateX(2px);
}

.services-skew__counter {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 96px;
  display: grid;
  justify-items: center;
  gap: 14px;
  color: #fff;
  transform: translateY(-50%);
}

.services-skew__counter::before,
.services-skew__counter::after {
  content: "";
  width: 2px;
  height: 130px;
  background: rgba(255, 255, 255, .9);
}

.services-skew__counter span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.services-skew__counter em {
  color: #fff;
  font-style: normal;
  font-weight: 900;
  transform: rotate(25deg);
}

.services-skew__progress {
  position: absolute;
  z-index: 4;
  right: 28px;
  top: 50%;
  display: grid;
  gap: 46px;
  transform: translateY(-50%);
}

.services-skew__progress button {
  width: 13px;
  height: 13px;
  border: 0;
  border-radius: 999px;
  background: #000;
  cursor: pointer;
  opacity: .82;
  transition: background .24s ease, transform .24s ease;
}

.services-skew__progress button.is-active {
  background: #da1018;
  transform: scale(1.18);
}

.services-skew__arrows {
  position: absolute;
  z-index: 4;
  right: 90px;
  bottom: 66px;
  left: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.services-skew__arrows button,
.services-skew__arrows a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.services-skew__arrows svg {
  width: 8px;
  height: 14px;
}

.services-skew__arrows button:hover,
.services-skew__arrows button:focus-visible,
.services-skew__arrows a:hover,
.services-skew__arrows a:focus-visible {
  color: #da1018;
}

@media (max-width: 980px) {
  body.services-skew-body {
    overflow: auto;
  }

  .services-skew {
    min-height: 100svh;
  }

  .services-skew__content {
    width: min(100% - 34px, 760px);
    padding-top: 120px;
  }

  .services-skew__counter {
    display: none;
  }

  .services-skew__progress {
    right: 18px;
    gap: 24px;
  }

  .services-skew__arrows {
    right: 20px;
    bottom: 28px;
    left: 20px;
  }

  .services-skew__arrows a {
    display: none;
  }
}

@media (max-width: 620px) {
  .services-skew {
    min-height: 720px;
  }

  .services-skew h1 {
    font-size: clamp(44px, 16vw, 78px);
  }

  .services-skew p {
    font-size: 15px;
  }

  .services-skew__progress {
    display: none;
  }
}

@media (max-width: 980px) {
  .services-skew__social,
  .services-skew__arrows button {
    display: none !important;
  }

  .services-skew__arrows {
    justify-content: center !important;
  }

  .services-skew__arrows a {
    display: inline-flex !important;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
  }
}

@media (min-width: 768px) {
  .services-skew__social {
    left: 18px;
    width: 42px;
    gap: 10px;
  }

  .services-skew__social a {
    width: 36px;
    font-size: 15px;
  }

  .services-skew__social svg {
    width: 19px;
    height: 19px;
  }
}

@media (min-width: 1200px) {
  .services-skew__social {
    left: 20px;
    width: 44px;
  }

  .services-skew__social a {
    width: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-skew__slide,
  .services-skew__image,
  .services-skew__content {
    transition: none;
  }
}

/* Final services social placement: top center, bold white icons. */
.services-skew__social {
  position: absolute !important;
  top: clamp(96px, 11vh, 132px) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 90 !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  transform: translateX(-50%) !important;
  backdrop-filter: none !important;
}

.services-skew__social a {
  width: 48px !important;
  height: 48px !important;
  border: 2px solid rgba(255, 255, 255, .92) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .3), 0 0 0 1px rgba(255, 255, 255, .08) inset !important;
  filter: drop-shadow(0 3px 9px rgba(0, 0, 0, .7)) !important;
}

.services-skew__social svg {
  width: 24px !important;
  height: 24px !important;
  color: #fff !important;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .8)) !important;
}

.services-skew__social svg * {
  stroke-width: 3 !important;
}

.services-skew__social span {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 950 !important;
}

.services-skew__social a:hover,
.services-skew__social a:focus-visible {
  border-color: #fff !important;
  background: rgba(218, 16, 24, .9) !important;
  opacity: 1 !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 760px) {
  .services-skew__social {
    top: 88px !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    gap: 10px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    transform: translateX(-50%) !important;
  }

  .services-skew__social a {
    width: 42px !important;
    height: 42px !important;
    color: #fff !important;
    background: rgba(255, 255, 255, .12) !important;
    border-color: rgba(255, 255, 255, .92) !important;
  }

  .services-skew__social svg {
    width: 21px !important;
    height: 21px !important;
  }
}

/* Desktop keeps the original side social rail; only mobile uses top-center icons. */
@media (min-width: 761px) {
  .services-skew__social {
    left: max(14px, env(safe-area-inset-left)) !important;
    right: auto !important;
    top: 50svh !important;
    bottom: auto !important;
    width: 40px !important;
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    padding: 0 !important;
    transform: translateY(-50%) !important;
  }

  .services-skew__social a {
    width: 34px !important;
    height: 34px !important;
    border: 2px solid rgb(255 255 255 / 0.98) !important;
    background: rgb(0 0 0 / 0.08) !important;
  }

  .services-skew__social svg {
    width: 17px !important;
    height: 17px !important;
  }

  .services-skew__social a:hover,
  .services-skew__social a:focus-visible {
    background: transparent !important;
    opacity: .78 !important;
    transform: translateX(2px) !important;
  }
}
