body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
}

.brand-bar {
  box-sizing: border-box;
  background: linear-gradient(135deg, #6947C2 0%, #8a6fd4 60%, #ADB3D8 100%);
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-bar__identity {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-bar__logo-zone {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 8px 12px;
  border-left: 3px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 5px 0 rgba(105, 71, 194, 0.06), 0 4px 22px 0 rgba(105, 71, 194, 0.08);
}

.brand-bar__logo-zone img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.brand-bar__name {
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.brand-bar__tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
  line-height: 1.6;
  font-style: italic;
}

.brand-bar__contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-bar__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.brand-bar__contact-item:focus {
  outline: none;
  border-bottom: 4px solid rgba(255, 255, 255, 0.9);
}

.brand-bar__contact-item i {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.brand-bar__contact-item:hover {
  color: #ffffff;
}

.site-nav {
  box-sizing: border-box;
  background: #ffffff;
  border-bottom: 1px solid rgba(173, 179, 216, 0.3);
  box-shadow: 0 1px 5px 0 rgba(105, 71, 194, 0.06);
  padding: 0 48px;
}

.site-nav__row {
  box-sizing: border-box;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 4px;
}

.site-nav__link {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #3a2d5c;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.6;
  border-bottom: 3px solid transparent;
  transition: color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
  position: relative;
}

.site-nav__link:hover {
  color: #6947C2;
  border-bottom-color: #ADB3D8;
}

.site-nav__link.active {
  color: #6947C2;
  border-bottom-color: #6947C2;
}

.site-nav__link:focus {
  outline: none;
  border-bottom: 4px solid #6947C2;
}

@media (max-width: 900px) {
  .brand-bar {
    padding: 12px 24px;
    flex-wrap: wrap;
  }

  .brand-bar__contact {
    gap: 12px;
  }

  .site-nav {
    padding: 0 24px;
  }

  .site-nav__link {
    padding: 12px 12px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .brand-bar {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-bar__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .site-nav {
    padding: 0 12px;
  }

  .site-nav__row {
    flex-wrap: wrap;
  }

  .site-nav__link {
    padding: 12px 8px;
    font-size: 13px;
  }
}

.page-footer {
  box-sizing: border-box;
  background: #2a1f4a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer-wave {
  display: block;
  width: 100%;
  line-height: 0;
}

.footer-wave svg {
  display: block;
  width: 100%;
}

.footer-body {
  box-sizing: border-box;
  max-width: 1500px;
  margin: 0 auto;
  padding: 48px 48px 24px;
}

.footer-cols {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer-col {
  box-sizing: border-box;
  flex: 1;
  min-width: 180px;
}

.footer-col__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #ADB3D8;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

.footer-col__links li a {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.6;
  transition: color 0.32s ease-in-out;
}

.footer-col__links li a:hover {
  color: #ffffff;
}

.footer-col__links li a:focus {
  outline: none;
  border-bottom: 4px solid #ADB3D8;
}

.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-contact__item i {
  color: #ADB3D8;
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact__item a,
.footer-contact__item span {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.6;
  transition: color 0.32s ease-in-out;
}

.footer-contact__item a:hover {
  color: #ffffff;
}

.footer-contact__item a:focus {
  outline: none;
  border-bottom: 4px solid #ADB3D8;
}

.footer-divider {
  box-sizing: border-box;
  border: none;
  border-top: 1px solid rgba(173, 179, 216, 0.18);
  margin: 0 0 24px;
}

.footer-bottom {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
}

.footer-bottom__logo-zone {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 8px 12px;
  border-left: 3px solid rgba(173, 179, 216, 0.5);
  box-shadow: 0 1px 5px 0 rgba(105, 71, 194, 0.06);
}

.footer-bottom__logo-zone img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  filter: none;
}

.footer-bottom__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .footer-body {
    padding: 48px 24px 24px;
  }

  .footer-cols {
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .footer-body {
    padding: 48px 12px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.consent-tray {
  box-sizing: border-box;
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 1000;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 9px 40px 0 rgba(105, 71, 194, 0.12);
  padding: 24px;
  max-width: 340px;
  width: calc(100vw - 48px);
  display: none;
}

.consent-tray__desc {
  font-size: 13px;
  color: #3a2d5c;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.consent-tray__uses {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.consent-tray__uses li {
  font-size: 13px;
  color: #5a4f7a;
  line-height: 1.6;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.consent-tray__uses li i {
  color: #6947C2;
  font-size: 13px;
}

.consent-tray__actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.consent-tray__btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: underline;
  color: #6947C2;
  transition: color 0.32s ease-in-out;
}

.consent-tray__btn:hover {
  color: #4a2fa0;
}

.consent-tray__btn:focus {
  outline: none;
  border-bottom: 4px solid #6947C2;
  text-decoration: none;
}

.consent-tray__btn--decline {
  color: #7a7a9a;
}

.consent-tray__btn--decline:hover {
  color: #3a2d5c;
}

.terms-block {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px;
}

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

.terms-block h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1340;
  margin-top: 48px;
  margin-bottom: 24px;
}

.terms-block h3 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #2a1f5c;
  margin-top: 48px;
  margin-bottom: 12px;
}

.terms-block h4 {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #2a1f5c;
  margin-top: 24px;
  margin-bottom: 12px;
}

.terms-block h5 {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #3d2e7a;
  margin-top: 24px;
  margin-bottom: 8px;
}

.terms-block h6 {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #3d2e7a;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 8px;
}

.terms-block p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #2c2c3a;
  margin-top: 0;
  margin-bottom: 24px;
}

.terms-block ul,
.terms-block ol {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #2c2c3a;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px;
}

.terms-block ul {
  list-style-type: disc;
}

.terms-block ol {
  list-style-type: decimal;
}

.terms-block li {
  margin-bottom: 8px;
}

.terms-block li:last-child {
  margin-bottom: 0;
}

.terms-block ul ul,
.terms-block ol ol,
.terms-block ul ol,
.terms-block ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.terms-block strong,
.terms-block b {
  font-weight: 700;
  color: #1b1340;
}

.terms-block em,
.terms-block i {
  font-style: italic;
  color: #3d2e7a;
}

.terms-block table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.6;
  box-shadow: 0 4px 22px 0 rgba(105, 71, 194, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.terms-block thead {
  background: #6947C2;
}

.terms-block thead th {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 12px 24px;
  text-align: left;
  font-weight: 700;
}

.terms-block tbody tr {
  border-bottom: 1px solid #ADB3D8;
  transition: background-color 0.09s ease-out;
}

.terms-block tbody tr:last-child {
  border-bottom: none;
}

.terms-block tbody tr:hover {
  background: #F9F9FA;
}

.terms-block th,
.terms-block td {
  padding: 12px 24px;
  text-align: left;
  vertical-align: top;
  color: #2c2c3a;
}

.terms-block td {
  font-size: 16px;
  line-height: 1.6;
}

.terms-block tbody tr:nth-child(even) {
  background: rgba(173, 179, 216, 0.08);
}

.terms-block tbody tr:nth-child(even):hover {
  background: #F9F9FA;
}

@media (max-width: 900px) {
  .terms-block {
    padding: 48px 24px;
  }

  .terms-block h1 {
    font-size: 38px;
  }

  .terms-block h2 {
    font-size: 28px;
  }

  .terms-block h3 {
    font-size: 21px;
  }
}

@media (max-width: 600px) {
  .terms-block {
    padding: 24px 12px;
  }

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

  .terms-block h2 {
    font-size: 21px;
    margin-top: 24px;
  }

  .terms-block h3 {
    font-size: 16px;
    margin-top: 24px;
  }

  .terms-block table {
    display: block;
    overflow-x: auto;
    border-radius: 2px;
  }

  .terms-block th,
  .terms-block td {
    padding: 12px;
    font-size: 13px;
  }

  .terms-block thead th {
    font-size: 13px;
    padding: 12px;
  }
}

.abt-us {
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: clip;
}

.abt-us .schema-data {
  display: none;
}

.abt-us .split-screen {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 600px;
  position: relative;
}

.abt-us .split-screen__img-zone {
  background: #6947C2;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.abt-us .split-screen__img-zone::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(ellipse at 30% 20%, rgba(249, 249, 250, 0.35) 0%, rgba(105, 71, 194, 0) 70%),
    linear-gradient(17deg, rgba(173, 179, 216, 0.18) 0%, rgba(249, 249, 250, 0.06) 100%);
  border-radius: 50%;
  pointer-events: none;
}

.abt-us .split-screen__img-zone::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  top: 40px;
  border: 1px solid rgba(249, 249, 250, 0.18);
  border-radius: 2px;
  pointer-events: none;
}

.abt-us .img-frame {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
  height: 340px;
}

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

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

.abt-us .img-frame__leak {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 160px;
  background: radial-gradient(ellipse at 0% 0%, rgba(249, 249, 250, 0.38) 0%, rgba(249, 249, 250, 0) 65%),
    linear-gradient(17deg, rgba(173, 179, 216, 0.22) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 2px;
}

.abt-us .split-screen__img-label {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(249, 249, 250, 0.7);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.abt-us .split-screen__text-zone {
  background: #F9F9FA;
  padding: 96px 48px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.abt-us .split-screen__text-zone::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid rgba(105, 71, 194, 0.1);
  border-radius: 2px;
  pointer-events: none;
}

.abt-us .split-screen__text-zone::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  bottom: 28px;
  border: 1px solid rgba(105, 71, 194, 0.05);
  border-radius: 2px;
  pointer-events: none;
}

.abt-us .eyebrow {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #6947C2;
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 600;
}

.abt-us .split-screen__h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1e1530;
  margin: 0 0 24px 0;
}

.abt-us .split-screen__h1 span {
  display: block;
}

.abt-us .split-screen__h1 span:nth-child(2) {
  font-size: 66px;
  color: #6947C2;
}

.abt-us .split-screen__h1 span:nth-child(3) {
  font-size: 38px;
  color: #ADB3D8;
}

.abt-us .split-screen__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3450;
  letter-spacing: 0.01em;
  max-width: 440px;
}

@keyframes trace-border {
  0% {
    clip-path: inset(0 100% 100% 0);
  }

  25% {
    clip-path: inset(0 0 100% 0);
  }

  50% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

.abt-us .split-screen__img-zone::after {
  animation: trace-border 1.1s cubic-bezier(0.34, 1.2, 0.64, 1) 0.3s both;
}

.abt-us .divider-watercolor {
  display: block;
  width: 100%;
  height: 48px;
  overflow: hidden;
  line-height: 0;
}

.abt-us .milestone-section {
  background: linear-gradient(17deg, #6947C2 0%, #4e32a0 100%);
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}

.abt-us .milestone-section__bg-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at 70% 30%, rgba(173, 179, 216, 0.15) 0%, transparent 65%),
    linear-gradient(17deg, rgba(249, 249, 250, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.abt-us .milestone-section__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.abt-us .milestone-section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: end;
}

.abt-us .milestone-section__h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F9F9FA;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(249, 249, 250, 0.25);
  display: inline-block;
}

.abt-us .milestone-section__lead {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(249, 249, 250, 0.8);
  letter-spacing: 0.01em;
}

.abt-us .milestone-tracker {
  display: flex;
  flex-direction: row;
  gap: 0;
  position: relative;
}

.abt-us .milestone-tracker::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(249, 249, 250, 0.2);
}

.abt-us .milestone-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
  transition: opacity 0.35s ease-in-out;
}

.abt-us .milestone-tracker:hover .milestone-item {
  opacity: 0.4;
}

.abt-us .milestone-tracker:hover .milestone-item:hover {
  opacity: 1;
}

.abt-us .milestone-item__icon {
  width: 64px;
  height: 64px;
  background: rgba(249, 249, 250, 0.12);
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(249, 249, 250, 0.2);
  transition: background 0.32s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.abt-us .milestone-item:hover .milestone-item__icon {
  background: rgba(249, 249, 250, 0.22);
  transform: translateY(-4px);
}

.abt-us .milestone-item__icon i {
  font-size: 21px;
  color: #F9F9FA;
}

.abt-us .milestone-item__date {
  font-size: 13px;
  color: rgba(249, 249, 250, 0.6);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.abt-us .milestone-item__label {
  font-size: 13px;
  color: #F9F9FA;
  letter-spacing: 0.01em;
  line-height: 1.6;
  text-align: center;
  font-weight: 600;
}

.abt-us .milestone-item__desc {
  font-size: 13px;
  color: rgba(249, 249, 250, 0.7);
  line-height: 1.6;
  text-align: center;
}

.abt-us .detail-section {
  background: #fff;
  padding: 96px 48px;
}

.abt-us .detail-section__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.abt-us .detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.abt-us .detail-grid--alt {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.abt-us .detail-section__h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1e1530;
  margin: 0 0 24px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #6947C2;
  display: inline-block;
}

.abt-us .detail-section__sub {
  font-size: 21px;
  line-height: 1.2;
  color: #3a3450;
  margin: 0 0 24px 0;
  letter-spacing: 0.01em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(105, 71, 194, 0.15);
  display: inline-block;
}

.abt-us .lead-label {
  font-size: 13px;
  font-weight: 700;
  color: #6947C2;
  letter-spacing: 0.02em;
  line-height: 1.6;
  display: block;
  margin-bottom: 4px;
}

.abt-us .body-para {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3450;
  letter-spacing: 0.01em;
  margin: 0 0 24px 0;
}

.abt-us .accent-phrase {
  font-style: italic;
  font-size: 21px;
  line-height: 1.6;
  color: #6947C2;
  display: block;
  margin: 24px 0;
  letter-spacing: 0.01em;
}

.abt-us .person-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abt-us .person-card {
  background: #F9F9FA;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 22px 0 rgba(105, 71, 194, 0.08);
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  transition: box-shadow 0.42s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.abt-us .person-card:hover {
  box-shadow: 0 9px 40px 0 rgba(105, 71, 194, 0.12);
  transform: translateY(-3px);
}

.abt-us .person-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.abt-us .person-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.abt-us .person-card:hover .person-card__avatar img {
  transform: scale(1.08);
}

.abt-us .person-card__body {
  flex: 1;
}

.abt-us .person-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #1e1530;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 4px 0;
}

.abt-us .person-card__role {
  font-size: 13px;
  color: #6947C2;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin: 0 0 8px 0;
}

.abt-us .person-card__bio {
  font-size: 13px;
  color: #5a5270;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin: 0;
}

.abt-us .value-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.abt-us .value-card {
  background: linear-gradient(17deg, rgba(105, 71, 194, 0.06) 0%, rgba(173, 179, 216, 0.08) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(105, 71, 194, 0.04) 0%, transparent 60%);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 5px 0 rgba(105, 71, 194, 0.06);
  transition: box-shadow 0.36s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.abt-us .value-card:hover {
  box-shadow: 0 4px 22px 0 rgba(105, 71, 194, 0.08);
}

.abt-us .value-card__icon {
  width: 40px;
  height: 40px;
  background: #6947C2;
  border-radius: 2px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.abt-us .value-card__icon i {
  font-size: 16px;
  color: #F9F9FA;
}

.abt-us .value-card__label {
  font-size: 13px;
  font-weight: 700;
  color: #1e1530;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0 0 8px 0;
}

.abt-us .value-card__text {
  font-size: 13px;
  color: #5a5270;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin: 0;
}

.abt-us .split-bg-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 8px;
  margin-top: 48px;
}

.abt-us .split-bg-strip__left {
  background: #6947C2;
}

.abt-us .split-bg-strip__right {
  background: #ADB3D8;
}

.abt-us .img-showcase {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 9px 40px 0 rgba(105, 71, 194, 0.12);
  position: relative;
}

.abt-us .img-showcase img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

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

.abt-us .img-showcase--tall img {
  height: 380px;
}

@media (max-width: 900px) {
  .abt-us .split-screen {
    grid-template-columns: 1fr;
  }

  .abt-us .split-screen__img-zone {
    min-height: 320px;
    padding: 48px 24px 24px 24px;
  }

  .abt-us .split-screen__text-zone {
    padding: 48px 24px;
  }

  .abt-us .split-screen__h1 {
    font-size: 38px;
  }

  .abt-us .split-screen__h1 span:nth-child(2) {
    font-size: 52px;
  }

  .abt-us .split-screen__h1 span:nth-child(3) {
    font-size: 28px;
  }

  .abt-us .milestone-section {
    padding: 48px 24px;
  }

  .abt-us .milestone-section__header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .abt-us .milestone-tracker {
    flex-direction: column;
    gap: 24px;
  }

  .abt-us .milestone-tracker::before {
    display: none;
  }

  .abt-us .milestone-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }

  .abt-us .milestone-item__icon {
    flex-shrink: 0;
  }

  .abt-us .milestone-item__label,
  .abt-us .milestone-item__desc {
    text-align: left;
  }

  .abt-us .detail-grid,
  .abt-us .detail-grid--alt {
    grid-template-columns: 1fr;
  }

  .abt-us .detail-section {
    padding: 48px 24px;
  }

  .abt-us .value-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .abt-us .split-screen__h1 {
    font-size: 28px;
  }

  .abt-us .split-screen__h1 span:nth-child(2) {
    font-size: 38px;
  }

  .abt-us .split-screen__h1 span:nth-child(3) {
    font-size: 21px;
  }

  .abt-us .milestone-section__h2 {
    font-size: 28px;
  }

  .abt-us .detail-section__h2 {
    font-size: 28px;
  }

  .abt-us .person-card {
    flex-direction: column;
    gap: 12px;
  }
}

.srvs {
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

.srvs .pg-load {
  animation: blurIn 0.4s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

@keyframes blurIn {
  from {
    filter: blur(6px);
    opacity: 0;
  }

  to {
    filter: blur(0);
    opacity: 1;
  }
}

.srvs .title-band {
  padding: 96px 48px 48px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  background: linear-gradient(17deg, #f0edf9 0%, #fff 60%),
    radial-gradient(ellipse at 80% 20%, rgba(105, 71, 194, 0.08) 0%, transparent 70%);
}

.srvs .title-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(17deg, #6947C2 0%, #ADB3D8 100%);
}

.srvs .title-band__text {
  padding-top: 24px;
}

.srvs .title-band__label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #6947C2;
  font-weight: 600;
  margin-bottom: 24px;
  padding: 4px 12px;
  border: 1px solid rgba(105, 71, 194, 0.25);
  border-radius: 2px;
}

.srvs .title-band__h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1e1535;
  margin-bottom: 24px;
  font-weight: 700;
}

.srvs .title-band__lead {
  font-size: 21px;
  line-height: 1.6;
  color: #3d3554;
  margin-bottom: 24px;
  font-style: italic;
}

.srvs .title-band__body {
  font-size: 16px;
  line-height: 1.6;
  color: #3d3554;
}

.srvs .title-band__body strong {
  font-weight: 600;
  color: #1e1535;
}

.srvs .title-band__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 9px 40px 0 rgba(105, 71, 194, 0.12);
}

.srvs .title-band__img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: saturate(0.75);
  transition: filter 0.38s ease-in-out, transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.srvs .title-band__img-wrap:hover img {
  filter: saturate(1);
  transform: scale(1.04);
}

.srvs .title-band__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(17deg, rgba(105, 71, 194, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.srvs .title-band__bracket {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  border-left: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 2px 0 0 0;
  pointer-events: none;
}

.srvs .title-band__bracket--br {
  top: auto;
  left: auto;
  bottom: 16px;
  right: 16px;
  border-top: none;
  border-left: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 0 0 2px 0;
}

.srvs .arrow-divider {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
  background: #fff;
}

.srvs .arrow-divider__item {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid rgba(105, 71, 194, 0.2);
}

.srvs .arrow-divider__item:nth-child(2) {
  border-top-color: rgba(105, 71, 194, 0.35);
}

.srvs .arrow-divider__item:nth-child(3) {
  border-top-color: rgba(105, 71, 194, 0.2);
}

.srvs .offers {
  background: #6947C2;
  padding: 96px 48px;
  position: relative;
}

.srvs .offers::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse at 100% 0%, rgba(173, 179, 216, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

.srvs .offers__head {
  margin-bottom: 48px;
  max-width: 640px;
}

.srvs .offers__eyebrow {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #ADB3D8;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.srvs .offers__h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #fff;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(173, 179, 216, 0.4);
  display: inline-block;
}

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

.srvs .offer-card {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 48px 24px 24px;
  position: relative;
  transition: background 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
  box-shadow: 0 1px 5px 0 rgba(105, 71, 194, 0.06);
}

.srvs .offer-card:hover {
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 9px 40px 0 rgba(105, 71, 194, 0.18);
}

.srvs .offer-card__bracket {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 20px;
  height: 20px;
  border-top: 2px solid rgba(173, 179, 216, 0.5);
  border-left: 2px solid rgba(173, 179, 216, 0.5);
  border-radius: 2px 0 0 0;
  pointer-events: none;
}

.srvs .offer-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(173, 179, 216, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #ADB3D8;
  font-size: 21px;
}

.srvs .offer-card__h3 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(173, 179, 216, 0.25);
}

.srvs .offer-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.srvs .offer-card__tag {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #ADB3D8;
  background: rgba(173, 179, 216, 0.12);
  border-radius: 2px;
  padding: 4px 8px;
}

.srvs .stripe-divider {
  height: 2px;
  background: linear-gradient(17deg, #ADB3D8 0%, #6947C2 50%, #F9F9FA 100%);
}

.srvs .detail {
  padding: 96px 48px;
  background: #F9F9FA;
}

.srvs .detail__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

.srvs .detail__sidebar {
  position: sticky;
  top: 24px;
}

.srvs .detail__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 22px 0 rgba(105, 71, 194, 0.08);
  margin-bottom: 24px;
}

.srvs .detail__img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: saturate(0.75);
  transition: filter 0.4s ease-in-out, transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.srvs .detail__img-wrap:hover img {
  filter: saturate(1);
  transform: scale(1.04);
}

.srvs .detail__sidebar-label {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #6947C2;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.srvs .detail__sidebar-stat {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 5px 0 rgba(105, 71, 194, 0.06);
  margin-bottom: 12px;
}

.srvs .detail__stat-num {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #6947C2;
  letter-spacing: 0.01em;
}

.srvs .detail__stat-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #3d3554;
  margin-top: 4px;
}

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

.srvs .detail__h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1e1535;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(105, 71, 194, 0.2);
  display: inline-block;
  margin-bottom: 12px;
}

.srvs .detail__item {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 5px 0 rgba(105, 71, 194, 0.06);
  transition: box-shadow 0.38s ease-in-out;
}

.srvs .detail__item:hover {
  box-shadow: 0 4px 22px 0 rgba(105, 71, 194, 0.1);
}

.srvs .detail__item-label {
  font-size: 13px;
  font-weight: 700;
  color: #6947C2;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 8px;
}

.srvs .detail__item-h4 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1e1535;
  font-weight: 600;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(105, 71, 194, 0.12);
}

.srvs .detail__item-text {
  font-size: 16px;
  line-height: 1.6;
  color: #3d3554;
}

.srvs .detail__item-text em {
  font-style: italic;
  font-size: 21px;
  color: #6947C2;
  line-height: 1.6;
}

.srvs .detail__btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 24px;
  background: linear-gradient(17deg, #6947C2, #8b6dd4);
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.01em;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  transition: box-shadow 0.35s ease-in-out, background-position 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  background-size: 200% 200%;
  background-position: 0% 0%;
}

.srvs .detail__btn:hover {
  background-position: 100% 100%;
  box-shadow: 0 4px 22px 0 rgba(105, 71, 194, 0.25);
}

.srvs .detail__btn:focus {
  outline: 2px solid #6947C2;
  outline-offset: 2px;
}

@media (max-width: 1200px) {
  .srvs .title-band {
    grid-template-columns: 1fr 340px;
  }

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

  .srvs .detail__grid {
    grid-template-columns: 300px 1fr;
  }
}

@media (max-width: 900px) {
  .srvs .title-band {
    grid-template-columns: 1fr;
    padding: 48px 24px 48px;
  }

  .srvs .title-band__img-wrap {
    order: -1;
  }

  .srvs .title-band__h1 {
    font-size: 38px;
  }

  .srvs .offers {
    padding: 48px 24px;
  }

  .srvs .offers__grid {
    grid-template-columns: 1fr;
  }

  .srvs .detail {
    padding: 48px 24px;
  }

  .srvs .detail__grid {
    grid-template-columns: 1fr;
  }

  .srvs .detail__sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  .srvs .title-band {
    padding: 48px 12px 24px;
  }

  .srvs .title-band__h1 {
    font-size: 28px;
  }

  .srvs .title-band__lead {
    font-size: 16px;
  }

  .srvs .offers {
    padding: 48px 12px;
  }

  .srvs .offers__h2 {
    font-size: 28px;
  }

  .srvs .detail {
    padding: 48px 12px;
  }

  .srvs .detail__h2 {
    font-size: 28px;
  }

  .srvs .detail__stat-num {
    font-size: 28px;
  }
}

.cont-us {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.cont-us .pg-band {
  background: linear-gradient(17deg, #f0edf9 0%, #e8e4f5 40%, #f5f4fb 100%), radial-gradient(ellipse at 80% 20%, rgba(105, 71, 194, 0.13) 0%, transparent 65%);
  padding: 48px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  position: relative;
}

.cont-us .pg-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(105, 71, 194, 0.03) 28px, rgba(105, 71, 194, 0.03) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(105, 71, 194, 0.03) 28px, rgba(105, 71, 194, 0.03) 29px);
  pointer-events: none;
}

.cont-us .pg-band__lead {
  flex: 1 1 55%;
}

.cont-us .pg-band__label {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #6947C2;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.cont-us .pg-band__h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1e1530;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.cont-us .pg-band__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #3d3458;
  max-width: 480px;
  margin: 0;
}

.cont-us .pg-band__side {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.cont-us .metric-pair {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: baseline;
}

.cont-us .metric-pair__before {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 300;
  color: #ADB3D8;
  letter-spacing: 0.01em;
}

.cont-us .metric-pair__after {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
  color: #6947C2;
  letter-spacing: 0.01em;
}

.cont-us .metric-pair__label {
  font-size: 13px;
  color: #7a6fa0;
  letter-spacing: 0.02em;
  text-align: right;
}

.cont-us .pg-band__deco {
  position: absolute;
  bottom: 24px;
  right: 48px;
  width: 80px;
  height: 80px;
  pointer-events: none;
  opacity: 0.18;
}

.cont-us .pg-band__deco span {
  position: absolute;
  border: 1.5px solid #6947C2;
  border-radius: 2px;
}

.cont-us .pg-band__deco span:nth-child(1) {
  inset: 0;
}

.cont-us .pg-band__deco span:nth-child(2) {
  inset: 10px;
}

.cont-us .pg-band__deco span:nth-child(3) {
  inset: 20px;
}

.cont-us .pg-band__deco span:nth-child(4) {
  inset: 30px;
}

.cont-us .divider-a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  background: #fff;
}

.cont-us .divider-a__line {
  width: 120px;
  height: 1px;
  background: #ADB3D8;
}

.cont-us .divider-a__diamond {
  width: 8px;
  height: 8px;
  background: #6947C2;
  transform: rotate(45deg);
  margin: 0 8px;
  flex-shrink: 0;
  border-radius: 2px;
}

.cont-us .form-zone {
  background: #fff;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cont-us .form-zone__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cont-us .form-zone__h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1e1530;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #6947C2;
  display: inline-block;
}

.cont-us .form-zone__body {
  font-size: 16px;
  line-height: 1.6;
  color: #3d3458;
  margin: 0;
}

.cont-us .form-zone__body strong {
  font-weight: 600;
  color: #1e1530;
}

.cont-us .addr-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cont-us .addr-card {
  background: #F9F9FA;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 1px 5px 0 rgba(105, 71, 194, 0.06);
  transition: box-shadow 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.cont-us .addr-card:hover {
  box-shadow: 0 4px 22px 0 rgba(105, 71, 194, 0.08);
  transform: translateY(-2px);
}

.cont-us .addr-card__icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(17deg, #6947C2, #8b6fd4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 16px;
}

.cont-us .addr-card__body {
  flex: 1;
}

.cont-us .addr-card__lbl {
  font-size: 13px;
  font-weight: 600;
  color: #6947C2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.cont-us .addr-card__val {
  font-size: 16px;
  color: #1e1530;
  line-height: 1.6;
  margin: 0;
}

.cont-us .addr-card__val a {
  color: #1e1530;
  text-decoration: none;
  transition: color 0.32s ease-in-out;
}

.cont-us .addr-card__val a:hover {
  color: #6947C2;
}

.cont-us .contact-form {
  background: #F9F9FA;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 22px 0 rgba(105, 71, 194, 0.08);
}

.cont-us .contact-form__h3 {
  font-size: 21px;
  line-height: 1.2;
  color: #1e1530;
  letter-spacing: 0.01em;
  font-weight: 600;
  margin: 0 0 24px 0;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #ADB3D8;
}

.cont-us .field-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.cont-us .field-row label {
  font-size: 13px;
  font-weight: 600;
  color: #3d3458;
  letter-spacing: 0.02em;
}

.cont-us .field-row input[type="text"],
.cont-us .field-row input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  color: #1e1530;
  background: #fff;
  border: 1.5px solid #d0cce8;
  border-radius: 20px;
  outline: none;
  box-sizing: border-box;
  box-shadow: inset 0 2px 4px rgba(105, 71, 194, 0.04);
  transition: border-color 0.32s ease-in-out, box-shadow 0.32s ease-in-out;
}

.cont-us .field-row input[type="text"]::placeholder,
.cont-us .field-row input[type="email"]::placeholder {
  color: #b0a8cc;
  transition: opacity 0.4s ease-in-out;
}

.cont-us .field-row input[type="text"]:focus::placeholder,
.cont-us .field-row input[type="email"]:focus::placeholder {
  opacity: 0;
}

.cont-us .field-row input[type="text"]:focus,
.cont-us .field-row input[type="email"]:focus {
  border-color: #6947C2;
  box-shadow: inset 0 2px 4px rgba(105, 71, 194, 0.04), 0 0 0 3px rgba(105, 71, 194, 0.1);
}

.cont-us .checks-grp {
  margin-bottom: 24px;
}

.cont-us .checks-grp__lbl {
  font-size: 13px;
  font-weight: 600;
  color: #3d3458;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  display: block;
}

.cont-us .check-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cont-us .check-item {
  background: #fff;
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #d0cce8;
  cursor: pointer;
  transition: border-color 0.28s cubic-bezier(0.34, 1.2, 0.64, 1), background 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.cont-us .check-item:hover {
  border-color: #6947C2;
  background: #f0edf9;
}

.cont-us .check-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #6947C2;
  cursor: pointer;
  flex-shrink: 0;
}

.cont-us .check-item__text {
  font-size: 13px;
  color: #1e1530;
  line-height: 1.6;
  cursor: pointer;
}

.cont-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid #d0cce8;
}

.cont-us .privacy-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #6947C2;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.cont-us .privacy-row__text {
  font-size: 13px;
  color: #3d3458;
  line-height: 1.6;
  margin: 0;
}

.cont-us .privacy-row__text a {
  color: #6947C2;
  text-decoration: underline;
  transition: color 0.28s ease-in-out;
}

.cont-us .privacy-row__text a:hover {
  color: #4a2fa0;
}

.cont-us .submit-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #6947C2;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 22px 0 rgba(105, 71, 194, 0.12);
  transition: box-shadow 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.cont-us .submit-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
  transition: left 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
  pointer-events: none;
}

.cont-us .submit-btn:hover::before {
  left: 120%;
}

.cont-us .submit-btn:hover {
  box-shadow: 0 9px 40px 0 rgba(105, 71, 194, 0.18);
  transform: translateY(-1px);
}

.cont-us .submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 5px 0 rgba(105, 71, 194, 0.06);
}

.cont-us .submit-btn:focus-visible {
  outline: 3px solid #6947C2;
  outline-offset: 3px;
}

.cont-us .divider-b {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 48px;
  background: #F9F9FA;
}

.cont-us .divider-b__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ADB3D8, transparent);
}

