::before,
::after {
  content: none;
  box-sizing: inherit
}

body {
  margin: 0;
  scrollbar-gutter: stable;
  min-height: 100vh;
  font-family: 'PT Sans', sans-serif
}

.brand-bar {
  background: linear-gradient(135deg, #768F90 0%, #8BBAB7 60%, #D1FAF8 100%);
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.brand-bar__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #fff;
  letter-spacing: .08em;
  font-weight: 700;
  text-transform: uppercase
}

.brand-bar__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background: #D1FAF8;
  box-shadow: 0 0 0 2px #778f9066;
  flex-shrink: 0;
  animation: blink-dot 1.8s steps(2, start) infinite
}

@keyframes blink-dot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.brand-bar__contact {
  font-size: 13px;
  color: #fff;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .2s ease-out
}

.brand-bar__contact:hover,
.brand-bar__contact:focus {
  color: #D1FAF8;
  background: transparent
}

.brand-bar__contact:focus {
  outline: 2px solid #D1FAF8;
  outline-offset: 2px;
  border-radius: 1px
}

.primary-header {
  background: #fff;
  box-shadow: 0 4px 18px 1px #768f901c;
  position: relative
}

.primary-header__shell {
  max-width: 1024px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 40px
}

.brand-mount {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 8px
}

.brand-mount__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 34px;
  border: 2px solid #768F90;
  background: #fff;
  box-shadow: 0 2px 4px 1px #768f900f 0 4px 18px 1px #768f901c;
  padding: 8px 16px;
  width: auto;
  height: 88px;
  min-width: 88px;
  transition: box-shadow .25s ease-out, border-color .2s ease-out
}

.brand-mount__link:hover {
  border-color: #8BBAB7;
  box-shadow: 0 9px 60px 1px #768f9021
}

.brand-mount__link:focus {
  outline: none;
  border-color: #768F90;
  background: #D1FAF8;
  box-shadow: 0 4px 18px 1px #768f901c
}

.brand-mount__image {
  width: 80px;
  height: 64px;
  object-fit: contain;
  display: block
}

.primary-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end
}

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

.primary-nav__item {
  display: flex
}

.primary-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #3a4e4f;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: background .2s ease-out, color .15s ease-out, border-color .2s ease-out;
  white-space: nowrap;
  min-height: 44px
}

.primary-nav__link:hover {
  background: #D1FAF8;
  color: #2d3f40;
  border-color: #8BBAB7
}

.primary-nav__link:focus {
  outline: none;
  background: #D1FAF8;
  color: #2d3f40;
  border-color: #768F90
}

.primary-nav__link--active {
  background: #768F90;
  color: #fff;
  border-color: #768F90
}

.primary-nav__link--active:hover {
  background: #8BBAB7;
  color: #fff;
  border-color: #8BBAB7
}

@media (max-width: 768px) {
  .brand-bar {
    padding: 8px 16px;
    flex-wrap: wrap;
    gap: 8px
  }

  .primary-header__shell {
    padding: 16px;
    gap: 16px;
    flex-wrap: wrap
  }

  .primary-nav__list {
    gap: 4px
  }

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

@media (max-width: 480px) {
  .brand-bar__contact {
    display: none
  }

  .primary-header__shell {
    flex-direction: column;
    align-items: flex-start
  }

  .primary-nav {
    width: 100%
  }

  .primary-nav__list {
    justify-content: flex-start
  }
}

.site-footer {
  background: #f4f8f8;
  border-top: 1px solid #D1FAF8;
  padding: 80px 40px 40px
}

.site-footer__shell {
  max-width: 1024px;
  margin: 0 auto
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start
}

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

.footer-brand__logo-mount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  border: 2px solid #8BBAB7;
  background: #fff;
  box-shadow: 0 2px 4px 1px #8bbab70f;
  padding: 8px 16px;
  width: 100px;
  height: 80px;
  text-decoration: none
}

.footer-brand__logo-image {
  width: 80px;
  height: 60px;
  object-fit: contain;
  display: block
}

.footer-brand__name {
  font-size: 18px;
  font-weight: 700;
  color: #2d3f40;
  line-height: 1.1;
  letter-spacing: .04em;
  margin: 0
}

.footer-brand__tagline {
  font-size: 13px;
  color: #4a6163;
  line-height: 1.7;
  margin: 0
}

.footer-brand__privacy-link {
  font-size: 13px;
  color: #768F90;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  letter-spacing: .03em;
  transition: color .2s ease-out;
  text-align: left
}

.footer-brand__privacy-link:hover,
.footer-brand__privacy-link:focus {
  color: #2d3f40;
  background: #D1FAF8;
  outline: none;
  border-radius: 1px
}

.footer-nav-block {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footer-nav-block__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #768F90;
  margin: 0;
  line-height: 1.1
}

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

.footer-nav-block__link {
  font-size: 13px;
  color: #3a4e4f;
  text-decoration: none;
  line-height: 1.4;
  transition: color .2s ease-out;
  display: inline-block;
  min-height: 44px;
  display: flex;
  align-items: center
}

.footer-nav-block__link:hover {
  color: #768F90
}

.footer-nav-block__link:focus {
  outline: none;
  color: #2d3f40;
  background: #D1FAF8;
  border-radius: 1px;
  padding: 0 4px
}

.footer-contacts-block {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footer-contacts-block__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #768F90;
  margin: 0;
  line-height: 1.1
}

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

.footer-contacts-block__item {
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.footer-contacts-block__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #8BBAB7
}

.footer-contacts-block__text {
  font-size: 13px;
  color: #3a4e4f;
  line-height: 1.7
}

.footer-contacts-block__link {
  font-size: 13px;
  color: #3a4e4f;
  text-decoration: none;
  line-height: 1.4;
  transition: color .2s ease-out;
  min-height: 44px;
  display: flex;
  align-items: center
}

.footer-contacts-block__link:hover {
  color: #768F90
}

.footer-contacts-block__link:focus {
  outline: none;
  color: #2d3f40;
  background: #D1FAF8;
  border-radius: 1px;
  padding: 0 4px
}

.site-footer__divider {
  margin: 40px 0 0;
  border: none;
  border-top: 1px solid #D1FAF8
}

.site-footer__bottom {
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.site-footer__copyright {
  font-size: 13px;
  color: #768F90;
  line-height: 1.4;
  margin: 0
}

.site-footer__legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px
}

.site-footer__legal-link {
  font-size: 13px;
  color: #768F90;
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .18s ease-out;
  min-height: 44px;
  display: flex;
  align-items: center
}

.site-footer__legal-link:hover {
  color: #2d3f40
}

.site-footer__legal-link:focus {
  outline: none;
  color: #2d3f40;
  background: #D1FAF8;
  border-radius: 1px;
  padding: 0 4px
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 16px
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }

  .footer-brand {
    grid-column: 1 / -1
  }
}

@media (max-width: 480px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start
  }
}

.doc-block {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #2c3a3b
}

.doc-block h1 {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -.5px;
  color: #1e2e2f;
  margin-bottom: 40px;
  margin-top: 0
}

