* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  font-family: 'Literata', Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden
}

body {
  margin: 0
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #5490f973
}

.top-bar {
  background: #5490F9;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.top-bar__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #fff;
  font-family: 'Literata', Georgia, serif
}

.top-bar__dot {
  width: 8px;
  height: 8px;
  border-radius: 44px;
  background: #FEF57D;
  flex-shrink: 0
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 16px
}

.top-bar__link {
  color: #fff;
  font-size: 16px;
  font-family: 'Literata', Georgia, serif;
  text-decoration: none;
  transition: color .1s ease-out
}

.top-bar__link:hover {
  color: #FEF57D
}

.brand-row {
  background: #fff;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #5490f91f;
  box-shadow: 0 4px 22px -1px #5490f917;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%
}

.brand-row__outer {
  background: #fff
}

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

.brand-row__img-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #5490f94d;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 1px 6px -1px #5490f90f;
  flex-shrink: 0
}

.brand-row__img-wrap img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block
}

.brand-row__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b2a4a;
  font-family: 'Literata', Georgia, serif;
  letter-spacing: -.02em
}

.brand-row__tagline {
  font-size: 16px;
  color: #5490f9d9;
  font-family: 'Literata', Georgia, serif;
  font-style: italic;
  line-height: 1.5
}

.nav-row {
  background: linear-gradient(90deg, #5490f90f 0%, #fef57d14 100%);
  border-top: 1px solid #5490f91a
}

.nav-row__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap
}

.nav-row__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  font-size: 16px;
  font-family: 'Literata', Georgia, serif;
  color: #1b2a4a;
  text-decoration: none;
  line-height: 1.2;
  position: relative;
  transition: color .12s ease-out, background-color .12s ease-out;
  border-radius: 0;
  white-space: nowrap;
  min-height: 44px
}

.nav-row__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #5490F9;
  border-radius: 6px 6px 0 0;
  transform: scaleX(0);
  transition: transform .1s ease-out
}

.nav-row__item:hover {
  color: #5490F9;
  background: #5490f90f
}

.nav-row__item:hover::after {
  transform: scaleX(1)
}

.nav-row__item--active {
  color: #5490F9;
  font-weight: 700
}

.nav-row__item--active::after {
  transform: scaleX(1)
}

.nav-row__arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0
}

.nav-row__arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
  border-radius: 6px
}

.nav-row__arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg)
}

.ft {
  background: #1b2a4a;
  padding: 32px 32px 0
}

.ft__body {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #5490f92e;
  align-items: start
}

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

.ft__col--center {
  align-items: center;
  text-align: center
}

.ft__lbl {
  font-size: 16px;
  font-weight: 700;
  color: #fef57de6;
  font-family: 'Literata', Georgia, serif;
  letter-spacing: .04em;
  text-transform: uppercase
}

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

.ft__links li {
  display: flex;
  align-items: center;
  gap: 8px
}

.ft__lnk {
  color: #ffffffbf;
  font-size: 16px;
  font-family: 'Literata', Georgia, serif;
  text-decoration: none;
  line-height: 1.5;
  transition: color .1s ease-out;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 4px 0
}

.ft__lnk:hover {
  color: #FEF57D
}

.ft__lnk-dot {
  width: 4px;
  height: 4px;
  border-radius: 44px;
  background: #5490f980;
  flex-shrink: 0
}

.ft__contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ft__contact-lbl {
  font-size: 16px;
  color: #ffffff73;
  font-family: 'Literata', Georgia, serif;
  font-style: italic
}

.ft__contact-val {
  color: #ffffffd9;
  font-size: 16px;
  font-family: 'Literata', Georgia, serif;
  text-decoration: none;
  transition: color .1s ease-out
}

.ft__contact-val:hover {
  color: #FEF57D
}

.ft__logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid #5490f966;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 22px -1px #5490f917;
  margin: 0 auto
}

.ft__logo-wrap img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block
}

.ft__brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: 'Literata', Georgia, serif;
  letter-spacing: -.01em
}

.ft__desc {
  font-size: 16px;
  color: #ffffff8c;
  font-family: 'Literata', Georgia, serif;
  font-style: italic;
  line-height: 1.75
}

.ft__base {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.ft__copy {
  font-size: 16px;
  color: #ffffff59;
  font-family: 'Literata', Georgia, serif
}

.ft__addr {
  font-size: 16px;
  color: #ffffff59;
  font-family: 'Literata', Georgia, serif;
  font-style: normal
}

.ck-card {
  display: none;
  position: fixed;
  top: 32px;
  left: 32px;
  z-index: 8000;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 48px -1px #5490f921;
  padding: 32px;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #5490f91f;
  transform: translateX(-110%);
  transition: transform .42s ease-out;
  overflow: hidden
}

.ck-card--in {
  transform: translateX(0)
}

.ck-card__choice {
  font-size: 18px;
  font-weight: 700;
  color: #1b2a4a;
  font-family: 'Literata', Georgia, serif;
  line-height: 1.2
}

.ck-card__note {
  font-size: 16px;
  color: #4a5568;
  font-family: 'Literata', Georgia, serif;
  line-height: 1.75
}

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

.ck-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 28px;
  font-size: 16px;
  font-family: 'Literata', Georgia, serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  min-height: 44px;
  transition: background-color .12s ease-out, color .12s ease-out
}

.ck-btn--yes {
  background: #5490F9;
  color: #fff
}

.ck-btn--yes:hover {
  background: #3a7af0;
  color: #fff
}

.ck-btn--no {
  background: transparent;
  color: #5490F9;
  border: 1.5px solid #5490f959
}

.ck-btn--no:hover {
  background: #5490f912;
  color: #3a7af0
}

@media (max-width: 1024px) {
  .top-bar {
    padding: 8px 16px;
    flex-wrap: wrap
  }

  .brand-row {
    padding: 16px;
    flex-wrap: wrap;
    gap: 16px
  }

  .nav-row__inner {
    padding: 0 16px
  }

  .ft {
    padding: 32px 16px 0
  }

  .ft__body {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .ft__col--center {
    grid-column: 1 / -1;
    order: -1
  }
}

@media (max-width: 640px) {
  .top-bar__contact {
    flex-wrap: wrap;
    gap: 8px
  }

  .brand-row__tagline {
    display: none
  }

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

  .ft__body {
    grid-template-columns: 1fr
  }

  .ft__col--center {
    grid-column: auto
  }

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

  .ck-card {
    left: 16px;
    right: 16px;
    width: auto;
    top: 16px
  }
}

.policy-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px;
  color: #2a2d35;
  line-height: 1.75;
  font-size: 18px
}

.policy-page h1 {
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: -.03em;
  margin-bottom: 32px;
  margin-top: 0;
  color: #1b1e27
}

.policy-page h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1b1e27
}

.policy-page h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -.015em;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1b1e27
}

.policy-page h4 {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -.01em;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #1b1e27;
  font-weight: 700
}

.policy-page h5 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -.005em;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #2a2d35;
  font-weight: 700
}

.policy-page h6 {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #3d4150;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em
}

.policy-page p {
  font-size: 18px;
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 16px;
  color: #2a2d35
}

.policy-page ul,
.policy-page ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px
}

.policy-page ul {
  list-style: none;
  padding-left: 0
}

.policy-page ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.75;
  color: #2a2d35
}

.policy-page ul li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 44px;
  background-color: #5490F9
}

.policy-page ol {
  list-style: none;
  counter-reset: ol-counter;
  padding-left: 0
}

.policy-page ol li {
  counter-increment: ol-counter;
  padding-left: 32px;
  position: relative;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.75;
  color: #2a2d35
}

