html {
  box-sizing: border-box;
  scroll-behavior: auto
}

* {
  box-sizing: inherit
}

body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  font-family: 'Lora', serif;
  background: #fff;
  color: #1d1d1d
}

:focus-visible {
  outline: 2px solid #531344;
  outline-offset: 2px
}

.top-band {
  background: linear-gradient(135deg, #531344 0%, #6b1a57 100%);
  padding: 8px 0;
  position: relative
}

.top-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px
}

.quick-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  font-family: 'Exo 2', sans-serif;
  transition: opacity .15s ease-out
}

.contact-chip:hover {
  opacity: .85
}

.contact-chip svg {
  width: 18px;
  height: 18px;
  fill: #00E9E5;
  flex-shrink: 0
}

.brand-bar {
  background: #fff;
  border-bottom: 2px solid #F1F0F0;
  position: relative
}

.brand-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px
}

.logo-zone {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #53134408 0%, #00e9e508 100%);
  border: 2px solid #F1F0F0;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 #53134412;
  transition: border-color .12s ease-out, box-shadow .12s ease-out
}

.logo-zone:hover {
  border-color: #00E9E5;
  box-shadow: 0 6px 20px 0 #53134414
}

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

.logo-frame {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 4px;
  padding: 8px;
  box-shadow: 0 0 0 2px #5313441a
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.brand-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #531344;
  line-height: 1.1;
  letter-spacing: -.02em
}

.brand-tagline {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.4
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.nav-link {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #2d2d2d;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 6px;
  background: transparent;
  transition: background .14s ease-out, color .14s ease-out;
  position: relative;
  overflow: hidden
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #531344 0%, #00E9E5 100%);
  opacity: 0;
  transition: opacity .14s ease-out;
  z-index: -1;
  border-radius: 6px
}

.nav-link:hover {
  color: #fff
}

.nav-link:hover::before {
  opacity: 1
}

.nav-link.active {
  background: linear-gradient(135deg, #53134414 0%, #00e9e514 100%);
  color: #531344;
  font-weight: 700
}

.page-footer {
  background: linear-gradient(180deg, #531344 0%, #3d0e33 100%);
  padding: 96px 0 48px;
  position: relative;
  overflow: hidden
}

.page-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #00E9E5 50%, transparent 100%)
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  margin-bottom: 96px
}

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

.footer-heading {
  font-family: 'Exo 2', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #00E9E5;
  line-height: 1.4;
  margin: 0;
  letter-spacing: -.01em
}

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

.footer-link-item {
  display: flex
}

.footer-link {
  font-family: 'Lora', serif;
  font-size: 18px;
  color: #F1F0F0;
  text-decoration: none;
  line-height: 1.6;
  transition: color .13s ease-out, transform .13s ease-out;
  display: inline-block;
  position: relative;
  padding-left: 24px
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: #00E9E5;
  transition: width .13s ease-out
}

.footer-link:hover {
  color: #00E9E5;
  transform: translateX(4px)
}

.footer-link:hover::before {
  width: 16px
}

.footer-contact-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #00e9e50d;
  border-radius: 6px;
  border: 1px solid #00e9e526
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 18px;
  color: #F1F0F0;
  line-height: 1.6;
  font-family: 'Lora', serif
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  fill: #00E9E5;
  flex-shrink: 0;
  margin-top: 4px
}

.footer-contact-link {
  color: #F1F0F0;
  text-decoration: none;
  transition: color .12s ease-out
}

.footer-contact-link:hover {
  color: #00E9E5
}

.footer-logo-zone {
  display: flex;
  justify-content: center;
  padding: 48px 0;
  border-top: 1px solid #00e9e526;
  border-bottom: 1px solid #00e9e526;
  margin-bottom: 48px
}

.footer-logo-frame {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff0d;
  border-radius: 6px;
  padding: 12px;
  box-shadow: 0 0 0 2px #00e9e533 0 6px 20px 0 #53134414;
  transition: transform .16s ease-out, box-shadow .16s ease-out
}

.footer-logo-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 2px #00e9e566 0 9px 48px 0 #5313441c
}

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

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

.copyright-text {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  color: #f1f0f0b3;
  line-height: 1.6
}

.footer-meta-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap
}

.footer-meta-link {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  color: #f1f0f0b3;
  text-decoration: none;
  transition: color .11s ease;
  position: relative
}

.footer-meta-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #00E9E5;
  transition: width .11s ease
}

.footer-meta-link:hover {
  color: #00E9E5
}

.footer-meta-link:hover::after {
  width: 100%
}

.consent-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 420px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 9px 48px 0 #5313441c 0 6px 20px 0 #53134414;
  z-index: 4000;
  padding: 24px;
  border: 2px solid #F1F0F0;
  transform: translateY(-120%);
  transition: transform .42s ease-out, opacity .42s ease-out;
  opacity: 0
}

.consent-toast.visible {
  transform: translateY(0);
  opacity: 1
}

.consent-text {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d2d;
  margin-bottom: 24px
}

.consent-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 16px
}

.consent-btn {
  flex: 1;
  padding: 16px;
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .14s ease-out, transform .14s ease-out;
  position: relative;
  overflow: hidden
}

.consent-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity .14s ease-out;
  border-radius: 6px
}

.accept-btn {
  background: linear-gradient(135deg, #531344 0%, #6b1a57 100%);
  color: #fff
}

.accept-btn::before {
  background: linear-gradient(180deg, #531344 0%, #6b1a57 100%)
}

.accept-btn:hover {
  transform: translateY(-2px)
}

.accept-btn:hover::before {
  opacity: 1
}

.reject-btn {
  background: #F1F0F0;
  color: #531344
}

.reject-btn::before {
  background: linear-gradient(135deg, #5313441a 0%, #00e9e51a 100%)
}

.reject-btn:hover {
  transform: translateY(-2px)
}

.reject-btn:hover::before {
  opacity: 1
}

.consent-expand-trigger {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  color: #531344;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  transition: color .12s ease-out;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.consent-expand-trigger:hover {
  color: #00E9E5
}

.consent-expand-trigger svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform .12s ease-out
}

.consent-expand-trigger.expanded svg {
  transform: rotate(180deg)
}

.consent-detail-panel {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #F1F0F0;
  display: none
}

.consent-detail-panel.visible {
  display: block
}

.consent-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #53134405;
  border-radius: 6px;
  margin-bottom: 8px
}

.consent-toggle-label {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  color: #2d2d2d;
  line-height: 1.4
}

.consent-toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  background: #ccc;
  border-radius: 999px;
  cursor: pointer;
  transition: background .13s ease-out
}

.consent-toggle-switch.checked {
  background: #531344
}

.consent-toggle-switch::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform .13s ease-out
}

.consent-toggle-switch.checked::after {
  transform: translateX(24px)
}

