.section {
  padding: 0;
  margin: 42px auto 0;
}

.section h2 {
  text-transform: none;
  font-size: 46px;
  font-weight: 400;
  margin: 0 0 48px;
}

.section.tight {
  padding-top: 20px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, #eee, #ddd, #eee);
  margin: 50px 0;
}

.accent {
  color: #d08000;
  font-weight: 600
}

.mt0 {
  margin-top: 0 !important
}

.mb0 {
  margin-bottom: 0 !important
}

.mb40 {
  margin-bottom: 40px !important
}

.button-call {
  display: block;
  margin: 0 auto;
  padding: 8px 0;
  max-width: 252px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  border-radius: 6px;
  margin-bottom: 6px;
  border: 1px solid #1E4280;
  background: #fff;
  color: #1E4280;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden
}

.services-grid {
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px 24px;
  grid-template-columns: repeat(2, 1fr)
}

.service-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

.service-card .img-wrap {
  aspect-ratio: 16/11;
  background: #f2f4f6;
  border-radius: 4px;
  overflow: hidden;
  position: relative
}

.service-card img {
  width: 100%;
  height: 100%;
  transition: transform .28s cubic-bezier(.4, 0, .2, 1)
}

.service-card:hover img {
  transform: scale(1.1)
}

.service-card:focus-visible {
  outline: 2px solid #f5a400;
  outline-offset: 4px
}

.service-card .title {
  margin-top: 6px;
  font-size: .78rem;
  font-weight: 800;
  color: #000;
  letter-spacing: .2px;
  line-height: 1.25
}

.advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 18px;
  margin-top: 18px;
  justify-items: center
}

.adv-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  max-width: 240px
}

.adv-item svg {
  width: 50px;
  height: 50px;
  margin: 0 0 18px;
  color: var(--color-orange-yellow);
  flex-shrink: 0
}

.adv-item h3 {
  margin: 0 0 6px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.2;
  max-width: 140px
}

.adv-item p {
  margin: 0;
  font-size: .8rem;
  line-height: 1.35;
  color: var(--color-platinum-grey)
}

.metals-grid {
  margin: 10px 0 0;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px 14px;
  grid-template-columns: repeat(2, 1fr)
}

.metal {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #ccc;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  letter-spacing: .3px
}

.metal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .25);
  transition: .28s cubic-bezier(.4, 0, .2, 1)
}

.metal span {
  position: relative;
  z-index: 2
}

.metal:hover::after {
  background: rgba(0, 0, 0, .15)
}

.stages {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 34px 18px;
  position: relative
}

.stage {
  position: relative;
  text-align: left
}

.stage-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: left;
  color: #f5a400;
  z-index: 2;
  transition: background .25s, color .25s, box-shadow .25s
}

.stage-icon svg {
  width: 50px;
  height: 50px
}

.stage h3 {
  margin: 12px 0 0;
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.2
}

.narrative {
  display: grid;
  gap: 32px;
  margin-top: 40px;
  align-items: start;
  grid-template-columns: 1fr
}

.narrative h2 {
  font-size: 1rem;
}

.narrative p {
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.55;
  text-align: justify;
  margin: 0 0 16px
}

.side-media {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.side-image-main {
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  position: relative
}

.side-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 10px
}

.side-gallery .g {
  aspect-ratio: 1.2/1;
  background: #ddd;
  border-radius: 4px;
  overflow: hidden;
  position: relative
}

.side-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.cta {
  padding: 32px 0
}

.cta .form-main {
  background: #F7F8FC;
  padding: 32px;
  border-radius: 4px
}

.cta h2 {
  margin: 0 0 16px
}

.buttons {
  gap: 12px;
}

@media (min-width:641px) {

  .services-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .advantages {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px
  }

  .metals-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px
  }

  .stages {
    grid-template-columns: repeat(3, 1fr)
  }

  .service-card .title {
    font-size: .85rem
  }

  .adv-item p {
    font-size: .8rem
  }

  .metal {
    height: 72px;
    font-size: .74rem
  }
}

@media (min-width:700px) {

  .stages {
    display: flex;
    justify-content: space-between;
    gap: 0;
    padding: 10px 0 0
  }

  .stages::before {
    content: "";
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-platinum);
    opacity: .80
  }

  .stage {
    flex: 1 1 0;
    margin: 0;
    padding: 0;
    text-align: left
  }

  .stage::after {
    content: "";
    position: absolute;
    top: 75px;
    left: 0;
    width: 14px;
    height: 14px;
    background: #f5a400;
    border-radius: 50%;
    z-index: 1
  }

  .stage h3 {
    margin: 52px 0 8px;
    font-size: .95rem;
    font-weight: 500
  }
}