.policy-page ol li::before {
  content: counter(ol-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  font-weight: 700;
  color: #5490F9;
  line-height: 1.75;
  min-width: 24px
}

.policy-page ul ul,
.policy-page ol ol,
.policy-page ul ol,
.policy-page ol ul {
  margin-top: 8px;
  margin-bottom: 8px
}

.policy-page a {
  color: #5490F9;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .12s ease-out, text-decoration-color .12s ease-out
}

.policy-page a:hover {
  color: #B21428;
  text-decoration-color: #B21428
}

.policy-page a:visited {
  color: #3a6ed4
}

.policy-page table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 6px -1px #5490f90f 0 4px 22px -1px #5490f917
}

.policy-page thead {
  background-color: #5490f914
}

.policy-page thead tr {
  border-bottom: 2px solid #5490f933
}

.policy-page th {
  padding: 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #1b1e27;
  letter-spacing: .03em;
  text-transform: uppercase
}

.policy-page tbody tr {
  border-bottom: 1px solid #5490f91a;
  transition: background-color .1s ease-out
}

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

.policy-page tbody tr:hover {
  background-color: #5490f90a
}

.policy-page td {
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #2a2d35;
  vertical-align: top
}

.policy-page hr {
  border: none;
  border-top: 1px solid #5490f92e;
  margin-top: 32px;
  margin-bottom: 32px
}

.policy-page div {
  font-size: 18px;
  line-height: 1.75
}

@media (max-width: 1024px) {
  .policy-page {
    padding: 32px;
    font-size: 18px
  }

  .policy-page h1 {
    font-size: 32px
  }

  .policy-page h2 {
    font-size: 24px
  }

  .policy-page h3 {
    font-size: 18px
  }

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

@media (max-width: 640px) {
  .policy-page {
    padding: 16px;
    font-size: 16px
  }

  .policy-page h1 {
    font-size: 32px;
    letter-spacing: -.02em
  }

  .policy-page h2 {
    font-size: 24px
  }

  .policy-page h3 {
    font-size: 18px
  }

  .policy-page h4,
  .policy-page h5,
  .policy-page h6 {
    font-size: 16px
  }

  .policy-page p,
  .policy-page ul li,
  .policy-page ol li,
  .policy-page div {
    font-size: 16px
  }

  .policy-page ul li,
  .policy-page ol li {
    padding-left: 24px
  }

  .policy-page ul,
  .policy-page ol {
    padding-left: 0
  }

  .policy-page th,
  .policy-page td {
    padding: 8px;
    font-size: 16px
  }
}

.hiw {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip
}

.hiw .div--mid {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0
}

.hiw .div--mid::before,
.hiw .div--mid::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #c8d8fd
}

.hiw .div--mid span {
  width: 32px;
  height: 4px;
  background: #5490F9;
  border-radius: 6px;
  display: block
}

.hiw .ttl {
  padding: 64px 32px;
  background: #fff;
  position: relative
}

.hiw .ttl__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, #5490f912 0%, transparent 60%);
  pointer-events: none
}

.hiw .ttl__bg-diag {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.hiw .ttl__bg-diag::after {
  content: '';
  position: absolute;
  top: -40px;
  right: 120px;
  width: 1px;
  height: 200%;
  background: #5490f921;
  transform: rotate(-22deg);
  transform-origin: top center
}

.hiw .ttl__mark {
  position: absolute;
  top: 16px;
  left: 32px;
  font-size: 72px;
  line-height: 1.2;
  color: #5490f914;
  font-weight: 900;
  user-select: none;
  pointer-events: none;
  letter-spacing: -4px
}

.hiw .ttl__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1
}

.hiw .ttl__label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #5490F9;
  margin-bottom: 16px
}

.hiw .ttl__h1 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px #1a2540;
  margin-bottom: 16px
}

.hiw .ttl__sub {
  font-size: 18px;
  line-height: 1.75;
  color: #2d3a52;
  margin-bottom: 32px
}

.hiw .ttl__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #5490F9;
  text-decoration: none;
  transition: color .1s ease-out
}

.hiw .ttl__link:hover {
  color: #B21428
}

.hiw .ttl__link-arr {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.hiw .ttl__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 22px -1px #5490f917;
  aspect-ratio: 4/3;
  position: relative
}

.hiw .ttl__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.hiw .ttl__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5490f92e 0%, #b2142814 100%);
  pointer-events: none
}

.hiw .proc {
  padding: 64px 32px;
  background: linear-gradient(160deg, #fef57d21 0%, #fff 55%);
  position: relative
}

.hiw .proc__bg-diag {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.hiw .proc__bg-diag::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background: linear-gradient(to top right, #5490f90d 0%, transparent 60%)
}

.hiw .proc__bg-diag::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 60%;
  width: 1px;
  height: 180%;
  background: #fef57d59;
  transform: rotate(15deg);
  transform-origin: top center
}

.hiw .proc__hd {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1
}

.hiw .proc__h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px #1a2540;
  margin-bottom: 8px
}

.hiw .proc__desc {
  font-size: 18px;
  line-height: 1.75;
  color: #2d3a52;
  max-width: 560px;
  margin: 0 auto
}

.hiw .proc__tracker {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 32px
}

.hiw .proc__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative
}

.hiw .proc__step-line {
  position: absolute;
  top: 22px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: #c8d8fd;
  z-index: 0
}

.hiw .proc__step:last-child .proc__step-line {
  display: none
}

.hiw .proc__num {
  width: 44px;
  height: 44px;
  border-radius: 44px;
  background: #5490F9;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  box-shadow: 0 4px 22px -1px #5490f921;
  transition: background .12s ease-out, box-shadow .12s ease-out
}

.hiw .proc__step:hover .proc__num {
  background: #B21428;
  box-shadow: 0 4px 22px -1px #b2142821
}

.hiw .proc__step-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a2540;
  margin-bottom: 8px;
  padding: 0 8px
}

.hiw .proc__step-txt {
  font-size: 16px;
  line-height: 1.5;
  color: #3d4f6e;
  padding: 0 8px
}

.hiw .proc__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1
}

.hiw .proc__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 6px -1px #5490f90f;
  transition: box-shadow .1s ease-out
}

.hiw .proc__card:hover {
  box-shadow: 0 10px 48px -1px #5490f921
}

.hiw .proc__card-num {
  font-size: 16px;
  font-weight: 700;
  color: #5490F9;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-variant: small-caps;
  margin-bottom: 8px
}

.hiw .proc__card-h {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a2540;
  margin-bottom: 8px
}

.hiw .proc__card-p {
  font-size: 16px;
  line-height: 1.75;
  color: #3d4f6e
}

.hiw .depth {
  padding: 64px 32px;
  background: #fff;
  position: relative
}

.hiw .depth__split {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.hiw .depth__split::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #5490f90a;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%)
}

.hiw .depth__split::after {
  content: '';
  position: absolute;
  top: 40px;
  right: 80px;
  width: 1px;
  height: 160%;
  background: #b214281a;
  transform: rotate(-18deg);
  transform-origin: top center
}

.hiw .depth__grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1
}

.hiw .depth__label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #B21428;
  margin-bottom: 16px
}

.hiw .depth__h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px #1a2540;
  margin-bottom: 16px
}

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

.hiw .depth__para {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start
}

.hiw .depth__para-n {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 28px;
  background: #5490f91f;
  color: #5490F9;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px
}

.hiw .depth__para-txt {
  font-size: 16px;
  line-height: 1.75;
  color: #2d3a52
}

.hiw .depth__aside {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.hiw .depth__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 22px -1px #5490f917;
  aspect-ratio: 1/1;
  position: relative
}

.hiw .depth__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.hiw .depth__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, #b214281a 0%, transparent 60%);
  pointer-events: none
}

