.success-steps {
  padding: 64px 0;
  margin-bottom: 200px;
  position: relative;
  /* НИКАКОГО overflow: hidden / clip здесь — именно он резал свечение */
}

.success-steps::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 50%;

  /* ключевое: ширина никогда не больше ширины секции → горизонтального скролла нет без клиппинга */
  width: min(1000px, 100%);
  height: min(900px, 90vw);

  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(16, 70, 130, 0.14) 0%,
    rgba(16, 70, 130, 0) 100%
  );

  transform: translate(-50%, 50%);
  pointer-events: none;
  z-index: 0;

  /* обязательно убрать оба свойства, иначе будет прямоугольник с жёсткими краями и желтизна */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.success-steps > * {
  position: relative;
  z-index: 1;
}

.success-steps__title {
  text-align: center;
  font-family: "Proxima Nova Bold", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 20px;
  color: rgba(237, 244, 252, 1);
  letter-spacing: -2px;
}

.succes-steps__gold-title {
  background: linear-gradient(
    100deg,
    #a77427 6.84%,
    #ddb55f 22.38%,
    #f7e3a8 37.91%,
    #fbefc8 50%,
    #f0d48f 63.81%,
    #c79436 79.35%,
    #a77427 93.16%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-steps__text {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-family: "Proxima Nova Regular", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: rgba(147, 174, 206, 1);
  margin-bottom: 40px;
}

.success-steps__group {
  margin-bottom: 56px;
}
.success-steps__group:last-child {
  margin-bottom: 0;
}

.success-steps__heading {
  font-family: "Proxima Nova Bold";
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 32px;
}

.success-steps__gold-gradient {
  background: linear-gradient(
    100deg,
    #a77427 6.84%,
    #ddb55f 22.38%,
    #f7e3a8 37.91%,
    #fbefc8 50%,
    #f0d48f 63.81%,
    #c79436 79.35%,
    #a77427 93.16%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-steps__grid {
  max-width: 964px;
  margin: 0 auto;
  row-gap: 24px;
}

.success-steps__card {
  background: linear-gradient(
    150deg,
    rgba(20, 58, 105, 0.26) 13.4%,
    rgba(6, 22, 42, 0.34) 86.6%
  );
  border-radius: 18px;
  padding: 40px 24px 32px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.success-steps__card::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -50%;
  width: 45%;
  height: 160%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(20deg);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.success-steps__card:hover::before {
  opacity: 1;
  animation: successStepsShine 0.8s ease forwards;
}

@keyframes successStepsShine {
  from {
    left: -50%;
  }
  to {
    left: 125%;
  }
}

.success-steps__card:hover::before {
  animation: successStepsShine 0.8s ease forwards;
}

@keyframes successStepsShine {
  to {
    left: 125%;
  }
}

.success-steps__icon {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 700px;
}

.success-steps__icon-placeholder {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #e8c988, #c99a45 55%, #8a6a2c);
  transform: rotate(45deg);
  border-radius: 6px;
  position: relative;
}
.success-steps__icon-placeholder::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(11, 18, 37, 0.35);
  border-radius: 4px;
}

.success-steps__icon img {
  max-width: 100%;
  max-height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}

.success-steps__card:hover .success-steps__icon img {
  animation: flipOnce 0.8s cubic-bezier(0.35, 0.1, 0.25, 1) forwards;
}

@keyframes flipOnce {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.success-steps__card-title {
  font-family: "Proxima Nova Bold";
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.success-steps__card-text {
  font-family: "Proxima Nova Regular";
  font-weight: 400;
  color: rgba(107, 135, 171, 1);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 320px;
}

.success-steps__col--center {
  margin: 0 auto;
  float: none;
}

@media (prefers-reduced-motion: reduce) {
  .success-steps__card,
  .success-steps__icon img {
    transition: none;
  }
  .success-steps__card:hover::before {
    animation: none;
  }
  .success-steps__card:hover .success-steps__icon img {
    transform: none;
  }
}

@media (max-width: 768px) {
  .success-steps::after {
    display: none;
  }
  .success-steps {
    padding: 40px 0;
    margin: 0;
  }
  .success-steps__heading {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .success-steps__card {
    padding: 32px 20px 24px;
  }
  .success-steps__icon,
  .success-steps__icon-placeholder {
    width: 76px;
    height: 76px;
  }
}

@media (max-width: 512px) {
  .success-steps__title {
    font-size: 30px;
    line-height: 40px;
  }
  .success-steps__text {
    font-size: 15px;
    line-height: 25px;
  }
}