.doc-block h2 {
  font-size: 23px;
  line-height: 1.4;
  letter-spacing: .02em;
  color: #2c3a3b;
  margin-top: 80px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #D1FAF8
}

.doc-block h3 {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: .03em;
  color: #3a4d4e;
  margin-top: 40px;
  margin-bottom: 16px
}

.doc-block h4,
.doc-block h5,
.doc-block h6 {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #768F90;
  margin-top: 40px;
  margin-bottom: 8px
}

.doc-block p {
  font-size: 18px;
  line-height: 1.7;
  color: #3a4d4e;
  margin-top: 0;
  margin-bottom: 16px
}

.doc-block ul,
.doc-block ol {
  font-size: 18px;
  line-height: 1.7;
  color: #3a4d4e;
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 40px
}

.doc-block ul {
  list-style: none;
  padding-left: 16px
}

.doc-block ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px
}

.doc-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background-color: #8BBAB7;
  transform: rotate(45deg)
}

.doc-block ol {
  list-style: decimal
}

.doc-block ol li {
  margin-bottom: 8px;
  padding-left: 4px
}

.doc-block ol li::marker {
  color: #768F90;
  font-size: 13px;
  letter-spacing: .05em
}

.doc-block em,
.doc-block i {
  color: #5a7475;
  font-style: italic
}

.doc-block table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 13px;
  line-height: 1.7;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 2px 4px 1px #768f900f 0 4px 18px 1px #768f901c
}

.doc-block thead {
  background-color: #768F90
}

.doc-block thead th {
  color: #fff;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px;
  text-align: left;
  font-weight: 600
}

.doc-block tbody tr {
  border-bottom: 1px solid #D1FAF8;
  transition: background-color .2s ease-out
}

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

.doc-block tbody tr:hover {
  background-color: #f0fafa
}

.doc-block td {
  padding: 16px;
  font-size: 13px;
  line-height: 1.7;
  color: #3a4d4e;
  vertical-align: top
}

.doc-block tbody tr:nth-child(even) {
  background-color: #f7fefe
}

.doc-block tbody tr:nth-child(even):hover {
  background-color: #f0fafa
}

.doc-block hr {
  border: none;
  height: 1px;
  background-color: #D1FAF8;
  margin-top: 40px;
  margin-bottom: 40px
}

.doc-block div {
  margin-bottom: 16px
}

@media (max-width: 768px) {
  .doc-block {
    padding: 40px 16px
  }

  .doc-block h1 {
    font-size: 23px;
    margin-bottom: 16px
  }

  .doc-block h2 {
    font-size: 18px;
    margin-top: 40px
  }

  .doc-block h3 {
    font-size: 13px;
    margin-top: 16px
  }

  .doc-block table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }
}

@media (max-width: 480px) {
  .doc-block {
    padding: 40px 8px
  }

  .doc-block ul,
  .doc-block ol {
    padding-left: 16px
  }
}

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

.technology .container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px
}

.technology .pitch {
  background: #2a3536;
  padding: 80px 16px;
  position: relative
}

.technology .pitch__inner {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px
}

.technology .pitch__corner {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none
}

.technology .pitch__corner--tl {
  top: 0;
  left: 0;
  border-top: 56px solid #8bbab72e;
  border-right: 56px solid transparent
}

.technology .pitch__corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 56px solid #768f902e;
  border-left: 56px solid transparent
}

.technology .pitch__text {
  flex: 1 1 0;
  min-width: 0
}

.technology .pitch__tag {
  display: inline-block;
  background: #8bbab733;
  color: #8BBAB7;
  font-size: 13px;
  letter-spacing: .12em;
  padding: 4px 16px;
  border-radius: 34px;
  margin-bottom: 16px;
  text-transform: uppercase
}

.technology .pitch__headline {
  font-size: 62px;
  line-height: 1.1;
  color: #D1FAF8;
  margin-bottom: 16px
}

.technology .pitch__sub {
  font-size: 18px;
  line-height: 1.7;
  color: #a8c8c6;
  margin-bottom: 40px;
  max-width: 480px
}

.technology .pitch__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap
}

.technology .pitch__btn {
  display: inline-block;
  background: #8BBAB7;
  color: #2a3536;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform .2s ease-out, background .25s ease-out;
  box-shadow: 0 4px 18px 1px #8bbab71c
}

.technology .pitch__btn:hover {
  transform: scale(1.04);
  background: #D1FAF8
}

.technology .pitch__btn--ghost {
  background: transparent;
  color: #8BBAB7;
  border: 1px solid #8BBAB7
}

.technology .pitch__btn--ghost:hover {
  background: #8bbab71a;
  transform: scale(1.04)
}

.technology .pitch__image-frame {
  flex: 0 0 380px;
  position: relative
}

.technology .pitch__img-blur {
  width: 380px;
  height: 320px;
  object-fit: cover;
  border-radius: 11px;
  display: block;
  border: 1px solid #8bbab740;
  box-shadow: 0 9px 60px 1px #768f9021;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 55%, transparent 100%)
}

.technology .pitch__image-deco {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: #8bbab71a;
  pointer-events: none;
  overflow: hidden
}

.technology .workshop {
  padding: 80px 16px;
  background: #f4f7f7;
  position: relative
}

@keyframes brightpulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .93
  }
}

.technology .workshop__bg {
  position: absolute;
  inset: 0;
  background-image: url(./site_graphics/media-4020925.jpg);
  background-size: cover;
  background-position: center;
  animation: brightpulse 5s steps(8, end) infinite
}

.technology .workshop__overlay {
  position: absolute;
  inset: 0;
  background: #f4f7f7e8
}

.technology .workshop__inner {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  position: relative
}

.technology .workshop__corner--tr {
  position: absolute;
  top: -80px;
  right: -16px;
  width: 0;
  height: 0;
  border-top: 48px solid #768f901f;
  border-left: 48px solid transparent;
  pointer-events: none
}

.technology .workshop__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #768F90;
  margin-bottom: 16px
}

.technology .workshop__label-shape {
  width: 10px;
  height: 10px;
  background: #8BBAB7;
  border-radius: 1px;
  transform: rotate(45deg);
  flex-shrink: 0
}

.technology .workshop__headline {
  font-size: 23px;
  line-height: 1.4;
  color: #2a3536;
  margin-bottom: 8px
}

.technology .workshop__lead {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5e5f;
  max-width: 600px;
  margin-bottom: 40px
}

.technology .workshop__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 16px;
  align-items: start
}

.technology .workshop__side {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.technology .workshop__card {
  background: #fff;
  border-radius: 11px;
  padding: 16px;
  box-shadow: 0 2px 4px 1px #768f900f;
  border: 1px solid #8bbab72e;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s ease-out
}

.technology .workshop__card:hover {
  box-shadow: 0 4px 18px 1px #768f901c
}

.technology .workshop__card-inset {
  box-shadow: inset 0 2px 8px #768f9014 0 2px 4px 1px #768f900f
}

.technology .workshop__card-icon {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: #D1FAF8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0
}

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

.technology .workshop__card-name {
  font-size: 13px;
  font-weight: 700;
  color: #2a3536;
  margin-bottom: 4px;
  letter-spacing: .04em;
  text-transform: uppercase
}

.technology .workshop__card-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #5a7172
}

