@import "https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-serif@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/ibm-plex-serif@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto-slab@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto-slab@latest/700.css";

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

body {
  margin: 0;
  padding: 0;
  min-height: 100vh
}

:focus-visible {
  outline: 2px dashed #F17B00;
  outline-offset: 3px;
  animation: dashRotate 3s linear infinite
}

@keyframes dashRotate {
  0% {
    outline-offset: 3px
  }

  50% {
    outline-offset: 5px
  }

  100% {
    outline-offset: 3px
  }
}

.sitehead {
  background: linear-gradient(135deg, #02010C 0%, #0d0b2a 60%, #1a2a3a 100%);
  position: relative;
  overflow: hidden
}

.sitehead-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 100%;
  background: linear-gradient(200deg, #59a8ea1a 0%, #f17b0012 100%);
  border-radius: 0 0 0 80px;
  pointer-events: none;
  overflow: hidden
}

.sitehead-decor2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 60px;
  background: linear-gradient(90deg, #f17b001a 0%, transparent 100%);
  pointer-events: none;
  overflow: hidden
}

.sitehead-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 40px 0;
  display: flex;
  flex-direction: column;
  gap: 0
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #59a8ea2e
}

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

.brand-logobox {
  width: 48px;
  height: 48px;
  border: 2px solid #F17B00;
  border-radius: 2px;
  background: #fffffff7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 2px 6px -1px #f17b000f 1px 5px 22px -1px #f17b0017;
  flex-shrink: 0;
  overflow: hidden
}

.brand-logobox img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block
}

.brand-nameblock {
  display: flex;
  flex-direction: column;
  gap: 0
}

.brand-name {
  font-family: 'IBM Plex Serif', serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0
}

.brand-tagline {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #59a8eae6
}

.brand-cert {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f17b001f;
  border: 1px solid #f17b0052;
  border-radius: 22px;
  padding: 6px 12px;
  box-shadow: inset 0 2px 6px #f17b000f
}

.brand-cert svg {
  color: #F17B00;
  flex-shrink: 0
}

.brand-cert-text {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffffe0
}

.headnav-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0
}

.headnav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0
}

.headnav-list li {
  display: flex;
  align-items: stretch
}

.headnav-link {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffffc7;
  text-decoration: none;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid transparent;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .25s cubic-bezier(0.0, 0, 0.2, 1);
  min-height: 44px
}

.headnav-link:hover,
.headnav-link:focus-visible {
  color: #F17B00;
  border-bottom-color: #F17B00
}

.headnav-link.active {
  color: #59A8EA;
  border-bottom-color: #59A8EA
}

.headnav-link svg {
  flex-shrink: 0;
  opacity: .7
}

@media (max-width: 768px) {
  .sitehead-inner {
    padding: 24px 24px 0
  }

  .brand-cert {
    display: none
  }

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

@media (max-width: 640px) {
  .sitehead-inner {
    padding: 24px 12px 0
  }

  .brand-name {
    font-size: 19px
  }

  .headnav-link {
    padding: 12px 6px
  }
}

.sitefooter {
  background: linear-gradient(160deg, #02010cf5 0%, #0d0b2afa 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #59a8ea29;
  box-shadow: 1px 8px 48px -1px #02010c24;
  position: relative;
  overflow: hidden
}

.sitefooter-decor {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f17b0080, #59a8ea80, transparent);
  pointer-events: none
}

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

.sitefooter-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #59a8ea1f
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px
}

.footer-logobox {
  width: 48px;
  height: 48px;
  border: 2px solid #f17b0099;
  border-radius: 2px;
  background: #fffffff2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 2px 6px -1px #f17b000f 0 0 0 3px #f17b0014;
  overflow: hidden
}

.footer-logobox img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block
}

.footer-brandname {
  font-family: 'IBM Plex Serif', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff
}

.footer-branddesc {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffff8c
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-col-label {
  font-family: 'IBM Plex Serif', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: #59a8eae6;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffffb8;
  text-decoration: none
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #F17B00
}

.footer-contact-item:hover {
  color: #F17B00;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 6px
}

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

.footer-navlist li a {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffff9e;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  border-radius: 2px;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px
}

.footer-navlist li a svg {
  color: #59a8ea99;
  flex-shrink: 0
}

.footer-navlist li a:hover {
  color: #59A8EA
}

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

.footer-copy {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffff61
}

.footer-copy span {
  color: #f17b00b3
}

.footer-addr {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffff52;
  text-align: right
}

@media (max-width: 1024px) {
  .sitefooter-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px
  }
}

@media (max-width: 640px) {
  .sitefooter-inner {
    padding: 40px 12px 24px
  }

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

  .footer-brand-col {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start
  }

  .footer-addr {
    text-align: left
  }

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

.cookiebar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #02010cf7;
  border-top: 1px solid #f17b0047;
  box-shadow: 1px 8px 48px -1px #02010c24;
  z-index: 1000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px)
}

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

.cookiebar-text {
  flex: 1 1 320px
}

.cookiebar-desc {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffffbf;
  margin-bottom: 6px
}

.cookiebar-headline {
  font-family: 'IBM Plex Serif', serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff
}

.cookiebar-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center
}

.toggle-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  color: #ffffffa6
}

.toggle-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #F17B00;
  cursor: pointer
}

.cookiebar-datasale {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  color: #59a8ead9;
  display: flex;
  align-items: center;
  gap: 6px
}

.cookiebar-datasale input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #59A8EA;
  cursor: pointer
}

