* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.015em;
}

.brand-strip {
  height: 4px;
  background: linear-gradient(90deg, #B32BBD 0%, #C46198 60%, #E5D4D4 100%);
  width: 100%;
}

.brand-strip--foot {
  height: 3px;
  background: linear-gradient(90deg, #E5D4D4 0%, #C46198 40%, #B32BBD 100%);
  width: 100%;
}

.site-head {
  background: #ffffff;
  position: relative;
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
}

.head-body {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  gap: 48px;
  min-height: 88px;
}

.brand-col {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 12px 0;
}

.brand-anchor {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-frame {
  width: 56px;
  height: 56px;
  border: 2px dashed #B32BBD;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #fff;
  box-shadow: 1px 1px 4px -2px rgba(179, 43, 189, 0.08);
  flex-shrink: 0;
}

.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1a0a1e;
  white-space: nowrap;
}

.brand-name span {
  color: #B32BBD;
}

.menu-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(135deg, #f9f0fb 0%, #fdf6fe 100%);
  margin: 0 -24px 0 0;
  padding: 0 24px 0 24px;
  border-radius: 0 0 0 28px;
}

.primary-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.primary-nav__item {
  position: relative;
}

.primary-nav__item:hover .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}

.primary-nav__link {
  display: block;
  padding: 12px 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #2d0a32;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.primary-nav__link:hover,
.primary-nav__link:focus {
  color: #B32BBD;
  background: rgba(179, 43, 189, 0.07);
  outline: none;
}

.primary-nav__link:focus-visible {
  outline: 3px solid;
  outline-color: #B32BBD;
  outline-offset: 2px;
}

.primary-nav__item--has-sub .primary-nav__link::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-top: -3px;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.primary-nav__item--has-sub:hover .primary-nav__link::after {
  transform: rotate(225deg);
  margin-top: 3px;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
  border: 1px solid rgba(179, 43, 189, 0.12);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 200;
  list-style: none;
}

.dropdown-panel::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.dropdown-panel__link {
  display: block;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.015em;
  color: #2d0a32;
  text-decoration: none;
  border-radius: 3px;
  transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.dropdown-panel__link:hover,
.dropdown-panel__link:focus {
  color: #B32BBD;
  background: rgba(179, 43, 189, 0.06);
  outline: none;
}

.dropdown-panel__link:focus-visible {
  outline: 3px solid #B32BBD;
  outline-offset: 2px;
}

.contact-strip {
  background: linear-gradient(90deg, #B32BBD 0%, #C46198 100%);
  padding: 4px 24px;
}

.contact-strip__inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.015em;
  transition: opacity 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-strip__item:hover {
  opacity: 0.82;
}

.contact-strip__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: #fff;
}

.site-foot {
  background: linear-gradient(160deg, #B32BBD 0%, #7a1a84 55%, #4a0a52 100%);
  color: #f0e0f4;
}

.foot-body {
  max-width: 1170px;
  margin: 0 auto;
  padding: 48px 24px 24px;
}

.foot-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.foot-logo-frame {
  width: 60px;
  height: 60px;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 1px 1px 4px -2px rgba(179, 43, 189, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  margin-bottom: 12px;
}

.foot-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
}

.foot-brand__name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 8px;
}

.foot-brand__desc {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.015em;
  color: rgba(240, 224, 244, 0.85);
  max-width: 480px;
}

.foot-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0;
  list-style: none;
  margin: 0;
}

.foot-links__link {
  display: block;
  padding: 8px 12px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.015em;
  color: rgba(240, 224, 244, 0.8);
  text-decoration: none;
  border-radius: 3px;
  transition: color 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.foot-links__link:hover,
.foot-links__link:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.foot-links__link:focus-visible {
  outline: 3px solid #E5D4D4;
  outline-offset: 2px;
}

.foot-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  align-self: center;
}

.foot-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 12px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-contact__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.2;
  color: rgba(240, 224, 244, 0.85);
  text-decoration: none;
  letter-spacing: 0.015em;
  transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.foot-contact__item:hover {
  color: #fff;
}

.foot-contact__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: #E5D4D4;
}

.foot-copy {
  text-align: center;
  padding-top: 24px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.015em;
  color: rgba(240, 224, 244, 0.55);
}

.consent-bar {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13), 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
  border: 1px solid rgba(179, 43, 189, 0.15);
  z-index: 1200;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.consent-bar--visible {
  opacity: 1;
}

.consent-bar__desc {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.015em;
  color: #2d0a32;
  margin-bottom: 8px;
}

.consent-bar__head {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.015em;
  color: #B32BBD;
  margin-bottom: 12px;
  display: block;
}

.consent-bar__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.consent-bar__btn {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.015em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: 'Lato', sans-serif;
  transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.consent-bar__btn--accept {
  color: #B32BBD;
  font-weight: 700;
}

.consent-bar__btn--accept:hover,
.consent-bar__btn--accept:focus {
  color: #7a1a84;
  outline: none;
}

.consent-bar__btn--decline {
  color: #5a3a5e;
  font-weight: 400;
}

.consent-bar__btn--decline:hover,
.consent-bar__btn--decline:focus {
  color: #2d0a32;
  outline: none;
}

.consent-bar__toggle-btn {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.015em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  color: #C46198;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: 'Lato', sans-serif;
  transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.consent-bar__toggle-btn:hover,
.consent-bar__toggle-btn:focus {
  color: #B32BBD;
  outline: none;
}

.consent-bar__panel {
  margin-top: 12px;
  padding: 12px;
  background: rgba(179, 43, 189, 0.04);
  border-radius: 6px;
  border: 1px solid rgba(179, 43, 189, 0.1);
}

.consent-bar__panel-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.015em;
  color: #2d0a32;
  cursor: pointer;
}

.consent-bar__panel-check {
  width: 18px;
  height: 18px;
  accent-color: #B32BBD;
  cursor: pointer;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .head-body {
    gap: 12px;
    min-height: 72px;
    flex-wrap: wrap;
    padding: 0 12px;
  }

  .menu-col {
    width: 100%;
    margin: 0 -12px;
    padding: 8px 12px;
    border-radius: 0;
    justify-content: flex-start;
  }

  .primary-nav {
    justify-content: flex-start;
  }

  .primary-nav__link {
    padding: 8px;
    font-size: 15px;
  }

  .contact-strip__inner {
    justify-content: flex-start;
    gap: 12px;
  }

  .brand-name {
    font-size: 15px;
  }

  .consent-bar {
    width: calc(100% - 48px);
    top: 12px;
  }

  .foot-links {
    flex-direction: column;
    align-items: center;
  }

  .foot-sep {
    display: none;
  }
}

@media (max-width: 375px) {
  .head-body {
    padding: 0 8px;
    gap: 8px;
  }

  .menu-col {
    margin: 0 -8px;
    padding: 8px;
  }

  .contact-strip {
    padding: 4px 8px;
  }

  .foot-body {
    padding: 24px 8px 12px;
  }
}

@media (min-width: 1024px) {
  .head-body {
    min-height: 96px;
  }
}

@media (min-width: 1280px) {
  .primary-nav__link {
    padding: 12px 16px;
  }
}

.vbd-doc-block {
  max-width: 1170px;
  margin: 0 auto;
  padding: 48px 24px;
}

.vbd-doc-block h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1b1b;
  margin-bottom: 24px;
  margin-top: 0;
}

.vbd-doc-block h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1b1b;
  margin-top: 48px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #E5D4D4;
}