.cont-us .divider-b__diamond {
  width: 8px;
  height: 8px;
  background: #ADB3D8;
  transform: rotate(45deg);
  margin: 0 8px;
  flex-shrink: 0;
  border-radius: 2px;
}

.cont-us .info-strip {
  background: linear-gradient(17deg, #1e1530 0%, #2d2050 60%, #3a2870 100%), radial-gradient(ellipse at 20% 80%, rgba(105, 71, 194, 0.35) 0%, transparent 60%);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  position: relative;
}

.cont-us .info-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(173,179,216,0.08)'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cont-us .info-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.cont-us .info-col__tag {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #ADB3D8;
  text-transform: uppercase;
  font-weight: 600;
}

.cont-us .info-col__h3 {
  font-size: 21px;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1.5px solid rgba(173, 179, 216, 0.3);
}

.cont-us .info-col__body {
  font-size: 16px;
  line-height: 1.6;
  color: #c8c4e0;
  margin: 0;
}

.cont-us .info-col__body strong {
  color: #fff;
  font-weight: 600;
}

.cont-us .info-col__body em {
  font-style: italic;
  font-size: 21px;
  color: #ADB3D8;
}

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

.cont-us .hours-list li {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  color: #c8c4e0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.cont-us .hours-list li span {
  color: #fff;
  font-weight: 600;
}