.technology .workshop__center {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.technology .workshop__featured {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 9px 60px 1px #768f9021;
  border: 1px solid #8bbab733
}

.technology .workshop__featured-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #8bbab726
}

.technology .workshop__featured-body {
  padding: 16px
}

.technology .workshop__featured-tag {
  display: inline-block;
  background: #D1FAF8;
  color: #2a3536;
  font-size: 13px;
  letter-spacing: .08em;
  padding: 4px 8px;
  border-radius: 5px;
  margin-bottom: 8px;
  font-weight: 600
}

.technology .workshop__featured-title {
  font-size: 18px;
  line-height: 1.4;
  color: #2a3536;
  margin-bottom: 8px
}

.technology .workshop__featured-text {
  font-size: 13px;
  line-height: 1.7;
  color: #5a7172
}

.technology .workshop__stat {
  background: #2a3536;
  border-radius: 11px;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.technology .workshop__ring {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  position: relative
}

.technology .workshop__ring svg {
  width: 64px;
  height: 64px;
  transform: rotate(-90deg)
}

.technology .workshop__ring-track {
  fill: none;
  stroke: #8bbab733;
  stroke-width: 5
}

.technology .workshop__ring-fill {
  fill: none;
  stroke: #8BBAB7;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 163;
  stroke-dashoffset: 33
}

.technology .workshop__ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #D1FAF8
}

.technology .workshop__stat-text {
  flex: 1 1 0
}

.technology .workshop__stat-value {
  font-size: 23px;
  font-weight: 700;
  color: #D1FAF8;
  line-height: 1.1
}

.technology .workshop__stat-label {
  font-size: 13px;
  color: #8BBAB7;
  line-height: 1.4;
  margin-top: 4px
}

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

.technology .workshop__step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #8bbab733
}

.technology .workshop__step:last-child {
  border-bottom: none
}

.technology .workshop__step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: #D1FAF8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #2a3536
}

.technology .workshop__step-text {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5e5f;
  padding-top: 4px
}

.technology .workshop__pullquote {
  background: #8bbab71f;
  border-radius: 11px;
  padding: 16px;
  position: relative
}

.technology .workshop__pullquote-text {
  font-size: 18px;
  line-height: 1.4;
  color: #2a3536;
  font-style: italic
}

.technology .workshop__pullquote-attr {
  font-size: 13px;
  color: #768F90;
  margin-top: 8px;
  letter-spacing: .05em
}

.technology .workshop__img-side {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 11px;
  display: block;
  border: 1px solid #8bbab733;
  box-shadow: 0 2px 4px 1px #768f900f
}

.technology .workshop__reveal {
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  cursor: pointer
}

.technology .workshop__reveal-content {
  background: #fff;
  border-radius: 11px;
  padding: 16px;
  box-shadow: 0 2px 4px 1px #768f900f;
  border: 1px solid #8bbab72e
}

.technology .workshop__reveal-overlay {
  position: absolute;
  inset: 0;
  background: #768f90eb;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .35s ease-out
}

.technology .workshop__reveal:hover .workshop__reveal-overlay,
.technology .workshop__reveal:focus-within .workshop__reveal-overlay {
  opacity: 0;
  pointer-events: none
}

.technology .workshop__reveal-hint {
  color: #D1FAF8;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center
}

.technology .workshop__reveal-hint svg {
  display: block;
  margin: 0 auto 8px
}

@media (max-width: 1280px) {
  .technology .pitch__headline {
    font-size: 48px
  }

  .technology .pitch__image-frame {
    flex: 0 0 300px
  }

  .technology .pitch__img-blur {
    width: 300px;
    height: 260px
  }
}

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

  .technology .pitch__headline {
    font-size: 36px
  }

  .technology .pitch__image-frame {
    flex: none;
    width: 100%
  }

  .technology .pitch__img-blur {
    width: 100%;
    height: 220px
  }

  .technology .workshop__grid {
    grid-template-columns: 1fr
  }

  .technology .workshop__side {
    flex-direction: column
  }
}

@media (max-width: 480px) {
  .technology .pitch {
    padding: 40px 16px
  }

  .technology .pitch__headline {
    font-size: 23px
  }

  .technology .pitch__sub {
    font-size: 13px
  }

  .technology .workshop {
    padding: 40px 16px
  }

  .technology .pitch__actions {
    flex-direction: column
  }
}

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

.infographics .chart-donut {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap
}

.infographics .donut-svg {
  flex-shrink: 0
}

.infographics .donut-legend {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.infographics .legend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #2a3a3b
}

.infographics .legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0
}

.infographics .page-band {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px
}

.infographics .title-area {
  position: relative;
  background-color: #e8f0f0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, #768f901f 39px, #768f901f 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, #768f9014 39px, #768f9014 40px);
  padding: 80px 16px;
  overflow: hidden
}

.infographics .title-area__inner {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.infographics .title-area__geo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0
}

.infographics .title-area__geo svg {
  position: absolute
}

.infographics .title-area__geo .geo-tl {
  top: 0;
  left: 0
}

.infographics .title-area__geo .geo-br {
  bottom: 0;
  right: 0
}

.infographics .badge {
  display: inline-block;
  background: #768f902e;
  color: #3d5a5b;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .08em;
  padding: 4px 16px;
  border-radius: 34px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid #768f904d
}

.infographics .title-area__heading {
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.1;
  color: #1e3233;
  margin: 0 0 16px;
  max-width: 680px
}

.infographics .title-area__sub {
  font-size: 23px;
  line-height: 1.4;
  color: #3d5a5b;
  margin: 0 0 16px;
  max-width: 520px
}

.infographics .title-area__desc {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5f60;
  max-width: 560px;
  margin: 0
}