.cookiebar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.btn-accept {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 700;
  color: #02010C;
  background: linear-gradient(90deg, #F17B00 0%, #f5a030 100%);
  border: none;
  border-radius: 2px;
  padding: 12px 24px;
  cursor: pointer;
  min-height: 44px;
  box-shadow: 1px 5px 22px -1px #f17b0017;
  background-size: 200% 100%;
  background-position: right center;
  transition: background-position .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.btn-accept:hover,
.btn-accept:focus-visible {
  background-position: left center;
  box-shadow: 1px 8px 48px -1px #f17b0024
}

.btn-decline {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff8c;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 6px;
  min-height: 44px;
  text-decoration: underline;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.btn-decline:hover,
.btn-decline:focus-visible {
  color: #fff
}

@media (max-width: 640px) {
  .cookiebar-inner {
    padding: 24px 12px;
    flex-direction: column;
    align-items: flex-start
  }
}

.terms-box-tjvk {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px
}

.terms-box-tjvk h1 {
  font-size: 42px;
  line-height: 1.1;
  color: #02010C;
  margin-bottom: 40px;
  margin-top: 0
}

.terms-box-tjvk h2 {
  font-size: 30px;
  line-height: 1.1;
  color: #02010C;
  margin-top: 80px;
  margin-bottom: 24px
}

.terms-box-tjvk h3 {
  font-size: 23px;
  line-height: 1.55;
  color: #02010C;
  margin-top: 40px;
  margin-bottom: 12px
}

.terms-box-tjvk h4 {
  font-size: 19px;
  line-height: 1.55;
  color: #02010C;
  margin-top: 24px;
  margin-bottom: 12px
}

.terms-box-tjvk h5 {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  margin-top: 24px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.terms-box-tjvk h6 {
  font-size: 16px;
  line-height: 1.55;
  color: #59A8EA;
  margin-top: 24px;
  margin-bottom: 6px
}

.terms-box-tjvk p {
  font-size: 16px;
  line-height: 2;
  color: #02010C;
  margin-top: 0;
  margin-bottom: 24px
}

.terms-box-tjvk ul,
.terms-box-tjvk ol {
  font-size: 16px;
  line-height: 2;
  color: #02010C;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 40px
}

.terms-box-tjvk ul {
  list-style: none;
  padding-left: 24px
}

.terms-box-tjvk ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px
}

.terms-box-tjvk ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #F17B00
}

.terms-box-tjvk ol {
  list-style: none;
  counter-reset: policy-counter;
  padding-left: 24px
}

.terms-box-tjvk ol li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
  counter-increment: policy-counter
}

.terms-box-tjvk ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  line-height: 2;
  color: #F17B00;
  font-weight: 700
}

.terms-box-tjvk ul ul,
.terms-box-tjvk ol ol,
.terms-box-tjvk ul ol,
.terms-box-tjvk ol ul {
  margin-top: 6px;
  margin-bottom: 6px
}

.terms-box-tjvk strong,
.terms-box-tjvk b {
  font-weight: 700;
  color: #02010C
}

.terms-box-tjvk em,
.terms-box-tjvk i {
  font-style: italic;
  color: #02010C
}

.terms-box-tjvk hr {
  border: none;
  border-top: 2px solid #f17b002e;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 2px
}

@media (max-width: 1024px) {
  .terms-box-tjvk {
    padding: 80px 24px
  }
}

@media (max-width: 768px) {
  .terms-box-tjvk {
    padding: 40px 24px
  }

  .terms-box-tjvk h1 {
    font-size: 30px;
    margin-bottom: 24px
  }

  .terms-box-tjvk h2 {
    font-size: 23px;
    margin-top: 40px;
    margin-bottom: 12px
  }

  .terms-box-tjvk h3 {
    font-size: 19px
  }
}

@media (max-width: 640px) {
  .terms-box-tjvk {
    padding: 40px 12px
  }

  .terms-box-tjvk h1 {
    font-size: 23px
  }

  .terms-box-tjvk h2 {
    font-size: 19px
  }

  .terms-box-tjvk h3 {
    font-size: 16px
  }
}

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

.entrypage .ep-narrow {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px
}

.entrypage .ep-accentline {
  display: block;
  width: 40px;
  height: 3px;
  background: #F17B00;
  border-radius: 2px;
  margin-bottom: 12px
}

.entrypage .titlesec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(158deg, #59a8ea12 0%, #fff0 55%), linear-gradient(340deg, #f17b000f 0%, #fff0 60%);
  position: relative;
  overflow: hidden
}

.entrypage .titlesec .ep-narrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px
}

.entrypage .titlesec-left {
  flex: 1 1 55%;
  min-width: 0
}

.entrypage .titlesec-right {
  flex: 0 0 38%;
  max-width: 38%;
  position: relative
}

.entrypage .titlesec-dots {
  position: absolute;
  top: -24px;
  right: -12px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0
}

.entrypage .titlesec-dots svg {
  width: 100%;
  height: 100%;
  opacity: .18
}

.entrypage .titlesec-imgwrap {
  position: relative;
  z-index: 1;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 1px 8px 48px -1px #02010c24
}

.entrypage .titlesec-imgwrap img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  filter: blur(0px);
  transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.entrypage .titlesec-label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #F17B00;
  margin-bottom: 12px;
  display: block
}

.entrypage .titlesec-h1 {
  font-size: 42px;
  line-height: 1.1;
  color: #02010C;
  margin-bottom: 24px;
  font-weight: 800
}

.entrypage .titlesec-h1 .grad-word {
  background: linear-gradient(112deg, #F17B00 0%, #59A8EA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.entrypage .titlesec-desc {
  font-size: 19px;
  line-height: 1.55;
  color: #02010C;
  max-width: 480px;
  margin-bottom: 24px
}

.entrypage .titlesec-badge {
  display: inline-block;
  background: #59a8ea1f;
  color: #02010C;
  font-size: 16px;
  font-weight: 600;
  border-radius: 2px;
  padding: 6px 12px;
  border: 1px solid #59a8ea47
}

.entrypage .titlesec-diag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0
}

.entrypage .titlesec-diag svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .06
}

@keyframes blursharp {
  from {
    filter: blur(8px);
    opacity: 0
  }

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

.entrypage .titlesec-imgwrap img {
  animation: blursharp .28s cubic-bezier(0.0, 0, 0.2, 1) both
}

.entrypage .approachsec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #02010C
}

.entrypage .approachsec .ep-narrow {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start
}

.entrypage .approach-col-head {
  flex: 0 0 300px;
  max-width: 300px
}

.entrypage .approach-col-head .ep-accentline {
  background: #59A8EA
}

.entrypage .approach-h2 {
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px
}

.entrypage .approach-sub {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffa6;
  text-align: left
}

.entrypage .approach-col-items {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.entrypage .approach-item {
  background: #59a8ea12;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid #59a8ea26;
  transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 6px #59a8ea0f
}

.entrypage .approach-item:hover {
  background: #59a8ea21;
  box-shadow: 1px 5px 22px -1px #02010c17
}

.entrypage .approach-item-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #F17B00 0%, #59A8EA 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px
}

.entrypage .approach-item-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.entrypage .approach-item-h {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px
}

.entrypage .approach-item-p {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffff9e
}

.entrypage .approach-imgstrip {
  margin-top: 40px;
  border-radius: 22px;
  overflow: hidden;
  position: relative
}

.entrypage .approach-imgstrip img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center
}