.cont-us .shake-el {
  animation: attention-shake 0.42s cubic-bezier(0.34, 1.2, 0.64, 1) 2.4s 1 both;
}

@keyframes attention-shake {
  0% {
    transform: translateX(0);
  }

  15% {
    transform: translateX(-5px) rotate(-1deg);
  }

  30% {
    transform: translateX(5px) rotate(1deg);
  }

  45% {
    transform: translateX(-4px);
  }

  60% {
    transform: translateX(4px);
  }

  75% {
    transform: translateX(-2px);
  }

  90% {
    transform: translateX(2px);
  }

  100% {
    transform: translateX(0);
  }
}

.cont-us .reveal-chars {
  display: inline-block;
  overflow: hidden;
}

.cont-us .reveal-chars span {
  display: inline-block;
  opacity: 0;
  animation: char-in 0.1s ease-out forwards;
}

@keyframes char-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

@media (max-width: 900px) {
  .cont-us .pg-band {
    flex-direction: column;
    padding: 48px 24px;
    gap: 24px;
  }

  .cont-us .pg-band__h1 {
    font-size: 38px;
  }

  .cont-us .pg-band__side {
    align-items: flex-start;
    flex-direction: row;
    gap: 24px;
  }

  .cont-us .form-zone {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 24px;
  }

  .cont-us .info-strip {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 24px;
  }

  .cont-us .check-items {
    grid-template-columns: 1fr;
  }

  .cont-us .contact-form {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .cont-us .pg-band {
    padding: 24px;
  }

  .cont-us .pg-band__h1 {
    font-size: 28px;
  }

  .cont-us .metric-pair__after {
    font-size: 38px;
  }

  .cont-us .metric-pair__before {
    font-size: 28px;
  }

  .cont-us .form-zone {
    padding: 24px 16px;
  }

  .cont-us .info-strip {
    padding: 24px 16px;
  }

  .cont-us .contact-form {
    padding: 16px;
  }

  .cont-us .divider-b {
    padding: 8px 16px;
  }
}

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

.prm .bd-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

.prm .lead {
  background: #6947C2;
  position: relative;
}

.prm .lead__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(17deg, rgba(105, 71, 194, 0.0) 0%, rgba(173, 179, 216, 0.18) 100%), radial-gradient(ellipse at 80% 40%, rgba(173, 179, 216, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.prm .lead__deco-abbr {
  position: absolute;
  bottom: -24px;
  right: 48px;
  font-size: 180px;
  font-weight: 900;
  color: rgba(249, 249, 250, 0.06);
  line-height: 1.2;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
}

.prm .lead__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.prm .lead__text-zone {
  padding: 96px 48px 96px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.prm .lead__tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(249, 249, 250, 0.7);
  border: 1px solid rgba(249, 249, 250, 0.2);
  border-radius: 2px;
  padding: 4px 12px;
  margin-bottom: 24px;
}

.prm .lead__h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F9F9FA;
  margin: 0 0 24px;
  font-weight: 800;
}

.prm .lead__h1 em {
  font-style: italic;
  color: #ADB3D8;
}

.prm .lead__desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(249, 249, 250, 0.82);
  margin: 0 0 48px;
  max-width: 480px;
}

.prm .lead__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.prm .btn-pri {
  display: inline-block;
  padding: 12px 24px;
  background: #F9F9FA;
  color: #6947C2;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
  text-decoration: none;
}

.prm .btn-pri::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(17deg, #6947C2 0%, #ADB3D8 100%);
  transform: translateX(-100%) rotate(17deg);
  transition: transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0;
}

.prm .btn-pri:hover::before {
  transform: translateX(0) rotate(17deg);
}

.prm .btn-pri:hover {
  color: #F9F9FA;
}

.prm .btn-pri span {
  position: relative;
  z-index: 1;
}

.prm .btn-sec {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: #F9F9FA;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: 1px solid rgba(249, 249, 250, 0.35);
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.35s ease-in-out, background 0.35s ease-in-out;
}

.prm .btn-sec:hover {
  border-color: rgba(249, 249, 250, 0.7);
  background: rgba(249, 249, 250, 0.08);
}

.prm .lead__img-zone {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 48px 0 48px 48px;
}

.prm .lead__img-frame {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.prm .lead__img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(105, 71, 194, 0.55) 100%);
  pointer-events: none;
}