.hiw .depth__stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.hiw .depth__stat {
  background: linear-gradient(135deg, #5490f914 0%, #fef57d1f 100%);
  border-radius: 10px;
  padding: 16px;
  text-align: center
}

.hiw .depth__stat-val {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  color: #5490F9;
  display: block;
  letter-spacing: -.03em
}

.hiw .depth__stat-lbl {
  font-size: 16px;
  line-height: 1.5;
  color: #3d4f6e
}

.hiw .faq {
  padding: 64px 32px;
  position: relative;
  background: #fff
}

.hiw .faq__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.hiw .faq__bg-circles {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  pointer-events: none
}

.hiw .faq__bg-circles circle {
  fill: none;
  stroke: #5490f912
}

.hiw .faq__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(175deg, #fef57d1a 0%, transparent 50%)
}

.hiw .faq__bg-diag {
  position: absolute;
  top: 20px;
  left: 35%;
  width: 1px;
  height: 200%;
  background: #5490f914;
  transform: rotate(12deg);
  transform-origin: top center
}

.hiw .faq__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 32px;
  align-items: start
}

.hiw .faq__label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #5490F9;
  margin-bottom: 16px
}

.hiw .faq__h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px #1a2540;
  margin-bottom: 16px
}

.hiw .faq__intro {
  font-size: 16px;
  line-height: 1.75;
  color: #3d4f6e
}

.hiw .faq__team {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px
}

.hiw .faq__person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.hiw .faq__avatar {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 22px -1px #5490f917
}

.hiw .faq__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.hiw .faq__person-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a2540;
  line-height: 1.5
}

.hiw .faq__person-role {
  font-size: 16px;
  color: #5490F9;
  line-height: 1.5
}

.hiw .faq__list {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.hiw .faq__q {
  width: 100%;
  background: none;
  border: none;
  border-radius: 10px;
  padding: 16px;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a2540;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #5490f90d;
  transition: background .1s ease-out, color .1s ease-out
}

.hiw .faq__q:hover {
  background: #5490f91a;
  color: #5490F9
}

.hiw .faq__q:focus {
  outline: 2px solid #5490F9;
  outline-offset: 2px
}

.hiw .faq__icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5490F9
}

.hiw .faq__a {
  font-size: 16px;
  line-height: 1.75;
  color: #3d4f6e;
  padding: 16px;
  display: none
}

.hiw .faq__item--open .hiw .faq__a {
  display: block
}

.hiw .faq__item details summary {
  list-style: none;
  width: 100%;
  background: #5490f90d;
  border-radius: 10px;
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a2540;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background .1s ease-out, color .1s ease-out
}

.hiw .faq__item details summary::-webkit-details-marker {
  display: none
}

.hiw .faq__item details summary::marker {
  display: none
}

.hiw .faq__item details[open] summary {
  background: #5490f91a;
  color: #5490F9;
  border-radius: 10px 10px 0 0
}

.hiw .faq__item details summary:focus {
  outline: 2px solid #5490F9;
  outline-offset: 2px
}

.hiw .faq__item details p {
  font-size: 16px;
  line-height: 1.75;
  color: #3d4f6e;
  padding: 16px;
  background: #5490f908;
  border-radius: 0 0 10px 10px;
  margin: 0
}

.hiw .faq__sum-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

@keyframes bgshift {
  0% {
    background-position: 0 50%
  }

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

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

.hiw .proc {
  background-size: 200% 200%;
  animation: bgshift 9s ease-in-out infinite;
  background-image: linear-gradient(160deg, #fef57d21 0%, #fff 45%, #5490f90f 100%)
}

@media (max-width: 1024px) {
  .hiw .ttl__grid {
    grid-template-columns: 1fr
  }

  .hiw .ttl__img-wrap {
    max-width: 480px
  }

  .hiw .proc__cards {
    grid-template-columns: 1fr 1fr
  }

  .hiw .proc__tracker {
    display: none
  }

  .hiw .depth__grid {
    grid-template-columns: 1fr
  }

  .hiw .depth__aside {
    flex-direction: row;
    flex-wrap: wrap
  }

  .hiw .depth__img-wrap {
    flex: 1;
    min-width: 200px;
    max-width: 320px
  }

  .hiw .depth__stat-row {
    flex: 1;
    min-width: 200px
  }

  .hiw .faq__inner {
    grid-template-columns: 1fr
  }
}

@media (max-width: 640px) {

  .hiw .ttl,
  .hiw .proc,
  .hiw .depth,
  .hiw .faq {
    padding: 32px 16px
  }

  .hiw .proc__cards {
    grid-template-columns: 1fr
  }

  .hiw .depth__stat-row {
    grid-template-columns: 1fr 1fr
  }

  .hiw .depth__aside {
    flex-direction: column
  }

  .hiw .depth__img-wrap {
    max-width: 100%
  }

  .hiw .ttl__h1,
  .hiw .proc__h2,
  .hiw .depth__h2,
  .hiw .faq__h2 {
    font-size: 24px
  }
}

.ld {
  max-width: 100%;
  overflow-x: clip
}

.ld .pg-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px
}

.ld .reveal-up {
  opacity: 0;
  transform: translateY(32px);
  animation: revealUp .55s ease-out forwards
}

.ld .reveal-up--d1 {
  animation-delay: .08s
}

.ld .reveal-up--d2 {
  animation-delay: .18s
}

.ld .reveal-up--d3 {
  animation-delay: .28s
}

.ld .reveal-up--d4 {
  animation-delay: .38s
}

.ld .reveal-up--d5 {
  animation-delay: .48s
}

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

.ld .acc {
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 16px
}

.ld .out-h {
  -webkit-text-stroke: 1.5px currentColor;
  color: transparent
}

.ld p::before {
  display: none
}

.ld .num-p {
  counter-reset: para
}

.ld .num-p .np {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.ld .num-p .np::before {
  content: counter(para);
  counter-increment: para;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  background: #5490F9;
  color: #fff;
  border-radius: 44px;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px
}

.ld .circ-num {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.ld .circ-num .cn-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border: 2px solid #5490F9;
  border-radius: 44px;
  font-size: 16px;
  font-weight: 700;
  color: #5490F9;
  flex-shrink: 0
}

.ld .t-blk {
  position: relative;
  padding: 80px 0 64px;
  background: #fff
}

.ld .t-blk__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, #5490f921 0%, #fef57d14 55%, transparent 80%);
  pointer-events: none
}

.ld .t-blk__spot1 {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 44px;
  background: #5490f917;
  filter: blur(60px);
  top: -40px;
  left: -60px;
  pointer-events: none
}

.ld .t-blk__spot2 {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 44px;
  background: #b214280f;
  filter: blur(48px);
  bottom: 0;
  right: 80px;
  pointer-events: none
}

.ld .t-blk__spot3 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 44px;
  background: #fef57d2e;
  filter: blur(40px);
  top: 60px;
  right: 320px;
  pointer-events: none
}

.ld .t-blk__inner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  z-index: 1
}

.ld .t-blk__copy {
  flex: 1 1 0;
  min-width: 0
}

.ld .t-blk__label {
  display: inline-block;
  color: #B21428;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px
}

.ld .t-blk__h1 {
  font-size: 72px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #1a2340;
  margin: 0 0 16px
}

.ld .t-blk__h1 .out-h {
  -webkit-text-stroke: 2px #5490F9;
  color: transparent;
  display: block
}

.ld .t-blk__sub {
  font-size: 18px;
  line-height: 1.75;
  color: #3a4460;
  max-width: 480px;
  margin: 0 0 32px
}

.ld .t-blk__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #5490F9;
  text-decoration: none;
  border-bottom: 2px solid #5490f94d;
  padding-bottom: 4px;
  transition: color .12s ease-out, border-color .12s ease-out
}

.ld .t-blk__cta:hover {
  color: #B21428;
  border-color: #b2142866
}

.ld .t-blk__cta .arr {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .1s ease-out
}

.ld .t-blk__cta:hover .arr {
  transform: translateX(4px)
}

.ld .t-blk__img-col {
  flex: 0 0 420px;
  position: relative
}

.ld .t-blk__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  width: 420px;
  height: 480px;
  box-shadow: 0 10px 48px -1px #5490f921;
  position: relative
}

.ld .t-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .9s ease-out;
  filter: saturate(1.15) contrast(1.05)
}

.ld .t-blk__img-wrap:hover img {
  transform: scale(1.04) translateX(8px)
}