.entrypage .approach-imgstrip-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(0deg, #02010cd1 0%, #02010c00 100%)
}

.entrypage .approach-imgstrip-quote {
  font-size: 19px;
  line-height: 1.55;
  color: #fff;
  font-weight: 600
}

.entrypage .teamsec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(170deg, #f17b000d 0%, #fff0 50%), linear-gradient(10deg, #59a8ea0f 0%, #fff0 60%);
  position: relative
}

.entrypage .teamsec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start
}

.entrypage .teamsec-accentcol {
  grid-column: 1;
  background: linear-gradient(160deg, #F17B00 0%, #59A8EA 100%);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 1px 5px 22px -1px #f17b0017;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: stretch
}

.entrypage .teamsec-accentcol-label {
  font-size: 16px;
  font-weight: 700;
  color: #fffc;
  text-transform: uppercase;
  letter-spacing: .1em
}

.entrypage .teamsec-accentcol-h {
  font-size: 23px;
  line-height: 1.1;
  color: #fff;
  font-weight: 800
}

.entrypage .teamsec-accentcol-p {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffd9
}

.entrypage .teamsec-portrait {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.entrypage .teamsec-portrait-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 2px;
  box-shadow: 1px 5px 22px -1px #02010c17
}

.entrypage .teamsec-portrait-name {
  font-size: 16px;
  font-weight: 700;
  color: #02010C
}

.entrypage .teamsec-portrait-role {
  font-size: 16px;
  color: #F17B00;
  font-weight: 600
}

.entrypage .teamsec-textcols {
  grid-column: 3 / 5;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.entrypage .teamsec-h2 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: #02010C;
  text-align: center;
  margin-bottom: 6px
}

.entrypage .teamsec-lead {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C
}

.entrypage .teamsec-highlight {
  background: #59a8ea1f;
  border-radius: 2px;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  font-weight: 600
}

.entrypage .teamsec-listgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

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

.entrypage .teamsec-listitem-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #f17b001a;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center
}

.entrypage .teamsec-listitem-icon svg {
  width: 18px;
  height: 18px;
  stroke: #F17B00;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.entrypage .teamsec-listitem-text {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C
}

.entrypage .expsec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #02010C;
  position: relative;
  overflow: hidden
}

.entrypage .expsec-blueprint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.entrypage .expsec-blueprint svg {
  width: 100%;
  height: 100%;
  opacity: .04
}

.entrypage .expsec .ep-narrow {
  position: relative;
  z-index: 1
}

.entrypage .expsec-h2 {
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px
}

.entrypage .expsec-cards {
  display: flex;
  flex-direction: row;
  gap: 24px
}

.entrypage .expcard {
  flex: 1 1 0;
  min-width: 0;
  background: #ffffff0a;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid #ffffff17;
  box-shadow: inset 0 3px 6px #59a8ea0d;
  transition: background .18s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.entrypage .expcard:hover {
  background: #59a8ea17;
  transform: translateY(-4px) scale(1.01);
  box-shadow: 1px 8px 48px -1px #02010c24
}

.entrypage .expcard-tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #F17B00;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 12px
}

.entrypage .expcard-quote {
  font-size: 19px;
  line-height: 1.55;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px
}

.entrypage .expcard-body {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffa6
}

.entrypage .expcard-person {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.entrypage .expcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  background: linear-gradient(135deg, #f17b004d 0%, #59a8ea4d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.entrypage .expcard-avatar svg {
  width: 24px;
  height: 24px;
  stroke: #ffffffb3;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.entrypage .expcard-pname {
  font-size: 16px;
  font-weight: 700;
  color: #fff
}

.entrypage .expcard-pdesc {
  font-size: 16px;
  color: #ffffff80
}

.entrypage .expsec-img {
  margin-top: 40px;
  border-radius: 22px;
  overflow: hidden;
  position: relative
}

.entrypage .expsec-img img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center
}

.entrypage .numssec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
  position: relative
}

.entrypage .numssec-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #F17B00 0%, #59A8EA 100%);
  border-radius: 22px;
  margin: 0 auto 40px
}

.entrypage .numssec-h2 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: #02010C;
  text-align: center;
  margin-bottom: 6px
}

.entrypage .numssec-sub {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px
}

.entrypage .numssec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px
}

.entrypage .numcard {
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  box-shadow: 1px 2px 6px -1px #02010c0f;
  transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(170deg, #59a8ea12 0%, #f17b000a 100%);
  border: 1px solid #59a8ea26
}

.entrypage .numcard:hover {
  box-shadow: 1px 5px 22px -1px #f17b0017;
  transform: translateY(-3px)
}

.entrypage .numcard-val {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  color: #F17B00;
  display: block;
  margin-bottom: 6px
}

.entrypage .numcard-label {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  font-weight: 600
}

.entrypage .numssec-bottom {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch
}

.entrypage .numssec-imgcol {
  flex: 0 0 38%;
  max-width: 38%;
  border-radius: 22px;
  overflow: hidden
}

.entrypage .numssec-imgcol img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 220px
}

.entrypage .numssec-textcol {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center
}

.entrypage .numssec-factlist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

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

.entrypage .numssec-fact-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #F17B00;
  flex-shrink: 0;
  margin-top: 6px
}

.entrypage .numssec-fact-text {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C
}

.entrypage .numssec-closetxt {
  font-size: 19px;
  line-height: 1.55;
  color: #02010C;
  font-weight: 600;
  background: #f17b0014;
  border-radius: 2px;
  padding: 12px 24px
}