.prm .lead__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  transition: transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.prm .lead__img-frame:hover img {
  transform: scale(1.04);
}

.prm .wave-div {
  line-height: 0;
  background: #6947C2;
}

.prm .wave-div svg {
  display: block;
  width: 100%;
}

.prm .off {
  background: #F9F9FA;
  padding: 96px 0 48px;
}

.prm .off__head {
  margin-bottom: 48px;
}

.prm .off__label {
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #6947C2;
  font-weight: 700;
  margin-bottom: 8px;
}

.prm .off__h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #232040;
  margin: 0 0 12px;
  font-weight: 800;
  display: inline-block;
  border-bottom: 2px solid #6947C2;
  padding-bottom: 8px;
}

.prm .off__sub {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4770;
  max-width: 540px;
  margin: 12px 0 0;
}

.prm .off__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.prm .off__card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 22px 0 rgba(105, 71, 194, 0.08);
  transition: box-shadow 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
  position: relative;
}

.prm .off__card:hover {
  box-shadow: 0 9px 40px 0 rgba(105, 71, 194, 0.12);
  transform: translateY(-4px);
}

.prm .off__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: linear-gradient(17deg, #6947C2 0%, #ADB3D8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
}

.prm .off__card-icon i {
  color: #fff;
  font-size: 18px;
}