.ld .t-blk__img-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 22px -1px #5490f917;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 160px
}

.ld .t-blk__img-badge .bdg-num {
  font-size: 32px;
  font-weight: 800;
  color: #5490F9;
  line-height: 1.2
}

.ld .t-blk__img-badge .bdg-lbl {
  font-size: 16px;
  color: #3a4460;
  line-height: 1.5
}

.ld .div-fade {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #5490f92e 30%, #5490f92e 70%, transparent 100%);
  margin: 0
}

.ld .out-blk {
  padding: 64px 0;
  background: linear-gradient(160deg, #fef57d1f 0%, #5490f90f 100%);
  position: relative
}

.ld .out-blk__geo {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  pointer-events: none;
  overflow: hidden
}

.ld .out-blk__geo svg {
  width: 100%;
  height: 100%;
  opacity: .07
}

.ld .out-blk__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start
}

.ld .out-blk__left {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ld .out-blk__h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a2340;
  letter-spacing: -.02em;
  margin: 0 0 8px
}

.ld .out-blk__lead {
  font-size: 18px;
  line-height: 1.75;
  color: #3a4460;
  margin: 0 0 16px
}

.ld .out-blk__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 280px;
  box-shadow: 0 4px 22px -1px #5490f917
}

.ld .out-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.1s ease-out
}

.ld .out-blk__img-wrap:hover img {
  transform: translateY(-10px)
}

.ld .out-blk__right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ld .out-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 1px 6px -1px #5490f90f;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .1s ease-out
}

.ld .out-card:hover {
  box-shadow: 0 4px 22px -1px #5490f917
}

.ld .out-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #5490f91a;
  display: flex;
  align-items: center;
  justify-content: center
}

.ld .out-card__h {
  font-size: 18px;
  font-weight: 700;
  color: #1a2340;
  margin: 0;
  line-height: 1.2
}

.ld .out-card__p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a4460;
  margin: 0
}

.ld .donut-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 1px 6px -1px #5490f90f
}

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

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

.ld .dl-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #3a4460
}

.ld .dl-dot {
  width: 12px;
  height: 12px;
  border-radius: 44px;
  flex-shrink: 0
}

.ld .com-blk {
  padding: 64px 0;
  background: #fff;
  position: relative
}

.ld .com-blk__circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .03
}

.ld .com-blk__inner {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  z-index: 1
}

.ld .com-blk__img-col {
  flex: 0 0 380px;
  position: relative
}

.ld .com-blk__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  width: 380px;
  height: 460px;
  box-shadow: 0 10px 48px -1px #5490f921
}

.ld .com-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1s ease-out
}

.ld .com-blk__img-wrap:hover img {
  transform: scale(1.05) translateX(-6px)
}

.ld .com-blk__copy {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ld .com-blk__h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1a2340;
  margin: 0
}

.ld .com-blk__lead {
  font-size: 18px;
  line-height: 1.75;
  color: #3a4460;
  margin: 0
}

.ld .com-strip {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ld .com-strip__item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 10px;
  background: #5490f90a;
  transition: background .1s ease-out
}

.ld .com-strip__item:hover {
  background: #5490f917
}

.ld .com-strip__num {
  font-size: 24px;
  font-weight: 800;
  color: #5490F9;
  line-height: 1.2;
  flex-shrink: 0;
  min-width: 32px
}

.ld .com-strip__body {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ld .com-strip__h {
  font-size: 18px;
  font-weight: 700;
  color: #1a2340;
  margin: 0;
  line-height: 1.2
}

.ld .com-strip__p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a4460;
  margin: 0
}

.ld .com-blk__note {
  font-size: 16px;
  line-height: 1.75;
  color: #3a4460;
  padding: 16px;
  border-radius: 10px;
  background: #fef57d38;
  margin: 0
}

.ld .tst-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px
}

.ld .tst-card {
  flex: 1 1 0;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 1px 6px -1px #5490f90f;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ld .tst-card__quote {
  font-size: 16px;
  line-height: 1.75;
  color: #3a4460;
  margin: 0
}

.ld .tst-card__person {
  display: flex;
  align-items: center;
  gap: 8px
}

.ld .tst-card__portrait {
  width: 40px;
  height: 40px;
  border-radius: 44px;
  overflow: hidden;
  flex-shrink: 0
}

.ld .tst-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.ld .tst-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #1a2340
}

.ld .tst-card__role {
  font-size: 16px;
  color: #5490F9
}

.ld .sit-blk {
  padding: 64px 0 80px;
  position: relative
}

.ld .sit-blk__full {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #5490f912 0%, #b214280a 100%);
  pointer-events: none
}

.ld .sit-blk__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.ld .sit-blk__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end
}

.ld .sit-blk__h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1a2340;
  margin: 0 0 8px
}

.ld .sit-blk__desc {
  font-size: 18px;
  line-height: 1.75;
  color: #3a4460;
  margin: 0
}

.ld .sit-blk__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 260px;
  box-shadow: 0 4px 22px -1px #5490f917
}

.ld .sit-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.2s ease-out
}

.ld .sit-blk__img-wrap:hover img {
  transform: translateX(-12px)
}

.ld .sit-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: end
}

.ld .sit-col {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 22px -1px #5490f917;
  display: flex;
  flex-direction: column
}

.ld .sit-col--a {
  padding-top: 32px
}

.ld .sit-col--b {
  padding-top: 48px
}

.ld .sit-col--c {
  padding-top: 64px
}

.ld .sit-col__head {
  padding: 16px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ld .sit-col__tag {
  display: inline-block;
  font-size: 16px;
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
  color: #fff;
  background: #5490F9;
  border-radius: 6px;
  padding: 4px 8px;
  width: fit-content
}

.ld .sit-col--b .sit-col__tag {
  background: #B21428
}

.ld .sit-col--c .sit-col__tag {
  background: #1a2340
}

.ld .sit-col__h {
  font-size: 18px;
  font-weight: 700;
  color: #1a2340;
  margin: 0;
  line-height: 1.2
}

.ld .sit-col__body {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ld .sit-col__p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a4460;
  margin: 0
}

.ld .sit-col__items {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ld .sit-col__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #3a4460
}

.ld .sit-col__item .ic {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px
}

.ld .sit-col__strip {
  height: 4px;
  background: linear-gradient(90deg, #5490F9, #fef57d99);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .12s ease-out
}

.ld .sit-col--b .sit-col__strip {
  background: linear-gradient(90deg, #B21428, #5490f980)
}

.ld .sit-col--c .sit-col__strip {
  background: linear-gradient(90deg, #1a2340, #5490f980)
}

.ld .sit-col:hover .sit-col__strip {
  transform: scaleX(1)
}

@media (max-width: 1024px) {
  .ld .t-blk__h1 {
    font-size: 48px
  }

  .ld .t-blk__img-col {
    flex: 0 0 320px
  }

  .ld .t-blk__img-wrap {
    width: 320px;
    height: 380px
  }

  .ld .out-blk__inner {
    grid-template-columns: 1fr
  }

  .ld .com-blk__inner {
    flex-direction: column
  }

  .ld .com-blk__img-col {
    flex: none;
    width: 100%
  }

  .ld .com-blk__img-wrap {
    width: 100%;
    height: 300px
  }

  .ld .sit-cols {
    grid-template-columns: 1fr 1fr
  }

  .ld .sit-col--c {
    display: none
  }

  .ld .sit-blk__top {
    grid-template-columns: 1fr
  }

  .ld .tst-row {
    flex-direction: column
  }
}

@media (max-width: 640px) {
  .ld .pg-wrap {
    padding: 0 16px
  }

  .ld .t-blk {
    padding: 48px 0 40px
  }

  .ld .t-blk__inner {
    flex-direction: column
  }

  .ld .t-blk__h1 {
    font-size: 32px
  }

  .ld .t-blk__img-col {
    flex: none;
    width: 100%
  }

  .ld .t-blk__img-wrap {
    width: 100%;
    height: 260px
  }

  .ld .t-blk__img-badge {
    left: 0
  }

  .ld .out-blk {
    padding: 40px 0
  }

  .ld .com-blk {
    padding: 40px 0
  }

  .ld .sit-blk {
    padding: 40px 0 56px
  }

  .ld .sit-cols {
    grid-template-columns: 1fr
  }

  .ld .sit-col--b {
    display: none
  }

  .ld .sit-col--a {
    padding-top: 0
  }
}

.anlt {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip
}

.anlt .sep {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px
}

.anlt .sep__line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(to right, #5490F9 0px, #5490F9 4px, transparent 4px, transparent 8px, #5490F9 8px, #5490F9 10px, transparent 10px, transparent 16px);
  opacity: .35
}

.anlt .sep__dot {
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: #5490F9;
  opacity: .5
}

.anlt .tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #5490F9;
  padding: 4px 8px;
  border-radius: 6px;
  background: #5490f914
}

.anlt .num-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 44px;
  background: #5490F9;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0
}

.anlt .anchor-num {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 2px #5490F9;
  letter-spacing: -.03em;
  display: block
}

.anlt .outlined-h {
  color: transparent;
  -webkit-text-stroke: 1.5px #222;
  font-weight: 800;
  letter-spacing: -.02em
}

.anlt .outlined-h--light {
  -webkit-text-stroke: 1.5px #ffffffb3
}

.anlt .btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #5490F9;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  transition: color .12s ease-out
}

.anlt .btn-arrow:hover {
  color: #B21428
}

.anlt .btn-arrow:focus {
  outline: 2px solid #5490F9;
  outline-offset: 4px;
  border-radius: 6px
}

.anlt .btn-arrow__icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .12s ease-out, border-color .12s ease-out;
  flex-shrink: 0
}