@media (max-width: 1024px) {
  .entrypage .titlesec-h1 {
    font-size: 30px
  }

  .entrypage .teamsec-grid {
    grid-template-columns: 1fr 1fr
  }

  .entrypage .teamsec-accentcol {
    grid-column: 1
  }

  .entrypage .teamsec-portrait {
    grid-column: 2
  }

  .entrypage .teamsec-textcols {
    grid-column: 1 / 3
  }

  .entrypage .numssec-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .entrypage .approach-col-items {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .entrypage .titlesec .ep-narrow {
    flex-direction: column
  }

  .entrypage .titlesec-right {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%
  }

  .entrypage .approachsec .ep-narrow {
    flex-direction: column
  }

  .entrypage .approach-col-head {
    flex: 0 0 auto;
    max-width: 100%
  }

  .entrypage .teamsec-grid {
    grid-template-columns: 1fr 1fr
  }

  .entrypage .teamsec-accentcol {
    grid-column: 1 / 3
  }

  .entrypage .teamsec-portrait {
    grid-column: 1
  }

  .entrypage .teamsec-textcols {
    grid-column: 1 / 3
  }

  .entrypage .expsec-cards {
    flex-direction: column
  }

  .entrypage .numssec-bottom {
    flex-direction: column
  }

  .entrypage .numssec-imgcol {
    flex: 0 0 auto;
    max-width: 100%
  }

  .entrypage .numssec-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 640px) {
  .entrypage .titlesec {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .entrypage .approachsec {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .entrypage .teamsec {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .entrypage .expsec {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .entrypage .numssec {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .entrypage .titlesec-h1 {
    font-size: 23px
  }

  .entrypage .teamsec-grid {
    grid-template-columns: 1fr
  }

  .entrypage .teamsec-accentcol {
    grid-column: 1
  }

  .entrypage .teamsec-portrait {
    grid-column: 1
  }

  .entrypage .teamsec-textcols {
    grid-column: 1
  }

  .entrypage .numssec-grid {
    grid-template-columns: 1fr 1fr
  }

  .entrypage .teamsec-listgrid {
    grid-template-columns: 1fr
  }

  .entrypage .numssec-factlist {
    grid-template-columns: 1fr
  }

  .entrypage .approach-col-items {
    grid-template-columns: 1fr
  }

  .entrypage .numcard-val {
    font-size: 30px
  }
}

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

.aboutus .au-maxw {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px
}

.aboutus .au-titleband {
  background: #02010C;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative
}

.aboutus .au-titleband-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px
}

.aboutus .au-titleband-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1
}

.aboutus .au-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 100%;
  background: linear-gradient(118deg, #f17b0012 0%, #59a8ea0a 100%);
  border-radius: 2px;
  pointer-events: none
}

.aboutus .au-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.55;
  color: #F17B00;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600
}

.aboutus .au-h1 {
  font-size: 42px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 800
}

.aboutus .au-desc {
  font-size: 19px;
  line-height: 1.55;
  color: #ffffffb8;
  max-width: 520px
}

.aboutus .au-titleband-img {
  flex: 0 0 340px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  min-height: 220px
}

.aboutus .au-titleband-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.82);
  transition: filter .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutus .au-titleband-img img:hover {
  filter: brightness(1)
}

.aboutus .au-titleband-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, #02010c9e 0%, #02010c00 100%);
  pointer-events: none
}

.aboutus .au-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 24px
}

.aboutus .au-divider-sym {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center
}

.aboutus .au-divider-line {
  flex: 1 1 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f17b002e, transparent)
}

.aboutus .au-story {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff
}

.aboutus .au-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.aboutus .au-story-left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.aboutus .au-accent-line {
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #F17B00 0%, #59A8EA 100%);
  border-radius: 2px;
  margin-bottom: 12px
}

.aboutus .au-h2 {
  font-size: 30px;
  line-height: 1.1;
  color: #02010C;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px
}

.aboutus .au-h3 {
  font-size: 23px;
  line-height: 1.1;
  color: #02010C;
  font-weight: 700;
  margin-bottom: 6px
}

.aboutus .au-para {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C
}

.aboutus .au-para strong {
  font-weight: 700
}

.aboutus .au-highlight {
  background: linear-gradient(118deg, #f17b001a 0%, #59a8ea12 100%);
  border-radius: 2px;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  font-weight: 600
}

.aboutus .au-story-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.aboutus .au-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 1px 5px 22px -1px #02010c17;
  position: relative
}

.aboutus .au-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.88);
  transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutus .au-img-wrap img:hover {
  filter: brightness(1.04)
}

.aboutus .au-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.aboutus .au-check-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.aboutus .au-check-icon {
  flex-shrink: 0;
  margin-top: 2px
}

.aboutus .au-check-text {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C
}

.aboutus .au-divider2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 24px
}

.aboutus .au-divider2-line {
  flex: 1 1 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #59a8ea38, transparent)
}

.aboutus .au-divider2-sym {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center
}

.aboutus .au-approach {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(160deg, #59a8ea0f 0%, #f17b000a 100%);
  position: relative
}

.aboutus .au-approach-border {
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #f17b002e 0%, #59a8ea1f 100%);
  pointer-events: none
}

.aboutus .au-approach-head {
  text-align: center;
  margin-bottom: 40px
}

.aboutus .au-approach-accent {
  display: inline-block;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #59A8EA 0%, #F17B00 100%);
  border-radius: 2px;
  margin-bottom: 12px
}

.aboutus .au-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px
}

.aboutus .au-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 1px 2px 6px -1px #02010c0f;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutus .au-card:hover {
  box-shadow: 1px 8px 48px -1px #02010c24
}

.aboutus .au-card-num {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
  color: #f17b0021;
  position: absolute;
  top: 12px;
  right: 24px;
  pointer-events: none;
  user-select: none
}

.aboutus .au-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: linear-gradient(118deg, #f17b001f 0%, #59a8ea1a 100%);
  display: flex;
  align-items: center;
  justify-content: center
}

.aboutus .au-card-h {
  font-size: 19px;
  line-height: 1.1;
  font-weight: 700;
  color: #02010C
}

.aboutus .au-card-p {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C
}

.aboutus .au-divider3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px
}

.aboutus .au-divider3-line {
  flex: 1 1 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #02010c1a, transparent)
}

.aboutus .au-divider3-sym {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center
}

.aboutus .au-team {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #02010C;
  position: relative
}

.aboutus .au-team-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0
}

.aboutus .au-team-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: .18;
  filter: brightness(0.6)
}

.aboutus .au-team-inner {
  position: relative;
  z-index: 1
}

.aboutus .au-team-head {
  text-align: center;
  margin-bottom: 40px
}

.aboutus .au-team-accent {
  display: inline-block;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #F17B00 0%, #59A8EA 100%);
  border-radius: 2px;
  margin-bottom: 12px
}

.aboutus .au-h2-light {
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px
}

.aboutus .au-team-sub {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffff9e;
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto
}

.aboutus .au-team-layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start
}

.aboutus .au-portrait-col {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px
}

.aboutus .au-portrait-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 1px 5px 22px -1px #f17b0017;
  border: 3px solid #f17b0047
}

.aboutus .au-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: brightness(0.9);
  transition: filter .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutus .au-portrait-wrap img:hover {
  filter: brightness(1.06)
}

.aboutus .au-portrait-name {
  font-size: 19px;
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  text-align: center
}

.aboutus .au-portrait-role {
  font-size: 16px;
  line-height: 1.55;
  color: #F17B00;
  text-align: center
}