@media (min-width:900px) {

  .stages::before {
    top: 92px
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr))
  }

  .advantages {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr))
  }

  .metals-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
  }
}

@media (min-width:1000px) {

  .narrative {
    grid-template-columns: minmax(0, 1fr) 420px
  }
}

@media (min-width:1100px) {
  .advantages {
    gap: 36px 40px
  }
}

@media (max-width:740px) {

  .slider__buttons {
    display: none;
  }

  .buttons {
    width: 100%;
  }

  .buttons .button-call,
  .buttons .button-rounded {
    max-width: 100%
  }

  .section h2 {
    font-size: 1.2rem;
    margin-bottom: 16px
  }

  .section {
    padding: 24px 0
  }
}

@media (max-width:699px) {
  .stages {
    grid-template-columns: 1fr;
  }

  .stage {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .stage-icon {
    flex: 0 0 50px;
    margin: 0;
  }

  .stage h3 {
    margin: 6px 0 0;
    font-size: .8rem;
    font-weight: 400;
  }
}

.other-services {
  margin-top: 60px;
  padding-bottom: 20px;
}

.other-services__heading {
  font-size: 40px;
  font-weight: 400;
  margin: 0 0 32px;
  line-height: 1.1;
}

@media (max-width:740px) {
  .other-services__heading {
    font-size: 1.25rem;
    margin-bottom: 18px;
  }
}

.servicesCarousel {
  position: relative;
  overflow: hidden;
  padding-bottom: 10px;
}

.services-carousel__slide {
  height: auto;
}

.services-carousel__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  transition: box-shadow .25s, border-color .25s;
  height: 100%;
}

.services-carousel__img-wrap {
  aspect-ratio: 16/11;
  background: #f2f4f6;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}

.services-carousel__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  display: block;
}

.services-carousel__card:hover img {
  transform: scale(1.06);
}

.services-carousel__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #eceff3, #f7f9fb);
}

.services-carousel__title {
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.25;
  color: #0e1114;
  letter-spacing: .2px;
  margin-top: auto;
  display: block;
  min-height: 2.2em;
}

@media (min-width:641px) {
  .services-carousel__title {
    font-size: 1rem;
  }
}

.services-carousel__nav {
  position: absolute;
  top: -58px;
  right: 0;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.other-services .services-carousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d9dde3;
  cursor: pointer;
  position: relative;
  transition: .25s;
}

.other-services .services-carousel__btn::after {
  content: none;
  /* Иконки теперь через inline SVG */
}

.other-services .btn-prev::after {
  background-image: none;
}

.other-services .btn-next::after {
  background-image: none;
}

.other-services .services-carousel__btn svg {
  display: block;
  margin: 0 auto;
}

.other-services .services-carousel__btn:hover {
  border-color: #c5cad1;
  box-shadow: 0 4px 10px -3px rgba(0, 0, 0, .12);
}

@media (max-width:640px) {
  .other-services .services-carousel__nav {
    display: none;
  }
}

.services-carousel__pagination {
  margin-top: 18px;
  text-align: center;
  position: relative;
}

.other-services .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #c5ccd4;
  opacity: 1;
  transition: .25s;
}

.other-services .swiper-pagination-bullet-active {
  background: #f5a400;
  transform: scale(1.15);
}

.is-skeleton .skeleton,
.skeleton {
  position: relative;
  background: #eef1f4;
  overflow: hidden;
}

.skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .65) 40%, rgba(255, 255, 255, 0) 80%);
  transform: translateX(-100%);
  animation: skeleton-shine 1.3s infinite;
}

.skeleton-line {
  display: block;
  height: 12px;
  margin-top: 4px;
  border-radius: 3px;
  background: #eef1f4;
  position: relative;
  overflow: hidden;
}

.skeleton-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .65) 40%, rgba(255, 255, 255, 0) 80%);
  transform: translateX(-100%);
  animation: skeleton-shine 1.3s infinite;
}

@keyframes skeleton-shine {
  to {
    transform: translateX(100%);
  }
}

@media (max-width:740px) {
  .other-services .services-carousel__nav {
    top: -50px;
  }
}

.other-services__carousel-wrapper {
  position: relative;
}

.other-services .services-carousel__nav {
  position: absolute;
  top: 35%;
  left: 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 4px;
  z-index: 25;
}

.other-services .services-carousel__nav .services-carousel__btn {
  pointer-events: all;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #f5a400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}

.other-services .services-carousel__nav .services-carousel__btn.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.other-services .services-carousel__nav .services-carousel__btn:hover {
  background: #f5a400;
  color: #fff;
}

@media (max-width:480px) {
  .other-services .services-carousel__nav .services-carousel__btn {
    width: 38px;
    height: 38px;
  }
}