.anlt .btn-arrow:hover .btn-arrow__icon {
  background: #B21428;
  border-color: #B21428;
  color: #fff
}

.anlt .btn-arrow__icon svg {
  display: block
}

.anlt .pg-num {
  font-size: 16px;
  font-weight: 700;
  color: #5490F9;
  opacity: .45;
  margin-right: 8px
}

.anlt .p-num {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 16px
}

.anlt .p-num__body {
  font-size: 18px;
  line-height: 1.75;
  color: #2a2a35
}

@keyframes anlt-shadow-build {
  from {
    box-shadow: 0 1px 6px -1px #5490f900
  }

  to {
    box-shadow: 0 4px 22px -1px #5490f917
  }
}

@keyframes anlt-shadow-build-lg {
  from {
    box-shadow: 0 1px 6px -1px #5490f900
  }

  to {
    box-shadow: 0 10px 48px -1px #5490f921
  }
}

.anlt .card {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 6px -1px #5490f90f;
  animation: anlt-shadow-build .15s ease-out forwards;
  transition: box-shadow .12s ease-out, transform .12s ease-out
}

.anlt .card:hover {
  box-shadow: 0 10px 48px -1px #5490f921;
  transform: translateY(-2px)
}

.anlt .metric-card {
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 1px 6px -1px #5490f90f;
  animation: anlt-shadow-build .15s ease-out forwards;
  transition: box-shadow .12s ease-out;
  border-top: 3px solid #5490F9
}

.anlt .metric-card:hover {
  box-shadow: 0 4px 22px -1px #5490f917
}

.anlt .metric-card--red {
  border-top-color: #B21428
}

.anlt .metric-card--yellow {
  border-top-color: #d4a800
}

.anlt .metric-card__val {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  color: #5490F9;
  letter-spacing: -.02em
}

.anlt .metric-card--red .metric-card__val {
  color: #B21428
}

.anlt .metric-card--yellow .metric-card__val {
  color: #9a7800
}

.anlt .metric-card__label {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  margin-top: 4px
}

.anlt .bar-row {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.anlt .bar-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.anlt .bar-item__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline
}

.anlt .bar-item__lbl {
  font-size: 16px;
  color: #333;
  font-weight: 600
}

.anlt .bar-item__pct {
  font-size: 16px;
  font-weight: 700;
  color: #5490F9
}

.anlt .bar-item__track {
  height: 8px;
  border-radius: 6px;
  background: #5490f91f;
  overflow: hidden
}

.anlt .bar-item__fill {
  height: 100%;
  border-radius: 6px;
  background: #5490F9
}

.anlt .bar-item__fill--red {
  background: #B21428
}

.anlt .bar-item__fill--yellow {
  background: #d4a800
}

.anlt .step-list {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.anlt .step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: #5490f90a;
  transition: background .1s ease-out
}

.anlt .step-item:hover {
  background: #5490f917
}

.anlt .step-item__body {
  flex: 1
}

.anlt .step-item__h {
  font-size: 18px;
  font-weight: 700;
  color: #1a2540;
  margin-bottom: 4px;
  line-height: 1.2
}

.anlt .step-item__p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a4a;
  margin: 0
}

.anlt .tbl-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 22px -1px #5490f917
}

.anlt .tbl {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  font-size: 16px
}

.anlt .tbl thead tr {
  background: #5490F9;
  color: #fff
}

.anlt .tbl thead th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .04em
}

.anlt .tbl tbody tr {
  border-bottom: 1px solid #5490f91a;
  transition: background .1s ease-out
}

.anlt .tbl tbody tr:last-child {
  border-bottom: none
}

.anlt .tbl tbody tr:hover {
  background: #5490f90d
}

.anlt .tbl tbody td {
  padding: 16px;
  color: #2a2a35;
  line-height: 1.5;
  vertical-align: top
}

.anlt .tbl .badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600
}

.anlt .tbl .badge--hi {
  background: #5490f91f;
  color: #2a5cc4
}

.anlt .tbl .badge--med {
  background: #b214281a;
  color: #B21428
}

.anlt .tbl .badge--lo {
  background: #fef57d80;
  color: #7a6800
}

.anlt .quote-block {
  border-radius: 16px;
  padding: 32px;
  background: #5490f90f;
  position: relative
}

.anlt .quote-block__q {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a2540;
  margin-bottom: 16px
}

.anlt .quote-block__attr {
  font-size: 16px;
  color: #5490F9;
  font-weight: 600
}

.anlt .quote-block__mark {
  position: absolute;
  top: 16px;
  right: 32px;
  font-size: 72px;
  font-weight: 900;
  color: #5490f91f;
  line-height: 1;
  pointer-events: none;
  user-select: none
}

@media (max-width: 1024px) {
  .anlt .title-grid {
    grid-template-columns: 1fr !important
  }

  .anlt .title-img {
    display: none
  }

  .anlt .metrics-grid {
    grid-template-columns: 1fr 1fr !important
  }

  .anlt .diag-grid {
    grid-template-columns: 1fr !important
  }

  .anlt .diag-img-col {
    display: none
  }
}

@media (max-width: 640px) {
  .anlt .metrics-grid {
    grid-template-columns: 1fr !important
  }

  .anlt .anchor-num {
    font-size: 32px
  }

  .anlt .tbl thead th,
  .anlt .tbl tbody td {
    padding: 8px
  }
}

.anlt .rpt-s1 {
  padding: 32px 32px 16px;
  border-top: 2px solid #5490F9;
  border-bottom: 2px solid #5490f92e;
  background: #fff
}

.anlt .title-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start
}

.anlt .title-text {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.anlt .title-h1 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1.5px #1a2540;
  letter-spacing: -.02em;
  margin: 0
}

.anlt .title-lead {
  font-size: 18px;
  line-height: 1.75;
  color: #2a2a35
}

.anlt .title-lead strong {
  color: #5490F9;
  font-weight: 700
}

.anlt .title-img {
  position: relative
}

.anlt .title-img__frame {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 12% 100%, 0 88%);
  animation: anlt-shadow-build-lg .15s ease-out forwards
}

.anlt .title-img__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.anlt .title-img__deco {
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #fef57d73;
  pointer-events: none;
  z-index: 0
}