@media (max-width: 768px) {
  .top-band-inner {
    justify-content: center
  }

  .quick-contact {
    flex-direction: column;
    gap: 8px;
    align-items: center
  }

  .brand-bar-inner {
    flex-direction: column;
    gap: 24px;
    align-items: stretch
  }

  .logo-zone {
    justify-content: center
  }

  .primary-nav {
    flex-direction: column;
    width: 100%
  }

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

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .footer-meta-links {
    flex-direction: column;
    align-items: center;
    gap: 16px
  }

  .consent-toast {
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none
  }

  .consent-actions {
    flex-direction: column
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .brand-bar-inner {
    gap: 24px
  }

  .primary-nav {
    gap: 4px
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 16px
  }
}

.aanv-policy-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 24px;
  background: #fff
}

.aanv-policy-main h1 {
  font-size: 62px;
  line-height: 1.1;
  color: #531344;
  margin: 0 0 48px
}

.aanv-policy-main h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #531344;
  margin: 96px 0 24px
}

.aanv-policy-main h3 {
  font-size: 32px;
  line-height: 1.4;
  color: #531344;
  margin: 48px 0 16px
}

.aanv-policy-main h4 {
  font-size: 24px;
  line-height: 1.4;
  color: #531344;
  margin: 48px 0 16px
}

.aanv-policy-main h5 {
  font-size: 18px;
  line-height: 1.4;
  color: #531344;
  margin: 24px 0 16px;
  font-weight: 600
}

.aanv-policy-main h6 {
  font-size: 16px;
  line-height: 1.4;
  color: #531344;
  margin: 24px 0 16px;
  font-weight: 600
}

.aanv-policy-main p {
  font-size: 18px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 24px
}

.aanv-policy-main strong,
.aanv-policy-main b {
  font-weight: 600;
  color: #531344
}

.aanv-policy-main em,
.aanv-policy-main i {
  font-style: italic
}

.aanv-policy-main table {
  width: 100%;
  border-collapse: collapse;
  margin: 48px 0;
  font-size: 16px;
  line-height: 1.4;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 #53134412 0 6px 20px 0 #53134414
}

.aanv-policy-main thead {
  background: linear-gradient(135deg, #531344 0%, #6b1a57 100%)
}

.aanv-policy-main thead tr {
  border: none
}

.aanv-policy-main thead th {
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 16px 24px;
  font-size: 16px
}

.aanv-policy-main tbody tr {
  border-bottom: 1px solid #F1F0F0;
  transition: background-color .15s ease-out
}

.aanv-policy-main tbody tr:last-child {
  border-bottom: none
}

.aanv-policy-main tbody tr:hover {
  background: #00e9e50a
}

.aanv-policy-main td {
  padding: 16px 24px;
  color: #2a2a2a
}

.aanv-policy-main th {
  font-weight: 600
}

.aanv-policy-main div {
  margin: 24px 0
}

@media (max-width: 768px) {
  .aanv-policy-main {
    padding: 48px 16px
  }

  .aanv-policy-main h1 {
    font-size: 44px;
    margin: 0 0 24px
  }

  .aanv-policy-main h2 {
    font-size: 32px;
    margin: 48px 0 16px
  }

  .aanv-policy-main h3 {
    font-size: 24px;
    margin: 24px 0 16px
  }

  .aanv-policy-main h4 {
    font-size: 18px;
    margin: 24px 0 16px
  }

  .aanv-policy-main p {
    font-size: 16px
  }

  .aanv-policy-main table {
    margin: 24px 0;
    font-size: 16px;
    display: block;
    overflow-x: auto
  }

  .aanv-policy-main thead th,
  .aanv-policy-main td {
    padding: 16px
  }
}

.abt-pg {
  background: #fff;
  color: #1a0d15;
  overflow-x: clip
}

.abt-pg ::selection {
  background: #53134426;
  color: #1a0d15
}

.abt-pg .intro-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 24px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  position: relative
}

.abt-pg .intro-txt {
  flex: 1;
  min-width: 0
}

.abt-pg .intro-txt h1 {
  font-size: 62px;
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 700
}

.abt-pg .intro-txt .num-accent {
  display: inline-block;
  background: linear-gradient(127deg, #531344 0%, #00E9E5 55%, #531344 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800
}

.abt-pg .intro-txt p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 16px;
  color: #4a3d45
}

.abt-pg .intro-txt p:last-child {
  margin: 0
}

.abt-pg .intro-img-card {
  flex-shrink: 0;
  width: 380px;
  height: 480px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 9px 48px 0 #5313441c;
  position: relative
}

.abt-pg .intro-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.3);
  animation: img-zoom-abt 18s ease-in-out infinite alternate
}

@keyframes img-zoom-abt {
  0% {
    transform: scale(1)
  }

  100% {
    transform: scale(1.08)
  }
}

.abt-pg .curve-deco {
  position: absolute;
  width: 420px;
  height: 420px;
  top: -80px;
  left: -120px;
  pointer-events: none;
  z-index: -1;
  opacity: .12
}

.abt-pg .curve-deco svg {
  width: 100%;
  height: 100%
}

.abt-pg .mission-wrap {
  position: relative;
  padding: 96px 0;
  overflow: hidden
}

.abt-pg .mission-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .18;
  filter: blur(42px)
}

.abt-pg .mission-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.abt-pg .mission-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center
}

.abt-pg .mission-content h2 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 48px;
  font-weight: 700;
  position: relative;
  display: inline-block
}

.abt-pg .mission-content h2::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(127deg, #531344 0%, #00E9E5 55%, #531344 100%);
  border-radius: 2px
}

.abt-pg .vals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px
}

.abt-pg .val-card {
  background: #fffffff2;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 6px;
  padding: 48px 24px;
  box-shadow: 0 6px 20px 0 #00e9e514;
  transition: transform .18s ease-out, box-shadow .15s ease;
  text-align: left;
  position: relative
}

.abt-pg .val-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 9px 48px 0 #5313441c
}

.abt-pg .val-card h3 {
  font-size: 24px;
  line-height: 1.4;
  margin: 0 0 16px;
  font-weight: 600;
  color: #531344
}

.abt-pg .val-card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #4a3d45
}

.abt-pg .val-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(127deg, #531344 0%, #00E9E5 55%, #531344 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px
}

.abt-pg .val-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff
}

.abt-pg .approach-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 24px
}

.abt-pg .approach-hdr {
  text-align: center;
  margin-bottom: 48px
}

.abt-pg .approach-hdr .pill-label {
  display: inline-block;
  background: #F1F0F0;
  color: #531344;
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .03em
}

.abt-pg .approach-hdr h2 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
  font-weight: 700
}

.abt-pg .cols-feat {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 48px;
  align-items: start
}