.vbd-doc-block h3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.015em;
  color: #2a2a2a;
  margin-top: 24px;
  margin-bottom: 12px;
}

.vbd-doc-block h4 {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #2a2a2a;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 8px;
}

.vbd-doc-block h5 {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #3a3a3a;
  margin-top: 12px;
  margin-bottom: 8px;
}

.vbd-doc-block h6 {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #4a4a4a;
  margin-top: 12px;
  margin-bottom: 4px;
}

.vbd-doc-block p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2c2c2c;
  margin-top: 0;
  margin-bottom: 12px;
}

.vbd-doc-block ul {
  margin: 12px 0 24px 0;
  padding-left: 24px;
  list-style: none;
}

.vbd-doc-block ol {
  margin: 12px 0 24px 0;
  padding-left: 24px;
  list-style: none;
  counter-reset: policy-counter;
}

.vbd-doc-block ul li {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2c2c2c;
  margin-bottom: 8px;
  position: relative;
  padding-left: 12px;
}

.vbd-doc-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #B32BBD;
}

.vbd-doc-block ol li {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2c2c2c;
  margin-bottom: 8px;
  position: relative;
  padding-left: 12px;
  counter-increment: policy-counter;
}

.vbd-doc-block ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: -16px;
  top: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #B32BBD;
  font-weight: 700;
}

.vbd-doc-block ul ul,
.vbd-doc-block ol ol,
.vbd-doc-block ul ol,
.vbd-doc-block ol ul {
  margin: 4px 0 4px 24px;
}

.vbd-doc-block strong,
.vbd-doc-block b {
  font-weight: 700;
  color: #1b1b1b;
}

.vbd-doc-block a {
  color: #B32BBD;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), text-decoration-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vbd-doc-block a:hover {
  color: #C46198;
  text-decoration-color: #C46198;
}

.vbd-doc-block a:visited {
  color: #8a1f92;
}

.vbd-doc-block div {
  margin-bottom: 12px;
}

.vbd-doc-block div p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .vbd-doc-block {
    padding: 48px 24px;
  }

  .vbd-doc-block h1 {
    font-size: clamp(28px, 5vw, 52px);
  }

  .vbd-doc-block h2 {
    font-size: clamp(15px, 3vw, 28px);
  }

  .vbd-doc-block h3 {
    font-size: clamp(15px, 2.5vw, 28px);
  }
}

@media (max-width: 768px) {
  .vbd-doc-block {
    padding: 24px 12px;
  }

  .vbd-doc-block h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .vbd-doc-block h2 {
    font-size: 15px;
    margin-top: 24px;
  }

  .vbd-doc-block h3 {
    font-size: 15px;
  }
}

@media (max-width: 375px) {
  .vbd-doc-block {
    padding: 24px 8px;
  }

  .vbd-doc-block h1 {
    font-size: 28px;
  }

  .vbd-doc-block ul,
  .vbd-doc-block ol {
    padding-left: 12px;
  }
}

.cs-pg {
  background: #fff;
  overflow-x: clip;
}

.cs-pg .divider--cross {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 8px 0;
  overflow: hidden;
}

.cs-pg .divider--cross span {
  display: inline-block;
  width: 8px;
  height: 8px;
  position: relative;
  flex-shrink: 0;
}

.cs-pg .divider--cross span::before,
.cs-pg .divider--cross span::after {
  content: "";
  position: absolute;
  background: #B32BBD;
  opacity: 0.35;
}

.cs-pg .divider--cross span::before {
  width: 2px;
  height: 8px;
  left: 3px;
  top: 0;
}

.cs-pg .divider--cross span::after {
  width: 8px;
  height: 2px;
  left: 0;
  top: 3px;
}

.cs-pg .title-block {
  max-width: 1170px;
  margin: 0 auto;
  padding: 48px 24px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.cs-pg .title-block__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 24px;
}

.cs-pg .title-block__eyebrow {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #B32BBD;
  text-transform: uppercase;
  font-weight: 600;
}

.cs-pg .title-block__h1 {
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 800;
  color: #1b1230;
  text-transform: uppercase;
  margin: 0;
}

.cs-pg .title-block__img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  opacity: 0;
  animation: cs-imgfade 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
}

@keyframes cs-imgfade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.cs-pg .title-block__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-pg .title-block__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(179, 43, 189, 0.08);
  pointer-events: none;
}

.cs-pg .title-block__geo-a {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 2px dashed rgba(179, 43, 189, 0.22);
  border-radius: 3px;
  top: 16px;
  right: 16px;
  opacity: 0.7;
  pointer-events: none;
  transform: rotate(18deg);
}

.cs-pg .title-block__geo-b {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(196, 97, 152, 0.18);
  border-radius: 50%;
  bottom: 24px;
  left: 20px;
  pointer-events: none;
}

.cs-pg .studies-wrap {
  background: radial-gradient(circle at top right, rgba(179, 43, 189, 0.07) 0%, transparent 62%),
    #fff;
  animation: cs-grad-a 9s ease-in-out infinite alternate,
    cs-grad-b 13s ease-in-out infinite alternate-reverse;
}

@keyframes cs-grad-a {
  0% {
    background-position: 100% 0%;
  }

  100% {
    background-position: 85% 15%;
  }
}

@keyframes cs-grad-b {
  0% {
    background-position: 0% 100%;
  }

  100% {
    background-position: 20% 80%;
  }
}

.cs-pg .studies-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 96px 24px 96px;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.cs-pg .study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cs-pg .study--b {
  grid-template-columns: 1fr 1fr;
}

.cs-pg .study__meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cs-pg .study__label {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #C46198;
  font-weight: 600;
  text-transform: uppercase;
}

.cs-pg .study__h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b1230;
  margin: 0;
  text-transform: uppercase;
}

.cs-pg .study__desc {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2e2040;
}