.anlt .rpt-s2 {
  padding: 32px;
  background: linear-gradient(158deg, #fef57d2e 0%, #fff0 60%);
  border-bottom: 2px solid #5490f91f
}

.anlt .metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px
}

.anlt .rpt-s3 {
  padding: 32px;
  background: #fff;
  border-bottom: 2px solid #5490f91f
}

.anlt .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px
}

@media (max-width: 1024px) {
  .anlt .two-col {
    grid-template-columns: 1fr
  }
}

.anlt .rpt-s4 {
  padding: 32px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(162deg, #f0f4ff 0%, #fff 55%, #fef57d1f 100%);
  border-top: 2px solid #5490f92e
}

.anlt .rpt-s4__leaf {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  opacity: .07;
  overflow: hidden
}

.anlt .rpt-s4__anchor {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  margin-top: 16px
}

.anlt .rpt-s4__anchor-num-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0
}

.anlt .rpt-s4__body {
  flex: 1
}

.anlt .diag-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  margin-top: 16px
}

.anlt .diag-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

.anlt .diag-bg__left {
  position: absolute;
  inset: 0;
  background: linear-gradient(162deg, #f0f4ff 0%, #fff 50%)
}

.anlt .diag-bg__right {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  bottom: 0;
  background: #5490f90f;
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%)
}

.anlt .rpt-s4__rel {
  position: relative;
  z-index: 1
}

.anlt .obs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px
}

.anlt .obs-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 8px 16px;
  border-radius: 10px;
  background: #5490f90d;
  font-size: 16px;
  line-height: 1.75;
  color: #2a2a35;
  transition: background .1s ease-out
}

.anlt .obs-item:hover {
  background: #5490f91a
}

.anlt .obs-item__num {
  font-weight: 700;
  color: #5490F9;
  flex-shrink: 0;
  min-width: 24px
}

.cu {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip
}

.cu .pg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  position: relative
}

.cu .pg-split__left {
  background: linear-gradient(158deg, #5490F9 0%, transparent 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative
}

.cu .pg-split__left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, #5490f92e 0%, #b2142814 100%);
  pointer-events: none
}

.cu .pg-split__right {
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.cu .lbl--accent {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #fff;
  margin-bottom: 16px
}

.cu .pg-split__left .hd {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  margin: 0 0 16px
}

.cu .pg-split__left .sub {
  font-size: 18px;
  line-height: 1.5;
  color: #ffffffe0;
  max-width: 380px;
  margin: 0
}

.cu .corner-box {
  position: relative;
  display: inline-block;
  padding: 16px;
  margin-top: 32px
}

.cu .corner-box::before,
.cu .corner-box::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #fef57db3;
  border-style: solid
}

.cu .corner-box::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px
}

.cu .corner-box::after {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0
}

.cu .cinfo {
  display: flex;
  flex-direction: column;
  gap: 16px
}

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

.cu .cinfo__ico {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #ffffff26;
  display: flex;
  align-items: center;
  justify-content: center
}

.cu .cinfo__ico svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.cu .cinfo__text {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffffeb
}

.cu .cinfo__text a {
  color: #FEF57D;
  text-decoration: none;
  transition: color .1s ease-out
}

.cu .cinfo__text a:hover {
  color: #fff
}

.cu .divider-edge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 32px 0
}

.cu .divider-edge__line {
  width: 40px;
  height: 2px;
  background: #5490F9;
  border-radius: 2px
}

.cu .divider-edge__gap {
  flex: 1
}

.cu .divider-edge__line--r {
  width: 40px;
  height: 2px;
  background: #B21428;
  border-radius: 2px
}

.cu .form-hd {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px #1a2340;
  margin: 0 0 8px
}

.cu .form-sub {
  font-size: 16px;
  line-height: 1.5;
  color: #3a4460;
  margin: 0 0 32px
}

.cu .cf {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.cu .cf__field {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.cu .cf__lbl {
  font-size: 16px;
  font-weight: 600;
  color: #1a2340;
  letter-spacing: .02em
}

.cu .cf__req {
  color: #B21428;
  margin-left: 2px
}

.cu .cf__input {
  border: 1.5px solid #d0d8f0;
  border-radius: 10px;
  padding: 16px;
  font-size: 16px;
  color: #1a2340;
  background: #f5f7ff;
  outline: none;
  transition: border-color .12s ease-out, background .12s ease-out;
  width: 100%;
  box-sizing: border-box
}

.cu .cf__input::placeholder {
  color: #9aaacf;
  font-weight: 300
}

.cu .cf__input:focus {
  border-color: #5490F9;
  background: #fff
}

.cu .cf__checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: #f5f7ff;
  border-radius: 10px;
  border: 1.5px solid #d0d8f0
}

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

.cu .cf__check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #5490F9;
  cursor: pointer;
  flex-shrink: 0
}

.cu .cf__check-lbl {
  font-size: 16px;
  color: #2a3460;
  line-height: 1.5;
  cursor: pointer
}

.cu .cf__privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  background: #5490f90d;
  border-radius: 10px;
  border: 1.5px dashed #5490f94d
}

.cu .cf__privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #5490F9;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px
}

.cu .cf__privacy-text {
  font-size: 16px;
  line-height: 1.5;
  color: #3a4460
}

.cu .cf__privacy-text a {
  color: #5490F9;
  text-decoration: underline;
  text-decoration-color: #5490f966;
  transition: color .1s ease-out
}

.cu .cf__privacy-text a:hover {
  color: #B21428
}

.cu .cf__btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: none;
  border: 2px solid #5490F9;
  border-radius: 10px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  color: #5490F9;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .13s ease-out, color .13s ease-out;
  align-self: flex-start
}

.cu .cf__btn:hover {
  background: #5490F9;
  color: #fff
}

.cu .cf__btn:focus {
  outline: 3px solid #5490f966;
  outline-offset: 2px
}

.cu .cf__btn:active {
  background: #3a70d9;
  border-color: #3a70d9;
  color: #fff
}

.cu .cf__btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .1s ease-out
}

.cu .cf__btn:hover svg {
  transform: translateX(4px)
}

.cu .detail-blk {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  position: relative
}

.cu .detail-blk__img-col {
  position: relative;
  overflow: hidden
}

.cu .detail-blk__img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 48px -1px #5490f921
}

.cu .detail-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15);
  display: block
}

.cu .detail-blk__img-deco {
  position: absolute;
  inset: -4px;
  border: 2px dashed #5490f959;
  border-radius: 20px;
  pointer-events: none
}

.cu .detail-blk__data-col {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(158deg, #fef57d21 0%, transparent 70%)
}

.cu .detail-blk__eyebrow {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #B21428;
  margin-bottom: 8px
}

.cu .detail-blk__h {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px #1a2340;
  margin: 0 0 16px
}

.cu .detail-blk__body {
  font-size: 16px;
  line-height: 1.75;
  color: #2a3460;
  margin: 0 0 16px
}

.cu .detail-blk__body+.detail-blk__body {
  margin-top: 0
}

.cu .heatmap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin: 16px 0
}

.cu .heatmap__cell {
  aspect-ratio: 1/1;
  border-radius: 6px;
  background: #5490f914;
  transition: background .1s ease-out
}

.cu .heatmap__cell--l1 {
  background: #5490f926
}

.cu .heatmap__cell--l2 {
  background: #5490f947
}

.cu .heatmap__cell--l3 {
  background: #5490f973
}

.cu .heatmap__cell--l4 {
  background: #5490f9a6
}

.cu .heatmap__cell--l5 {
  background: #5490f9d9
}

.cu .heatmap__cell--off {
  background: #5490f90a
}

.cu .heatmap__cell:hover {
  background: #b2142873
}

.cu .heatmap-lbl {
  font-size: 16px;
  color: #5a6480;
  margin-bottom: 4px;
  line-height: 1.5
}

.cu .heatmap-legend {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  margin-top: 4px
}

.cu .heatmap-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 2px
}