.abt-pg .col-left,
.abt-pg .col-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.abt-pg .col-center {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.abt-pg .step-card {
  background: #fff;
  border: 2px solid #F1F0F0;
  border-radius: 6px;
  padding: 24px;
  transition: border-color .12s ease-out, box-shadow .16s ease;
  position: relative
}

.abt-pg .step-card:hover {
  border-color: #00E9E5;
  box-shadow: 0 6px 20px 0 #00e9e514
}

.abt-pg .step-num {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(127deg, #531344 0%, #00E9E5 55%, #531344 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700
}

.abt-pg .step-card h4 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 8px;
  font-weight: 600;
  color: #531344;
  padding-right: 56px
}

.abt-pg .step-card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #4a3d45
}

.abt-pg .img-stack {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt-pg .img-stack-item {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 20px 0 #53134414
}

.abt-pg .img-stack-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease-out
}

.abt-pg .img-stack-item:hover img {
  transform: scale(1.05)
}

.abt-pg .team-wrap {
  background: linear-gradient(127deg, #53134408 0%, #00e9e50d 55%, #53134408 100%);
  padding: 96px 0;
  position: relative
}

.abt-pg .team-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, #531344 0px, #531344 8px, transparent 8px, transparent 16px, #00E9E5 16px, #00E9E5 24px, transparent 24px, transparent 32px)
}

.abt-pg .team-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px
}

.abt-pg .team-content h2 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 700;
  text-align: center
}

.abt-pg .team-content>p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto 48px;
  text-align: center;
  max-width: 720px;
  color: #4a3d45
}

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

.abt-pg .team-member {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 20px 0 #53134414;
  transition: transform .14s ease, box-shadow .18s ease-out
}

.abt-pg .team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 9px 48px 0 #00e9e51c
}

.abt-pg .team-photo {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative
}

.abt-pg .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: img-pan-abt 20s ease-in-out infinite alternate
}

@keyframes img-pan-abt {
  0% {
    transform: translateX(0) scale(1.1)
  }

  100% {
    transform: translateX(-5%) scale(1.1)
  }
}

.abt-pg .team-info {
  padding: 24px
}

.abt-pg .team-info h5 {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 8px;
  font-weight: 600;
  color: #531344
}

.abt-pg .team-role {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: #4a3d45
}

.abt-pg .tri-corner {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  pointer-events: none
}

.abt-pg .tri-tl {
  top: 0;
  left: 0;
  border-width: 80px 80px 0 0;
  border-color: #53134414 transparent transparent
}

.abt-pg .tri-br {
  bottom: 0;
  right: 0;
  border-width: 0 0 80px 80px;
  border-color: transparent transparent #00e9e514
}

.abt-pg .shadow-drift {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 999px;
  background: radial-gradient(circle, #53134426 0%, transparent 70%);
  pointer-events: none;
  animation: drift-abt 24s ease-in-out infinite;
  z-index: 0
}

@keyframes drift-abt {
  0% {
    transform: translate(0, 0)
  }

  25% {
    transform: translate(200px, 100px)
  }

  50% {
    transform: translate(100px, 200px)
  }

  75% {
    transform: translate(-100px, 150px)
  }

  100% {
    transform: translate(0, 0)
  }
}

.abt-pg .shadow-drift-1 {
  top: 10%;
  left: 5%
}

.abt-pg .shadow-drift-2 {
  bottom: 15%;
  right: 8%;
  animation-delay: -8s
}

@media (max-width: 768px) {
  .abt-pg .intro-wrap {
    flex-direction: column;
    padding: 48px 16px;
    gap: 24px
  }

  .abt-pg .intro-img-card {
    width: 100%;
    height: 420px
  }

  .abt-pg .intro-txt h1 {
    font-size: 44px
  }

  .abt-pg .mission-wrap {
    padding: 48px 0
  }

  .abt-pg .mission-content {
    padding: 0 16px
  }

  .abt-pg .mission-content h2 {
    font-size: 32px;
    margin-bottom: 24px
  }

  .abt-pg .vals-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .abt-pg .val-card {
    padding: 24px 16px
  }

  .abt-pg .approach-wrap {
    padding: 48px 16px
  }

  .abt-pg .approach-hdr h2 {
    font-size: 32px
  }

  .abt-pg .cols-feat {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .abt-pg .team-wrap {
    padding: 48px 0
  }

  .abt-pg .team-content {
    padding: 0 16px
  }

  .abt-pg .team-content h2 {
    font-size: 32px
  }

  .abt-pg .team-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

.prtl {
  background: #FFF;
  color: #1d1d1d;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0
}

.prtl ::selection {
  background: #53134426;
  color: #1d1d1d
}

.prtl .monochrome-lead {
  position: relative;
  background: linear-gradient(127deg, #531344 0%, #3d0e33 100%);
  padding: 96px 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px
}

.prtl .monochrome-lead::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #00e9e52e 0%, transparent 70%);
  top: -120px;
  left: -80px;
  border-radius: 50%;
  filter: blur(60px)
}

.prtl .monochrome-lead::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #f1f0f01f 0%, transparent 70%);
  bottom: -100px;
  right: -60px;
  border-radius: 50%;
  filter: blur(70px)
}

.prtl .monochrome-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: center
}

.prtl .monochrome-content h1 {
  font-size: 62px;
  line-height: 1.1;
  color: #FFF;
  margin: 0 0 24px;
  letter-spacing: -.02em
}

@keyframes letter-fall {
  from {
    opacity: 0;
    transform: translateY(-30px)
  }

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

.prtl .monochrome-content h1 span {
  display: inline-block;
  animation: letter-fall .14s ease-out both
}

.prtl .monochrome-content h1 span:nth-child(1) {
  animation-delay: .02s
}

.prtl .monochrome-content h1 span:nth-child(2) {
  animation-delay: .04s
}

.prtl .monochrome-content h1 span:nth-child(3) {
  animation-delay: .06s
}

.prtl .monochrome-content h1 span:nth-child(4) {
  animation-delay: .08s
}

.prtl .monochrome-content h1 span:nth-child(5) {
  animation-delay: .1s
}

.prtl .monochrome-content h1 span:nth-child(6) {
  animation-delay: .12s
}

.prtl .monochrome-content h1 span:nth-child(7) {
  animation-delay: .14s
}

.prtl .monochrome-content h1 span:nth-child(8) {
  animation-delay: .16s
}

.prtl .monochrome-content h1 span:nth-child(9) {
  animation-delay: .18s
}

.prtl .monochrome-content h1 span:nth-child(10) {
  animation-delay: .2s
}

.prtl .monochrome-content h1 span:nth-child(11) {
  animation-delay: .22s
}

.prtl .monochrome-content h1 span:nth-child(12) {
  animation-delay: .24s
}

.prtl .monochrome-content h1 span:nth-child(13) {
  animation-delay: .26s
}

.prtl .monochrome-content h1 span:nth-child(14) {
  animation-delay: .28s
}

.prtl .monochrome-content h1 span:nth-child(15) {
  animation-delay: .3s
}

.prtl .accent-word {
  background: linear-gradient(127deg, #00E9E5 0%, #00b3b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative
}

.prtl .monochrome-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffffe0;
  margin: 0
}

.prtl .scale-proof {
  padding: 96px 24px;
  background: #F1F0F0;
  position: relative
}

.prtl .scale-proof::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  background: #00E9E5;
  top: 0;
  left: 0
}

.prtl .scale-proof-inner {
  max-width: 1100px;
  margin: 0 auto
}

.prtl .scale-proof h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #531344;
  margin: 0 0 48px;
  text-align: center;
  position: relative
}