.aboutus .au-team-bio {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.aboutus .au-bio-para {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffd1
}

.aboutus .au-bio-para strong {
  color: #fff;
  font-weight: 700
}

.aboutus .au-bio-highlight {
  background: linear-gradient(118deg, #f17b0024 0%, #59a8ea1a 100%);
  border-radius: 2px;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffe0;
  font-weight: 600
}

.aboutus .au-twocol-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.aboutus .au-list-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px
}

.aboutus .au-list-dot {
  flex-shrink: 0;
  margin-top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F17B00
}

.aboutus .au-list-text {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffc7
}

.aboutus .au-reveal {
  clip-path: inset(0 100% 0 0);
  animation: auWipe .6s cubic-bezier(0.0, 0, 0.2, 1) forwards
}

@keyframes auWipe {
  to {
    clip-path: inset(0 0% 0 0)
  }
}

.aboutus .au-card-face {
  position: relative
}

.aboutus .au-card-reveal {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, #f17b00f5 0%, #59a8eaf5 100%);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none
}

.aboutus .au-card-face:hover .au-card-reveal {
  opacity: 1;
  pointer-events: auto
}

.aboutus .au-card-reveal-text {
  font-size: 16px;
  line-height: 1.55;
  color: #fff;
  font-weight: 600;
  text-align: center
}

.aboutus .au-link {
  color: #F17B00;
  text-decoration: none;
  letter-spacing: 0;
  transition: letter-spacing .22s cubic-bezier(0.4, 0, 0.2, 1), color .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.aboutus .au-link:hover {
  letter-spacing: .06em;
  color: #59A8EA
}

@media (max-width: 1024px) {
  .aboutus .au-story-grid {
    grid-template-columns: 1fr
  }

  .aboutus .au-cards {
    grid-template-columns: 1fr 1fr
  }

  .aboutus .au-titleband-img {
    flex: 0 0 260px
  }
}

@media (max-width: 768px) {
  .aboutus .au-titleband-inner {
    flex-direction: column
  }

  .aboutus .au-titleband-img {
    flex: 0 0 200px;
    min-height: 180px
  }

  .aboutus .au-cards {
    grid-template-columns: 1fr
  }

  .aboutus .au-team-layout {
    flex-direction: column;
    align-items: center
  }

  .aboutus .au-twocol-list {
    grid-template-columns: 1fr
  }

  .aboutus .au-h1 {
    font-size: 30px
  }
}

@media (max-width: 640px) {
  .aboutus .au-story {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .aboutus .au-approach {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .aboutus .au-team {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .aboutus .au-h1 {
    font-size: 23px
  }

  .aboutus .au-h2 {
    font-size: 23px
  }

  .aboutus .au-h2-light {
    font-size: 23px
  }
}

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

.ctus .pg-bound {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px
}

.ctus .reach-wrap {
  padding: 80px 0;
  background: #fff;
  position: relative
}

.ctus .reach-wrap::after {
  content: '';
  display: block;
  height: 2px;
  background: repeating-linear-gradient(90deg, #02010C 0px, #02010C 6px, transparent 6px, transparent 12px, #02010C 12px, #02010C 24px, transparent 24px, transparent 36px);
  opacity: .12;
  margin-top: 80px
}

.ctus .reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.ctus .reach-left {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.ctus .reach-tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #F17B00;
  margin-bottom: 12px
}

.ctus .reach-head {
  font-size: 42px;
  line-height: 1.1;
  color: #02010C;
  margin: 0 0 24px;
  text-align: left
}

.ctus .reach-head .line-dec {
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #F17B00 0%, #59A8EA 100%);
  margin-bottom: 12px;
  border-radius: 2px
}

.ctus .reach-desc {
  font-size: 19px;
  line-height: 1.55;
  color: #02010C;
  opacity: .75;
  margin: 0
}

.ctus .contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ctus .ccard {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 1px 5px 22px -1px #02010c17;
  transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .ccard:hover {
  box-shadow: 1px 8px 48px -1px #02010c24;
  transform: translateY(-2px)
}

.ctus .ccard-icon {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ctus .ccard-icon.orange {
  background: linear-gradient(135deg, #f17b0026 0%, #f17b000d 100%)
}

.ctus .ccard-icon.blue {
  background: linear-gradient(135deg, #59a8ea26 0%, #59a8ea0d 100%)
}

.ctus .ccard-icon svg {
  width: 22px;
  height: 22px
}

.ctus .ccard-body {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ctus .ccard-label {
  font-size: 16px;
  font-weight: 700;
  color: #02010C;
  opacity: .5;
  text-transform: uppercase;
  letter-spacing: .08em
}

.ctus .ccard-val {
  font-size: 19px;
  line-height: 1.1;
  color: #02010C;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s cubic-bezier(0.4, 0, 0.2, 1), letter-spacing .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .ccard-val:hover {
  color: #F17B00;
  letter-spacing: .03em
}

.ctus .addr-text {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  opacity: .8
}

.ctus .reach-right {
  position: relative
}

.ctus .form-shell {
  background: linear-gradient(160deg, #59a8ea0f 0%, #f17b000a 100%), linear-gradient(200deg, #02010c05 0%, transparent 60%);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 1px 8px 48px -1px #02010c17 inset 0 2px 6px #02010c08
}

.ctus .form-head {
  font-size: 23px;
  line-height: 1.1;
  color: #02010C;
  margin: 0 0 24px;
  text-align: center
}

.ctus .form-head .line-dec {
  display: block;
  width: 30px;
  height: 2px;
  background: #F17B00;
  margin: 0 auto 10px;
  border-radius: 2px
}

.ctus .fgroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px
}

.ctus .flabel {
  font-size: 16px;
  font-weight: 700;
  color: #02010C;
  opacity: .8
}

.ctus .finput {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  background: #fff;
  border: 2px solid #02010c1f;
  border-radius: 2px;
  outline: none;
  box-sizing: border-box;
  box-shadow: inset 0 2px 4px #02010c0a;
  transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .finput::placeholder {
  color: #02010c59
}

.ctus .finput:focus {
  border-color: #59A8EA;
  box-shadow: inset 0 2px 4px #02010c0a 0 0 0 3px #59a8ea26
}

.ctus .fselect {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  background: #fff;
  border: 2px solid #02010c1f;
  border-radius: 2px;
  outline: none;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2302010C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  box-shadow: inset 0 2px 4px #02010c0a;
  transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .fselect:focus {
  border-color: #59A8EA;
  box-shadow: inset 0 2px 4px #02010c0a 0 0 0 3px #59a8ea26
}

.ctus .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: #59a8ea0f;
  border-radius: 2px
}

.ctus .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #F17B00;
  cursor: pointer
}

.ctus .privacy-text {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  opacity: .75
}

.ctus .privacy-text a {
  color: #F17B00;
  text-decoration: underline;
  transition: letter-spacing .2s cubic-bezier(0.4, 0, 0.2, 1), color .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .privacy-text a:hover {
  color: #02010C;
  letter-spacing: .04em
}

.ctus .submit-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #F17B00 0%, #e06a00 50%, #59A8EA 100%);
  background-size: 200% 100%;
  background-position: left center;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 1px 5px 22px -1px #f17b0033;
  transition: background-position .25s cubic-bezier(0.0, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .submit-btn:hover {
  background-position: right center;
  box-shadow: 1px 8px 48px -1px #f17b004d
}

.ctus .submit-btn:focus {
  outline: 3px solid #59A8EA;
  outline-offset: 2px
}

.ctus .submit-btn:active {
  transform: translateY(1px)
}

.ctus .img-block {
  padding: 80px 0;
  background: #02010c05;
  position: relative;
  overflow: hidden
}

.ctus .img-block-dec {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #59a8ea14 0%, #f17b000f 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%, 0% 30%);
  pointer-events: none;
  border-radius: 0
}

.ctus .img-block-dec2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #f17b000f 0%, #59a8ea0a 100%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  pointer-events: none
}

.ctus .img-feature-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center
}

.ctus .img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 1px 8px 48px -1px #02010c24
}

.ctus .img-wrap img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 360px;
  object-fit: cover;
  filter: sepia(0.2) saturate(1.1) brightness(0.95)
}

.ctus .img-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, #02010c73 100%);
  pointer-events: none;
  border-radius: 22px
}

.ctus .img-edge-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F17B00 0%, #59A8EA 100%)
}

.ctus .feature-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ctus .feat-head {
  font-size: 30px;
  line-height: 1.1;
  color: #02010C;
  margin: 0;
  text-align: left
}

.ctus .feat-head .line-dec {
  display: block;
  width: 36px;
  height: 2px;
  background: #59A8EA;
  margin-bottom: 10px;
  border-radius: 2px
}

.ctus .accent-sent {
  font-size: 19px;
  line-height: 1.55;
  color: #02010C;
  background: linear-gradient(90deg, #59a8ea1f 0%, #f17b0014 100%);
  padding: 12px 16px;
  border-radius: 2px;
  margin: 0
}

.ctus .compare-table {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ctus .compare-head-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 12px;
  padding: 6px 12px
}

.ctus .compare-col-label {
  font-size: 16px;
  font-weight: 700;
  color: #02010C;
  opacity: .5;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center
}

.ctus .compare-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 12px;
  padding: 12px;
  border-radius: 2px;
  background: #fff;
  align-items: center;
  box-shadow: 1px 2px 6px -1px #02010c0f;
  transition: box-shadow .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .compare-row:hover {
  box-shadow: 1px 5px 22px -1px #02010c17
}

.ctus .compare-feat {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C
}

.ctus .compare-cell {
  display: flex;
  align-items: center;
  justify-content: center
}

.ctus .check-icon {
  width: 22px;
  height: 22px
}

.ctus .icon-cycle {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  padding: 24px 0 6px
}

.ctus .cycle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.ctus .cycle-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.ctus .cycle-icon-wrap svg.outline-anim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.ctus .cycle-icon-wrap svg.outline-anim circle {
  fill: none;
  stroke: #F17B00;
  stroke-width: 2;
  stroke-dasharray: 130;
  stroke-dashoffset: 130;
  r: 22;
  cx: 24;
  cy: 24
}

.ctus .cycle-item:nth-child(1) .cycle-icon-wrap svg.outline-anim circle {
  animation: traceOutline .6s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards infinite
}

.ctus .cycle-item:nth-child(2) .cycle-icon-wrap svg.outline-anim circle {
  animation: traceOutline .6s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards infinite
}

.ctus .cycle-item:nth-child(3) .cycle-icon-wrap svg.outline-anim circle {
  animation: traceOutline .6s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards infinite
}

.ctus .cycle-item:nth-child(4) .cycle-icon-wrap svg.outline-anim circle {
  animation: traceOutline .6s cubic-bezier(0.4, 0, 0.2, 1) 3s forwards infinite
}

@keyframes traceOutline {
  0% {
    stroke-dashoffset: 130;
    opacity: 1
  }

  70% {
    stroke-dashoffset: 0;
    opacity: 1
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0
  }
}

.ctus .cycle-icon-inner {
  width: 48px;
  height: 48px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #59a8ea1a 0%, #f17b0014 100%)
}

.ctus .cycle-icon-inner svg {
  width: 22px;
  height: 22px;
  stroke: #02010C
}

.ctus .cycle-label {
  font-size: 16px;
  color: #02010C;
  opacity: .65;
  text-align: center
}

@media (max-width: 1024px) {
  .ctus .reach-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .ctus .img-feature-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .ctus .img-wrap img {
    height: 260px
  }
}

@media (max-width: 768px) {
  .ctus .reach-head {
    font-size: 30px
  }

  .ctus .form-shell {
    padding: 24px
  }

  .ctus .icon-cycle {
    gap: 12px
  }

  .ctus .compare-head-row,
  .ctus .compare-row {
    grid-template-columns: 1fr 60px 60px;
    gap: 6px
  }
}

@media (max-width: 640px) {
  .ctus .reach-wrap {
    padding: 40px 0
  }

  .ctus .img-block {
    padding: 40px 0
  }

  .ctus .reach-head {
    font-size: 23px
  }

  .ctus .feat-head {
    font-size: 23px
  }

  .ctus .icon-cycle {
    flex-wrap: wrap;
    justify-content: center
  }
}

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

.uprog .prog-split {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 40px;
  align-items: start
}

.uprog .prog-left {
  position: sticky;
  top: 24px
}

.uprog .prog-accent-line {
  width: 48px;
  height: 3px;
  background: #F17B00;
  border-radius: 2px;
  margin-bottom: 24px
}

.uprog .prog-label {
  font-size: 16px;
  font-weight: 700;
  color: #F17B00;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
  display: block
}

.uprog .prog-h1 {
  font-size: 42px;
  line-height: 1.1;
  color: #02010C;
  margin-bottom: 24px
}

.uprog .prog-h1 span {
  background: linear-gradient(118deg, #F17B00 30%, #59A8EA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.uprog .prog-lead {
  font-size: 19px;
  line-height: 1.55;
  color: #02010C;
  opacity: .75;
  margin-bottom: 40px
}

.uprog .prog-stat-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 40px
}

.uprog .prog-stat {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.uprog .prog-stat-num {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  color: #02010C
}

.uprog .prog-stat-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  opacity: .55
}

.uprog .prog-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 1px 8px 48px -1px #02010c24;
  position: relative
}

.uprog .prog-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.uprog .prog-img-wrap:hover img {
  filter: brightness(1.05)
}

.uprog .prog-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #f17b002e 0%, #59a8ea1a 100%);
  pointer-events: none
}

.uprog .prog-dots {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: repeat(4, 8px);
  grid-template-rows: repeat(4, 8px);
  gap: 6px;
  pointer-events: none
}

.uprog .prog-dots span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #ffffff8c;
  display: block
}

.uprog .prog-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px
}

.uprog .prog-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 1px 5px 22px -1px #02010c17;
  padding: 40px;
  position: relative;
  transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.uprog .prog-card:hover {
  box-shadow: 1px 8px 48px -1px #02010c24
}

.uprog .prog-card.featured {
  background: linear-gradient(148deg, #f17b000f 0%, #59a8ea12 100%);
  border: 1.5px solid #f17b002e
}

.uprog .prog-card-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px
}

.uprog .prog-badge {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #F17B00;
  border-radius: 2px;
  padding: 6px 12px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.uprog .prog-badge.blue {
  background: #59A8EA
}

.uprog .prog-badge.dark {
  background: #02010C
}

.uprog .prog-date-tag {
  font-size: 16px;
  color: #02010C;
  opacity: .55;
  line-height: 1.55
}

.uprog .prog-card-h {
  font-size: 23px;
  line-height: 1.1;
  color: #02010C;
  margin-bottom: 12px;
  text-align: center
}

.uprog .prog-card-h::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #F17B00;
  border-radius: 2px;
  margin: 0 auto 12px
}

.uprog .prog-card-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  opacity: .72;
  margin-bottom: 24px
}

.uprog .prog-card-desc strong {
  font-weight: 700;
  opacity: 1;
  color: #02010C
}

.uprog .prog-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px
}

.uprog .prog-hi-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #02010C;
  line-height: 1.55
}

.uprog .prog-hi-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #F17B00;
  flex-shrink: 0
}