.infographics .divider-wave {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

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

.infographics .metrics-band {
  background: #fff;
  padding: 80px 16px
}

.infographics .metrics-band__inner {
  max-width: 1024px;
  margin: 0 auto
}

.infographics .metrics-band__label {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #768F90;
  margin-bottom: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.infographics .metrics-band__label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: #768F90;
  border-radius: 1px
}

.infographics .metrics-band__heading {
  font-size: 23px;
  line-height: 1.4;
  color: #1e3233;
  margin: 0 0 40px;
  max-width: 600px
}

.infographics .metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.infographics .metric-card {
  background: #f4f9f9;
  border-radius: 11px;
  padding: 40px;
  border-right: 3px solid #8BBAB7;
  box-shadow: 0 2px 4px 1px #768f900f;
  animation: revealRotate .45s ease-out both;
  position: relative;
  overflow: hidden
}

.infographics .metric-card__abbr {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 62px;
  line-height: 1.1;
  color: #8bbab721;
  font-weight: 700;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em
}

.infographics .metric-card__number {
  font-size: 62px;
  line-height: 1.1;
  color: #768F90;
  font-weight: 700;
  display: block;
  margin-bottom: 8px
}

.infographics .metric-card__title {
  font-size: 18px;
  line-height: 1.4;
  color: #1e3233;
  margin: 0 0 8px
}

.infographics .metric-card__text {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5f60;
  margin: 0
}

.infographics .metric-card--wide {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start
}

.infographics .metric-card--wide .metric-card__body {
  flex: 1
}

.infographics .metric-card--wide .metric-card__chart {
  flex-shrink: 0
}

@keyframes revealRotate {
  from {
    opacity: 0;
    transform: rotate(-2deg) translateY(12px)
  }

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

.infographics .strategy-band {
  padding: 80px 16px;
  background: linear-gradient(ellipse 80% 60% at 20% 50%, #768f902e 0%, #D1FAF8 100%);
  position: relative
}

.infographics .strategy-band__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.infographics .strategy-band__image-col {
  position: relative
}

.infographics .strategy-band__img-frame {
  border-radius: 11px;
  overflow: hidden;
  border: 1px solid #768f9040;
  box-shadow: 0 9px 60px 1px #768f9021;
  position: relative
}

.infographics .strategy-band__img-frame img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: blur(0px)
}

.infographics .strategy-band__img-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 55%, #768f9073 100%);
  border-radius: 11px;
  pointer-events: none
}

.infographics .strategy-band__text-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.infographics .strategy-band__heading {
  font-size: 23px;
  line-height: 1.4;
  color: #1e3233;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.infographics .strategy-band__heading::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: #768F90;
  margin-top: 8px;
  flex-shrink: 0;
  transform: rotate(45deg)
}

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

.infographics .strategy-list__item {
  padding: 16px;
  border-left: 2px solid #8BBAB7;
  background: #ffffffa6;
  border-radius: 5px;
  font-size: 13px;
  line-height: 1.7;
  color: #2a3a3b;
  box-shadow: 0 2px 4px 1px #768f900f;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px)
}

.infographics .strategy-list__item strong {
  display: block;
  font-size: 13px;
  color: #1e3233;
  margin-bottom: 4px;
  letter-spacing: .04em
}

.infographics .pull-quote {
  font-size: 18px;
  line-height: 1.7;
  color: #3d5a5b;
  margin: 0;
  padding: 16px;
  background: #ffffff80;
  border-radius: 5px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px)
}

.infographics .steps-band {
  padding: 80px 16px;
  background: #1e3233;
  position: relative
}

.infographics .steps-band__inner {
  max-width: 1024px;
  margin: 0 auto
}

.infographics .steps-band__heading {
  font-size: 23px;
  line-height: 1.4;
  color: #D1FAF8;
  margin: 0 0 40px;
  max-width: 560px
}

.infographics .steps-band__abbr {
  font-size: 62px;
  line-height: 1.1;
  color: #d1faf80f;
  font-weight: 700;
  position: absolute;
  top: 40px;
  right: 16px;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em
}

.infographics .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.infographics .step-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 11px;
  background: #8bbab717;
  border: 1px solid #8bbab72e;
  box-shadow: inset 0 2px 8px #768f9014;
  animation: revealRotate .35s ease-out both;
  transition: background .25s ease-out, border-color .2s ease-out
}

.infographics .step-item:hover {
  background: #8bbab729;
  border-color: #8bbab759
}

.infographics .step-item__num {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8BBAB7
}

.infographics .step-item__title {
  font-size: 18px;
  line-height: 1.4;
  color: #D1FAF8;
  margin: 0
}

.infographics .step-item__text {
  font-size: 13px;
  line-height: 1.7;
  color: #d1faf8b3;
  margin: 0
}

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

  .infographics .metric-card--wide {
    grid-column: span 1;
    flex-direction: column
  }

  .infographics .strategy-band__inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .infographics .steps-grid {
    grid-template-columns: 1fr 1fr
  }

  .infographics .title-area__heading {
    font-size: clamp(28px, 8vw, 42px)
  }
}

@media (max-width: 480px) {
  .infographics .steps-grid {
    grid-template-columns: 1fr
  }

  .infographics .metrics-band,
  .infographics .strategy-band,
  .infographics .steps-band,
  .infographics .title-area {
    padding: 40px 16px
  }

  .infographics .metric-card {
    padding: 16px
  }
}

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

.contact-us .page-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px
}

.contact-us .tag-badge {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: #D1FAF8;
  color: #3a5a5c;
  padding: 4px 16px;
  border-radius: 34px;
  font-weight: 600;
  border: 1px solid #8BBAB7
}

.contact-us .geo-shape {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid #768F90;
  border-radius: 1px;
  margin-right: 8px;
  transform: rotate(45deg);
  flex-shrink: 0
}

.contact-us .reach-panel {
  background: #f5fafa;
  padding: 80px 0 40px;
  position: relative
}

.contact-us .reach-panel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, #8bbab721 0%, transparent 70%);
  pointer-events: none
}

.contact-us .reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 40px
}

.contact-us .reach-card {
  background: #fff;
  border-radius: 11px;
  padding: 40px 16px 16px;
  box-shadow: 0 4px 18px 1px #768f901c;
  border: 1px solid #8bbab740;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: box-shadow .25s ease-out, transform .2s ease-out
}

.contact-us .reach-card:hover {
  box-shadow: 0 9px 60px 1px #768f9021;
  transform: translateY(-2px)
}

.contact-us .reach-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 5px;
  background: #D1FAF8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px
}

.contact-us .reach-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: #3a5a5c;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.contact-us .reach-card__label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #768F90;
  font-weight: 600
}

.contact-us .reach-card__value {
  font-size: 18px;
  color: #1e3535;
  line-height: 1.4;
  font-weight: 500
}

.contact-us .reach-card__value a {
  color: #1e3535;
  text-decoration: none;
  border-bottom: 1px solid #768f9066;
  transition: border-color .2s ease-out, color .2s ease-out
}

.contact-us .reach-card__value a:hover {
  color: #3a5a5c;
  border-color: #768F90
}

.contact-us .reach-card__sub {
  font-size: 13px;
  color: #768F90;
  line-height: 1.4
}

.contact-us .reach-intro {
  max-width: 560px
}

.contact-us .reach-intro h1 {
  font-size: 62px;
  line-height: 1.1;
  color: #1e3535;
  margin: 16px 0;
  font-weight: 700
}

.contact-us .reach-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #3a5a5c
}

.contact-us .dot-scatter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden
}

.contact-us .dot-scatter span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 20px;
  background: #8bbab759
}

.contact-us .dot-scatter span:nth-child(1) {
  top: 12%;
  left: 8%
}

.contact-us .dot-scatter span:nth-child(2) {
  top: 25%;
  left: 92%
}

.contact-us .dot-scatter span:nth-child(3) {
  top: 60%;
  left: 5%
}

.contact-us .dot-scatter span:nth-child(4) {
  top: 75%;
  left: 88%
}

.contact-us .dot-scatter span:nth-child(5) {
  top: 40%;
  left: 96%
}

.contact-us .dot-scatter span:nth-child(6) {
  top: 85%;
  left: 15%
}

.contact-us .dot-scatter span:nth-child(7) {
  top: 10%;
  left: 55%
}

.contact-us .dot-scatter span:nth-child(8) {
  top: 90%;
  left: 70%;
  width: 6px;
  height: 6px
}