.prtl .scale-proof h2::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #531344 0%, #00E9E5 100%);
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px
}

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

.prtl .scale-card {
  background: #FFF;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 #53134412 0 6px 20px 0 #53134414;
  transition: box-shadow .16s ease-out, transform .14s ease-out;
  position: relative;
  overflow: hidden
}

.prtl .scale-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #53134408 0%, #00e9e508 100%);
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .18s ease-out
}

.prtl .scale-card:hover {
  box-shadow: 0 6px 20px 0 #53134414 0 9px 48px 0 #5313441c;
  transform: translateY(-2px)
}

.prtl .scale-card:hover::before {
  opacity: 1
}

.prtl .scale-card h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #531344;
  margin: 0 0 16px;
  position: relative;
  z-index: 1
}

.prtl .scale-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
  position: relative;
  z-index: 1
}

@media (max-width: 768px) {
  .prtl .scale-grid {
    grid-template-columns: 1fr
  }

  .prtl .monochrome-content h1 {
    font-size: 44px
  }
}

.prtl .adapt-showcase {
  padding: 96px 24px;
  background: #FFF;
  position: relative;
  overflow: hidden
}

.prtl .adapt-showcase::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: .04;
  pointer-events: none;
  background-image: linear-gradient(45deg, transparent 40%, #531344 40%, #531344 42%, transparent 42%), linear-gradient(-45deg, transparent 40%, #531344 40%, #531344 42%, transparent 42%);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px
}

.prtl .adapt-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.prtl .adapt-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center
}

.prtl .adapt-text h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #531344;
  margin: 0 0 24px
}

.prtl .adapt-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 16px
}

.prtl .adapt-text p:last-child {
  margin: 0
}

.prtl .adapt-visual {
  position: relative
}

.prtl .adapt-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px 0 #53134414 0 9px 48px 0 #5313441c;
  transition: box-shadow .18s ease-out, transform .16s ease-out
}

.prtl .adapt-img-wrap:hover {
  box-shadow: 0 9px 48px 0 #5313441c 0 12px 64px 0 #53134424;
  transform: scale(1.02)
}

.prtl .adapt-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover
}

.prtl .adapt-visual::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 60px solid #00e9e533;
  top: -30px;
  right: -30px;
  z-index: -1
}

.prtl .adapt-visual::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 50px solid #53134426;
  bottom: -25px;
  left: -25px;
  z-index: -1
}

@media (max-width: 768px) {
  .prtl .adapt-layout {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .prtl .adapt-text h2 {
    font-size: 32px
  }
}

.prtl .exclusion-zone {
  padding: 96px 24px;
  background: linear-gradient(165deg, #F1F0F0 0%, #FFF 100%);
  border-top: 2px dashed #c9c9c9;
  border-bottom: 2px dashed #c9c9c9
}

.prtl .exclusion-inner {
  max-width: 1100px;
  margin: 0 auto
}

.prtl .exclusion-hdr {
  text-align: center;
  margin: 0 0 48px
}

.prtl .exclusion-hdr h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #531344;
  margin: 0 0 16px
}

.prtl .exclusion-hdr p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0
}

.prtl .exclusion-cols {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.8fr;
  gap: 24px
}

.prtl .exclusion-item {
  background: #FFF;
  padding: 24px;
  border-radius: 6px;
  border: 2px solid #5313441a;
  transition: border-color .14s ease-out, background .16s ease-out;
  position: relative
}

.prtl .exclusion-item::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #531344 0%, #00E9E5 100%);
  border-radius: 50%;
  top: -12px;
  left: 24px;
  opacity: 0;
  transition: opacity .12s ease-out
}

.prtl .exclusion-item:hover {
  border-color: #00E9E5;
  background: #00e9e505
}

.prtl .exclusion-item:hover::before {
  opacity: 1
}

.prtl .exclusion-item h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #531344;
  margin: 0 0 16px
}

.prtl .exclusion-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0
}

@media (max-width: 768px) {
  .prtl .exclusion-cols {
    grid-template-columns: 1fr
  }

  .prtl .exclusion-hdr h2 {
    font-size: 32px
  }
}

.prtl .mechanism-reveal {
  padding: 96px 24px;
  background: #FFF;
  position: relative
}

.prtl .mechanism-reveal::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: #00E9E5;
  top: 0;
  right: 0
}

.prtl .mechanism-inner {
  max-width: 1100px;
  margin: 0 auto
}

.prtl .mechanism-flow {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.prtl .mechanism-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start
}

.prtl .mechanism-block:nth-child(even) {
  grid-template-columns: 1fr 1.2fr
}

.prtl .mechanism-block:nth-child(even) .mechanism-txt {
  order: 2
}

.prtl .mechanism-block:nth-child(even) .mechanism-media {
  order: 1
}

.prtl .mechanism-txt h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #531344;
  margin: 0 0 24px;
  position: relative;
  padding-top: 16px
}

.prtl .mechanism-txt h2::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: #00E9E5;
  top: 0;
  left: 0;
  border-radius: 2px
}

.prtl .mechanism-txt p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 16px
}

.prtl .mechanism-txt p:last-child {
  margin: 0
}

.prtl .mechanism-txt .marker-highlight {
  background: linear-gradient(180deg, transparent 60%, #00e9e566 60%);
  padding: 2px 4px;
  border-radius: 2px
}

.prtl .mechanism-media {
  position: relative
}

.prtl .mechanism-img-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 #53134412 0 6px 20px 0 #53134414;
  transition: box-shadow .18s ease-out
}

.prtl .mechanism-img-frame:hover {
  box-shadow: 0 9px 48px 0 #5313441c
}

.prtl .mechanism-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover
}

@media (max-width: 768px) {

  .prtl .mechanism-block,
  .prtl .mechanism-block:nth-child(even) {
    grid-template-columns: 1fr
  }

  .prtl .mechanism-block:nth-child(even) .mechanism-txt {
    order: 1
  }

  .prtl .mechanism-block:nth-child(even) .mechanism-media {
    order: 2
  }

  .prtl .mechanism-txt h2 {
    font-size: 32px
  }
}