.cs-pg .study__dashed {
  border: 2px dashed rgba(179, 43, 189, 0.28);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-pg .study__dashed-label {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #B32BBD;
  font-weight: 700;
  text-transform: uppercase;
}

.cs-pg .study__detail {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cs-pg .stat-shape {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cs-pg .stat-shape__hex {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-pg .stat-shape__hex svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cs-pg .stat-shape__val {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 800;
  color: #B32BBD;
  position: relative;
  z-index: 1;
}

.cs-pg .stat-shape__text {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2e2040;
}

.cs-pg .compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cs-pg .compare-card {
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
}

.cs-pg .compare-card--before {
  background: #f7f3f8;
  border: 1px solid rgba(179, 43, 189, 0.12);
}

.cs-pg .compare-card--after {
  background: linear-gradient(135deg, rgba(179, 43, 189, 0.06) 0%, rgba(196, 97, 152, 0.04) 100%);
  border: 1px solid rgba(179, 43, 189, 0.22);
}

.cs-pg .compare-card__heading {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #1b1230;
  text-transform: uppercase;
}

.cs-pg .compare-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-pg .compare-card__list li {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2e2040;
  padding-left: 24px;
  position: relative;
}

.cs-pg .compare-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border: 2px solid #B32BBD;
  border-radius: 3px;
}

.cs-pg .compare-card--after .compare-card__list li::before {
  background: #B32BBD;
}

.cs-pg .compare-card--after .compare-card__list li::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 12px;
  width: 5px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.cs-pg .howto-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cs-pg .howto-block__h3 {
  font-size: clamp(15px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b1230;
  margin: 0;
}

.cs-pg .howto-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-pg .howto-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 6px;
  background: rgba(229, 212, 212, 0.25);
  transition: background 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.22s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.cs-pg .howto-step:hover {
  background: rgba(179, 43, 189, 0.06);
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
}

.cs-pg .howto-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #B32BBD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  color: #B32BBD;
  flex-shrink: 0;
}

.cs-pg .howto-step__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-pg .howto-step__name {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b1230;
}

.cs-pg .howto-step__text {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2e2040;
}

.cs-pg .accent-highlight {
  background: rgba(179, 43, 189, 0.07);
  border-radius: 6px;
  padding: 4px 8px;
  display: inline;
}

.cs-pg .img-hover-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
}

.cs-pg .img-hover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cs-pg .img-hover-wrap:hover img {
  transform: scale(1.04);
}

.cs-pg .img-hover-wrap__grid {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  background-image:
    linear-gradient(rgba(179, 43, 189, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179, 43, 189, 0.22) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cs-pg .img-hover-wrap:hover .img-hover-wrap__grid {
  opacity: 1;
}

.cs-pg .img-hover-wrap__overlay {
  position: absolute;
  inset: 0;
  background: rgba(179, 43, 189, 0.06);
  pointer-events: none;
}

.cs-pg .study--b .study__meta {
  order: 2;
}

.cs-pg .study--b .study__detail {
  order: 1;
}

@media (max-width: 1024px) {
  .cs-pg .title-block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 24px;
  }

  .cs-pg .study {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cs-pg .study--b .study__meta {
    order: 0;
  }

  .cs-pg .study--b .study__detail {
    order: 0;
  }
}

@media (max-width: 768px) {
  .cs-pg .studies-inner {
    padding: 48px 24px;
    gap: 48px;
  }

  .cs-pg .compare-cards {
    grid-template-columns: 1fr;
  }

  .cs-pg .title-block__h1 {
    font-size: 28px;
  }
}

@media (max-width: 375px) {
  .cs-pg .title-block {
    padding: 24px 12px;
  }

  .cs-pg .studies-inner {
    padding: 24px 12px;
    gap: 48px;
  }

  .cs-pg .stat-shape {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.lp {
  max-width: 100%;
  overflow-x: hidden;
}

.lp__inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp__grain {
  position: relative;
  padding: 48px 0;
  background-color: #111018;
  overflow: hidden;
}

.lp__grain::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./image_storage/content-image-3-04-25.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  filter: grayscale(1) brightness(0.6);
  z-index: 0;
}

.lp__grain::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(179, 43, 189, 0.22) 0%, transparent 65%);
  z-index: 1;
}

.lp__grain-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp__tag {
  display: inline-block;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #B32BBD;
  border: 1px solid rgba(179, 43, 189, 0.35);
  border-radius: 3px;
  padding: 4px 12px;
  margin-bottom: 24px;
}

.lp__h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #E5D4D4;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  font-weight: 700;
}

.lp__h1 span {
  color: #B32BBD;
}

.lp__lead {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: rgba(229, 212, 212, 0.78);
  margin: 0 0 24px 0;
  max-width: 520px;
}

.lp__cta {
  display: inline-block;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
  background: #B32BBD;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
}

.lp__cta:hover {
  background: #C46198;
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
}

.lp__cta:focus {
  outline: 2px solid #B32BBD;
  outline-offset: 3px;
}

.lp__meta {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.lp__meta-item {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: rgba(229, 212, 212, 0.55);
}

.lp__meta-item strong {
  color: #E5D4D4;
  display: block;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.lp__divider-a {
  height: 8px;
  background: linear-gradient(90deg, #B32BBD 0%, #C46198 100%);
  width: 100%;
}

.lp__about {
  padding: 96px 0;
  background: #fff;
}

.lp__about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp__about-label {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #B32BBD;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lp__h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b0f1e;
  font-weight: 700;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.lp__h2 span {
  color: #B32BBD;
}

.lp__para {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2e1f33;
  margin: 0 0 24px 0;
}

.lp__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp__checklist li {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2e1f33;
  padding-left: 28px;
  position: relative;
}

.lp__checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border: 2px solid #B32BBD;
  border-radius: 3px;
  background: rgba(179, 43, 189, 0.08);
}

.lp__checklist li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 11px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #B32BBD;
  border-bottom: 2px solid #B32BBD;
  transform: rotate(-45deg);
}

.lp__steps-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp__step-tracker {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  background: rgba(179, 43, 189, 0.04);
  border: 1px solid rgba(179, 43, 189, 0.12);
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
}

.lp__step-tracker:hover {
  background: rgba(179, 43, 189, 0.09);
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
}

.lp__step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #B32BBD;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.lp__step-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp__step-name {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b0f1e;
  font-weight: 600;
}

.lp__step-desc {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #5a3f62;
}

.lp__divider-b {
  height: 4px;
  background: rgba(179, 43, 189, 0.18);
  width: 100%;
}

.lp__modules {
  padding: 96px 0;
  background: #f5eef6;
  position: relative;
}

.lp__modules-bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(180deg,
      transparent 0px,
      transparent 6px,
      rgba(179, 43, 189, 0.04) 6px,
      rgba(179, 43, 189, 0.04) 7px,
      transparent 7px,
      transparent 18px,
      rgba(179, 43, 189, 0.025) 18px,
      rgba(179, 43, 189, 0.025) 20px,
      transparent 20px,
      transparent 35px,
      rgba(179, 43, 189, 0.015) 35px,
      rgba(179, 43, 189, 0.015) 36px);
  pointer-events: none;
  z-index: 0;
}

.lp__modules-body {
  position: relative;
  z-index: 1;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp__modules-head {
  text-align: center;
  margin-bottom: 48px;
}

.lp__h2--center {
  text-align: center;
}

.lp__modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lp__mod-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
  transition: box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp__mod-card:hover {
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
  transform: translateY(-3px);
}

.lp__mod-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: #1b0f1e;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
}

.lp__mod-card--wide .lp__mod-num {
  color: rgba(229, 212, 212, 0.4);
}

.lp__mod-card--wide .lp__mod-title {
  color: #E5D4D4;
}

.lp__mod-card--wide .lp__para {
  color: rgba(229, 212, 212, 0.7);
  margin: 0;
}

.lp__mod-card--wide .lp__checklist li {
  color: rgba(229, 212, 212, 0.8);
}

.lp__mod-num {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: rgba(179, 43, 189, 0.18);
  font-weight: 700;
  line-height: 1;
}

.lp__mod-title {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b0f1e;
  font-weight: 700;
  text-transform: uppercase;
}

.lp__mod-para {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #5a3f62;
  margin: 0;
}

.lp__divider-c {
  height: 12px;
  background: #1b0f1e;
  width: 100%;
}

.lp__experts {
  padding: 96px 0 48px;
  background: #fff;
}

.lp__experts-body {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}

.lp__experts-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.lp__expert-card {
  border-radius: 18px;
  padding: 24px;
  background: rgba(179, 43, 189, 0.04);
  border: 1px solid rgba(179, 43, 189, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp__expert-card:hover {
  background: rgba(179, 43, 189, 0.08);
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
}

.lp__expert-avatar {
  width: 48px;
  height: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #B32BBD, #C46198);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.lp__expert-initials {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
  font-weight: 700;
}

.lp__expert-name {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b0f1e;
  font-weight: 700;
}

.lp__expert-role {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #B32BBD;
}

.lp__expert-bio {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #5a3f62;
  margin-top: 4px;
}

.lp__rating-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0 0;
}

.lp__rating-box {
  background: #1b0f1e;
  border-radius: 28px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
}

.lp__rating-score {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #B32BBD;
  font-weight: 700;
}

.lp__rating-label {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: rgba(229, 212, 212, 0.65);
}

.lp__stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-bottom: 8px;
}

.lp__star {
  width: 20px;
  height: 20px;
}

.lp__icon-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.lp__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(179, 43, 189, 0.15);
  min-width: 80px;
  flex: 1;
  transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lp__icon-item:hover {
  border-color: #B32BBD;
  background: rgba(179, 43, 189, 0.05);
}

.lp__icon-svg {
  width: 32px;
  height: 32px;
}

.lp__icon-label {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #2e1f33;
  text-align: center;
}

.lp__icon-item--active .lp__icon-svg path,
.lp__icon-item--active .lp__icon-svg rect,
.lp__icon-item--active .lp__icon-svg circle {
  stroke: #B32BBD;
}

.lp__icon-item--active {
  border-color: #B32BBD;
  background: rgba(179, 43, 189, 0.07);
}

.lp__icon-anim {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.lp__icon-item:nth-child(1) {
  animation: iconpulse 3.5s 0s infinite;
}

.lp__icon-item:nth-child(2) {
  animation: iconpulse 3.5s 0.7s infinite;
}

.lp__icon-item:nth-child(3) {
  animation: iconpulse 3.5s 1.4s infinite;
}

.lp__icon-item:nth-child(4) {
  animation: iconpulse 3.5s 2.1s infinite;
}

@keyframes iconpulse {
  0% {
    border-color: rgba(179, 43, 189, 0.15);
    background: transparent;
  }

  14% {
    border-color: #B32BBD;
    background: rgba(179, 43, 189, 0.1);
    box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
  }

  28% {
    border-color: rgba(179, 43, 189, 0.15);
    background: transparent;
    box-shadow: none;
  }

  100% {
    border-color: rgba(179, 43, 189, 0.15);
    background: transparent;
  }
}

.lp__dots-band {
  padding: 24px 0;
  background: rgba(179, 43, 189, 0.05);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  overflow: hidden;
}

.lp__dot {
  border-radius: 50%;
  background: #B32BBD;
  flex-shrink: 0;
}

.lp__dot--sm {
  width: 4px;
  height: 4px;
  opacity: 0.3;
}

.lp__dot--md {
  width: 8px;
  height: 8px;
  opacity: 0.5;
}

.lp__dot--lg {
  width: 12px;
  height: 12px;
  opacity: 0.7;
}

.lp__dot--xl {
  width: 6px;
  height: 6px;
  opacity: 0.4;
}

.lp__offer {
  padding: 96px 0;
  background: #1b0f1e;
  position: relative;
}

.lp__offer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at top right, rgba(179, 43, 189, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lp__offer-body {
  position: relative;
  z-index: 1;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lp__offer-label {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #C46198;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lp__h2--light {
  color: #E5D4D4;
}

.lp__para--light {
  color: rgba(229, 212, 212, 0.72);
}

.lp__price-card {
  background: rgba(229, 212, 212, 0.04);
  border: 1px solid rgba(229, 212, 212, 0.12);
  border-radius: 28px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
}

.lp__price-main {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
}

.lp__price-val {
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #B32BBD;
  font-weight: 700;
}

.lp__price-cur {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #C46198;
  font-weight: 400;
  margin-bottom: 4px;
}

.lp__price-note {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: rgba(229, 212, 212, 0.5);
}

.lp__checklist--light li {
  color: rgba(229, 212, 212, 0.8);
}

.lp__checklist--light li::before {
  border-color: #C46198;
  background: rgba(196, 97, 152, 0.1);
}

.lp__checklist--light li::after {
  border-color: #C46198;
}

.lp__cta--outline {
  display: inline-block;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #B32BBD;
  background: transparent;
  border: 2px solid #B32BBD;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: fit-content;
}

.lp__cta--outline:hover {
  background: #B32BBD;
  color: #fff;
}

.lp__cta--outline:focus {
  outline: 2px solid #C46198;
  outline-offset: 3px;
}

.lp__accent-block {
  display: inline-block;
  background: rgba(179, 43, 189, 0.1);
  border-radius: 6px;
  padding: 4px 8px;
}

@media (max-width: 1024px) {
  .lp__grain-body {
    flex-direction: column;
    gap: 24px;
  }

  .lp__h1 {
    font-size: 52px;
  }

  .lp__about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lp__modules-grid {
    grid-template-columns: 1fr;
  }

  .lp__mod-card--wide {
    grid-template-columns: 1fr;
  }

  .lp__experts-top {
    grid-template-columns: 1fr 1fr;
  }

  .lp__rating-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lp__offer-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .lp__h1 {
    font-size: 28px;
  }

  .lp__grain {
    padding: 48px 0;
  }

  .lp__about {
    padding: 48px 0;
  }

  .lp__modules {
    padding: 48px 0;
  }

  .lp__experts {
    padding: 48px 0 24px;
  }

  .lp__offer {
    padding: 48px 0;
  }

  .lp__experts-top {
    grid-template-columns: 1fr;
  }

  .lp__rating-box {
    padding: 24px;
  }

  .lp__price-card {
    padding: 24px;
  }

  .lp__price-val {
    font-size: 28px;
  }

  .lp__meta {
    gap: 12px;
  }

  .lp__icon-row {
    gap: 8px;
  }
}

@media (max-width: 375px) {
  .lp__h1 {
    font-size: 28px;
  }

  .lp__inner {
    padding: 0 12px;
  }

  .lp__grain-body {
    padding: 0 12px;
  }

  .lp__modules-body {
    padding: 0 12px;
  }

  .lp__experts-body {
    padding: 0 12px;
  }

  .lp__offer-body {
    padding: 0 12px;
  }
}

.ctus {
  background: #fff;
  overflow-x: clip;
  padding: 0;
}

.ctus__reveal {
  animation: ctus-slide-in 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.ctus__reveal--d1 {
  animation-delay: 0.04s;
}

.ctus__reveal--d2 {
  animation-delay: 0.1s;
}

.ctus__reveal--d3 {
  animation-delay: 0.16s;
}

.ctus__reveal--d4 {
  animation-delay: 0.22s;
}

@keyframes ctus-slide-in {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

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

.ctus__reach {
  max-width: 1170px;
  margin: 0 auto;
  padding: 96px 48px 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.ctus__badge {
  display: inline-block;
  background: #E5D4D4;
  color: #B32BBD;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 24px;
  font-weight: 600;
}

.ctus__heading {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 800;
  color: #1b1b1b;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.ctus__heading-grad {
  background: linear-gradient(135deg, #B32BBD 0%, #C46198 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ctus__desc {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #3a3a3a;
  margin-bottom: 48px;
}

.ctus__metrics {
  display: flex;
  flex-direction: row;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
  margin-bottom: 48px;
}

.ctus__metric {
  flex: 1;
  padding: 24px 12px;
  background: #fff;
  text-align: center;
  position: relative;
}

.ctus__metric+.ctus__metric::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: #E5D4D4;
}

.ctus__metric-val {
  display: block;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #B32BBD;
}

.ctus__metric-lbl {
  display: block;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #3a3a3a;
  margin-top: 4px;
}

.ctus__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ctus__det-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.ctus__det-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #E5D4D4;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctus__det-icon svg {
  width: 18px;
  height: 18px;
}

.ctus__det-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ctus__det-label {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #1b1b1b;
}

.ctus__det-val {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #3a3a3a;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ctus__det-val:hover {
  color: #B32BBD;
}

.ctus__img-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.ctus__img-frame {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
  position: relative;
}

.ctus__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.55) brightness(0.96);
}

.ctus__img-border {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 60%;
  height: 60%;
  border-radius: 18px;
  border: 2px solid #B32BBD;
  opacity: 0.22;
  pointer-events: none;
}

.ctus__bg-num {
  position: absolute;
  bottom: -24px;
  left: -24px;
  font-size: 140px;
  line-height: 1.2;
  font-weight: 900;
  color: #E5D4D4;
  opacity: 0.45;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.ctus__arrow-deco {
  position: absolute;
  top: 48px;
  left: -32px;
  opacity: 0.18;
  pointer-events: none;
}

.ctus__arrow-deco svg {
  width: 24px;
  height: 48px;
}

.ctus__scallop {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.ctus__scallop svg {
  display: block;
  width: 100%;
}

.ctus__form-wrap {
  background: radial-gradient(circle at top right, rgba(196, 97, 152, 0.10) 0%, transparent 65%), #fff;
  padding: 0;
}

.ctus__form-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: start;
}

.ctus__form-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ctus__form-heading {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 8px;
}

.ctus__form-sub {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #3a3a3a;
}

.ctus__checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ctus__checklist li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #3a3a3a;
}

.ctus__checklist li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 2px solid #B32BBD;
  background: linear-gradient(135deg, #B32BBD 55%, #C46198 100%);
  box-shadow: inset 0 0 0 2px #fff, inset 0 0 0 3px #B32BBD;
}

.ctus__form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
  padding: 48px;
}

.ctus__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ctus__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus__lbl {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #1b1b1b;
}

.ctus__inp {
  border: 2px solid #E5D4D4;
  border-radius: 6px;
  padding: 12px 12px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #1b1b1b;
  background: #fff;
  outline: none;
  transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  box-sizing: border-box;
}

.ctus__inp::placeholder {
  color: rgba(179, 43, 189, 0.35);
}

.ctus__inp:focus {
  border-color: #B32BBD !important;
  box-shadow: 1px 1px 4px -2px rgba(179, 43, 189, 0.08) !important;
}

.ctus__budget-label {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 4px;
}

.ctus__budget-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus__radio-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.ctus__radio-row input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #E5D4D4;
  background: #fff;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.ctus__radio-row input[type="radio"]:checked {
  border-color: #B32BBD;
  background: #B32BBD;
  box-shadow: inset 0 0 0 3px #fff;
}

.ctus__radio-row input[type="radio"]:focus-visible {
  outline: 2px solid #B32BBD !important;
  outline-offset: 2px !important;
}

.ctus__radio-text {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #3a3a3a;
}

.ctus__privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.ctus__privacy input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 2px solid #E5D4D4;
  background: #fff;
  flex-shrink: 0;
  margin-top: 3px;
  cursor: pointer;
  transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.ctus__privacy input[type="checkbox"]:checked {
  border-color: #B32BBD;
  background: #B32BBD;
}

.ctus__privacy input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 1px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.ctus__privacy input[type="checkbox"]:focus-visible {
  outline: 2px solid #B32BBD !important;
  outline-offset: 2px !important;
}

.ctus__privacy-text {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #3a3a3a;
}

.ctus__privacy-text a {
  color: #B32BBD;
  text-decoration: underline;
  transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ctus__privacy-text a:hover {
  color: #C46198;
}

.ctus__submit {
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #B32BBD 0%, #C46198 100%);
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 700;
  padding: 12px 48px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
  transition: box-shadow 0.25s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform 0.25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.ctus__submit:hover {
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
  transform: translateY(-2px);
}

.ctus__submit:focus-visible {
  outline: 2px solid #B32BBD !important;
  outline-offset: 3px !important;
}

.ctus__submit:active {
  transform: scale(0.97);
}

@media (max-width: 1024px) {
  .ctus__reach {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 24px;
  }

  .ctus__img-col {
    order: -1;
  }

  .ctus__form-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 24px;
  }

  .ctus__heading {
    font-size: clamp(28px, 6vw, 52px);
  }

  .ctus__bg-num {
    font-size: 80px;
  }
}

@media (max-width: 768px) {
  .ctus__metrics {
    flex-direction: column;
  }

  .ctus__metric+.ctus__metric::before {
    top: 0;
    left: 12px;
    right: 12px;
    width: auto;
    height: 1px;
    bottom: auto;
  }

  .ctus__form-card {
    padding: 24px;
  }

  .ctus__reach {
    padding: 48px 12px;
  }

  .ctus__form-inner {
    padding: 48px 12px;
  }
}

@media (max-width: 375px) {
  .ctus__heading {
    font-size: 28px;
  }

  .ctus__submit {
    width: 100%;
    text-align: center;
  }
}

.prm {
  max-width: 100%;
  overflow-x: hidden;
}

.prm__inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}

.prm__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 48px auto;
  width: fit-content;
}

.prm__divider-line {
  width: 48px;
  height: 1px;
  background: #B32BBD;
}

.prm__divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #B32BBD;
  flex-shrink: 0;
}

/* SECTION 1 - TITLE BLOCK */
.titl {
  padding: 96px 24px 48px;
  position: relative;
}

.titl__atm {
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle at top right, rgba(179, 43, 189, 0.13), transparent 70%);
  pointer-events: none;
  overflow: hidden;
}