.contact-us .form-panel {
  padding: 80px 0;
  background: #fff;
  position: relative
}

.contact-us .form-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start
}

.contact-us .form-outlined-shape {
  position: absolute;
  top: 40px;
  right: 0;
  width: 320px;
  height: 320px;
  border: 1px solid #8bbab733;
  border-radius: 20px;
  transform: rotate(15deg);
  pointer-events: none;
  overflow: hidden
}

.contact-us .form-outlined-shape::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid #768f901f;
  border-radius: 11px
}

.contact-us .contact-form {
  background: #fff;
  border: 1px solid #8bbab74d;
  border-radius: 11px;
  padding: 40px;
  box-shadow: inset 0 2px 4px 1px #768f900f 0 4px 18px 1px #768f901c
}

.contact-us .form-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px
}

.contact-us .form-heading h2 {
  font-size: 23px;
  color: #1e3535;
  line-height: 1.1;
  font-weight: 600
}

.contact-us .field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.contact-us .field-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.contact-us .field-wrap--full {
  grid-column: 1 / -1
}

.contact-us .field-label {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #768F90;
  font-weight: 600
}

.contact-us .field-input {
  border: 1px solid #768f9059;
  border-radius: 5px;
  padding: 16px;
  font-size: 18px;
  color: #1e3535;
  background: #f9fefe;
  transition: border-color .2s ease-out, box-shadow .25s ease-out;
  outline: none;
  width: 100%;
  box-sizing: border-box
}

.contact-us .field-input::placeholder {
  font-size: 13px;
  color: #9db5b6
}

.contact-us .field-input:focus {
  border-color: #768F90;
  box-shadow: 0 2px 4px 1px #768f900f;
  background: #fff
}

.contact-us .interest-group {
  margin-bottom: 16px
}

.contact-us .interest-group h4 {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #768F90;
  font-weight: 600;
  margin-bottom: 16px
}

.contact-us .interest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.contact-us .interest-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #8bbab740;
  transition: background .2s ease-out, border-color .2s ease-out
}

.contact-us .interest-item:hover {
  background: #D1FAF8;
  border-color: #8BBAB7
}

.contact-us .interest-item input[type="checkbox"] {
  accent-color: #768F90;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer
}

.contact-us .interest-item span {
  font-size: 13px;
  color: #1e3535;
  line-height: 1.4
}

.contact-us .privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0;
  padding: 16px;
  background: #d1faf84d;
  border-radius: 5px;
  border: 1px solid #8bbab733
}

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

.contact-us .privacy-text {
  font-size: 13px;
  color: #3a5a5c;
  line-height: 1.7
}

.contact-us .privacy-text a {
  color: #3a5a5c;
  border-bottom: 1px solid #768F90;
  text-decoration: none;
  transition: color .2s ease-out
}

.contact-us .privacy-text a:hover {
  color: #1e3535
}

.contact-us .submit-btn {
  display: inline-block;
  background: #768F90;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 16px 40px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease-out, background .2s ease-out, box-shadow .25s ease-out;
  box-shadow: 0 4px 18px 1px #768f901c
}

.contact-us .submit-btn:hover {
  transform: scale(1.04);
  background: #3a5a5c;
  box-shadow: 0 9px 60px 1px #768f9021
}

.contact-us .submit-btn:focus {
  outline: 2px solid #3a5a5c;
  outline-offset: 3px
}

.contact-us .submit-btn:active {
  transform: scale(0.98)
}

.contact-us .sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 40px
}

.contact-us .sidebar-block {
  background: #f5fafa;
  border-radius: 11px;
  padding: 16px;
  border: 1px solid #8bbab733
}

.contact-us .sidebar-block h5 {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #768F90;
  font-weight: 700;
  margin-bottom: 8px
}

.contact-us .sidebar-block p {
  font-size: 13px;
  color: #3a5a5c;
  line-height: 1.7
}

.contact-us .sidebar-block a {
  color: #3a5a5c;
  text-decoration: none;
  border-bottom: 1px solid #768f9066;
  transition: color .2s ease-out;
  font-size: 13px
}

.contact-us .sidebar-block a:hover {
  color: #1e3535
}

.contact-us .steps-panel {
  padding: 80px 0;
  background: #eef7f7;
  position: relative;
  overflow: hidden
}

.contact-us .glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse 80% 60% at 35% 50%, #8bbab72e 0%, transparent 70%);
  pointer-events: none;
  animation: glowpulse 3.5s steps(8, end) infinite
}

@keyframes glowpulse {

  0%,
  100% {
    opacity: .6
  }

  50% {
    opacity: 1
  }
}

.contact-us .steps-panel-outlined {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border: 1px solid #768f9026;
  border-radius: 20px;
  pointer-events: none;
  overflow: hidden
}

.contact-us .steps-header {
  text-align: center;
  margin-bottom: 40px
}

.contact-us .steps-header h2 {
  font-size: 23px;
  color: #1e3535;
  line-height: 1.1;
  margin-top: 16px;
  font-weight: 600
}

.contact-us .steps-header p {
  font-size: 18px;
  color: #3a5a5c;
  line-height: 1.7;
  max-width: 540px;
  margin: 8px auto 0
}

.contact-us .steps-track {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  position: relative
}

.contact-us .step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative
}

.contact-us .step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #8BBAB7 0%, #8bbab733 100%)
}

.contact-us .step-number {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #768F90;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  z-index: 1;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 2px 4px 1px #768f900f
}

.contact-us .step-body {
  margin-top: 16px;
  padding: 0 8px
}

.contact-us .step-body h5 {
  font-size: 18px;
  color: #1e3535;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px
}

.contact-us .step-body p {
  font-size: 13px;
  color: #3a5a5c;
  line-height: 1.7
}

.contact-us .tech-link-row {
  text-align: center;
  margin-top: 40px
}

.contact-us .tech-link-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3a5a5c;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #768f9066;
  padding-bottom: 4px;
  transition: color .2s ease-out, border-color .2s ease-out
}

.contact-us .tech-link-row a:hover {
  color: #1e3535;
  border-color: #1e3535
}

@media (max-width: 768px) {
  .contact-us .reach-grid {
    grid-template-columns: 1fr
  }

  .contact-us .reach-intro h1 {
    font-size: 40px
  }

  .contact-us .form-layout {
    grid-template-columns: 1fr
  }

  .contact-us .field-group {
    grid-template-columns: 1fr
  }

  .contact-us .interest-grid {
    grid-template-columns: 1fr
  }

  .contact-us .steps-track {
    flex-direction: column;
    gap: 40px
  }

  .contact-us .step-item:not(:last-child)::after {
    display: none
  }

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

  .contact-us .sidebar-info {
    position: static
  }
}

@media (max-width: 480px) {
  .contact-us .reach-intro h1 {
    font-size: 30px
  }

  .contact-us .reach-panel {
    padding: 40px 0
  }

  .contact-us .form-panel {
    padding: 40px 0
  }

  .contact-us .steps-panel {
    padding: 40px 0
  }
}