.prtl .objection-address {
  padding: 96px 24px;
  background: #F1F0F0;
  position: relative
}

.prtl .objection-address::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, transparent 48%, #53134408 48%, #53134408 52%, transparent 52%);
  background-size: 28px 28px;
  opacity: .5;
  pointer-events: none
}

.prtl .objection-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.prtl .objection-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center
}

.prtl .objection-visual {
  position: relative
}

.prtl .objection-img-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px 0 #00e9e514 0 9px 48px 0 #00e9e51c;
  transition: box-shadow .18s ease-out, transform .16s ease-out
}

.prtl .objection-img-container:hover {
  box-shadow: 0 9px 48px 0 #00e9e51c 0 12px 64px 0 #00e9e524;
  transform: scale(1.02)
}

.prtl .objection-img-container img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover
}

.prtl .objection-content h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #531344;
  margin: 0 0 24px
}

.prtl .objection-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 16px
}

.prtl .objection-content p:last-child {
  margin: 0
}

.prtl .objection-stat {
  background: #FFF;
  padding: 24px;
  border-radius: 6px;
  margin: 24px 0 0;
  box-shadow: 0 1px 2px 0 #53134412;
  border-left: 4px solid #00E9E5
}

.prtl .objection-stat-num {
  font-size: 44px;
  line-height: 1.1;
  color: #531344;
  font-weight: 700;
  margin: 0 0 8px
}

.prtl .objection-stat-label {
  font-size: 16px;
  line-height: 1.4;
  color: #4a4a4a;
  margin: 0
}

@media (max-width: 768px) {
  .prtl .objection-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .prtl .objection-content h2 {
    font-size: 32px
  }

  .prtl .objection-stat-num {
    font-size: 32px
  }
}

.prtl .recognition-signal {
  padding: 96px 24px;
  background: linear-gradient(135deg, #531344 0%, #3d0e33 100%);
  position: relative;
  overflow: hidden
}

.prtl .recognition-signal::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 80px solid #00e9e526;
  top: 40px;
  left: 80px;
  z-index: 1
}

.prtl .recognition-signal::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-top: 70px solid #f1f0f01a;
  bottom: 60px;
  right: 100px;
  z-index: 1
}

.prtl .recognition-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.prtl .recognition-hdr {
  text-align: center;
  margin: 0 0 48px
}

.prtl .recognition-hdr h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #FFF;
  margin: 0 0 16px
}

.prtl .recognition-hdr p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffffd9;
  margin: 0
}

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

.prtl .recognition-card {
  background: #ffffff14;
  padding: 24px;
  border-radius: 6px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #ffffff1f;
  transition: background .16s ease-out, border-color .14s ease-out, transform .12s ease-out;
  position: relative
}

.prtl .recognition-card:hover {
  background: #ffffff1f;
  border-color: #00e9e566;
  transform: translateY(-4px)
}

.prtl .recognition-card+.recognition-card:hover {
  transform: translateY(-4px)
}

.prtl .recognition-card:hover+.recognition-card {
  background: #ffffff1a;
  border-color: #00e9e533
}

.prtl .recognition-card h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #00E9E5;
  margin: 0 0 16px
}

.prtl .recognition-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffffd9;
  margin: 0
}

.prtl .recognition-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00E9E5 0%, #00b3b0 100%);
  color: #1d1d1d;
  font-size: 16px;
  line-height: 1.4;
  padding: 8px 16px;
  border-radius: 4px;
  margin: 16px 0 0;
  font-weight: 600
}

@media (max-width: 768px) {
  .prtl .recognition-showcase {
    grid-template-columns: 1fr
  }

  .prtl .recognition-hdr h2 {
    font-size: 32px
  }
}

.prs-pg {
  background: #fff;
  color: #1d1d1d;
  max-width: 100%;
  overflow-x: clip
}

.prs-pg ::selection {
  background: #53134426;
  color: #1d1d1d
}

.prs-pg .hro-splt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
  position: relative;
  overflow: hidden
}

.prs-pg .hro-splt .zn-clr {
  background: #531344;
  padding: 96px 48px 96px 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2
}

.prs-pg .hro-splt .zn-img {
  background: #00E9E5;
  padding: 48px 96px 48px 48px;
  position: relative;
  overflow: hidden
}

.prs-pg .hro-splt .img-hld {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 6px
}

.prs-pg .hro-splt .img-hld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.prs-pg .hro-splt .img-hld::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent, #000000b3);
  pointer-events: none
}

.prs-pg .hro-splt .lbl-tp {
  font-size: 16px;
  line-height: 1.4;
  color: #00E9E5;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 600
}

.prs-pg .hro-splt .hdng-mn {
  font-size: 62px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px;
  font-weight: 700
}

.prs-pg .hro-splt .dsc-tx {
  font-size: 18px;
  line-height: 1.6;
  color: #F1F0F0;
  margin: 0;
  max-width: 520px
}

.prs-pg .hro-splt .shp-geo {
  position: absolute;
  border: 2px solid #00e9e533;
  pointer-events: none;
  z-index: 1
}

.prs-pg .hro-splt .shp-geo.crc-one {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: 48px;
  right: -90px
}

.prs-pg .hro-splt .shp-geo.sqr-two {
  width: 120px;
  height: 120px;
  border-radius: 4px;
  bottom: 96px;
  left: -60px;
  transform: rotate(15deg)
}

.prs-pg .mdl-inf {
  background: #F1F0F0;
  padding: 96px 48px;
  position: relative;
  overflow: hidden
}

.prs-pg .mdl-inf::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, #53134405 20px, #53134405 40px);
  pointer-events: none
}

.prs-pg .mdl-inf .cntnr-mx {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.prs-pg .mdl-inf .ln-dcr {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #531344 0%, #00E9E5 100%);
  margin: 0 auto 24px;
  border-radius: 2px
}

.prs-pg .mdl-inf .hdng-sc {
  font-size: 44px;
  line-height: 1.1;
  color: #531344;
  text-align: center;
  margin: 0 0 48px;
  font-weight: 700
}

.prs-pg .mdl-inf .grd-ftr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.prs-pg .mdl-inf .ftr-itm {
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 1px 2px 0 #53134412;
  transition: transform .14s ease-out, box-shadow .18s ease;
  border-left: 4px solid transparent
}

.prs-pg .mdl-inf .ftr-itm.slctd {
  border-left-color: #00E9E5
}

.prs-pg .mdl-inf .ftr-itm:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px 0 #53134414
}

.prs-pg .mdl-inf .icn-svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center
}

.prs-pg .mdl-inf .icn-svg svg {
  width: 100%;
  height: 100%;
  fill: #531344
}