.uprog .prog-hi-dot.blue {
  background: #59A8EA
}

.uprog .prog-sentence-accent {
  background: #59a8ea1f;
  border-radius: 2px;
  padding: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  margin-bottom: 24px
}

.uprog .prog-limit-bar-wrap {
  margin-bottom: 24px
}

.uprog .prog-limit-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 16px;
  color: #02010C;
  margin-bottom: 6px
}

.uprog .prog-limit-label span:last-child {
  opacity: .55
}

.uprog .prog-limit-track {
  height: 10px;
  background: #02010c14;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px #02010c0f
}

.uprog .prog-limit-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #F17B00 0%, #59A8EA 100%);
  transition: width .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.uprog .prog-btn {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 2px;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(118deg, #F17B00 0%, #59A8EA 100%);
  background-size: 200% 100%;
  background-position: right center;
  border: none;
  cursor: pointer;
  transition: background-position .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 1px 5px 22px -1px #f17b0017
}

.uprog .prog-btn:hover {
  background-position: left center;
  box-shadow: 1px 8px 48px -1px #f17b0024
}

.uprog .prog-btn:focus {
  outline: 3px solid #59A8EA;
  outline-offset: 2px
}

.uprog .prog-btn.outline {
  background: transparent;
  color: #F17B00;
  border: 2px solid #F17B00;
  box-shadow: none
}

.uprog .prog-btn.outline:hover {
  background: linear-gradient(118deg, #F17B00 0%, #59A8EA 100%);
  color: #fff;
  background-position: left center
}

.uprog .prog-mini-card {
  background: #02010C;
  border-radius: 22px;
  padding: 24px;
  color: #fff;
  margin-top: 24px
}

.uprog .prog-mini-card-h {
  font-size: 19px;
  font-weight: 700;
  color: #F17B00;
  margin-bottom: 12px;
  text-align: center
}

.uprog .prog-mini-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: space-between
}

.uprog .prog-mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.uprog .prog-mini-num {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff
}

.uprog .prog-mini-desc {
  font-size: 16px;
  color: #fff9;
  line-height: 1.55;
  text-align: center
}

.uprog .prog-card-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center
}