.prm .off__card-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ADB3D8;
  border: 2px solid #fff;
}

.prm .off__card-h {
  font-size: 16px;
  line-height: 1.2;
  color: #232040;
  font-weight: 700;
  margin: 0 0 8px;
  border-bottom: 1px solid #e8e6f5;
  padding-bottom: 8px;
}

.prm .off__card-p {
  font-size: 13px;
  line-height: 1.6;
  color: #4a4770;
  margin: 0;
}

.prm .off__img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.prm .off__img-wrap {
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 4px 22px 0 rgba(105, 71, 194, 0.08);
}

.prm .off__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.prm .off__img-wrap:hover img {
  transform: scale(1.04);
}

.prm .off__img-text h3 {
  font-size: 21px;
  line-height: 1.2;
  color: #232040;
  font-weight: 700;
  margin: 0 0 12px;
  border-bottom: 1px solid #e8e6f5;
  padding-bottom: 8px;
}

.prm .off__img-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4770;
  margin: 0 0 12px;
}

.prm .off__img-text p strong {
  font-weight: 700;
  color: #232040;
}

.prm .wave-div--light {
  background: #F9F9FA;
}

.prm .exp {
  background: #232040;
  padding: 96px 0;
  position: relative;
  animation: bgSat 8s ease-in-out infinite;
}