.prs-pg .mdl-inf .ftr-itm .lbl-tx {
  font-size: 16px;
  line-height: 1.4;
  color: #2d2d2d;
  margin: 0;
  font-weight: 500
}

.prs-pg .wv-dvdr {
  width: 100%;
  height: 120px;
  position: relative;
  overflow: hidden
}

.prs-pg .wv-dvdr svg {
  width: 100%;
  height: 100%;
  display: block
}

.prs-pg .cnt-zn {
  background: linear-gradient(247deg, #fff 0%, #00e9e514 100%);
  padding: 96px 48px;
  position: relative
}

.prs-pg .cnt-zn .cntnr-mx {
  max-width: 1100px;
  margin: 0 auto
}

.prs-pg .cnt-zn .grd-ly {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.prs-pg .cnt-zn .txt-sd {
  display: flex;
  flex-direction: column
}

.prs-pg .cnt-zn .ln-dcr {
  width: 60px;
  height: 3px;
  background: #531344;
  margin: 0 0 24px;
  border-radius: 2px
}

.prs-pg .cnt-zn .hdng-sc {
  font-size: 44px;
  line-height: 1.1;
  color: #531344;
  margin: 0 0 24px;
  font-weight: 700;
  text-align: center
}

.prs-pg .cnt-zn .txt-bdy {
  font-size: 18px;
  line-height: 1.6;
  color: #2d2d2d;
  margin: 0 0 16px;
  text-align: left
}

.prs-pg .cnt-zn .txt-bdy:last-child {
  margin-bottom: 0
}

.prs-pg .cnt-zn .crd-sd {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.prs-pg .cnt-zn .crd-bx {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 1px 2px 0 #53134412;
  position: relative;
  overflow: hidden;
  transition: box-shadow .16s ease-out
}

.prs-pg .cnt-zn .crd-bx:hover {
  box-shadow: 0 6px 20px 0 #53134414
}

.prs-pg .cnt-zn .crd-bx::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #00e9e51a, transparent);
  transition: left .18s ease;
  pointer-events: none
}

.prs-pg .cnt-zn .crd-bx:hover::before {
  left: 100%
}

.prs-pg .cnt-zn .crd-bx .hdng-sm {
  font-size: 24px;
  line-height: 1.4;
  color: #531344;
  margin: 0 0 8px;
  font-weight: 600
}

.prs-pg .cnt-zn .crd-bx .tx-inf {
  font-size: 16px;
  line-height: 1.6;
  color: #4d4d4d;
  margin: 0
}

.prs-pg .cnt-zn .cntr-bdg {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: #00E9E5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: #531344;
  font-weight: 700
}

.prs-pg .lst-sec {
  background: #fff;
  padding: 96px 48px;
  position: relative
}

.prs-pg .lst-sec .cntnr-mx {
  max-width: 1100px;
  margin: 0 auto
}

.prs-pg .lst-sec .ln-dcr {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #531344 0%, #00E9E5 100%);
  margin: 0 auto 24px;
  border-radius: 2px
}

.prs-pg .lst-sec .hdng-sc {
  font-size: 44px;
  line-height: 1.1;
  color: #531344;
  text-align: center;
  margin: 0 0 48px;
  font-weight: 700
}

.prs-pg .lst-sec .lst-wrp {
  max-width: 800px;
  margin: 0 auto
}

.prs-pg .lst-sec .lst-nmbr {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: item-counter
}

.prs-pg .lst-sec .lst-nmbr li {
  position: relative;
  padding: 0 0 24px 64px;
  margin: 0 0 24px;
  counter-increment: item-counter;
  font-size: 18px;
  line-height: 1.6;
  color: #2d2d2d
}

.prs-pg .lst-sec .lst-nmbr li:last-child {
  margin-bottom: 0
}

.prs-pg .lst-sec .lst-nmbr li::before {
  content: counter(item-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #531344 0%, #00E9E5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  font-weight: 700
}

.prs-pg .lst-sec .pls-shp {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 3px solid #5313441a;
  border-radius: 50%;
  pointer-events: none;
  animation: plsng 4s ease-in-out infinite
}

.prs-pg .lst-sec .pls-shp.ps-one {
  top: 48px;
  left: -120px
}

.prs-pg .lst-sec .pls-shp.ps-two {
  bottom: 96px;
  right: -100px;
  animation-delay: 2s
}

@keyframes plsng {

  0%,
  100% {
    transform: scale(1);
    opacity: .3
  }

  50% {
    transform: scale(1.15);
    opacity: .6
  }
}

@media (max-width: 768px) {
  .prs-pg .hro-splt {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .prs-pg .hro-splt .zn-clr {
    padding: 48px 24px
  }

  .prs-pg .hro-splt .zn-img {
    padding: 24px;
    min-height: 400px
  }

  .prs-pg .hro-splt .hdng-mn {
    font-size: 44px
  }

  .prs-pg .mdl-inf {
    padding: 48px 24px
  }

  .prs-pg .mdl-inf .grd-ftr {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .prs-pg .cnt-zn {
    padding: 48px 24px
  }

  .prs-pg .cnt-zn .grd-ly {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .prs-pg .lst-sec {
    padding: 48px 24px
  }

  .prs-pg .lst-sec .lst-nmbr li {
    padding-left: 56px;
    font-size: 16px
  }

  .prs-pg .lst-sec .lst-nmbr li::before {
    width: 40px;
    height: 40px;
    font-size: 16px
  }
}

.kntkt-pg::selection {
  background-color: #5313442e;
  color: inherit
}

.kntkt-pg {
  background: #fff;
  opacity: 0;
  animation: pg-rvl .18s ease-out .1s forwards
}

@keyframes pg-rvl {
  to {
    opacity: 1
  }
}

.kntkt-pg .intro-bnnr {
  position: relative;
  background: linear-gradient(147deg, #531344 0%, #00E9E5 38%, #F1F0F0 62%, #531344 100%);
  padding: 48px 24px;
  overflow: hidden;
  margin-bottom: 96px
}

.intro-bnnr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, #00e9e54d 0%, transparent 50%), radial-gradient(circle at 80% 70%, #53134466 0%, transparent 50%), radial-gradient(circle at 50% 50%, #f1f0f033 0%, transparent 70%);
  pointer-events: none
}

.intro-bnnr::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  border: 2px solid #ffffff26;
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  transform: rotate(-25deg);
  pointer-events: none
}

.kntkt-pg .intro-bnnr .deco-crv {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 180px;
  height: 180px;
  border: 3px solid #ffffff1f;
  border-radius: 50%;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transform: rotate(45deg);
  pointer-events: none
}

.kntkt-pg .intro-bnnr .deco-ln {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 120px;
  height: 2px;
  background: #fff3;
  transform: rotate(-35deg);
  pointer-events: none
}

.kntkt-pg .intro-bnnr .cntnt-wrp {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
  text-align: center;
  opacity: 0;
  animation: cntnt-fde .14s ease-out .2s forwards
}

@keyframes cntnt-fde {
  to {
    opacity: 1
  }
}

.kntkt-pg .intro-bnnr .num-accnt {
  display: inline-block;
  font-size: 72px;
  line-height: 1.1;
  color: #fffffff2;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 6px 20px #53134414
}

.kntkt-pg .intro-bnnr .mn-hdng {
  font-size: 44px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  margin: 0 0 24px;
  text-shadow: 0 6px 20px #53134414
}

.kntkt-pg .intro-bnnr .expl-txt {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffffeb;
  max-width: 680px;
  margin: 0 auto
}

.kntkt-pg .frm-sctn {
  position: relative;
  padding: 96px 24px;
  background: #F1F0F0;
  overflow: hidden
}

.frm-sctn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, #531344 0%, #00E9E5 50%, #531344 100%)
}

.frm-sctn::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 400px;
  height: 400px;
  background-image: repeating-linear-gradient(0deg, #53134405 0px, #53134405 2px, transparent 2px, transparent 40px), repeating-linear-gradient(90deg, #00e9e505 0px, #00e9e505 2px, transparent 2px, transparent 40px);
  pointer-events: none;
  clip-path: circle(50% at 50% 50%)
}

.kntkt-pg .frm-sctn .cntnt-wrp {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 48px;
  position: relative;
  opacity: 0;
  animation: frm-rvl .16s ease-out .3s forwards
}

@keyframes frm-rvl {
  to {
    opacity: 1
  }
}

.kntkt-pg .inf-crd {
  background: #fff;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 6px 20px 0 #53134414;
  position: relative;
  overflow: hidden;
  transition: box-shadow .12s ease-out, transform .12s ease-out
}

.inf-crd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #531344 0%, #00E9E5 100%);
  transition: height .14s ease-out
}

.inf-crd:hover {
  box-shadow: 0 9px 48px 0 #5313441c;
  transform: translateY(-2px)
}

.inf-crd:hover::before {
  height: 100%
}

.kntkt-pg .inf-crd .accnt-ln {
  width: 48px;
  height: 2px;
  background: #531344;
  margin-bottom: 16px
}

.kntkt-pg .inf-crd .crd-hdng {
  font-size: 24px;
  line-height: 1.4;
  color: #531344;
  font-weight: 700;
  margin: 0 0 16px;
  text-align: center
}

.kntkt-pg .inf-crd .crd-txt {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 24px;
  text-align: left
}

.kntkt-pg .inf-crd .dtl-itm {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px;
  background: #53134405;
  border-radius: 4px;
  transition: background .11s ease-out
}

.inf-crd .dtl-itm:hover {
  background: #00e9e514
}

.kntkt-pg .inf-crd .dtl-icn {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px
}

.kntkt-pg .inf-crd .dtl-icn svg {
  width: 100%;
  height: 100%;
  fill: #531344
}

.kntkt-pg .inf-crd .dtl-txt {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  word-break: break-word
}

.kntkt-pg .inf-crd .dtl-txt a {
  color: #531344;
  text-decoration: none;
  transition: color .1s ease-out
}

.inf-crd .dtl-txt a:hover {
  color: #00E9E5
}

.kntkt-pg .frm-blck {
  grid-column: 3;
  background: #fff;
  padding: 48px;
  border-radius: 10px;
  box-shadow: 0 9px 48px 0 #5313441c;
  position: relative;
  overflow: hidden
}

.frm-blck::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #531344 0%, #00E9E5 100%);
  border-radius: 10px;
  opacity: 0;
  z-index: 0;
  transition: opacity .15s ease-out;
  pointer-events: none
}

.frm-blck:hover::before {
  opacity: .15
}

.kntkt-pg .frm-blck .brkt-lft {
  position: absolute;
  top: 24px;
  left: 16px;
  width: 32px;
  height: 80px;
  border-left: 4px solid #531344;
  border-top: 4px solid #531344;
  border-bottom: 4px solid #531344;
  border-radius: 6px 0 0 6px;
  opacity: .3;
  pointer-events: none;
  transition: opacity .13s ease-out, transform .13s ease-out
}

.frm-blck:hover .brkt-lft {
  opacity: .6;
  transform: translateX(-4px)
}

.kntkt-pg .frm-blck .brkt-rght {
  position: absolute;
  top: 24px;
  right: 16px;
  width: 32px;
  height: 80px;
  border-right: 4px solid #00E9E5;
  border-top: 4px solid #00E9E5;
  border-bottom: 4px solid #00E9E5;
  border-radius: 0 6px 6px 0;
  opacity: .3;
  pointer-events: none;
  transition: opacity .13s ease-out, transform .13s ease-out
}

.frm-blck:hover .brkt-rght {
  opacity: .6;
  transform: translateX(4px)
}

.kntkt-pg .frm-blck .frm-hdng {
  font-size: 32px;
  line-height: 1.4;
  color: #531344;
  font-weight: 700;
  margin: 0 0 8px;
  text-align: left;
  position: relative;
  z-index: 1
}

.kntkt-pg .frm-blck .frm-subhdng {
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0 0 48px;
  text-align: left;
  position: relative;
  z-index: 1
}

.kntkt-pg .frm-blck .cntct-frm {
  position: relative;
  z-index: 1
}

.kntkt-pg .frm-blck .nm-grp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px
}

.kntkt-pg .frm-blck .fld-grp {
  margin-bottom: 24px
}

.kntkt-pg .frm-blck .fld-lbl {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 8px
}

.kntkt-pg .frm-blck .fld-inpt {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  background: #F1F0F0;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color .11s ease-out, background .11s ease-out, box-shadow .11s ease-out;
  box-shadow: inset 0 1px 2px 0 #53134412
}

.fld-inpt::placeholder {
  color: #8a8a8a;
  font-size: 15px
}

.fld-inpt:focus {
  outline: none;
  border-color: #531344;
  background: #fff;
  box-shadow: 0 1px 2px 0 #53134412 0 0 0 4px #53134414
}

.kntkt-pg .frm-blck .rtng-grp {
  margin-bottom: 24px
}

.kntkt-pg .frm-blck .rtng-lbl {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  font-weight: 600;
  margin-bottom: 16px
}

.kntkt-pg .frm-blck .rtng-opts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.kntkt-pg .frm-blck .rtng-opt {
  position: relative
}

.kntkt-pg .frm-blck .rtng-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.kntkt-pg .frm-blck .rtng-opt .rtng-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.4;
  color: #531344;
  background: #F1F0F0;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: background .12s ease-out, border-color .12s ease-out, color .12s ease-out, transform .12s ease-out;
  user-select: none
}