@media (min-width: 1280px) {
  .contact-us .reach-grid {
    grid-template-columns: 1fr 1fr 1fr
  }
}

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

.launch .launch__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px
}

.launch .title-block {
  padding: 80px 0 40px;
  position: relative;
  background-color: #f2f4f4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%23e8ecec'/%3E%3Crect x='0' y='0' width='1' height='1' fill='%23c8d0d0' opacity='0.4'/%3E%3Crect x='2' y='2' width='1' height='1' fill='%23c8d0d0' opacity='0.4'/%3E%3C/svg%3E")
}

.launch .title-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.launch .title-block__text {
  position: relative;
  z-index: 1
}

.launch .title-block__badge {
  display: inline-block;
  background-color: #8BBAB7;
  color: #fff;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 5px;
  margin-bottom: 16px
}

.launch .title-block__heading {
  font-size: 62px;
  line-height: 1.1;
  color: #2a3535;
  margin-bottom: 16px;
  animation: word-reveal .6s steps(1, end) both
}

.launch .title-block__heading span {
  display: inline-block;
  opacity: 0;
  animation: word-appear .25s steps(1, end) forwards
}

.launch .title-block__heading span:nth-child(1) {
  animation-delay: .05s
}

.launch .title-block__heading span:nth-child(2) {
  animation-delay: .18s
}

.launch .title-block__heading span:nth-child(3) {
  animation-delay: .31s
}

.launch .title-block__heading span:nth-child(4) {
  animation-delay: .44s
}

@keyframes word-appear {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

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

.launch .title-block__points {
  list-style: none;
  padding: 0;
  margin: 16px 0 0
}

.launch .title-block__points li {
  font-size: 18px;
  line-height: 1.7;
  color: #3a4a4a;
  padding: 8px 0 8px 16px;
  border-left: 2px solid #8BBAB7;
  margin-bottom: 8px
}

.launch .title-block__image-wrap {
  position: relative;
  border-radius: 11px;
  overflow: hidden
}

.launch .title-block__image-wrap::before {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 48px;
  height: 48px;
  border-top: 2px solid #768F90;
  border-right: 2px solid #768F90;
  border-radius: 1px;
  z-index: 2;
  pointer-events: none
}

.launch .title-block__image-wrap::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 48px;
  height: 48px;
  border-bottom: 2px solid #768F90;
  border-left: 2px solid #768F90;
  border-radius: 1px;
  z-index: 2;
  pointer-events: none
}

.launch .title-block__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 11px;
  border: 1px solid #768f902e
}

.launch .title-block__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, #d1faf88c 0%, transparent 60%);
  border-radius: 11px;
  pointer-events: none
}

.launch .title-block__corner-lines {
  position: absolute;
  top: 16px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none
}

.launch .title-block__corner-lines span {
  display: block;
  height: 1px;
  background-color: #8BBAB7;
  opacity: .45
}

.launch .title-block__corner-lines span:nth-child(1) {
  width: 32px
}

.launch .title-block__corner-lines span:nth-child(2) {
  width: 24px
}

.launch .title-block__corner-lines span:nth-child(3) {
  width: 16px
}

.launch .divider-zigzag {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.launch .divider-zigzag svg {
  display: block;
  width: 100%
}

.launch .reputation {
  padding: 80px 0;
  background-color: #fff;
  position: relative
}

.launch .reputation__geo {
  position: absolute;
  top: 40px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
  overflow: hidden
}

.launch .reputation__geo span {
  display: block;
  height: 1px;
  background-color: #768F90;
  opacity: .3;
  margin-left: auto
}

.launch .reputation__geo span:nth-child(1) {
  width: 40px
}

.launch .reputation__geo span:nth-child(2) {
  width: 28px
}

.launch .reputation__geo span:nth-child(3) {
  width: 18px
}

.launch .reputation__label {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #768F90;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px
}

.launch .reputation__label-shape {
  width: 8px;
  height: 8px;
  background-color: #8BBAB7;
  border-radius: 1px;
  display: inline-block;
  flex-shrink: 0
}

.launch .reputation__heading {
  font-size: 23px;
  line-height: 1.4;
  color: #2a3535;
  margin-bottom: 40px;
  max-width: 560px
}

.launch .reputation__mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: start
}

.launch .reputation__body {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.launch .reputation__para {
  font-size: 18px;
  line-height: 1.7;
  color: #3a4a4a
}

.launch .reputation__metrics {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-top: 16px;
  border: 1px solid #768f9033;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 2px 4px 1px #768f900f
}

.launch .reputation__metric {
  flex: 1;
  padding: 16px;
  text-align: center;
  position: relative
}

.launch .reputation__metric+.reputation__metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background-color: #768f9040
}

.launch .reputation__metric-value {
  font-size: 23px;
  line-height: 1.1;
  color: #768F90;
  font-weight: 700;
  display: block
}

.launch .reputation__metric-label {
  font-size: 13px;
  line-height: 1.4;
  color: #5a6e6e;
  display: block;
  margin-top: 4px;
  letter-spacing: .06em
}

.launch .reputation__image-side {
  position: relative
}

.launch .reputation__img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 11px;
  display: block;
  border: 1px solid #768f9026;
  box-shadow: 0 4px 18px 1px #768f901c
}

.launch .reputation__pull {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.4;
  color: #768F90;
  border-top: 2px solid #D1FAF8;
  padding-top: 16px;
  font-style: italic
}

.launch .gap-block {
  padding: 80px 0;
  background-color: #D1FAF8 !important;
  position: relative
}

.launch .gap-block__pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#768f9012 1px, transparent 1px), linear-gradient(90deg, #768f9012 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none
}

.launch .gap-block__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1
}

.launch .gap-block__image-col {
  position: relative
}

.launch .gap-block__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  border: 1px solid #768f9033;
  box-shadow: 0 9px 60px 1px #8bbab721
}

.launch .gap-block__img-accent {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  border-top: 2px solid #768F90;
  border-right: 2px solid #768F90;
  border-radius: 1px;
  pointer-events: none
}