@keyframes bgSat {

  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(0.7);
  }
}

.prm .exp__abbr {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  font-size: 160px;
  font-weight: 900;
  color: rgba(173, 179, 216, 0.05);
  line-height: 1.2;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.prm .exp__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.prm .exp__left h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #F9F9FA;
  font-weight: 800;
  margin: 0 0 24px;
  border-bottom: 2px solid #6947C2;
  padding-bottom: 8px;
  display: inline-block;
  letter-spacing: 0.01em;
}

.prm .exp__left p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(249, 249, 250, 0.72);
  margin: 0;
}

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

.prm .exp__step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  background: rgba(249, 249, 250, 0.04);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 5px 0 rgba(105, 71, 194, 0.06);
  transition: background 0.4s ease-in-out;
}

.prm .exp__step:hover {
  background: rgba(105, 71, 194, 0.15);
}

.prm .exp__step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: #6947C2;
  color: #F9F9FA;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.prm .exp__step-arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #6947C2;
}

.prm .exp__step-body h4 {
  font-size: 16px;
  line-height: 1.2;
  color: #F9F9FA;
  font-weight: 700;
  margin: 0 0 8px;
  border-bottom: 1px solid rgba(173, 179, 216, 0.2);
  padding-bottom: 8px;
}

.prm .exp__step-body p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(249, 249, 250, 0.65);
  margin: 0;
}