.rtng-opt .rtng-btn:hover {
  background: linear-gradient(135deg, #53134414 0%, #00e9e514 100%);
  border-color: #531344;
  transform: translateY(-2px)
}

.rtng-opt input[type="radio"]:checked+.rtng-btn {
  background: linear-gradient(135deg, #531344 0%, #00E9E5 100%);
  color: #fff;
  border-color: #531344;
  box-shadow: 0 6px 20px 0 #53134414
}

.rtng-opt input[type="radio"]:focus+.rtng-btn {
  outline: 2px solid #531344;
  outline-offset: 2px
}

.kntkt-pg .frm-blck .prvc-grp {
  margin-bottom: 24px;
  padding: 16px;
  background: #53134405;
  border-radius: 4px;
  border-left: 4px solid #531344
}

.kntkt-pg .frm-blck .prvc-lbl {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  user-select: none
}

.kntkt-pg .frm-blck .prvc-chk {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border: 2px solid #531344;
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  transition: background .11s ease-out, border-color .11s ease-out;
  position: relative
}

.prvc-lbl input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.prvc-lbl input[type="checkbox"]:checked+.prvc-chk {
  background: #531344;
  border-color: #531344
}

.prvc-lbl input[type="checkbox"]:checked+.prvc-chk::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg)
}