.launch .gap-block__text {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.launch .gap-block__label {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #2a3535;
  display: flex;
  align-items: center;
  gap: 8px
}

.launch .gap-block__label-shape {
  width: 10px;
  height: 10px;
  border: 2px solid #768F90;
  border-radius: 1px;
  display: inline-block;
  flex-shrink: 0
}

.launch .gap-block__heading {
  font-size: 23px;
  line-height: 1.4;
  color: #2a3535
}

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

.launch .gap-block__list li {
  font-size: 18px;
  line-height: 1.7;
  color: #2a3535;
  padding: 8px 16px;
  border-left: 2px solid #768F90;
  background-color: #ffffff80;
  border-radius: 0 5px 5px 0
}

.launch .gap-block__note {
  font-size: 13px;
  line-height: 1.7;
  color: #3a5050
}

.launch .gap-block__link {
  display: inline-block;
  background-color: #768F90;
  color: #fff;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: transform .2s ease-out, background-color .22s ease-out;
  box-shadow: 0 4px 18px 1px #768f901c;
  align-self: flex-start
}

.launch .gap-block__link:hover {
  transform: scale(1.04);
  background-color: #5e7a7b
}

.launch .team-block {
  padding: 80px 0;
  background-color: #f5f8f8;
  position: relative
}

.launch .team-block__geo {
  position: absolute;
  bottom: 40px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
  overflow: hidden
}

.launch .team-block__geo span {
  display: block;
  height: 1px;
  background-color: #768F90;
  opacity: .3
}

.launch .team-block__geo span:nth-child(1) {
  width: 36px
}

.launch .team-block__geo span:nth-child(2) {
  width: 24px
}

.launch .team-block__geo span:nth-child(3) {
  width: 14px
}

.launch .team-block__label {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #768F90;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px
}

.launch .team-block__label-shape {
  width: 8px;
  height: 8px;
  background-color: #D1FAF8;
  border: 1px solid #8BBAB7;
  border-radius: 1px;
  display: inline-block;
  flex-shrink: 0
}

.launch .team-block__heading {
  font-size: 23px;
  line-height: 1.4;
  color: #2a3535;
  margin-bottom: 40px;
  max-width: 520px
}

.launch .team-block__mosaic {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: start
}

.launch .team-block__img-col {
  position: relative
}

.launch .team-block__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 11px;
  display: block;
  border: 1px solid #768f902e;
  box-shadow: 0 4px 18px 1px #768f901c
}

.launch .team-block__img-lines {
  position: absolute;
  bottom: 16px;
  right: -8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none
}

.launch .team-block__img-lines span {
  display: block;
  height: 1px;
  background-color: #768F90;
  opacity: .5
}

.launch .team-block__img-lines span:nth-child(1) {
  width: 28px
}

.launch .team-block__img-lines span:nth-child(2) {
  width: 20px
}

.launch .team-block__img-lines span:nth-child(3) {
  width: 12px
}

.launch .team-block__text {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.launch .team-block__para {
  font-size: 18px;
  line-height: 1.7;
  color: #3a4a4a
}

.launch .team-block__pull {
  font-size: 23px;
  line-height: 1.4;
  color: #768F90;
  border-top: 2px solid #8BBAB7;
  padding-top: 16px;
  font-style: italic
}

.launch .team-block__members {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px
}

.launch .team-block__member {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
  padding: 8px 16px;
  border-left: 2px solid #D1FAF8;
  border-radius: 0 5px 5px 0;
  background-color: #d1faf84d
}

.launch .team-block__member-name {
  font-size: 18px;
  line-height: 1.4;
  color: #2a3535;
  font-weight: 600
}

.launch .team-block__member-role {
  font-size: 13px;
  line-height: 1.4;
  color: #5a7070;
  letter-spacing: .06em
}

@media (max-width: 768px) {
  .launch .title-block__grid {
    grid-template-columns: 1fr
  }

  .launch .title-block__heading {
    font-size: 23px
  }

  .launch .title-block__img {
    height: 260px
  }

  .launch .reputation__mosaic {
    grid-template-columns: 1fr
  }

  .launch .reputation__img {
    height: 220px
  }

  .launch .gap-block__grid {
    grid-template-columns: 1fr
  }

  .launch .gap-block__img {
    height: 220px
  }

  .launch .team-block__mosaic {
    grid-template-columns: 1fr
  }

  .launch .team-block__img {
    height: 200px
  }

  .launch .reputation__metrics {
    flex-direction: column
  }

  .launch .reputation__metric+.reputation__metric::before {
    top: 0;
    left: 16px;
    right: 16px;
    width: auto;
    height: 1px;
    bottom: auto
  }
}

@media (max-width: 480px) {
  .launch .title-block {
    padding: 40px 0 16px
  }

  .launch .reputation,
  .launch .gap-block,
  .launch .team-block {
    padding: 40px 0
  }

  .launch .title-block__heading {
    font-size: 23px
  }
}

@media (min-width: 1280px) {
  .launch .title-block__heading {
    font-size: 62px
  }
}

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

.about-us .page-limit {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px
}

.about-us .diamond-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0
}

.about-us .diamond-divider span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #8BBAB7;
  transform: rotate(45deg);
  border-radius: 1px;
  opacity: .5
}

.about-us .diamond-divider span:nth-child(3) {
  opacity: 1;
  background: #768F90
}

.about-us .split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative
}

.about-us .split-panel__image-side {
  position: relative;
  overflow: hidden;
  border-radius: 0
}

.about-us .split-panel__image-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, #768f900f 3px, #768f900f 4px);
  pointer-events: none
}

.about-us .split-panel__image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-right: 2px solid #D1FAF8
}

.about-us .split-panel__text-side {
  padding: 80px 40px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.about-us .split-panel__text-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 60%;
  background: linear-gradient(180deg, #8BBAB7, transparent);
  border-radius: 1px
}

.about-us .label-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #768F90;
  background: #D1FAF8;
  padding: 4px 16px;
  border-radius: 34px;
  margin-bottom: 16px;
  line-height: 1.4
}

.about-us .split-panel__heading {
  font-size: 62px;
  line-height: 1.1;
  color: #2a3a3b;
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px
}

.about-us .split-panel__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #8BBAB7;
  border-radius: 1px;
  transform: rotate(45deg)
}

.about-us .split-panel__description {
  font-size: 18px;
  line-height: 1.7;
  color: #3d4f50;
  margin-bottom: 0;
  max-width: 420px
}

.about-us .profile-grid {
  padding: 80px 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, #8bbab72e 0%, #fff0 70%), #f5fafa;
  position: relative
}

.about-us .profile-grid__inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: start
}

.about-us .profile-grid__sidebar {
  position: sticky;
  top: 40px
}

.about-us .profile-grid__label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #768F90;
  margin-bottom: 16px;
  line-height: 1.4
}

.about-us .profile-grid__sidebar-heading {
  font-size: 23px;
  line-height: 1.4;
  color: #2a3a3b;
  margin-bottom: 16px;
  padding-left: 16px;
  position: relative
}

.about-us .profile-grid__sidebar-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 5px;
  background: #768F90;
  border-radius: 1px;
  transform: rotate(45deg)
}

.about-us .profile-grid__sidebar-text {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5e5f
}

.about-us .stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px
}

.about-us .stat-card {
  background: #fff;
  border-radius: 11px;
  padding: 16px;
  box-shadow: 0 4px 18px 1px #768f901c;
  border: 1px solid #D1FAF8;
  transition: box-shadow .25s ease-out, transform .2s ease-out
}

.about-us .stat-card:hover {
  box-shadow: 0 9px 60px 1px #768f9021;
  transform: scale(1.02)
}

.about-us .stat-card__number {
  font-size: 62px;
  line-height: 1.1;
  color: #768F90;
  display: block
}

.about-us .stat-card__label {
  font-size: 13px;
  line-height: 1.4;
  color: #4a5e5f;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
  display: block
}

.about-us .profile-grid__right {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.about-us .team-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.about-us .team-card {
  background: #fff;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 2px 4px 1px #8bbab70f;
  border: 1px solid #d1faf8cc;
  transition: box-shadow .35s ease-out, transform .2s ease-out;
  position: relative
}

.about-us .team-card:hover {
  box-shadow: 0 9px 60px 1px #768f9021;
  transform: scale(1.03)
}

.about-us .team-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 140px
}