.titl__atm-b {
  position: absolute;
  bottom: 48px;
  left: 80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at top right, rgba(196, 97, 152, 0.09), transparent 70%);
  pointer-events: none;
  overflow: hidden;
}

.titl__row {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.titl__img-frame {
  flex-shrink: 0;
  width: 320px;
  position: relative;
  border-right: 2px solid #B32BBD;
  padding-right: 24px;
}

.titl__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
}

.titl__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15);
  opacity: 0.92;
  display: block;
}

.titl__txt {
  flex: 1;
}

.titl__label {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #B32BBD;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.titl__h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1022;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
}

/* SECTION 2 - THE GAP */
.gap-sec {
  padding: 96px 24px;
  background: radial-gradient(circle at top right, rgba(179, 43, 189, 0.07) 0%, #fff 55%);
}

.gap-sec__inner {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.gap-sec__lead {
  grid-column: 1 / 2;
}

.gap-sec__h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1022;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.gap-sec__p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1f35;
  margin: 0 0 12px;
}

.gap-sec__img-col {
  grid-column: 2 / 3;
  position: relative;
}

.gap-sec__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
}

.gap-sec__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  display: block;
  transition: opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gap-sec__img-wrap:hover img {
  opacity: 1;
}

.gap-sec__list-col {
  grid-column: 3 / 4;
}