.uprog .prog-divider {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.uprog .prog-divider-long {
  flex: 2;
  height: 1.5px;
  background: #02010c1a;
  border-radius: 2px
}

.uprog .prog-divider-short {
  flex: 1;
  height: 1.5px;
  background: #f17b004d;
  border-radius: 2px
}

.uprog .prog-divider-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #F17B00;
  flex-shrink: 0
}

.uprog .prog-schedule {
  background: #02010c08;
  box-shadow: inset 0 3px 6px #02010c0a;
  padding: 80px 0;
  position: relative
}

.uprog .prog-schedule::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 8% 20%, #f17b000d 0%, transparent 40%), radial-gradient(circle at 92% 80%, #59a8ea0d 0%, transparent 40%);
  pointer-events: none
}

.uprog .prog-schedule-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.uprog .prog-geo-shape {
  position: absolute;
  border: 1.5px solid #f17b0014;
  border-radius: 2px
}

.uprog .prog-geo-shape.s1 {
  width: 40px;
  height: 40px;
  top: 12%;
  left: 5%;
  transform: rotate(18deg)
}

.uprog .prog-geo-shape.s2 {
  width: 22px;
  height: 22px;
  top: 60%;
  left: 8%;
  transform: rotate(-12deg)
}

.uprog .prog-geo-shape.s3 {
  width: 30px;
  height: 30px;
  top: 30%;
  right: 6%;
  transform: rotate(30deg)
}

.uprog .prog-geo-shape.s4 {
  width: 16px;
  height: 16px;
  bottom: 15%;
  right: 10%;
  transform: rotate(-22deg)
}

.uprog .prog-schedule-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative
}

.uprog .prog-schedule-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px
}

.uprog .prog-schedule-h {
  font-size: 30px;
  line-height: 1.1;
  color: #02010C;
  text-align: center
}