.prm .wave-div--dark {
  background: #232040;
}

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

.prm .appr__layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: center;
}

.prm .appr__text h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #232040;
  font-weight: 800;
  margin: 0 0 24px;
  letter-spacing: 0.01em;
  display: inline-block;
  border-bottom: 2px solid #ADB3D8;
  padding-bottom: 8px;
}

.prm .appr__para {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4770;
  margin: 0 0 24px;
}

.prm .appr__para strong {
  font-weight: 700;
  color: #232040;
}

.prm .appr__para em {
  font-style: italic;
  font-size: 18px;
  color: #6947C2;
}

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

.prm .appr__pill {
  font-size: 13px;
  color: #6947C2;
  border: 1px solid rgba(105, 71, 194, 0.3);
  border-radius: 2px;
  padding: 4px 12px;
  font-weight: 600;
  background: rgba(105, 71, 194, 0.05);
}

.prm .appr__img-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.prm .appr__img-frame {
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 9px 40px 0 rgba(105, 71, 194, 0.12);
  position: relative;
}

.prm .appr__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.prm .appr__img-frame:hover img {
  transform: scale(1.04);
  opacity: 1;
}

.prm .appr__img-caption {
  font-size: 13px;
  color: #ADB3D8;
  text-align: center;
  letter-spacing: 0.01em;
}

.prm .wave-div--white {
  background: #fff;
}