.gap-sec__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gap-sec__item {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1f35;
  padding: 12px 12px 12px 40px;
  position: relative;
  background: rgba(179, 43, 189, 0.04);
  border-radius: 6px;
}

.gap-sec__item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid #B32BBD;
  border-radius: 3px;
}

.gap-sec__item::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid #B32BBD;
  border-bottom: 2px solid #B32BBD;
}

/* SECTION 3 - SUPPORT */
.supp {
  padding: 96px 24px;
  background: #fff;
}

.supp__inner {
  max-width: 1170px;
  margin: 0 auto;
}

.supp__top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 48px;
}

.supp__heading-col {
  flex: 1;
  text-align: center;
}

.supp__h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1022;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.supp__sub {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1f35;
  max-width: 560px;
  margin: 0 auto;
}

.supp__cards {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.supp__card {
  border-radius: 18px;
  padding: 24px;
  box-shadow: 1px 7px 18px -2px rgba(196, 97, 152, 0.08);
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.supp__card:hover {
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
  transform: translateY(-3px);
}

.supp__card--wide {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.supp__card-img {
  width: 160px;
  flex-shrink: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
}

.supp__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

.supp__card-body {
  flex: 1;
}

.supp__card-h {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #B32BBD;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.supp__card-p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1f35;
  margin: 0;
}

.supp__card-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at top right, rgba(179, 43, 189, 0.09), transparent 70%);
  pointer-events: none;
}

/* SECTION 4 - HESITATION */
.hesit {
  padding: 96px 24px;
  background: radial-gradient(circle at top right, rgba(196, 97, 152, 0.08) 0%, #fff 60%);
}

.hesit__inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 96px;
  align-items: center;
}

.hesit__img-side {
  flex-shrink: 0;
  width: 380px;
  position: relative;
}

.hesit__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
}