.about-us .team-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .18;
  transition: opacity .25s ease-out
}

.about-us .team-card:hover .team-card__image-wrap img {
  opacity: .28
}

.about-us .team-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #8bbab766, #d1faf84d)
}

.about-us .team-card__avatar {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 20px;
  background: #768F90;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1
}

.about-us .team-card__avatar svg {
  width: 22px;
  height: 22px;
  fill: #fff
}

.about-us .team-card__body {
  padding: 24px 16px 16px;
  text-align: center
}

.about-us .team-card__name {
  font-size: 13px;
  line-height: 1.4;
  color: #2a3a3b;
  font-weight: 600;
  margin-bottom: 4px
}

.about-us .team-card__role {
  font-size: 13px;
  line-height: 1.4;
  color: #768F90;
  text-transform: uppercase;
  letter-spacing: .07em
}

.about-us .process-result {
  background: #768F90;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 9px 60px 1px #768f9021
}

.about-us .process-result__bg-pulse {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse 70% 50% at 15% 50%, #8bbab74d 0%, transparent 60%);
  animation: vignette-pulse 4s steps(8, end) infinite;
  pointer-events: none
}

@keyframes vignette-pulse {

  0%,
  100% {
    opacity: .6
  }

  50% {
    opacity: 1
  }
}

.about-us .process-result__label {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #D1FAF8;
  margin-bottom: 16px;
  display: block;
  line-height: 1.4
}

.about-us .process-result__heading {
  font-size: 23px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px
}

.about-us .process-result__heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background: #D1FAF8;
  border-radius: 1px;
  transform: rotate(45deg)
}

.about-us .process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px
}

.about-us .step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.about-us .step-item__number {
  font-size: 23px;
  line-height: 1.1;
  color: #D1FAF8;
  font-weight: 700;
  min-width: 32px;
  opacity: .7
}

.about-us .step-item__text {
  font-size: 13px;
  line-height: 1.7;
  color: #ffffffe0
}

.about-us .step-item__text strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-size: 13px
}

.about-us .result-preview {
  background: #ffffff1a;
  border-radius: 11px;
  padding: 16px;
  border: 1px solid #d1faf84d;
  box-shadow: inset 0 2px 8px #768f9026
}

.about-us .result-preview__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #D1FAF8;
  margin-bottom: 8px;
  display: block;
  line-height: 1.4
}

.about-us .result-preview__text {
  font-size: 18px;
  line-height: 1.7;
  color: #fff
}

.about-us .approach-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.about-us .approach-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #fff;
  border-radius: 11px;
  border: 1px solid #D1FAF8;
  box-shadow: inset 0 1px 4px #768f900f;
  transition: box-shadow .2s ease-out
}

.about-us .approach-item:hover {
  box-shadow: 0 4px 18px 1px #768f901c
}

.about-us .approach-item__accent {
  width: 3px;
  min-height: 40px;
  background: linear-gradient(180deg, #8BBAB7, #D1FAF8);
  border-radius: 1px;
  flex-shrink: 0
}

.about-us .approach-item__body {
  flex: 1
}

.about-us .approach-item__heading {
  font-size: 18px;
  line-height: 1.4;
  color: #2a3a3b;
  margin-bottom: 4px
}

.about-us .approach-item__text {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5e5f
}

.about-us .pull-quote {
  font-size: 23px;
  line-height: 1.4;
  color: #768F90;
  border-top: 1px solid #D1FAF8;
  border-bottom: 1px solid #D1FAF8;
  padding: 16px 0;
  margin: 0 !important
}

@media (max-width: 1280px) {
  .about-us .team-four {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 768px) {
  .about-us .split-panel {
    grid-template-columns: 1fr
  }

  .about-us .split-panel__image-side {
    height: 260px
  }

  .about-us .split-panel__text-side {
    padding: 40px 16px
  }

  .about-us .split-panel__heading {
    font-size: 23px
  }

  .about-us .profile-grid__inner {
    grid-template-columns: 1fr
  }

  .about-us .team-four {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-us .stat-cards {
    grid-template-columns: 1fr 1fr
  }

  .about-us .page-limit {
    padding-left: 16px;
    padding-right: 16px
  }
}

@media (max-width: 480px) {
  .about-us .team-four {
    grid-template-columns: 1fr 1fr
  }

  .about-us .split-panel__heading {
    font-size: 23px
  }

  .about-us .stat-card__number {
    font-size: 23px
  }
}

.success-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 16px;
  background: linear-gradient(ellipse 80% 60% at 20% 40%, #8bbab721 0%, #fff 70%)
}

.success-page .confirmation-card {
  max-width: 1024px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 9px 60px 1px #768f9021;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.success-page .confirmation-card__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 34px;
  background: #D1FAF8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 18px 1px #8bbab71c
}

.success-page .confirmation-card__icon-wrap svg {
  display: block
}

.success-page .confirmation-card__label {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #768F90;
  line-height: 1.4;
  margin-bottom: 16px;
  background: #D1FAF8;
  padding: 4px 16px;
  border-radius: 34px;
  display: inline-block
}

.success-page .confirmation-card__heading {
  font-size: 62px;
  line-height: 1.1;
  color: #2a3a3b;
  margin-bottom: 16px;
  letter-spacing: -.01em
}

.success-page .confirmation-card__body {
  font-size: 18px;
  line-height: 1.7;
  color: #4a5e5f;
  max-width: 520px;
  margin-bottom: 40px
}

.success-page .confirmation-card__divider {
  width: 48px;
  height: 2px;
  background: #8BBAB7;
  border-radius: 1px;
  margin: 0 auto 40px
}

.success-page .confirmation-card__detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.success-page .confirmation-card__detail-list li {
  font-size: 13px;
  line-height: 1.7;
  color: #4a5e5f;
  padding: 8px 16px;
  border-radius: 11px;
  background: #d1faf866;
  box-shadow: inset 0 2px 4px 1px #768f900f;
  display: flex;
  align-items: center;
  gap: 8px
}

.success-page .confirmation-card__detail-list li svg {
  flex-shrink: 0
}

.success-page .confirmation-card__action {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: #768F90;
  padding: 16px 40px;
  border-radius: 5px;
  text-decoration: none;
  transition: transform .22s ease-out, box-shadow .18s ease-out;
  box-shadow: 0 4px 18px 1px #768f901c
}

.success-page .confirmation-card__action:hover {
  transform: scale(1.04);
  box-shadow: 0 9px 60px 1px #768f9021
}

.success-page .confirmation-card__action:focus {
  outline: 2px solid #768F90;
  outline-offset: 4px
}

@media (max-width: 768px) {
  .success-page .confirmation-card {
    padding: 40px 16px
  }

  .success-page .confirmation-card__heading {
    font-size: 23px
  }

  .success-page .confirmation-card__body {
    font-size: 18px
  }
}

@media (max-width: 480px) {
  .success-page {
    padding: 40px 8px
  }

  .success-page .confirmation-card__heading {
    font-size: 23px
  }
}