.cu .heatmap-legend__text {
  font-size: 16px;
  color: #8a94b0;
  margin-right: 8px
}

.cu .pg-split__left .anim-reveal {
  animation: dropbounce .55s cubic-bezier(0.22, 1.2, 0.36, 1) both
}

.cu .pg-split__right .anim-reveal {
  animation: dropbounce .55s .1s cubic-bezier(0.22, 1.2, 0.36, 1) both
}

.cu .detail-blk__img-col .anim-reveal {
  animation: dropbounce .6s .18s cubic-bezier(0.22, 1.2, 0.36, 1) both
}

.cu .detail-blk__data-col .anim-reveal {
  animation: dropbounce .6s .26s cubic-bezier(0.22, 1.2, 0.36, 1) both
}

@keyframes dropbounce {
  0% {
    opacity: 0;
    transform: translateY(-18px)
  }

  70% {
    opacity: 1;
    transform: translateY(4px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.cu .spot-bg {
  position: relative
}

.cu .spot-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle at 50% 50%, #fef57d2e 0%, transparent 70%);
  pointer-events: none;
  z-index: 0
}

.cu .spot-bg>* {
  position: relative;
  z-index: 1
}

@media (max-width: 1024px) {
  .cu .pg-split {
    grid-template-columns: 1fr
  }

  .cu .pg-split__left .hd {
    font-size: 48px
  }

  .cu .detail-blk {
    grid-template-columns: 1fr
  }

  .cu .detail-blk__img-col {
    padding: 32px 32px 0
  }

  .cu .detail-blk__img-wrap {
    max-width: 360px;
    margin: 0 auto
  }
}

@media (max-width: 640px) {

  .cu .pg-split__left,
  .cu .pg-split__right {
    padding: 16px
  }

  .cu .pg-split__left .hd {
    font-size: 32px
  }

  .cu .form-hd {
    font-size: 24px
  }

  .cu .detail-blk__h {
    font-size: 24px
  }

  .cu .detail-blk__data-col {
    padding: 16px
  }

  .cu .detail-blk__img-col {
    padding: 16px 16px 0
  }

  .cu .heatmap {
    grid-template-columns: repeat(7, 1fr)
  }

  .cu .cf__btn {
    width: 100%;
    justify-content: center
  }
}

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

.ab-us .pg-band {
  height: 4px;
  background: linear-gradient(90deg, #5490F9 0%, #B21428 60%, #FEF57D 100%);
  width: 100%
}

.ab-us .ttl {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  padding: 32px;
  background: #fff;
  position: relative;
  align-items: stretch
}

.ab-us .ttl__img-col {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  min-height: 340px
}

.ab-us .ttl__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s ease-out;
  filter: contrast(1.08) saturate(1.05)
}

.ab-us .ttl__img-col:hover img {
  transform: scale(1.04)
}

.ab-us .ttl__img-col::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px #5490f91f;
  pointer-events: none
}

.ab-us .ttl__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 16px 0
}

.ab-us .ttl__label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #B21428;
  line-height: 1.2
}

.ab-us .ttl__h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 2px #5490F9;
  margin: 0
}

.ab-us .ttl__sub {
  font-size: 18px;
  line-height: 1.75;
  color: #2a2a3a;
  max-width: 600px;
  margin: 0
}

.ab-us .ttl__arc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px
}

.ab-us .ttl__arc-item {
  font-size: 16px;
  line-height: 1.5;
  color: #444
}

.ab-us .ttl__arc-item strong {
  color: #5490F9
}

.ab-us .ttl__deco-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FEF57D 0%, #fef57d00 100%)
}

.ab-us .ttl__geo {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  border: 1.5px solid #5490f92e;
  animation: geo-pulse 3.5s ease-in-out infinite;
  pointer-events: none
}

.ab-us .ttl__geo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 10px;
  border: 1.5px solid #b214281f;
  animation: geo-pulse 3.5s ease-in-out infinite .8s
}

@keyframes geo-pulse {

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

  50% {
    opacity: 1;
    transform: scale(1.06)
  }
}

.ab-us .abt {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  padding: 32px;
  background: linear-gradient(160deg, #fef57d14 0%, #fff0 60%);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%);
  margin-bottom: -28px
}

.ab-us .abt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 0%, #5490f90a 0%, transparent 60%), radial-gradient(ellipse at 100% 100%, #b214280a 0%, transparent 60%);
  pointer-events: none
}

.ab-us .abt__main {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ab-us .abt__num {
  font-size: 16px;
  font-weight: 700;
  color: #5490F9;
  letter-spacing: .08em
}

.ab-us .abt__h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1.5px #2a2a3a;
  margin: 0
}

.ab-us .abt__p {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  margin: 0
}

.ab-us .abt__p--lead {
  font-size: 18px;
  line-height: 1.75;
  color: #2a2a3a;
  margin: 0
}

.ab-us .abt__p-num {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #5490F9;
  margin-right: 8px
}

.ab-us .abt__img-wrap {
  border-radius: 10px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 4px 22px -1px #5490f917;
  position: relative
}

.ab-us .abt__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease-out
}

.ab-us .abt__img-wrap:hover img {
  transform: scale(1.05)
}

.ab-us .abt__side {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ab-us .abt__stat-box {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 1px 6px -1px #5490f90f;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ab-us .abt__stat-val {
  font-size: 32px;
  font-weight: 800;
  color: #5490F9;
  letter-spacing: -.02em;
  line-height: 1.2
}

.ab-us .abt__stat-lbl {
  font-size: 16px;
  color: #555;
  line-height: 1.5
}

.ab-us .abt__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #5490F9;
  text-decoration: none;
  transition: color .1s ease-out;
  padding: 8px 0
}

.ab-us .abt__link:hover {
  color: #B21428
}

.ab-us .abt__link-arrow {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.ab-us .team {
  padding: 56px 32px 32px;
  background: #fff;
  position: relative;
  clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 100%);
  margin-bottom: 0
}

.ab-us .team::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 5% 5%, #5490f90d 0%, transparent 40%), radial-gradient(ellipse at 95% 95%, #b214280a 0%, transparent 40%), radial-gradient(ellipse at 50% 50%, transparent 30%, #00000008 100%);
  pointer-events: none
}

.ab-us .team__hd {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px
}

.ab-us .team__h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1.5px #2a2a3a;
  margin: 0
}

.ab-us .team__h2-acc {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #B21428;
  -webkit-text-stroke: 0;
  color: #B21428;
  margin-bottom: 8px
}

.ab-us .team__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px
}

.ab-us .team__card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 6px -1px #5490f90f;
  transition: box-shadow .12s ease-out, transform .12s ease-out;
  position: relative
}

.ab-us .team__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 48px -1px #5490f921
}

.ab-us .team__card--feat {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.ab-us .team__card-img {
  overflow: hidden;
  height: 260px
}

.ab-us .team__card--feat .team__card-img {
  height: 100%;
  min-height: 260px
}

.ab-us .team__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease-out
}

.ab-us .team__card:hover .team__card-img img {
  transform: scale(1.05)
}

.ab-us .team__card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ab-us .team__card--feat .team__card-body {
  padding: 24px 16px;
  justify-content: center
}

.ab-us .team__name {
  font-size: 18px;
  font-weight: 700;
  color: #1e1e2e;
  line-height: 1.2;
  margin: 0
}

.ab-us .team__role {
  font-size: 16px;
  color: #5490F9;
  font-weight: 600;
  line-height: 1.5
}

.ab-us .team__bio {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin: 0
}

.ab-us .team__portrait-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 6px -1px #5490f90f
}

.ab-us .team__portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.ab-us .team__person-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.ab-us .team__person-info {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ab-us .team__vals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px
}

.ab-us .team__val-item {
  background: linear-gradient(160deg, #5490f90f 0%, #fef57d14 100%);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .1s ease-out
}

.ab-us .team__val-item:hover {
  box-shadow: 0 4px 22px -1px #5490f917
}

.ab-us .team__val-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center
}