.hesit__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.32s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.hesit__img-wrap:hover img {
  opacity: 1;
}

.hesit__txt-side {
  flex: 1;
}

.hesit__h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1022;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.hesit__accent {
  display: inline-block;
  background: rgba(179, 43, 189, 0.08);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #B32BBD;
  font-weight: 700;
  margin-bottom: 12px;
}

.hesit__p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1f35;
  margin: 0 0 12px;
}

.hesit__ring-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 24px;
}

.hesit__ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hesit__ring-svg {
  width: 72px;
  height: 72px;
  transform: rotate(-90deg);
}

.hesit__ring-track {
  fill: none;
  stroke: #E5D4D4;
  stroke-width: 6;
}

.hesit__ring-fill {
  fill: none;
  stroke: #B32BBD;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 163;
  stroke-dashoffset: 33;
  transition: stroke-dashoffset 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hesit__ring-fill--b {
  stroke-dashoffset: 57;
}

.hesit__ring-fill--c {
  stroke-dashoffset: 16;
}

.hesit__ring-num {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1022;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

.hesit__ring-wrap {
  position: relative;
  width: 72px;
  height: 72px;
}

.hesit__ring-lbl {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #2d1f35;
  text-align: center;
}

/* SECTION 5 - CONDITIONS */
.cond {
  padding: 96px 24px;
  background: #fff;
}

.cond__inner {
  max-width: 1170px;
  margin: 0 auto;
}

.cond__head {
  text-align: left;
  margin-bottom: 48px;
}

.cond__h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1022;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.cond__intro {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1f35;
  max-width: 620px;
}

.cond__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cond__row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 18px;
  background: rgba(229, 212, 212, 0.18);
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cond__row:hover {
  background: rgba(179, 43, 189, 0.06);
}

.cond__num {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: rgba(179, 43, 189, 0.15);
  font-weight: 800;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}

.cond__row-body {
  flex: 1;
}

.cond__row-h {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #B32BBD;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.cond__row-p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1f35;
  margin: 0;
}

.cond__img-strip {
  margin-top: 48px;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 260px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
}

.cond__img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.82;
}

/* SECTION 6 - INSTRUCTORS */
.inst {
  padding: 96px 24px;
  background: radial-gradient(circle at top right, rgba(179, 43, 189, 0.07) 0%, #fff 55%);
}

.inst__inner {
  max-width: 1170px;
  margin: 0 auto;
}

.inst__head {
  text-align: center;
  margin-bottom: 48px;
}

.inst__h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1022;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.inst__sub {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1f35;
  max-width: 540px;
  margin: 0 auto;
}

.inst__profiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.inst__prof {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 1px 1px 4px -2px rgba(179, 43, 189, 0.08);
  background: #fff;
  transition: box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.inst__prof:hover {
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
  transform: translateY(-4px) rotate(-0.5deg);
}

.inst__prof-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.inst__prof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  transition: opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.inst__prof:hover .inst__prof-img img {
  opacity: 1;
}

.inst__prof-body {
  padding: 24px;
}

.inst__prof-name {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1022;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.inst__prof-role {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #B32BBD;
  margin: 0 0 12px;
}

.inst__prof-bio {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1f35;
  margin: 0;
}

.inst__link-row {
  text-align: center;
  margin-top: 48px;
}

.inst__link {
  display: inline-block;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #B32BBD;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 24px;
  border-radius: 6px;
  background: rgba(179, 43, 189, 0.05);
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.inst__link:hover {
  background: rgba(179, 43, 189, 0.12);
  color: #8a1a92;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .titl__h1 {
    font-size: 52px;
  }

  .supp__cards {
    grid-template-columns: 1fr 1fr;
  }

  .supp__card--wide {
    grid-column: 1 / -1;
  }

  .gap-sec__inner {
    grid-template-columns: 1fr 1fr;
  }

  .gap-sec__img-col {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }

  .gap-sec__lead {
    grid-column: 1 / 2;
  }

  .gap-sec__list-col {
    grid-column: 1 / 2;
  }

  .inst__profiles {
    grid-template-columns: 1fr 1fr;
  }

  .hesit__inner {
    gap: 48px;
  }

  .hesit__img-side {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .titl__row {
    flex-direction: column;
    gap: 24px;
  }

  .titl__img-frame {
    width: 100%;
    border-right: none;
    padding-right: 0;
    border-bottom: 2px solid #B32BBD;
    padding-bottom: 24px;
  }

  .titl__h1 {
    font-size: 28px;
  }

  .gap-sec__inner {
    grid-template-columns: 1fr;
  }

  .gap-sec__img-col {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .gap-sec__lead {
    grid-column: 1 / 2;
  }

  .gap-sec__list-col {
    grid-column: 1 / 2;
  }

  .supp__cards {
    grid-template-columns: 1fr;
  }

  .supp__card--wide {
    flex-direction: column;
  }

  .supp__card-img {
    width: 100%;
  }

  .hesit__inner {
    flex-direction: column;
    gap: 24px;
  }

  .hesit__img-side {
    width: 100%;
  }

  .cond__grid {
    grid-template-columns: 1fr;
  }

  .inst__profiles {
    grid-template-columns: 1fr;
  }

  .hesit__ring-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 375px) {
  .titl {
    padding: 48px 12px 24px;
  }

  .titl__h1 {
    font-size: 28px;
  }

  .gap-sec {
    padding: 48px 12px;
  }

  .supp {
    padding: 48px 12px;
  }

  .hesit {
    padding: 48px 12px;
  }

  .cond {
    padding: 48px 12px;
  }

  .inst {
    padding: 48px 12px;
  }
}

.abt-us {
  max-width: 100%;
  overflow-x: hidden;
}

.abt-us * {
  box-sizing: border-box;
}

.abt-us__band {
  position: relative;
  background: linear-gradient(135deg, #B32BBD 0%, #C46198 50%, #B32BBD 100%);
  background-size: 300% 300%;
  animation: gradshift 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
  padding: 48px 24px;
  overflow: hidden;
}

@keyframes gradshift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.abt-us__band-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  overflow: hidden;
}

.abt-us__band-decor::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at top right, rgba(179, 43, 189, 0.18), transparent 70%);
}

.abt-us__band-decor::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(-38deg);
  transform-origin: right center;
  box-shadow:
    0 18px 0 rgba(255, 255, 255, 0.08),
    0 36px 0 rgba(255, 255, 255, 0.05);
}

.abt-us__band-strip {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.abt-us__band-text {
  flex: 1 1 0;
  min-width: 0;
}

.abt-us__band-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.abt-us__band-h1 {
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  font-weight: 800;
}

.abt-us__band-sub {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 520px;
}

.abt-us__band-img {
  flex: 0 0 340px;
  width: 340px;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
}

.abt-us__band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-us__band-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(30, 0, 40, 0.55), transparent);
  pointer-events: none;
  border-radius: 0 0 18px 18px;
}

.abt-us__body {
  max-width: 1170px;
  margin: 0 auto;
  padding: 96px 24px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.abt-us__col-main {
  min-width: 0;
}

.abt-us__col-main h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1a0022;
  margin: 0 0 24px 0;
  font-weight: 700;
  text-transform: uppercase;
}

.abt-us__col-main p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1a38;
  margin: 0 0 24px 0;
}

.abt-us__col-main p:last-of-type {
  margin-bottom: 0;
}

.abt-us__fact-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.abt-us__fact {
  background: #E5D4D4;
  border-radius: 18px;
  padding: 24px;
  position: relative;
  box-shadow: 1px 7px 18px -2px rgba(196, 97, 152, 0.08);
  animation: shadowpulse 3.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

@keyframes shadowpulse {

  0%,
  100% {
    box-shadow: 1px 7px 18px -2px rgba(196, 97, 152, 0.08);
  }

  50% {
    box-shadow: 1px 10px 36px -2px rgba(196, 97, 152, 0.22);
  }
}

.abt-us__fact-num {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 800;
  color: #B32BBD;
  letter-spacing: 0.01em;
  display: block;
}

.abt-us__fact-num sup {
  font-size: 28px;
  line-height: 1.2;
  vertical-align: super;
  color: #C46198;
}

.abt-us__fact-desc {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1a38;
  margin: 8px 0 0 0;
}

.abt-us__sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abt-us__sidebar-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
}

.abt-us__sidebar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.abt-us__sidebar-img:hover img {
  transform: scale(1.04);
}

.abt-us__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.abt-us__checklist li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1a38;
}