.prm .fit {
  background: linear-gradient(17deg, #F9F9FA 0%, rgba(173, 179, 216, 0.18) 100%);
  padding: 96px 0;
  position: relative;
}

.prm .fit__abbr {
  position: absolute;
  top: 24px;
  right: 48px;
  font-size: 140px;
  font-weight: 900;
  color: rgba(105, 71, 194, 0.05);
  line-height: 1.2;
  pointer-events: none;
  user-select: none;
}

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

.prm .fit__head h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #232040;
  font-weight: 800;
  margin: 0 0 12px;
  display: inline-block;
  border-bottom: 2px solid #6947C2;
  padding-bottom: 8px;
  letter-spacing: 0.01em;
}

.prm .fit__head p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4770;
  max-width: 560px;
  margin: 12px auto 0;
}

.prm .fit__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.prm .fit__col-h {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e6f5;
}

.prm .fit__col--yes .fit__col-h {
  color: #6947C2;
}

.prm .fit__col--no .fit__col-h {
  color: #ADB3D8;
}

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

.prm .fit__item {
  background: #fff;
  border-radius: 20px;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.6;
  color: #232040;
  box-shadow: 0 1px 5px 0 rgba(105, 71, 194, 0.06);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.prm .fit__item i {
  flex-shrink: 0;
  margin-top: 4px;
  font-size: 13px;
}

.prm .fit__col--yes .fit__item i {
  color: #6947C2;
}

.prm .fit__col--no .fit__item i {
  color: #ADB3D8;
}

.prm .wave-div--grad {
  background: linear-gradient(17deg, #F9F9FA 0%, rgba(173, 179, 216, 0.18) 100%);
}

.prm .nums {
  background: #6947C2;
  padding: 96px 0;
  position: relative;
}

.prm .nums__deco {
  position: absolute;
  inset: 0;
  background: linear-gradient(17deg, rgba(105, 71, 194, 0.0) 0%, rgba(173, 179, 216, 0.12) 100%), radial-gradient(ellipse at 20% 80%, rgba(173, 179, 216, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

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

.prm .nums__head h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #F9F9FA;
  font-weight: 800;
  margin: 0 0 12px;
  display: inline-block;
  border-bottom: 2px solid rgba(249, 249, 250, 0.4);
  padding-bottom: 8px;
  letter-spacing: 0.01em;
}

.prm .nums__head p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(249, 249, 250, 0.78);
  max-width: 520px;
  margin: 12px auto 0;
}

.prm .nums__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 24px;
  align-items: stretch;
}

.prm .nums__stat {
  background: rgba(249, 249, 250, 0.08);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 22px 0 rgba(105, 71, 194, 0.08);
  transition: background 0.38s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.prm .nums__stat:hover {
  background: rgba(249, 249, 250, 0.14);
}

.prm .nums__val {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 900;
  color: #F9F9FA;
  letter-spacing: 0.01em;
  display: block;
}

.prm .nums__unit {
  font-size: 21px;
  color: #ADB3D8;
  font-weight: 700;
}

.prm .nums__lbl {
  font-size: 13px;
  color: rgba(249, 249, 250, 0.65);
  margin-top: 8px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.prm .nums__feat {
  background: rgba(249, 249, 250, 0.12);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 22px 0 rgba(105, 71, 194, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.prm .nums__feat-h {
  font-size: 21px;
  line-height: 1.2;
  color: #F9F9FA;
  font-weight: 700;
  margin: 0 0 12px;
  border-bottom: 1px solid rgba(249, 249, 250, 0.2);
  padding-bottom: 8px;
}

.prm .nums__feat-p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(249, 249, 250, 0.78);
  margin: 0 0 24px;
}

.prm .nums__rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.prm .nums__stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.prm .nums__stars i {
  color: #ADB3D8;
  font-size: 16px;
}

.prm .nums__rating-val {
  font-size: 28px;
  font-weight: 900;
  color: #F9F9FA;
  line-height: 1.2;
}

.prm .nums__rating-cnt {
  font-size: 13px;
  color: rgba(249, 249, 250, 0.6);
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .prm .off__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prm .nums__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .prm .nums__feat {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .prm .lead__grid {
    grid-template-columns: 1fr;
  }

  .prm .lead__img-zone {
    padding: 0 0 48px;
    height: 280px;
  }

  .prm .lead__text-zone {
    padding: 48px 0 24px;
  }

  .prm .lead__h1 {
    font-size: 38px;
  }

  .prm .exp__inner {
    grid-template-columns: 1fr;
  }

  .prm .appr__layout {
    grid-template-columns: 1fr;
  }

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

  .prm .off__img-row {
    grid-template-columns: 1fr;
  }

  .prm .nums__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .prm .lead__h1 {
    font-size: 28px;
  }

  .prm .off__grid {
    grid-template-columns: 1fr;
  }

  .prm .nums__grid {
    grid-template-columns: 1fr;
  }

  .prm .exp__abbr,
  .prm .fit__abbr,
  .prm .lead__deco-abbr {
    display: none;
  }

  .prm .off__head .off__h2,
  .prm .exp__left h2,
  .prm .appr__text h2,
  .prm .fit__head h2,
  .prm .nums__head h2 {
    font-size: 28px;
  }
}

.success-pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  background: #F9F9FA;
}

.success-pg .msg-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 9px 40px 0 rgba(105, 71, 194, 0.12);
  padding: 48px;
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.success-pg .msg-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-pg .msg-card__icon svg {
  width: 64px;
  height: 64px;
}

.success-pg .msg-card__heading {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1B1340;
  margin: 0 0 12px;
}

.success-pg .msg-card__text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #3D3660;
  margin: 0 0 48px;
}

.success-pg .msg-card__link {
  display: inline-block;
  background: #6947C2;
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: color 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.success-pg .msg-card__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(17deg, #ADB3D8 0%, #6947C2 60%);
  opacity: 0;
  transition: opacity 0.38s ease-in-out;
}

.success-pg .msg-card__link:hover::before {
  opacity: 1;
}

.success-pg .msg-card__link span {
  position: relative;
  z-index: 1;
}

.success-pg .msg-card__link:focus {
  outline: 2px solid #6947C2;
  outline-offset: 4px;
}

@media (max-width: 600px) {
  .success-pg {
    padding: 48px 12px;
  }

  .success-pg .msg-card {
    padding: 24px;
  }

  .success-pg .msg-card__heading {
    font-size: 21px;
  }
}