.spm-section {
  width: 100%;
  margin: 0;
  padding: 0 0 64px;
  color: var(--sov-ink, #231f20);
  font-family: Manrope, "Segoe UI", Arial, sans-serif;
  scroll-margin-top: 92px;
}

.spm-section,
.spm-section *,
.spm-section *::before,
.spm-section *::after {
  box-sizing: border-box;
}

.spm-section .spm-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: var(--sov-dark-2, #322c43);
  color: var(--sov-white, #fffefc);
  box-shadow: 0 24px 70px rgba(36, 31, 49, 0.18);
}

.spm-section .spm-shell::before,
.spm-section .spm-shell::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  content: "";
}

.spm-section .spm-shell::before {
  top: -225px;
  right: -130px;
  width: 520px;
  height: 520px;
}

.spm-section .spm-shell::after {
  top: -135px;
  right: -55px;
  width: 340px;
  height: 340px;
}

.spm-section .spm-shell__content {
  position: relative;
  z-index: 1;
}

.spm-section .spm-header {
  margin: 0 0 24px;
}

.spm-section .spm-title {
  max-width: 85%;
  margin: 0;
  color: var(--sov-ink, #231f20);
  font: 600 34px/42.5px Manrope, "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.spm-section .spm-price-list {
  display: grid;
  gap: 8px;
}

.spm-section .spm-price-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 100px;
  margin: 0;
  overflow: hidden;
  padding: 17px 20px;
  border: 1px solid var(--sov-line, #d8d2ca);
  border-radius: 17px;
  background: var(--sov-white, #fffefc);
  color: var(--sov-ink, #231f20);
  box-shadow: 0 5px 16px rgba(36, 31, 49, 0.06);
  animation: spm-row-in 420ms both;
  animation-delay: calc(var(--spm-row-index) * 45ms);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.spm-section .spm-price-row::before {
  position: absolute;
  inset: 12px auto 12px 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--sov-accent, #f0733f);
  opacity: 0;
  content: "";
  transition: opacity 180ms ease;
}

.spm-section .spm-price-row:hover {
  border-color: rgba(240, 115, 63, 0.56);
  box-shadow: 0 10px 24px rgba(36, 31, 49, 0.11);
}

.spm-section .spm-price-row:hover::before {
  opacity: 1;
}

.spm-section .spm-price-row__copy {
  min-width: 0;
}

.spm-section .spm-price-row__title {
  margin: 0 0 6px;
  color: var(--sov-ink, #231f20);
  font: 600 17px/22px Manrope, "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.spm-section .spm-price-row__description {
  max-width: 680px;
  margin: 0;
  color: var(--sov-muted, #747075);
  font: 400 13px/19px Manrope, "Segoe UI", Arial, sans-serif;
}

.spm-section .spm-price-row__price {
  min-width: 150px;
  color: var(--sov-ink, #231f20);
  font: 600 21px/27px Manrope, "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.03em;
  text-align: right;
  white-space: nowrap;
}

.spm-section .spm-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.spm-section .spm-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 0;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--sov-accent, #f0733f);
  color: #ffffff;
  font: 650 15px/20px Manrope, "Segoe UI", Arial, sans-serif;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, box-shadow 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.spm-section .spm-cta:hover {
  background: var(--sov-accent-dark, #d85d2d);
}

.spm-section .spm-cta:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(240, 115, 63, 0.45);
}

@keyframes spm-row-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1423px) and (min-width: 769px) {
  .spm-section .spm-shell {
    padding: clamp(32px, 4vw, 48px);
  }

}

@media (max-width: 768px) {
  .spm-section {
    padding-bottom: 48px;
    scroll-margin-top: 72px;
  }

  .spm-section .spm-shell {
    padding: 29px 18px;
    border-radius: 23px;
  }

  .spm-section .spm-shell::before {
    top: -180px;
    right: -210px;
  }

  .spm-section .spm-shell::after {
    top: -125px;
    right: -160px;
  }

  .spm-section .spm-header {
    margin-bottom: 20px;
  }

  .spm-section .spm-title {
    max-width: none;
    font-size: 26px;
    line-height: 33px;
    text-wrap: wrap;
  }

  .spm-section .spm-price-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    padding: 18px;
  }

  .spm-section .spm-price-row__description {
    font-size: 14px;
    line-height: 21px;
  }

  .spm-section .spm-price-row__price {
    min-width: 0;
    text-align: left;
  }

  .spm-section .spm-cta {
    width: 100%;
  }
}

@media (max-width: 370px) {
  .spm-section .spm-shell {
    padding-inline: 16px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .spm-section .spm-price-row,
  .spm-section .spm-price-row::before,
  .spm-section .spm-cta {
    animation: none;
    transition: none;
  }
}