.abt-us__checklist li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 2px solid #B32BBD;
  background: linear-gradient(135deg, rgba(179, 43, 189, 0.12), rgba(196, 97, 152, 0.08));
  box-shadow: inset 1px 1px 2px rgba(179, 43, 189, 0.10);
  position: relative;
}

.abt-us__checklist li.checked::before {
  background: #B32BBD;
  box-shadow: inset 1px 1px 2px rgba(179, 43, 189, 0.2);
}

.abt-us__checklist li.checked::after {
  content: "";
  position: absolute;
  display: none;
}

.abt-us__check-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.abt-us__check-box {
  flex-shrink: 0;
  margin-top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 2px solid #B32BBD;
  background: rgba(179, 43, 189, 0.08);
  box-shadow: inset 1px 1px 2px rgba(179, 43, 189, 0.08);
  position: relative;
}

.abt-us__check-box--on {
  background: #B32BBD !important;
  border-color: #B32BBD;
}

.abt-us__check-box--on::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 6px;
  height: 9px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(40deg);
}

.abt-us__team-band {
  background: #E5D4D4;
  padding: 96px 24px 96px;
  position: relative;
}

.abt-us__team-band::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C46198, transparent);
  opacity: 0.35;
}

.abt-us__team-inner {
  max-width: 1170px;
  margin: 0 auto;
}

