.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.service-page-body {
  min-width: 769px;
  background: linear-gradient(171deg, #050021 0%, #0a1a2f 70%);
}

.service-page {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(171deg, #050021 0%, #0a1a2f 70%);
}

.service-breadcrumb {
  position: absolute;
  z-index: 2;
  top: 116px;
  left: max(40px, 50% - 820px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d9d9d9;
  font-size: 14px;
  line-height: 1.75;
}

.service-hero {
  height: 340px;
  padding: 225px max(40px, 50% - 820px) 0;
}
.service-hero__title {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
}
.service-hero__title::after {
  width: 207px;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
  content: "";
  transform: translateY(3px);
}

.service-detail {
  min-height: 1080px;
  padding: 162px 0 90px;
}
.service-detail__inner {
  width: 100%;
  margin: 0 auto;
}
.service-detail__title {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}
.service-detail__lead {
  margin: 30px 0 0;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}

.service-carousel {
  width: 100vw;
  margin: 108px 0 0 calc(50% - 50vw);
  outline: none;
}
.service-carousel__stage {
  width: 100%;
}
.service-carousel__viewport {
  position: relative;
  width: 100%;
  height: 470px;
  overflow: hidden;
  touch-action: pan-y;
}
.service-carousel__track {
  display: flex;
  align-items: stretch;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  -moz-column-gap: 60px;
       column-gap: 60px;
  will-change: transform;
}
.service-carousel__slide {
  flex: 0 0 760px;
  width: 760px;
  height: 470px;
  overflow: hidden;
  clip-path: none;
}
.service-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: none;
}
.service-carousel__controls {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 10px;
}
.service-carousel__controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.service-carousel__controls button span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}
.service-carousel__controls button[aria-current=true] span {
  background: #fff;
  transform: scale(1.12);
}
.service-carousel__controls button:focus-visible {
  outline: 2px solid #7fd6ff;
  outline-offset: 1px;
}
.service-carousel__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
}
.service-carousel__arrow, .service-carousel__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  cursor: pointer;
}
.service-carousel__arrow:focus-visible, .service-carousel__toggle:focus-visible {
  outline: 2px solid #7fd6ff;
  outline-offset: 1px;
}
.service-carousel__arrow {
  font-size: 38px;
  font-weight: 200;
  line-height: 1;
}
.service-carousel__arrow span {
  margin-top: -5px;
}
.service-carousel__toggle-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 24px;
}
.service-carousel__toggle-icon::before {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 12px solid #fff;
  content: "";
}
.service-carousel__toggle.is-playing .service-carousel__toggle-icon::before, .service-carousel__toggle.is-playing .service-carousel__toggle-icon::after {
  position: absolute;
  top: 0;
  width: 3px;
  height: 24px;
  border: 0;
  background: #fff;
  content: "";
}
.service-carousel__toggle.is-playing .service-carousel__toggle-icon::before {
  left: 2px;
}
.service-carousel__toggle.is-playing .service-carousel__toggle-icon::after {
  right: 2px;
}
.service-carousel:focus-visible {
  outline: 2px solid #7fd6ff;
  outline-offset: 6px;
}

.service-footer {
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .service-page-body {
    min-width: 0;
  }
  .service-breadcrumb {
    top: 100px;
    left: 20px;
    gap: 10px;
  }
  .service-hero {
    height: 230px;
    padding: 154px 20px 0;
  }
  .service-hero__title {
    gap: 20px;
    font-size: 32px;
  }
  .service-hero__title::after {
    width: 146px;
  }
  .service-detail {
    min-height: 0;
    padding: 36px 20px 90px;
  }
  .service-detail__title {
    font-size: 32px;
    line-height: 1.45;
  }
  .service-detail__lead {
    margin-top: 26px;
    font-size: 16px;
  }
  .service-carousel {
    width: 100%;
    margin: 56px auto 0;
  }
  .service-carousel__viewport {
    height: auto;
    aspect-ratio: 350/233;
  }
  .service-carousel__track {
    width: 100%;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .service-carousel__slide {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 350/233;
  }
  .service-carousel__controls {
    margin-top: 8px;
  }
  .service-carousel__navigation {
    margin-top: -2px;
  }
  .service-carousel__arrow {
    font-size: 34px;
  }
  .service-page .contact {
    padding-top: 40px;
  }
  .service-page .contact__intro,
  .service-page .contact__text {
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .service-carousel *,
  .service-carousel *::before,
  .service-carousel *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