.ab-us .team__val-h {
  font-size: 16px;
  font-weight: 700;
  color: #1e1e2e;
  line-height: 1.2;
  margin: 0
}

.ab-us .team__val-p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin: 0
}

.ab-us .cform {
  padding: 32px;
  background: linear-gradient(160deg, #5490f90f 0%, #b214280a 100%);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%);
  padding-bottom: 60px
}

.ab-us .cform::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, #5490f90d 0%, transparent 50%), radial-gradient(ellipse at 100% 0%, #b214280a 0%, transparent 50%), radial-gradient(ellipse at 50% 50%, transparent 40%, #00000006 100%);
  pointer-events: none
}

.ab-us .cform__blob {
  position: absolute;
  top: -40px;
  right: 80px;
  width: 220px;
  height: 160px;
  background: #fef57d12;
  border-radius: 44px;
  transform: rotate(-18deg);
  pointer-events: none;
  z-index: 0
}

.ab-us .cform__blob2 {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 160px;
  height: 120px;
  background: #5490f90d;
  border-radius: 44px;
  transform: rotate(12deg);
  pointer-events: none;
  z-index: 0
}

.ab-us .cform__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.ab-us .cform__lbl {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-variant: small-caps;
  color: #B21428;
  margin-bottom: 8px;
  display: block
}

.ab-us .cform__h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1.5px #2a2a3a;
  margin: 0 0 8px
}

.ab-us .cform__desc {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin: 0 0 24px
}

.ab-us .cform__form {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 22px -1px #5490f917;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ab-us .cform__field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ab-us .cform__field-lbl {
  font-size: 16px;
  font-weight: 600;
  color: #2a2a3a;
  line-height: 1.2
}

.ab-us .cform__input {
  border: 1.5px solid #5490f940;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 16px;
  color: #2a2a3a;
  background: #fff;
  outline: none;
  transition: border-color .1s ease-out, box-shadow .1s ease-out;
  line-height: 1.5
}

.ab-us .cform__input::placeholder {
  font-weight: 300;
  color: #aab
}

.ab-us .cform__input:focus {
  border-color: #5490F9;
  box-shadow: 0 1px 6px -1px #5490f90f
}

.ab-us .cform__time-opts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px
}

.ab-us .cform__time-opt {
  display: none
}

.ab-us .cform__time-lbl {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 28px;
  border: 1.5px solid #5490f940;
  font-size: 16px;
  color: #555;
  cursor: pointer;
  transition: background .09s ease-out, color .09s ease-out, border-color .09s ease-out;
  line-height: 1.5;
  user-select: none
}

.ab-us .cform__time-opt:checked+.cform__time-lbl {
  background: #5490F9;
  color: #fff;
  border-color: #5490F9
}

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

.ab-us .cform__chk {
  margin-top: 4px;
  accent-color: #5490F9;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer
}

.ab-us .cform__priv-txt {
  font-size: 16px;
  color: #555;
  line-height: 1.5
}

.ab-us .cform__priv-link {
  color: #5490F9;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .08s linear
}

.ab-us .cform__priv-link:hover {
  color: #B21428
}

.ab-us .cform__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  color: #5490F9;
  cursor: pointer;
  transition: color .09s ease-out;
  align-self: flex-start
}

.ab-us .cform__btn:hover {
  color: #B21428
}

.ab-us .cform__btn:focus-visible {
  outline: 2px solid #5490F9;
  outline-offset: 4px;
  border-radius: 6px
}

.ab-us .cform__btn-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #5490F9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .09s ease-out
}

.ab-us .cform__btn:hover .cform__btn-arrow {
  background: #B21428
}

.ab-us .icon-anchor {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .07;
  pointer-events: none
}

.ab-us .hl-cycle span {
  transition: color .13s ease-out, background .13s ease-out;
  border-radius: 6px;
  padding: 0 4px
}

.ab-us .hl-cycle span.hl-active {
  color: #fff;
  background: #5490F9
}

@media (max-width: 1024px) {
  .ab-us .ttl {
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 24px 16px
  }

  .ab-us .ttl__h1 {
    font-size: 48px
  }

  .ab-us .ttl__img-col {
    min-height: 260px
  }

  .ab-us .abt {
    grid-template-columns: 1fr;
    padding: 32px 16px
  }

  .ab-us .abt__img-wrap {
    height: 240px
  }

  .ab-us .abt__side {
    flex-direction: row;
    flex-wrap: wrap
  }

  .ab-us .abt__stat-box {
    flex: 1 1 140px
  }

  .ab-us .team {
    padding: 56px 16px 32px
  }

  .ab-us .team__grid {
    grid-template-columns: 1fr 1fr
  }

  .ab-us .team__card--feat {
    grid-column: 1 / -1
  }

  .ab-us .team__vals {
    grid-template-columns: repeat(2, 1fr)
  }

  .ab-us .cform {
    padding: 32px 16px 60px
  }

  .ab-us .cform__form {
    padding: 24px 16px
  }

  .ab-us .icon-anchor {
    display: none
  }
}

@media (max-width: 640px) {
  .ab-us .ttl {
    grid-template-columns: 1fr;
    padding: 16px
  }

  .ab-us .ttl__img-col {
    min-height: 200px
  }

  .ab-us .ttl__h1 {
    font-size: 32px
  }

  .ab-us .ttl__geo {
    display: none
  }

  .ab-us .abt {
    padding: 32px 16px;
    clip-path: none;
    margin-bottom: 0
  }

  .ab-us .team {
    clip-path: none;
    padding: 32px 16px
  }

  .ab-us .team__grid {
    grid-template-columns: 1fr
  }

  .ab-us .team__card--feat {
    grid-template-columns: 1fr
  }

  .ab-us .team__card--feat .team__card-img {
    height: 200px
  }

  .ab-us .team__hd {
    flex-direction: column;
    align-items: flex-start
  }

  .ab-us .team__vals {
    grid-template-columns: 1fr
  }

  .ab-us .cform {
    clip-path: none;
    padding: 32px 16px
  }

  .ab-us .cform__time-opts {
    flex-direction: column
  }
}

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

.suc .suc__wrap {
  max-width: 520px;
  width: 100%;
  background: #fff;
  border: 1px solid #5490f92e;
  border-radius: 16px;
  box-shadow: 0 4px 22px -1px #5490f917;
  padding: 32px;
  text-align: center
}

.suc .suc__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center
}

.suc .suc__icon svg {
  width: 56px;
  height: 56px
}

.suc .suc__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #1b2340;
  margin: 0 0 8px;
  -webkit-text-stroke: 0;
  paint-order: stroke fill
}

.suc .suc__sub {
  font-size: 16px;
  line-height: 1.5;
  color: #3a4560;
  margin: 0 0 32px
}

.suc .suc__divider {
  width: 100%;
  height: 1px;
  background: #5490f91f;
  margin: 0 0 32px
}

.suc .suc__ref {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #5490F9;
  text-decoration: none;
  border-radius: 10px;
  padding: 8px 16px;
  border: 1.5px solid #5490f959;
  transition: color .12s ease-out, border-color .12s ease-out, background .09s linear
}

.suc .suc__ref:hover {
  background: #5490f912;
  border-color: #5490F9;
  color: #2a6ae8
}

.suc .suc__ref:focus-visible {
  outline: 2px solid #5490F9;
  outline-offset: 3px
}

.suc .suc__ref svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .09s ease-out
}

.suc .suc__ref:hover svg {
  transform: translateX(3px)
}

.suc .suc__note {
  font-size: 16px;
  line-height: 1.5;
  color: #6a7590;
  margin: 16px 0 0
}

.suc .suc__note a {
  color: #5490F9;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .1s ease-out
}

.suc .suc__note a:hover {
  color: #2a6ae8
}

@media (max-width: 640px) {
  .suc .suc__wrap {
    padding: 32px 16px
  }

  .suc .suc__title {
    font-size: 24px
  }
}