.abt-us__team-head {
  text-align: center;
  margin-bottom: 48px;
}

.abt-us__team-head h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1a0022;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.abt-us__team-head p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1a38;
  max-width: 600px;
  margin: 0 auto;
}

.abt-us__team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.abt-us__member {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
  transition: box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-us__member:hover {
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
  transform: translateY(-4px);
}

.abt-us__member-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.abt-us__member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-us__member:hover .abt-us__member-img img {
  transform: scale(1.05);
}

.abt-us__member-body {
  padding: 24px;
}

.abt-us__member-name {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #1a0022;
  font-weight: 700;
  margin: 0 0 4px 0;
  text-transform: uppercase;
}

.abt-us__member-role {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #B32BBD;
  margin: 0 0 12px 0;
}

.abt-us__member-bio {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2d1a38;
  margin: 0;
}

.abt-us__contact-strip {
  max-width: 1170px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 18px;
}

.abt-us__contact-text {
  font-size: 15px;
  line-height: 1.8;
  color: #2d1a38;
  letter-spacing: 0.01em;
}

.abt-us__contact-link {
  display: inline-block;
  padding: 12px 24px;
  background: #B32BBD;
  color: #ffffff;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-decoration: none;
  font-weight: 600;
  text-transform: lowercase;
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.abt-us__contact-link:hover {
  background: #C46198;
  transform: translateY(-2px);
}

.abt-us__contact-link:focus-visible {
  outline: 2px solid #B32BBD;
  outline-offset: 3px;
}

@keyframes revealup {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(16px);
  }

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

.abt-us__band-text {
  animation: revealup 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.abt-us__band-img {
  animation: revealup 0.32s 0.08s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.abt-us__body {
  animation: revealup 0.35s 0.12s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@media (max-width: 1024px) {
  .abt-us__body {
    grid-template-columns: 1fr;
  }

  .abt-us__sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .abt-us__sidebar-img {
    flex: 1 1 280px;
  }

  .abt-us__checklist {
    flex: 1 1 280px;
  }

  .abt-us__team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .abt-us__band-strip {
    flex-direction: column;
    gap: 24px;
  }

  .abt-us__band-img {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }

  .abt-us__body {
    padding: 48px 24px;
  }

  .abt-us__team-grid {
    grid-template-columns: 1fr;
  }

  .abt-us__contact-strip {
    flex-direction: column;
    text-align: center;
  }

  .abt-us__team-band {
    padding: 48px 24px;
  }
}

@media (max-width: 375px) {
  .abt-us__band {
    padding: 24px 12px;
  }

  .abt-us__body {
    padding: 48px 12px;
  }

  .abt-us__team-band {
    padding: 48px 12px;
  }

  .abt-us__fact-num {
    font-size: 28px;
  }
}

.succ-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  background: #ffffff;
}

.succ-page .succ-card {
  max-width: 560px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #E5D4D4;
  border-radius: 18px;
  padding: 48px;
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
  text-align: center;
}

.succ-page .succ-card .succ-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.succ-page .succ-card .succ-icon svg {
  width: 64px;
  height: 64px;
}

.succ-page .succ-card .succ-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1028;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.succ-page .succ-card .succ-body {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #2e2038;
  margin-bottom: 48px;
}

.succ-page .succ-card .succ-body strong {
  color: #B32BBD;
  font-weight: 600;
}

.succ-page .succ-card .succ-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #B32BBD, #C46198);
  border-radius: 3px;
  margin: 0 auto 24px;
}

.succ-page .succ-card .succ-btn {
  display: inline-block;
  padding: 12px 48px;
  background: linear-gradient(135deg, #B32BBD 0%, #C46198 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 1px 7px 18px -2px rgba(179, 43, 189, 0.08);
  transition: box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-transform: lowercase;
}

.succ-page .succ-card .succ-btn:hover {
  box-shadow: 1px 10px 36px -2px rgba(179, 43, 189, 0.13);
  transform: translateY(-2px);
}

.succ-page .succ-card .succ-btn:focus {
  outline: 2px solid #B32BBD;
  outline-offset: 4px;
}

.succ-page .succ-card .succ-btn:active {
  transform: translateY(0px);
  box-shadow: 1px 1px 4px -2px rgba(179, 43, 189, 0.08);
}

.succ-page .succ-card .succ-note {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #5a4a6a;
  letter-spacing: 0.01em;
}

.succ-page .succ-card .succ-note a {
  color: #B32BBD;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.succ-page .succ-card .succ-note a:hover {
  color: #C46198;
}

@media (max-width: 768px) {
  .succ-page {
    padding: 48px 12px;
  }

  .succ-page .succ-card {
    padding: 48px 24px;
  }
}

@media (max-width: 375px) {
  .succ-page .succ-card {
    padding: 24px 12px;
    border-radius: 6px;
  }

  .succ-page .succ-card .succ-heading {
    font-size: 28px;
  }
}