.prvc-lbl input[type="checkbox"]:focus+.prvc-chk {
  outline: 2px solid #531344;
  outline-offset: 2px
}

.kntkt-pg .frm-blck .prvc-txt {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a
}

.kntkt-pg .frm-blck .prvc-txt a {
  color: #531344;
  text-decoration: underline;
  transition: color .1s ease-out
}

.prvc-txt a:hover {
  color: #00E9E5
}

.kntkt-pg .frm-blck .sbmt-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  background: linear-gradient(135deg, #531344 0%, #00E9E5 100%);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: transform .12s ease-out, box-shadow .12s ease-out, background .14s ease-out;
  box-shadow: 0 6px 20px 0 #53134414
}

.sbmt-btn:hover {
  background: linear-gradient(225deg, #531344 0%, #00E9E5 100%);
  transform: translateY(-2px);
  box-shadow: 0 9px 48px 0 #5313441c
}

.sbmt-btn:active {
  transform: translateY(0)
}

.sbmt-btn:focus {
  outline: 2px solid #531344;
  outline-offset: 2px
}

.kntkt-pg .dv-edg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 96px;
  padding: 0 24px;
  gap: 48px
}

.kntkt-pg .dv-edg .dv-ln {
  flex: 0 0 80px;
  height: 2px;
  background: linear-gradient(90deg, #531344 0%, transparent 100%)
}

.kntkt-pg .dv-edg .dv-ln.rght {
  background: linear-gradient(270deg, #531344 0%, transparent 100%)
}

@media (max-width: 768px) {
  .kntkt-pg .intro-bnnr {
    padding: 48px 16px;
    margin-bottom: 48px
  }

  .kntkt-pg .intro-bnnr .num-accnt {
    font-size: 44px
  }

  .kntkt-pg .intro-bnnr .mn-hdng {
    font-size: 32px
  }

  .kntkt-pg .intro-bnnr .expl-txt {
    font-size: 16px
  }

  .kntkt-pg .frm-sctn {
    padding: 48px 16px
  }

  .kntkt-pg .frm-sctn .cntnt-wrp {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .kntkt-pg .frm-blck {
    grid-column: 1;
    padding: 24px
  }

  .kntkt-pg .frm-blck .nm-grp {
    grid-template-columns: 1fr
  }

  .kntkt-pg .frm-blck .rtng-opts {
    flex-direction: column
  }

  .kntkt-pg .frm-blck .rtng-opt .rtng-btn {
    width: 100%;
    justify-content: flex-start
  }

  .kntkt-pg .dv-edg {
    margin-bottom: 48px;
    gap: 24px
  }

  .kntkt-pg .dv-edg .dv-ln {
    flex: 0 0 48px
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .kntkt-pg .frm-sctn .cntnt-wrp {
    grid-template-columns: 1fr
  }

  .kntkt-pg .frm-blck {
    grid-column: 1
  }
}

.success-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 16px;
  background: #FFF
}

.success-page .confirm-container {
  background: linear-gradient(127deg, #531344 0%, #531344d9 48%, #00E9E5 100%);
  border-radius: 10px;
  padding: 48px 24px;
  text-align: center;
  box-shadow: 0 9px 48px 0 #5313441c;
  margin-bottom: 48px
}

.success-page .icon-check {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  background: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px 0 #00e9e514
}

.success-page .icon-check svg {
  width: 52px;
  height: 52px;
  stroke: #531344;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.success-page .confirm-heading {
  font-size: 44px;
  line-height: 1.1;
  color: #FFF;
  margin: 0 0 16px
}

.success-page .confirm-text {
  font-size: 18px;
  line-height: 1.6;
  color: #fffffff2;
  margin: 0
}

.success-page .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px
}

.success-page .info-card {
  background: #F1F0F0;
  border-radius: 6px;
  padding: 24px;
  border-left: 4px solid #00E9E5;
  box-shadow: 0 1px 2px 0 #00e9e512;
  transition: transform .15s ease-out, box-shadow .18s ease
}

.success-page .info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 #53134414
}

.success-page .info-card-title {
  font-size: 24px;
  line-height: 1.4;
  color: #531344;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px
}

.success-page .info-card-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0
}

.success-page .info-card-icon svg {
  width: 100%;
  height: 100%;
  fill: #00E9E5
}

.success-page .info-card-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0
}

.success-page .action-section {
  background: linear-gradient(218deg, #5313440a 0%, #00e9e514 100%);
  border-radius: 4px;
  padding: 48px 24px;
  text-align: center
}

.success-page .action-heading {
  font-size: 32px;
  line-height: 1.1;
  color: #531344;
  margin: 0 0 24px
}

.success-page .btn-home {
  display: inline-block;
  background: linear-gradient(135deg, #531344 0%, #6b1a58 100%);
  color: #FFF;
  font-size: 18px;
  padding: 16px 48px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .16s ease-out, transform .12s ease;
  box-shadow: 0 6px 20px 0 #53134414
}

.success-page .btn-home:hover {
  background: linear-gradient(225deg, #531344 0%, #6b1a58 100%);
  transform: translateY(-1px);
  box-shadow: 0 9px 48px 0 #5313441c
}

@media (min-width: 768px) {
  .success-page {
    padding: 96px 24px
  }

  .success-page .confirm-container {
    padding: 96px 48px
  }

  .success-page .confirm-heading {
    font-size: 62px
  }

  .success-page .confirm-text {
    font-size: 24px
  }

  .success-page .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
  }

  .success-page .action-section {
    padding: 96px 48px
  }
}