.uprog .prog-schedule-h::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #59A8EA;
  border-radius: 2px;
  margin: 0 auto 12px
}

.uprog .prog-schedule-sub {
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  opacity: .65
}

.uprog .prog-table-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 1px 5px 22px -1px #02010c17
}

.uprog .prog-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff
}

.uprog .prog-table thead tr {
  background: #02010C
}

.uprog .prog-table thead th {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  letter-spacing: .07em;
  text-transform: uppercase
}

.uprog .prog-table tbody tr {
  border-bottom: 1px solid #02010c12;
  transition: background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.uprog .prog-table tbody tr:hover {
  background: #59a8ea12
}

.uprog .prog-table tbody td {
  padding: 12px 24px;
  font-size: 16px;
  color: #02010C;
  line-height: 1.55;
  vertical-align: middle
}

.uprog .prog-table .tag-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 700;
  background: #f17b001f;
  color: #F17B00
}

.uprog .prog-table .tag-pill.teal {
  background: #59a8ea1f;
  color: #2a7ab5
}

.uprog .prog-table .tag-pill.dark {
  background: #02010c14;
  color: #02010C
}

.uprog .prog-avail-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #59A8EA;
  margin-right: 6px;
  vertical-align: middle
}

.uprog .prog-avail-dot.low {
  background: #F17B00
}

.uprog .prog-avail-dot.full {
  background: #02010c40
}

.uprog .prog-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: start
}

.uprog .prog-info-block {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 1px 2px 6px -1px #02010c0f
}

.uprog .prog-info-h {
  font-size: 23px;
  line-height: 1.1;
  color: #02010C;
  text-align: center;
  margin-bottom: 24px
}

.uprog .prog-info-h::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #F17B00;
  border-radius: 2px;
  margin: 0 auto 12px
}

.uprog .prog-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.uprog .prog-info-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: #02010C
}

.uprog .prog-info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #F17B00
}

.uprog .prog-contact-block {
  background: linear-gradient(148deg, #02010C 60%, #1a2a3a 100%);
  border-radius: 22px;
  padding: 40px;
  box-shadow: 1px 8px 48px -1px #02010c24;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.uprog .prog-contact-h {
  font-size: 23px;
  line-height: 1.1;
  color: #fff;
  text-align: center
}

.uprog .prog-contact-h::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #59A8EA;
  border-radius: 2px;
  margin: 0 auto 12px
}

.uprog .prog-contact-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #fffc;
  line-height: 1.55
}

.uprog .prog-contact-icon {
  width: 22px;
  height: 22px;
  color: #59A8EA;
  flex-shrink: 0
}

.uprog .prog-contact-link {
  color: #59A8EA;
  text-decoration: none;
  transition: letter-spacing .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.uprog .prog-contact-link:hover {
  letter-spacing: .04em
}

@keyframes colorReveal {
  from {
    color: #02010c00
  }

  to {
    color: #02010C
  }
}

.uprog .prog-h1 {
  animation: colorReveal .28s cubic-bezier(0.0, 0, 0.2, 1) both
}

@media (max-width: 1024px) {
  .uprog .prog-split {
    grid-template-columns: 1fr;
    padding: 40px 24px
  }

  .uprog .prog-left {
    position: static
  }

  .uprog .prog-right {
    padding-top: 0
  }

  .uprog .prog-schedule-top {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .uprog .prog-bottom-row {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .uprog .prog-h1 {
    font-size: 30px
  }

  .uprog .prog-card {
    padding: 24px
  }

  .uprog .prog-highlights {
    grid-template-columns: 1fr
  }

  .uprog .prog-stat-row {
    gap: 12px
  }

  .uprog .prog-mini-row {
    flex-direction: column;
    gap: 12px
  }

  .uprog .prog-table thead th,
  .uprog .prog-table tbody td {
    padding: 12px;
    font-size: 16px
  }
}

@media (max-width: 640px) {
  .uprog .prog-split {
    padding: 24px 12px
  }

  .uprog .prog-schedule {
    padding: 40px 0
  }

  .uprog .prog-schedule-inner {
    padding: 0 12px
  }

  .uprog .prog-card-actions {
    flex-direction: column
  }

  .uprog .prog-btn {
    width: 100%;
    text-align: center
  }

  .uprog .prog-table-wrap {
    overflow-x: auto
  }
}

.successPage {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: #fff
}

.successPage .successWrap {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px
}

.successPage .iconRing {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  background: linear-gradient(135deg, #59a8ea1f 0%, #f17b001a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 5px 22px -1px #02010c17;
  flex-shrink: 0
}

.successPage .iconRing svg {
  display: block
}

.successPage .msgBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center
}

.successPage .accentLine {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: #F17B00;
  margin-bottom: 6px
}

.successPage .msgBlock h1 {
  font-size: 42px;
  line-height: 1.1;
  color: #02010C;
  margin: 0
}

.successPage .msgBlock p {
  font-size: 19px;
  line-height: 1.55;
  color: #02010C;
  max-width: 520px;
  margin: 0
}

.successPage .msgBlock .highlight {
  display: inline;
  background: #59a8ea21;
  padding: 2px 6px;
  border-radius: 2px
}

.successPage .actionRow {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center
}

.successPage .btnPrimary {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 22px;
  font-size: 16px;
  line-height: 1.55;
  color: #fff;
  background: linear-gradient(160deg, #F17B00 0%, #59A8EA 100%);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 1px 5px 22px -1px #f17b0017;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), color .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.successPage .btnPrimary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(160deg, #59A8EA 0%, #F17B00 100%);
  opacity: 0;
  transition: opacity .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.successPage .btnPrimary:hover::after,
.successPage .btnPrimary:focus::after {
  opacity: 1
}

.successPage .btnPrimary:hover {
  box-shadow: 1px 8px 48px -1px #f17b0024
}

.successPage .btnPrimary span {
  position: relative;
  z-index: 1
}

.successPage .btnSecondary {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 22px;
  font-size: 16px;
  line-height: 1.55;
  color: #02010C;
  background: transparent;
  border: 2px solid #02010c26;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.successPage .btnSecondary:hover,
.successPage .btnSecondary:focus {
  border-color: #F17B00;
  background: #f17b000f
}

@media (max-width: 640px) {
  .successPage {
    padding: 40px 24px
  }

  .successPage .msgBlock h1 {
    font-size: 30px
  }

  .successPage .msgBlock p {
    font-size: 16px
  }

  .successPage .actionRow {
    flex-direction: column;
    align-items: center
  }
}