* {
  box-sizing: border-box
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: 'IBM Plex Mono', monospace;
  background: #FFF;
  color: #1a1a1a;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .015em
}

.hd {
  background: linear-gradient(135deg, #FFF 0%, #EDECEC 100%);
  border-bottom: 1px solid #023f7714;
  position: relative
}

.hd__grid {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  display: grid;
  grid-template-columns: 1fr 1px 2fr;
  gap: 40px;
  align-items: center
}

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

.hd__brand::before {
  content: '';
  width: 4px;
  height: 80px;
  background: linear-gradient(180deg, #FE83B7 0%, #023F77 100%);
  border-radius: 4px;
  box-shadow: 2px 3px 2px 0 #023f770f
}

.mark {
  width: 88px;
  height: 88px;
  display: block;
  background: #FFF;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 2px 7px 20px 0 #023f771a;
  border: 1px solid #023f770d
}

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

.hd__div {
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, transparent 0%, #023f771f 50%, transparent 100%)
}

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

.hd__alert {
  background: #fe83b714;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 14px;
  color: #023F77;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  border: 1px solid #fe83b726;
  transition: background .18s ease-out
}

.hd__alert:hover {
  background: #fe83b71f
}

.hd__alert i {
  font-size: 22px;
  color: #FE83B7
}

.mn {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center
}

.mn__lnk {
  font-size: 14px;
  font-weight: 500;
  color: #023F77;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background .16s ease-out, color .16s ease-out;
  letter-spacing: .02em;
  position: relative
}

.mn__lnk::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #FE83B7;
  transform: scaleX(0);
  transition: transform .2s cubic-bezier(0.4, 0, 0.6, 1);
  transform-origin: left
}

.mn__lnk:hover {
  background: #fe83b70f;
  color: #FE83B7
}

.mn__lnk:hover::after {
  transform: scaleX(1)
}

.mn__lnk:focus {
  outline: 2px solid #FE83B7;
  outline-offset: 2px
}

.ft {
  background: linear-gradient(180deg, #EDECEC 0%, #FFF 50%, #EDECEC 100%);
  padding: 80px 16px;
  position: relative
}

.ft::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #023f771f 50%, transparent 100%)
}

.ft__grid {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px
}

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

.ft__col--tall {
  background: linear-gradient(135deg, #fe83b70a 0%, #023f770a 100%);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #023f7714;
  box-shadow: 2px 3px 2px 0 #023f770f
}

.ft__col--mid {
  padding: 40px
}

.ft__col--short {
  padding: 16px
}

.ft__ttl {
  font-size: 22px;
  font-weight: 700;
  color: #023F77;
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: .01em
}

.ft__txt {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin: 0
}

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

.ft__lst--sub {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #023f7714
}

.ft__itm {
  display: block
}

.ft__anc {
  font-size: 14px;
  color: #023F77;
  text-decoration: none;
  padding: 8px 0;
  display: inline-block;
  transition: color .14s ease-out, transform .14s ease-out;
  position: relative
}

.ft__anc::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 1px;
  background: #FE83B7;
  transition: width .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.ft__anc:hover {
  color: #FE83B7;
  transform: translateX(4px)
}

.ft__anc:hover::before {
  width: 100%
}

.ft__anc:focus {
  text-decoration: underline;
  text-decoration-color: #FE83B7;
  text-decoration-thickness: 2px;
  outline: none
}

.ft__dt {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px
}

.ft__dt i {
  font-size: 22px;
  color: #FE83B7;
  flex-shrink: 0;
  margin-top: 2px
}

.ft__dt span {
  font-size: 14px;
  line-height: 1.55;
  color: #333
}

.ft__dt a {
  color: #023F77;
  text-decoration: none;
  transition: color .16s ease-out
}

.ft__dt a:hover {
  color: #FE83B7;
  text-decoration: underline
}

.ft__dt a:focus {
  text-decoration: underline;
  text-decoration-color: #FE83B7;
  text-decoration-thickness: 2px;
  outline: none
}

.ft__base {
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #023f7714;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px
}

.ft__logo-wrap {
  background: #FFF;
  padding: 16px;
  border-radius: 4px;
  box-shadow: 2px 7px 20px 0 #023f771a;
  border: 1px solid #023f770d
}

.ft__logo {
  width: 72px;
  height: 72px;
  display: block
}

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

.ft__copy {
  font-size: 14px;
  color: #666;
  margin: 0
}

.popup-anchor {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2000;
  pointer-events: none
}

.consent {
  pointer-events: auto;
  background: linear-gradient(135deg, #FFF 0%, #EDECEC 100%);
  border: 1px solid #023f771f;
  border-bottom: none;
  border-left: none;
  border-radius: 0 4px 0 0;
  box-shadow: 2px 9px 36px 0 #023f7721;
  padding: 40px;
  display: none;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
  min-width: 420px;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(0.4, 0, 0.6, 1)
}

.consent.vis {
  transform: translateY(0)
}

.consent__hd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px
}

.consent__ico {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: linear-gradient(135deg, #FE83B7 0%, #023F77 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.consent__ico svg {
  width: 18px;
  height: 18px;
  fill: #FFF
}

.consent__msg {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin: 0
}

.consent__acts {
  display: flex;
  gap: 8px;
  margin-top: 8px
}

.consent__btn {
  flex: 1;
  padding: 16px 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: filter .18s ease-out, box-shadow .18s ease-out;
  letter-spacing: .02em;
  min-height: 44px
}

.consent__btn--prime {
  background: linear-gradient(135deg, #FE83B7 0%, #023F77 100%);
  color: #FFF;
  box-shadow: 2px 3px 2px 0 #023f770f
}

.consent__btn--prime:hover {
  filter: brightness(1.1);
  box-shadow: 2px 7px 20px 0 #023f771a
}

.consent__btn--prime:focus {
  outline: 2px solid #FE83B7;
  outline-offset: 2px
}

.consent__btn--alt {
  background: #FFF;
  color: #023F77;
  border: 1px solid #023f7733;
  box-shadow: 2px 3px 2px 0 #023f770f
}

.consent__btn--alt:hover {
  filter: brightness(0.96);
  box-shadow: 2px 7px 20px 0 #023f771a
}

.consent__btn--alt:focus {
  outline: 2px solid #023F77;
  outline-offset: 2px
}

.consent__prefs {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #023f7714
}

.consent__prefs.vis {
  display: flex
}

.consent__opt {
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.consent__chk {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #FE83B7
}

.consent__lbl {
  font-size: 14px;
  line-height: 1.55;
  color: #333;
  cursor: pointer;
  flex: 1
}

.consent__toggle {
  background: none;
  border: none;
  color: #023F77;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  transition: color .14s ease-out
}

.consent__toggle:hover {
  color: #FE83B7
}

.consent__toggle:focus {
  outline: 2px solid #FE83B7;
  outline-offset: 2px
}

.consent__mini {
  pointer-events: auto;
  background: linear-gradient(135deg, #FE83B7 0%, #023F77 100%);
  color: #FFF;
  border: none;
  border-radius: 0 4px 0 0;
  padding: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 2px 9px 36px 0 #023f7721;
  transition: filter .18s ease-out;
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px
}

.consent__mini.vis {
  display: flex
}

.consent__mini:hover {
  filter: brightness(1.1)
}

.consent__mini:focus {
  outline: 2px solid #FE83B7;
  outline-offset: 2px
}

.consent__mini i {
  font-size: 22px
}

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

  .hd__div {
    display: none
  }

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

  .consent {
    min-width: 360px
  }
}

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

  .hd__brand::before {
    height: 60px
  }

  .mark {
    width: 64px;
    height: 64px
  }

  .hd__alert {
    font-size: 14px;
    padding: 8px 16px
  }

  .mn {
    gap: 8px
  }

  .mn__lnk {
    font-size: 14px;
    padding: 8px 16px
  }

  .ft {
    padding: 40px 16px
  }

  .ft__grid {
    margin-bottom: 40px
  }

  .ft__col--tall {
    padding: 16px
  }

  .ft__col--mid {
    padding: 16px
  }

  .ft__base {
    padding-top: 40px;
    gap: 40px
  }

  .ft__logo {
    width: 56px;
    height: 56px
  }

  .consent {
    min-width: 280px;
    max-width: calc(100vw - 16px);
    padding: 16px
  }

  .consent__acts {
    flex-direction: column
  }

  .consent__btn {
    padding: 16px
  }
}

.doc-ku-content {
  max-width: 1170px;
  margin: 0 auto;
  padding: 80px 16px
}

@media (min-width: 768px) {
  .doc-ku-content {
    padding: 80px 40px
  }
}

.doc-ku-content h1 {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: .01em;
  margin: 0 0 40px;
  color: #023F77
}

.doc-ku-content h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: .01em;
  margin: 80px 0 16px;
  color: #023F77
}

.doc-ku-content h3 {
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: .02em;
  margin: 40px 0 16px;
  color: #023F77
}

.doc-ku-content h4,
.doc-ku-content h5,
.doc-ku-content h6 {
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: .02em;
  margin: 40px 0 8px;
  color: #023F77
}

.doc-ku-content h1:first-child,
.doc-ku-content h2:first-child,
.doc-ku-content h3:first-child {
  margin-top: 0
}

.doc-ku-content p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  margin: 0 0 16px
}

.doc-ku-content strong,
.doc-ku-content b {
  font-weight: 700
}

.doc-ku-content ul,
.doc-ku-content ol {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  margin: 0 0 16px;
  padding-left: 40px
}

.doc-ku-content li {
  margin-bottom: 8px
}

.doc-ku-content a {
  color: #FE83B7;
  text-decoration: underline;
  transition: opacity .18s ease-out
}

.doc-ku-content a:hover {
  opacity: .7
}

.doc-ku-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .01em
}

.doc-ku-content thead {
  background: #EDECEC
}

.doc-ku-content th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
  color: #023F77;
  border: 1px solid #EDECEC
}

.doc-ku-content td {
  padding: 16px;
  border: 1px solid #EDECEC
}

.doc-ku-content tbody tr:nth-child(even) {
  background: #edecec4d
}

.doc-ku-content hr {
  border: none;
  height: 1px;
  background: #EDECEC;
  margin: 40px 0
}

.doc-ku-content div {
  margin-bottom: 16px
}

@media (max-width: 767px) {
  .doc-ku-content h1 {
    font-size: 30px;
    margin-bottom: 16px
  }

  .doc-ku-content h2 {
    font-size: 22px;
    margin-top: 40px
  }

  .doc-ku-content h3,
  .doc-ku-content h4,
  .doc-ku-content h5,
  .doc-ku-content h6 {
    font-size: 14px;
    margin-top: 16px
  }

  .doc-ku-content table {
    font-size: 14px;
    margin: 16px 0
  }

  .doc-ku-content th,
  .doc-ku-content td {
    padding: 8px
  }

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

.succ-strs {
  background: #fff;
  color: #1a1a2e;
  overflow-x: clip
}

.succ-strs .ttl-bnr {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #FE83B7 0%, #023F77 100%);
  animation: gradShift 8s ease-in-out infinite alternate
}

@keyframes gradShift {
  0% {
    background: linear-gradient(135deg, #FE83B7 0%, #023F77 100%)
  }

  100% {
    background: linear-gradient(135deg, #023F77 0%, #FE83B7 100%)
  }
}

.succ-strs .ttl-bnr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #ffffff26 1px, transparent 1px), radial-gradient(circle, #ffffff1a 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
  background-position: 0 0, 20px 20px;
  opacity: .4;
  pointer-events: none
}

.succ-strs .ttl-bnr::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff3
}

.succ-strs .ttl-bnr-ctn {
  position: relative;
  max-width: 1170px;
  width: 100%;
  z-index: 2;
  padding: 40px 80px 40px 40px
}

.succ-strs .ttl-eyb {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .02em;
  color: #ffffffd9;
  margin: 0 0 16px;
  text-transform: uppercase;
  font-weight: 600
}

.succ-strs .ttl-hdg {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  margin: 0;
  font-weight: 700;
  clip-path: inset(0 100% 0 0);
  animation: clipReveal 1.4s cubic-bezier(0.4, 0, 0.2, 1) .3s forwards
}

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

.succ-strs .cs-lst {
  position: relative;
  padding: 80px 16px;
  background: #fff;
  clip-path: polygon(0 0, 100% 80px, 100% 100%, 0 100%);
  margin-top: -80px
}

.succ-strs .cs-lst::before {
  content: '';
  position: absolute;
  top: 120px;
  right: 40px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #fe83b714 0%, transparent 70%);
  transform: rotate(45deg);
  pointer-events: none
}

.succ-strs .cs-lst::after {
  content: '';
  position: absolute;
  top: 180px;
  right: 60px;
  width: 1px;
  height: 150px;
  background: linear-gradient(to bottom, #fe83b74d, transparent);
  transform: rotate(-25deg);
  pointer-events: none
}

.succ-strs .cs-lst-wrp {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.succ-strs .cs-lst-hdg {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #023F77;
  margin: 0 0 40px;
  font-weight: 700
}

.succ-strs .cs-grd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  perspective: 1000px
}

.succ-strs .cs-itm {
  background: #fff;
  border: 1px solid #EDECEC;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 2px 3px 2px 0 #fe83b70f;
  transition: transform .18s ease-out, box-shadow .18s ease-out;
  position: relative
}

.succ-strs .cs-itm:hover {
  transform: translateY(-8px);
  box-shadow: 2px 9px 36px 0 #fe83b721
}

.succ-strs .cs-grd:hover .cs-itm:not(:hover) {
  transform: scale(0.97);
  opacity: .85
}

.succ-strs .cs-itm-hdr {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 16px
}

.succ-strs .cs-itm-icn {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  background: linear-gradient(135deg, #FE83B7 0%, #023F77 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.succ-strs .cs-itm-icn svg {
  width: 24px;
  height: 24px;
  fill: #fff
}

.succ-strs .cs-itm-meta {
  flex: 1
}

.succ-strs .cs-itm-nm {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #023F77;
  margin: 0 0 8px;
  font-weight: 700
}

.succ-strs .cs-itm-rl {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .02em;
  color: #023f77b3;
  margin: 0
}

.succ-strs .cs-itm-txt {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #1a1a2e;
  margin: 0 0 16px
}

.succ-strs .cs-itm-qt {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #1a1a2e;
  margin: 0;
  padding: 16px;
  background: #edecec80;
  border-radius: 4px;
  border-left: 3px solid #FE83B7;
  font-style: italic
}

.succ-strs .cs-itm-qt::before {
  content: '"';
  color: #FE83B7;
  font-size: 22px;
  font-weight: 700;
  margin-right: 4px
}

.succ-strs .cs-itm-qt::after {
  content: '"';
  color: #FE83B7;
  font-size: 22px;
  font-weight: 700;
  margin-left: 4px
}

.succ-strs .mtr-shwc {
  position: relative;
  padding: 80px 16px;
  background: radial-gradient(circle at bottom right, #fe83b71f 0%, #edecec4d 50%, transparent 100%)
}

.succ-strs .mtr-shwc::before {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 1px;
  height: 180px;
  background: linear-gradient(to top, #023f7733, transparent);
  transform: rotate(35deg);
  pointer-events: none
}

.succ-strs .mtr-shwc-wrp {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start
}

.succ-strs .mtr-sdb {
  width: calc(33.333% - 27px);
  flex-shrink: 0
}

.succ-strs .mtr-sdb-hdg {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #023F77;
  margin: 0 0 16px;
  font-weight: 300
}

.succ-strs .mtr-sdb-txt {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #1a1a2e;
  margin: 0 0 40px
}

.succ-strs .mtr-sdb-img {
  width: 100%;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 7px 20px 0 #023f771a
}

.succ-strs .mtr-sdb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.succ-strs .mtr-ctn {
  flex: 1
}

.succ-strs .mtr-grd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.succ-strs .mtr-crd {
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  box-shadow: 2px 3px 2px 0 #023f770f;
  transition: filter .16s cubic-bezier(0.4, 0, 0.6, 1)
}

.succ-strs .mtr-crd:hover {
  filter: brightness(1.03)
}

.succ-strs .mtr-crd-num {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #FE83B7;
  margin: 0 0 8px;
  font-weight: 700
}

.succ-strs .mtr-crd-lbl {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .02em;
  color: #023F77;
  margin: 0 0 16px;
  font-weight: 600;
  text-transform: uppercase
}

.succ-strs .mtr-crd-dsc {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #1a1a2e;
  margin: 0
}

.succ-strs .cd-blk {
  background: #edecec66;
  border: 1px solid #EDECEC;
  border-radius: 4px;
  padding: 16px;
  margin: 40px 0 0;
  position: relative;
  overflow: hidden
}

.succ-strs .cd-blk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #FE83B7, #023F77)
}

.succ-strs .cd-blk-hdr {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .02em;
  color: #023F77;
  margin: 0 0 8px;
  font-weight: 600;
  padding-left: 16px
}

.succ-strs .cd-blk-ctn {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .01em;
  color: #1a1a2e;
  margin: 0;
  padding: 16px;
  background: #fff;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word
}

.succ-strs .cd-blk-ctn code {
  display: block
}

@media (max-width: 1280px) {
  .succ-strs .ttl-bnr {
    min-height: 440px;
    padding: 80px 16px
  }

  .succ-strs .ttl-bnr-ctn {
    padding: 40px
  }

  .succ-strs .ttl-hdg {
    font-size: 30px
  }

  .succ-strs .cs-grd {
    gap: 40px
  }

  .succ-strs .mtr-shwc-wrp {
    flex-direction: column
  }

  .succ-strs .mtr-sdb {
    width: 100%
  }

  .succ-strs .mtr-grd {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 768px) {
  .succ-strs .ttl-bnr {
    min-height: 360px;
    padding: 40px 16px
  }

  .succ-strs .ttl-bnr-ctn {
    padding: 16px
  }

  .succ-strs .ttl-hdg {
    font-size: 30px
  }

  .succ-strs .cs-lst {
    padding: 40px 16px;
    clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
    margin-top: -40px
  }

  .succ-strs .cs-lst-hdg {
    font-size: 22px;
    margin: 0 0 40px
  }

  .succ-strs .cs-grd {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .succ-strs .cs-itm {
    padding: 16px
  }

  .succ-strs .cs-itm-nm {
    font-size: 22px
  }

  .succ-strs .mtr-shwc {
    padding: 40px 16px
  }

  .succ-strs .mtr-sdb-hdg {
    font-size: 22px
  }

  .succ-strs .mtr-grd {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .succ-strs .mtr-crd {
    padding: 16px
  }

  .succ-strs .mtr-crd-num {
    font-size: 30px
  }
}

.svc-pg {
  background: #fff;
  color: #1a0f0f;
  letter-spacing: .015em
}

.svc-pg .intro-band {
  display: flex;
  align-items: stretch;
  max-width: 1170px;
  margin: 0 auto;
  padding: 16px;
  background: linear-gradient(135deg, #FE83B7 0%, #fe83b71a 100%);
  position: relative;
  overflow: hidden
}

.svc-pg .intro-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, #023f7708 20px, #023f7708 40px);
  pointer-events: none;
  z-index: 1
}

.svc-pg .intro-band__img {
  flex: 0 0 50%;
  position: relative;
  z-index: 2
}

.svc-pg .intro-band__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 3px solid #023F77;
  box-shadow: 2px 7px 20px 0 #023f771a
}

.svc-pg .intro-band__txt {
  flex: 0 0 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2
}

.svc-pg .intro-band__hd {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  color: #023F77
}

.svc-pg .intro-band__manifest {
  font-size: 22px;
  line-height: 1.55;
  margin: 0;
  color: #1a0f0f
}

@media (max-width: 767px) {
  .svc-pg .intro-band {
    flex-direction: column;
    padding: 8px
  }

  .svc-pg .intro-band__img {
    flex: 0 0 auto;
    min-height: 240px
  }

  .svc-pg .intro-band__txt {
    padding: 16px
  }

  .svc-pg .intro-band__hd {
    font-size: 30px
  }

  .svc-pg .intro-band__manifest {
    font-size: 14px;
    line-height: 1.8
  }
}

.svc-pg .offering-grid {
  max-width: 1170px;
  margin: 80px auto;
  padding: 0 16px;
  position: relative
}

.svc-pg .offering-grid::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: #023F77;
  border-radius: 40px
}

.svc-pg .offering-grid::after {
  content: '';
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: #023F77;
  border-radius: 40px
}

.svc-pg .offering-grid__head {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 40px;
  text-align: center;
  font-weight: 300;
  color: #023F77
}

.svc-pg .offering-grid__layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  align-items: start
}

.svc-pg .offering-grid__primary {
  background: #EDECEC;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 2px 9px 36px 0 #fe83b721;
  border: 2px solid #FE83B7;
  position: relative
}

.svc-pg .offering-grid__primary::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 80px;
  height: 1px;
  background: #023F77
}

.svc-pg .offering-grid__primary::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 16px;
  width: 80px;
  height: 1px;
  background: #023F77
}

.svc-pg .offering-grid__primary-title {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  color: #023F77
}

.svc-pg .offering-grid__primary-desc {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 16px
}

.svc-pg .offering-grid__primary-desc:last-of-type {
  margin-bottom: 0
}

.svc-pg .offering-grid__aside {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.svc-pg .offering-grid__detail {
  background: #fff;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid #EDECEC;
  box-shadow: 2px 3px 2px 0 #023f770f;
  transition: transform .18s ease-out, box-shadow .18s ease-out;
  position: relative
}

.svc-pg .offering-grid__detail::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 12px;
  height: 12px;
  border-radius: 40px;
  background: #FE83B7;
  opacity: .6
}

.svc-pg .offering-grid__detail:hover {
  transform: translateY(-2px);
  box-shadow: 2px 7px 20px 0 #023f771a
}

.svc-pg .offering-grid__detail-label {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  font-weight: 700;
  color: #023F77;
  padding-left: 24px
}

.svc-pg .offering-grid__detail-val {
  font-size: 14px;
  line-height: 1.55;
  margin: 8px 0 0;
  padding-left: 24px;
  color: #1a0f0f
}

@media (max-width: 1279px) {
  .svc-pg .offering-grid__layout {
    grid-template-columns: 2fr 1fr;
    gap: 16px
  }

  .svc-pg .offering-grid__primary {
    padding: 16px
  }
}

@media (max-width: 767px) {
  .svc-pg .offering-grid {
    margin: 40px auto
  }

  .svc-pg .offering-grid__head {
    font-size: 30px;
    margin: 0 0 16px
  }

  .svc-pg .offering-grid__layout {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .svc-pg .offering-grid__primary-title {
    font-size: 22px
  }
}

.svc-pg .method-reveal {
  background: #FE83B7;
  padding: 80px 16px;
  position: relative;
  overflow: hidden
}

.svc-pg .method-reveal::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: #fff;
  border-radius: 40px
}

.svc-pg .method-reveal::after {
  content: '';
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: #fff;
  border-radius: 40px
}

.svc-pg .method-reveal__inner {
  max-width: 1170px;
  margin: 0 auto
}

.svc-pg .method-reveal__title {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 40px;
  text-align: center;
  font-weight: 700;
  color: #fff
}

.svc-pg .method-reveal__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.svc-pg .method-reveal__card {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 7px 20px 0 #023f771a;
  transition: filter .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.svc-pg .method-reveal__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 100% 100%, #023F77 0%, transparent 70%);
  opacity: 0;
  transition: opacity .22s cubic-bezier(0.4, 0, 0.6, 1);
  pointer-events: none;
  z-index: 1
}

.svc-pg .method-reveal__card:hover::before {
  opacity: .92
}

.svc-pg .method-reveal__card:hover {
  filter: brightness(1.05)
}

.svc-pg .method-reveal__card-num {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700;
  color: #FE83B7;
  position: relative;
  z-index: 2;
  transition: color .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.svc-pg .method-reveal__card:hover .method-reveal__card-num {
  color: #fff
}

.svc-pg .method-reveal__card-label {
  font-size: 22px;
  line-height: 1.55;
  margin: 0 0 16px;
  font-weight: 700;
  color: #023F77;
  position: relative;
  z-index: 2;
  transition: color .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.svc-pg .method-reveal__card:hover .method-reveal__card-label {
  color: #fff
}

.svc-pg .method-reveal__card-txt {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  color: #1a0f0f;
  position: relative;
  z-index: 2;
  transition: color .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.svc-pg .method-reveal__card:hover .method-reveal__card-txt {
  color: #fff
}

.svc-pg .method-reveal__card::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 1px;
  height: 60px;
  background: #023F77
}

@media (max-width: 1279px) {
  .svc-pg .method-reveal__cards {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .svc-pg .method-reveal__card {
    padding: 16px
  }
}

@media (max-width: 767px) {
  .svc-pg .method-reveal {
    padding: 40px 16px
  }

  .svc-pg .method-reveal__title {
    font-size: 30px;
    margin: 0 0 16px
  }

  .svc-pg .method-reveal__card-num {
    font-size: 30px
  }

  .svc-pg .method-reveal__card-label {
    font-size: 14px
  }
}

.svc-pg .outcomes-narrow {
  max-width: 1170px;
  margin: 80px auto;
  padding: 0 16px;
  position: relative
}

.svc-pg .outcomes-narrow::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 1px;
  height: 80px;
  background: #FE83B7
}

.svc-pg .outcomes-narrow::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 24px;
  width: 1px;
  height: 80px;
  background: #FE83B7
}

.svc-pg .outcomes-narrow__hd {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 40px;
  font-weight: 700;
  color: #023F77;
  max-width: 600px
}

.svc-pg .outcomes-narrow__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px
}

.svc-pg .outcomes-narrow__col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.svc-pg .outcomes-narrow__item {
  background: #EDECEC;
  padding: 16px;
  border-radius: 4px;
  border-left: 4px solid #FE83B7;
  box-shadow: 2px 3px 2px 0 #023f770f;
  transition: border-left-color .16s ease-out, padding-left .16s ease-out;
  position: relative
}

.svc-pg .outcomes-narrow__item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background: #023F77
}

.svc-pg .outcomes-narrow__item:hover {
  border-left-color: #023F77;
  padding-left: 24px
}

.svc-pg .outcomes-narrow__item-txt {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  padding-left: 24px
}

.svc-pg .outcomes-narrow__cta-wrap {
  margin-top: 40px;
  text-align: center
}

.svc-pg .outcomes-narrow__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: #023F77;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  box-shadow: 2px 7px 20px 0 #023f771a;
  transition: filter .2s cubic-bezier(0.4, 0, 0.6, 1), transform .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.svc-pg .outcomes-narrow__link:hover {
  filter: brightness(1.15);
  transform: translateY(-1px)
}

.svc-pg .outcomes-narrow__link:active {
  transform: translateY(0)
}

.svc-pg .outcomes-narrow__link::before {
  content: '';
  width: 16px;
  height: 16px;
  background: #FE83B7;
  border-radius: 40px
}

@media (max-width: 1279px) {
  .svc-pg .outcomes-narrow__grid {
    gap: 16px
  }
}

@media (max-width: 767px) {
  .svc-pg .outcomes-narrow {
    margin: 40px auto
  }

  .svc-pg .outcomes-narrow__hd {
    font-size: 22px;
    margin: 0 0 16px
  }

  .svc-pg .outcomes-narrow__grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .svc-pg .outcomes-narrow__cta-wrap {
    margin-top: 16px
  }

  .svc-pg .outcomes-narrow__link {
    padding: 16px;
    width: 100%;
    justify-content: center
  }
}

@keyframes svc-pg-fade-blur {
  from {
    opacity: 0;
    filter: blur(8px)
  }

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

.svc-pg .intro-band,
.svc-pg .offering-grid,
.svc-pg .method-reveal,
.svc-pg .outcomes-narrow {
  animation: svc-pg-fade-blur .6s cubic-bezier(0.4, 0, 0.6, 1) forwards
}

.svc-pg .offering-grid {
  animation-delay: .1s;
  opacity: 0
}

.svc-pg .method-reveal {
  animation-delay: .2s;
  opacity: 0
}

.svc-pg .outcomes-narrow {
  animation-delay: .3s;
  opacity: 0
}

.debut {
  background: #fff;
  color: #1a1a1a;
  overflow-x: clip
}

.debut * {
  box-sizing: border-box
}

.debut img {
  max-width: 100%;
  height: auto;
  display: block
}

.debut ::selection {
  background: #023F77;
  color: #fff
}

.debut .cap {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px
}

.debut .split-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden
}

.debut .split-intro__col--pink {
  background: #FE83B7;
  position: relative;
  padding: 80px 40px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.debut .split-intro__col--blue {
  background: #023F77;
  position: relative;
  overflow: hidden
}

.debut .split-intro__quote {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 180px;
  line-height: 1;
  color: #ffffff1f;
  font-weight: 700;
  pointer-events: none
}

.debut .split-intro__heading {
  font-size: 56px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 40px;
  letter-spacing: .01em;
  font-weight: 700
}

.debut .split-intro__list {
  list-style: none;
  padding: 0;
  margin: 0
}

.debut .split-intro__item {
  font-size: 22px;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: .02em;
  padding-left: 32px;
  position: relative
}

.debut .split-intro__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: #fff;
  transform: rotate(45deg)
}

.debut .split-intro__img-wrap {
  position: relative;
  width: 100%;
  height: 100%
}

.debut .split-intro__img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.debut .split-intro__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to left, #023f77b3, transparent);
  pointer-events: none
}

@media (max-width: 767px) {
  .debut .split-intro {
    grid-template-columns: 1fr;
    min-height: 0
  }

  .debut .split-intro__col--pink {
    padding: 40px 16px 16px
  }

  .debut .split-intro__col--blue {
    min-height: 380px
  }

  .debut .split-intro__heading {
    font-size: 30px;
    margin-bottom: 16px
  }

  .debut .split-intro__item {
    font-size: 14px;
    padding-left: 24px
  }

  .debut .split-intro__item::before {
    top: 8px;
    width: 6px;
    height: 6px
  }

  .debut .split-intro__quote {
    font-size: 120px;
    top: 16px;
    left: 16px
  }
}

.debut .support {
  padding: 80px 0;
  background: #EDECEC;
  position: relative
}

.debut .support::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, #FE83B7 0px, #FE83B7 8px, transparent 8px, transparent 16px)
}

.debut .support__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.debut .support__txt {
  padding-top: 16px
}

.debut .support__h {
  font-size: 30px;
  line-height: 1.2;
  color: #023F77;
  margin: 0 0 40px;
  letter-spacing: .015em;
  font-weight: 700
}

.debut .support__p {
  font-size: 14px;
  line-height: 1.8;
  color: #2a2a2a;
  margin: 0 0 16px;
  letter-spacing: .02em
}

.debut .support__p:last-child {
  margin-bottom: 0
}

.debut .support__visual {
  position: relative
}

.debut .support__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 2px 7px 20px 0 #023f771a
}

.debut .support__bracket {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-top: 4px solid #FE83B7;
  border-right: 4px solid #FE83B7;
  border-radius: 4px;
  pointer-events: none
}

@media (max-width: 767px) {
  .debut .support {
    padding: 40px 0
  }

  .debut .support__inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .debut .support__h {
    font-size: 22px;
    margin-bottom: 16px
  }

  .debut .support__img {
    height: 280px
  }

  .debut .support__bracket {
    width: 60px;
    height: 60px;
    top: -8px;
    right: -8px
  }
}

.debut .outcome {
  padding: 80px 0;
  background: #fff;
  position: relative;
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
  margin-top: -40px
}

.debut .outcome__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.debut .outcome__card {
  background: #EDECEC;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 2px 3px 2px 0 #fe83b70f;
  transition: box-shadow .18s ease-out, transform .18s ease-out;
  position: relative;
  overflow: hidden
}

.debut .outcome__card:hover {
  box-shadow: 2px 9px 36px 0 #fe83b721;
  transform: translateY(-2px)
}

.debut .outcome__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FE83B7, #023F77)
}

.debut .outcome__num {
  font-size: 56px;
  line-height: 1;
  color: #FE83B7;
  margin: 0 0 16px;
  letter-spacing: .01em;
  font-weight: 300
}

.debut .outcome__label {
  font-size: 14px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0;
  letter-spacing: .02em;
  font-weight: 400
}

.debut .outcome__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px
}

.debut .outcome__h {
  font-size: 30px;
  line-height: 1.2;
  color: #023F77;
  margin: 0 0 16px;
  letter-spacing: .015em;
  font-weight: 700
}

.debut .outcome__desc {
  font-size: 14px;
  line-height: 1.8;
  color: #2a2a2a;
  margin: 0;
  letter-spacing: .02em
}

@media (max-width: 1279px) {
  .debut .outcome__grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .debut .outcome__card {
    padding: 16px
  }

  .debut .outcome__num {
    font-size: 30px
  }
}

@media (max-width: 767px) {
  .debut .outcome {
    padding: 40px 0;
    clip-path: polygon(0 0, 100% 16px, 100% 100%, 0 100%);
    margin-top: -16px
  }

  .debut .outcome__intro {
    margin-bottom: 40px
  }

  .debut .outcome__h {
    font-size: 22px
  }
}

.debut .gap {
  padding: 80px 0;
  background: radial-gradient(circle at bottom right, #023F77, transparent 68%);
  position: relative
}

.debut .gap__flex {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center
}

.debut .gap__img-zone {
  flex: 0 0 480px;
  position: relative
}

.debut .gap__img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 2px 7px 20px 0 #023f771a
}

.debut .gap__bracket-left {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 100px;
  height: 100px;
  border-bottom: 4px solid #FE83B7;
  border-left: 4px solid #FE83B7;
  border-radius: 4px;
  pointer-events: none
}

.debut .gap__txt-zone {
  flex: 1
}

.debut .gap__h {
  font-size: 30px;
  line-height: 1.2;
  color: #023F77;
  margin: 0 0 40px;
  letter-spacing: .015em;
  font-weight: 700
}

.debut .gap__p {
  font-size: 14px;
  line-height: 1.8;
  color: #2a2a2a;
  margin: 0 0 16px;
  letter-spacing: .02em
}

.debut .gap__p:last-child {
  margin-bottom: 0
}

.debut .gap__accent {
  color: #FE83B7;
  font-weight: 600
}

@media (max-width: 1279px) {
  .debut .gap__flex {
    flex-direction: column;
    gap: 40px
  }

  .debut .gap__img-zone {
    flex: 0 0 auto;
    width: 100%
  }

  .debut .gap__img {
    height: 380px
  }
}

@media (max-width: 767px) {
  .debut .gap {
    padding: 40px 0
  }

  .debut .gap__h {
    font-size: 22px;
    margin-bottom: 16px
  }

  .debut .gap__img {
    height: 280px
  }

  .debut .gap__bracket-left {
    width: 60px;
    height: 60px;
    bottom: -8px;
    left: -8px
  }
}

.debut .hesitation {
  padding: 80px 0;
  background: #EDECEC;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%)
}

.debut .hesitation::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, #023F77 0px, #023F77 8px, transparent 8px, transparent 16px)
}

.debut .hesitation__layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start
}

.debut .hesitation__img-col {
  position: relative
}

.debut .hesitation__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 2px 7px 20px 0 #fe83b71a
}

.debut .hesitation__txt-col {
  padding-top: 40px
}

.debut .hesitation__h {
  font-size: 30px;
  line-height: 1.2;
  color: #023F77;
  margin: 0 0 40px;
  letter-spacing: .015em;
  font-weight: 300
}

.debut .hesitation__p {
  font-size: 14px;
  line-height: 1.8;
  color: #2a2a2a;
  margin: 0 0 16px;
  letter-spacing: .02em;
  max-width: 620px
}

.debut .hesitation__p:last-child {
  margin-bottom: 0
}

.debut .hesitation__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: #FE83B7;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .02em;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: filter .16s ease-out, transform .16s ease-out;
  margin-top: 40px;
  box-shadow: 2px 3px 2px 0 #fe83b70f
}

.debut .hesitation__btn:hover {
  filter: brightness(1.08)
}

.debut .hesitation__btn:active {
  transform: translateY(1px)
}

@media (max-width: 1279px) {
  .debut .hesitation__layout {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .debut .hesitation__txt-col {
    padding-top: 0
  }

  .debut .hesitation__img {
    height: 360px
  }
}

@media (max-width: 767px) {
  .debut .hesitation {
    padding: 40px 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), 0 100%)
  }

  .debut .hesitation__h {
    font-size: 22px;
    margin-bottom: 16px
  }

  .debut .hesitation__img {
    height: 280px
  }

  .debut .hesitation__btn {
    margin-top: 16px;
    padding: 16px;
    width: 100%;
    justify-content: center
  }
}

.debut .proof {
  padding: 80px 0;
  background: #fff;
  position: relative
}

.debut .proof__center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto
}

.debut .proof__h {
  font-size: 30px;
  line-height: 1.2;
  color: #023F77;
  margin: 0 0 40px;
  letter-spacing: .015em;
  font-weight: 700
}

.debut .proof__p {
  font-size: 14px;
  line-height: 1.8;
  color: #2a2a2a;
  margin: 0 0 16px;
  letter-spacing: .02em
}

.debut .proof__p:last-of-type {
  margin-bottom: 0
}

.debut .proof__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px
}

.debut .proof__metric {
  text-align: center;
  position: relative;
  padding: 40px 16px;
  background: linear-gradient(135deg, #EDECEC, #fff);
  border-radius: 4px;
  box-shadow: 2px 3px 2px 0 #023f770f;
  transition: box-shadow .22s cubic-bezier(0.4, 0, 0.6, 1), transform .22s cubic-bezier(0.4, 0, 0.6, 1);
  overflow: hidden
}

.debut .proof__metric:hover {
  box-shadow: 2px 9px 36px 0 #023f7721;
  transform: translateY(-4px)
}

.debut .proof__metric::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #FE83B7;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(0.4, 0, 0.6, 1)
}

.debut .proof__metric:hover::after {
  transform: scaleX(1)
}

.debut .proof__value {
  font-size: 56px;
  line-height: 1;
  color: #023F77;
  margin: 0 0 16px;
  letter-spacing: .01em;
  font-weight: 700
}

.debut .proof__metric-label {
  font-size: 14px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0;
  letter-spacing: .02em
}

@media (max-width: 1279px) {
  .debut .proof__metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .debut .proof__metric {
    padding: 16px
  }

  .debut .proof__value {
    font-size: 30px
  }
}

@media (max-width: 767px) {
  .debut .proof {
    padding: 40px 0
  }

  .debut .proof__h {
    font-size: 22px;
    margin-bottom: 16px
  }

  .debut .proof__metrics {
    margin-top: 40px;
    grid-template-columns: 1fr
  }
}

@keyframes expandHeight {
  from {
    max-height: 0;
    opacity: 0
  }

  to {
    max-height: 1000px;
    opacity: 1
  }
}

.debut .support__visual {
  animation: expandHeight .6s cubic-bezier(0.4, 0, 0.6, 1) forwards
}

.abt {
  background: #FFF;
  color: #1A1A1A;
  overflow-x: clip
}

.abt * {
  box-sizing: border-box
}

.abt img {
  max-width: 100%;
  height: auto;
  display: block
}

.abt .bnr {
  position: relative;
  background: linear-gradient(135deg, #023F77 0%, #FE83B7 100%);
  padding: 80px 16px;
  overflow: hidden
}

.abt .bnr::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #ffffff26 2px, transparent 2px);
  background-size: 16px 16px;
  transform: translateY(-50%);
  pointer-events: none
}

.abt .bnr__ctr {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.abt .bnr__hd {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #FFF;
  margin: 0 0 40px;
  font-weight: 700;
  animation: bnrFd .18s ease-out forwards;
  opacity: 0
}

@keyframes bnrFd {
  to {
    opacity: 1
  }
}

.abt .bnr__tx {
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: .015em;
  color: #FFF;
  margin: 0 0 16px;
  max-width: 720px;
  animation: bnrFd .22s ease-out .1s forwards;
  opacity: 0
}

.abt .bnr__tx:last-of-type {
  margin-bottom: 0
}

.abt .stry {
  padding: 80px 16px;
  background: #FFF;
  position: relative
}

.abt .stry__ctr {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start
}

.abt .stry__lf {
  flex: 0 0 480px;
  position: relative
}

.abt .stry__lf::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 60px;
  height: 60px;
  border-top: 3px solid #FE83B7;
  border-left: 3px solid #FE83B7;
  border-radius: 4px;
  pointer-events: none
}

.abt .stry__lf::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60px;
  height: 60px;
  border-bottom: 3px solid #023F77;
  border-right: 3px solid #023F77;
  border-radius: 4px;
  pointer-events: none
}

.abt .stry__img-wrp {
  width: 100%;
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 7px 20px 0 #023f771a
}

.abt .stry__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .38s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt .stry__img-wrp:hover .stry__img {
  transform: scale(1.06)
}

.abt .stry__rt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px
}

.abt .stry__hd {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: .015em;
  color: #023F77;
  margin: 0 0 16px;
  font-weight: 700
}

.abt .stry__txt {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .015em;
  color: #1A1A1A;
  margin: 0 0 16px
}

.abt .stry__txt:last-child {
  margin-bottom: 0
}

.abt .stry__qte {
  padding: 16px 16px 16px 24px;
  border-left: 4px solid #FE83B7;
  background: #EDECEC;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .015em;
  color: #023F77;
  font-style: italic;
  margin: 16px 0
}

.abt .vals {
  padding: 80px 16px;
  background: radial-gradient(circle at bottom right, #fe83b714 0%, transparent 70%);
  position: relative
}

.abt .vals::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 39px, #023f7705 39px, #023f7705 40px), repeating-linear-gradient(0deg, transparent, transparent 39px, #023f7705 39px, #023f7705 40px);
  pointer-events: none;
  opacity: .5
}

.abt .vals__ctr {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.abt .vals__hd {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: .015em;
  color: #023F77;
  margin: 0 0 40px;
  font-weight: 700;
  text-align: center
}

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

.abt .vl-crd {
  background: #FFF;
  padding: 40px;
  border-radius: 40px;
  box-shadow: 2px 3px 2px 0 #fe83b70f;
  transition: all .32s cubic-bezier(0.4, 0, 0.6, 1);
  position: relative;
  overflow: hidden
}

.abt .vl-crd::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FE83B7;
  transition: transform .28s ease-out
}

.abt .vl-crd:hover {
  box-shadow: 2px 9px 36px 0 #023f7721;
  transform: translateY(-4px)
}

.abt .vl-crd:hover::before {
  transform: scale(1.4)
}

.abt .vl-crd__icn {
  width: 56px;
  height: 56px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fe83b726 0%, #023f7726 100%);
  border-radius: 4px
}

.abt .vl-crd__icn svg {
  width: 32px;
  height: 32px;
  fill: #023F77
}

.abt .vl-crd__ttl {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: .015em;
  color: #023F77;
  margin: 0 0 16px;
  font-weight: 700
}

.abt .vl-crd__dsc {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .015em;
  color: #1A1A1A;
  margin: 0
}

.abt .tm {
  padding: 80px 16px;
  background: #EDECEC;
  position: relative
}

.abt .tm__ctr {
  max-width: 1170px;
  margin: 0 auto
}

.abt .tm__hd {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: .015em;
  color: #023F77;
  margin: 0 0 40px;
  font-weight: 700
}

.abt .tm__grd {
  display: grid;
  grid-template-columns: 320px 420px 380px;
  gap: 16px;
  justify-content: space-between
}

.abt .tm-prs {
  background: #FFF;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 7px 20px 0 #023f771a;
  transition: box-shadow .34s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt .tm-prs:hover {
  box-shadow: 2px 9px 36px 0 #fe83b721
}

.abt .tm-prs__img-wrp {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative
}

.abt .tm-prs__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .36s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt .tm-prs:hover .tm-prs__img {
  transform: scale(1.08)
}

.abt .tm-prs__cnt {
  padding: 40px
}

.abt .tm-prs__nm {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: .015em;
  color: #023F77;
  margin: 0 0 8px;
  font-weight: 700
}

.abt .tm-prs__rl {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .015em;
  color: #FE83B7;
  margin: 0 0 16px;
  font-weight: 500
}

.abt .tm-prs__bio {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .015em;
  color: #1A1A1A;
  margin: 0
}

.abt .jrny {
  padding: 80px 16px;
  background: #FFF;
  position: relative
}

.abt .jrny__ctr {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center
}

.abt .jrny__lf {
  flex: 1
}

.abt .jrny__hd {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: .015em;
  color: #023F77;
  margin: 0 0 40px;
  font-weight: 700
}

.abt .jrny__tml {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.abt .jrny-itm {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start
}

.abt .jrny-itm__yr {
  flex: 0 0 80px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: .015em;
  color: #FE83B7;
  font-weight: 700;
  padding-top: 4px
}

.abt .jrny-itm__cnt {
  flex: 1;
  padding-left: 16px;
  border-left: 2px solid #EDECEC;
  position: relative
}

.abt .jrny-itm__cnt::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #023F77
}

.abt .jrny-itm__ttl {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .015em;
  color: #023F77;
  margin: 0 0 8px;
  font-weight: 700
}

.abt .jrny-itm__dsc {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .015em;
  color: #1A1A1A;
  margin: 0
}

.abt .jrny__rt {
  flex: 0 0 480px;
  position: relative
}

.abt .jrny__img-wrp {
  width: 100%;
  height: 560px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 2px 9px 36px 0 #fe83b721;
  position: relative
}

.abt .jrny__img-wrp::before {
  content: '';
  position: absolute;
  top: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  border: 3px solid #FE83B7;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1
}

.abt .jrny__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt .jrny__img-wrp:hover .jrny__img {
  transform: scale(1.05)
}

.abt .dvdr {
  width: 100%;
  height: 2px;
  overflow: visible;
  margin: 0;
  padding: 0;
  display: block
}

.abt .dvdr__ln {
  width: 100%;
  height: 2px;
  fill: none;
  stroke: #EDECEC;
  stroke-width: 2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke
}

@media (max-width: 1280px) {
  .abt .bnr {
    padding: 40px 16px
  }

  .abt .bnr__hd {
    font-size: 30px;
    margin-bottom: 16px
  }

  .abt .bnr__tx {
    font-size: 14px
  }

  .abt .stry {
    padding: 40px 16px
  }

  .abt .stry__ctr {
    flex-direction: column;
    gap: 40px
  }

  .abt .stry__lf {
    flex: 1 1 auto
  }

  .abt .stry__img-wrp {
    height: 400px
  }

  .abt .vals {
    padding: 40px 16px
  }

  .abt .vals__hd {
    font-size: 22px;
    margin-bottom: 40px
  }

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

  .abt .vl-crd {
    padding: 16px
  }

  .abt .tm {
    padding: 40px 16px
  }

  .abt .tm__hd {
    font-size: 22px;
    margin-bottom: 40px
  }

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

  .abt .tm-prs__img-wrp {
    height: 240px
  }

  .abt .tm-prs__cnt {
    padding: 16px
  }

  .abt .jrny {
    padding: 40px 16px
  }

  .abt .jrny__ctr {
    flex-direction: column;
    gap: 40px
  }

  .abt .jrny__rt {
    flex: 1 1 auto;
    width: 100%
  }

  .abt .jrny__img-wrp {
    height: 400px
  }

  .abt .jrny__hd {
    font-size: 22px
  }
}

@media (max-width: 768px) {
  .abt .bnr {
    padding: 40px 8px
  }

  .abt .bnr__hd {
    font-size: 22px
  }

  .abt .stry {
    padding: 40px 8px
  }

  .abt .stry__hd {
    font-size: 22px
  }

  .abt .stry__img-wrp {
    height: 280px
  }

  .abt .vals {
    padding: 40px 8px
  }

  .abt .tm {
    padding: 40px 8px
  }

  .abt .tm-prs__img-wrp {
    height: 200px
  }

  .abt .jrny {
    padding: 40px 8px
  }

  .abt .jrny__img-wrp {
    height: 320px
  }

  .abt .jrny-itm__yr {
    flex: 0 0 60px;
    font-size: 14px
  }
}

.prog-learn {
  background: #fff;
  color: #1a1a1a;
  letter-spacing: .015em
}

.prog-learn .lead-strip {
  display: flex;
  align-items: center;
  padding: 16px 0;
  max-width: 1170px;
  margin: 0 auto;
  gap: 40px
}

.prog-learn .lead-strip__visual {
  flex: 0 0 320px;
  height: 180px;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  overflow: hidden
}

.prog-learn .lead-strip__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.4)
}

.prog-learn .lead-strip__text {
  flex: 1
}

.prog-learn .lead-strip__hdg {
  font-size: 56px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: .01em
}

@media (max-width: 1280px) {
  .prog-learn .lead-strip {
    padding: 16px 40px
  }

  .prog-learn .lead-strip__visual {
    flex: 0 0 280px;
    height: 160px
  }

  .prog-learn .lead-strip__hdg {
    font-size: 48px
  }
}

@media (max-width: 768px) {
  .prog-learn .lead-strip {
    flex-direction: column;
    padding: 16px;
    gap: 16px
  }

  .prog-learn .lead-strip__visual {
    flex: none;
    width: 100%;
    height: 140px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%)
  }

  .prog-learn .lead-strip__hdg {
    font-size: 30px
  }
}

.prog-learn .explore {
  max-width: 1170px;
  margin: 80px auto;
  padding: 0 40px;
  position: relative
}

.prog-learn .explore::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #FE83B7;
  border-radius: 40px;
  box-shadow: 16px 0 0 #FE83B7, -16px 0 0 #FE83B7
}

.prog-learn .explore::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 85% 85%, #023f7708 0%, transparent 70%);
  pointer-events: none;
  z-index: 0
}

.prog-learn .explore__inner {
  position: relative;
  z-index: 1
}

.prog-learn .explore__heading {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 40px;
  letter-spacing: .012em
}

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

.prog-learn .card-exp {
  background: #fff;
  border: 1px solid #023f7714;
  padding: 40px 16px;
  position: relative;
  overflow: hidden;
  transition: border-color .18s ease-out, box-shadow .18s ease-out;
  border-radius: 4px
}

.prog-learn .card-exp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FE83B7 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.prog-learn .card-exp:hover::before {
  transform: scaleX(1)
}

.prog-learn .card-exp:hover {
  border-color: #fe83b733;
  box-shadow: 2px 7px 20px 0 #fe83b71a
}

.prog-learn .card-exp__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edecec80;
  border-radius: 40px
}

.prog-learn .card-exp__icon svg {
  width: 24px;
  height: 24px;
  fill: #023F77
}

.prog-learn .card-exp__title {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px;
  text-align: center;
  letter-spacing: .015em
}

.prog-learn .card-exp__desc {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  text-align: center;
  color: #4a4a4a
}

@media (max-width: 1280px) {
  .prog-learn .explore {
    margin: 80px auto;
    padding: 0 40px
  }

  .prog-learn .explore__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }
}

@media (max-width: 768px) {
  .prog-learn .explore {
    margin: 40px auto;
    padding: 0 16px
  }

  .prog-learn .explore__heading {
    font-size: 22px;
    margin: 0 0 16px
  }

  .prog-learn .explore__grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .prog-learn .card-exp {
    padding: 16px
  }
}

.prog-learn .timeline {
  background: linear-gradient(180deg, #edecec66 0%, #edecec00 100%);
  padding: 80px 40px;
  position: relative
}

.prog-learn .timeline::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #023F77;
  border-radius: 40px;
  box-shadow: 16px 0 0 #023F77, -16px 0 0 #023F77
}

.prog-learn .timeline__wrap {
  max-width: 1170px;
  margin: 0 auto
}

.prog-learn .timeline__heading {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 40px;
  letter-spacing: .012em;
  text-align: center
}

.prog-learn .timeline__list {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.prog-learn .phase {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  position: relative
}

.prog-learn .phase__num {
  text-align: right;
  position: relative
}

.prog-learn .phase__digit {
  font-size: 56px;
  line-height: 1;
  color: #FE83B7;
  display: block;
  margin: 0 0 8px;
  letter-spacing: .01em
}

.prog-learn .phase__label {
  font-size: 14px;
  line-height: 1.2;
  color: #6a6a6a;
  display: block;
  text-transform: uppercase;
  letter-spacing: .02em
}

.prog-learn .phase__dots {
  position: absolute;
  right: -20px;
  top: 28px;
  display: flex;
  gap: 8px
}

.prog-learn .phase__dots span {
  width: 4px;
  height: 4px;
  background: #FE83B7;
  border-radius: 40px
}

.prog-learn .phase__content {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 2px 3px 2px 0 #023f770f;
  position: relative
}

.prog-learn .phase__title {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: .015em
}

.prog-learn .phase__text {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: #4a4a4a
}

@media (max-width: 1280px) {
  .prog-learn .timeline {
    padding: 80px 40px
  }

  .prog-learn .phase {
    grid-template-columns: 180px 1fr;
    gap: 40px
  }

  .prog-learn .phase__digit {
    font-size: 48px
  }
}

@media (max-width: 768px) {
  .prog-learn .timeline {
    padding: 40px 16px
  }

  .prog-learn .timeline__heading {
    font-size: 22px;
    margin: 0 0 16px
  }

  .prog-learn .timeline__list {
    gap: 16px
  }

  .prog-learn .phase {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .prog-learn .phase__num {
    text-align: left
  }

  .prog-learn .phase__dots {
    right: auto;
    left: 0;
    top: auto;
    bottom: -12px
  }

  .prog-learn .phase__digit {
    font-size: 30px
  }

  .prog-learn .phase__content {
    padding: 16px
  }
}

.prog-learn .detailed {
  max-width: 1170px;
  margin: 80px auto;
  padding: 0 40px;
  position: relative
}

.prog-learn .detailed::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #FE83B7;
  border-radius: 40px;
  box-shadow: 16px 0 0 #FE83B7, -16px 0 0 #FE83B7
}

.prog-learn .detailed__heading {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 40px;
  letter-spacing: .012em
}

.prog-learn .detailed__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start
}

.prog-learn .detailed__main {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.prog-learn .txt-block {
  position: relative
}

.prog-learn .txt-block__subhead {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: .015em
}

.prog-learn .txt-block__para {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 16px;
  max-width: 640px
}

.prog-learn .txt-block__para:last-child {
  margin: 0
}

.prog-learn .txt-block__quote {
  font-size: 14px;
  line-height: 1.55;
  margin: 16px 0 0;
  padding: 16px;
  background: #edecec66;
  border-left: 3px solid #FE83B7;
  border-radius: 4px;
  color: #023F77;
  font-style: italic
}

.prog-learn .detailed__sidebar {
  position: sticky;
  top: 80px
}

.prog-learn .anno-visual {
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 2px 7px 20px 0 #023f771a
}

.prog-learn .anno-visual__title {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 16px;
  text-align: center;
  letter-spacing: .015em
}

.prog-learn .anno-visual__items {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.prog-learn .metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #edecec4d;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: background .16s ease-out
}

.prog-learn .metric-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #fe83b71a;
  transition: width .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.prog-learn .metric-item:hover::before {
  width: 100%
}

.prog-learn .metric-item:hover {
  background: #edecec80
}

.prog-learn .metric-item__icon {
  flex: 0 0 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 40px;
  position: relative;
  z-index: 1
}

.prog-learn .metric-item__icon svg {
  width: 20px;
  height: 20px;
  fill: #023F77
}

.prog-learn .metric-item__content {
  flex: 1;
  position: relative;
  z-index: 1
}

.prog-learn .metric-item__label {
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 4px;
  color: #6a6a6a;
  letter-spacing: .015em
}

.prog-learn .metric-item__value {
  font-size: 22px;
  line-height: 1;
  margin: 0;
  color: #023F77;
  letter-spacing: .01em
}

@media (max-width: 1280px) {
  .prog-learn .detailed {
    margin: 80px auto;
    padding: 0 40px
  }

  .prog-learn .detailed__layout {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .prog-learn .detailed__sidebar {
    position: static
  }
}

@media (max-width: 768px) {
  .prog-learn .detailed {
    margin: 40px auto;
    padding: 0 16px
  }

  .prog-learn .detailed__heading {
    font-size: 22px;
    margin: 0 0 16px
  }

  .prog-learn .detailed__main {
    gap: 16px
  }

  .prog-learn .txt-block__subhead {
    font-size: 18px
  }

  .prog-learn .txt-block__para {
    max-width: 100%
  }

  .prog-learn .anno-visual {
    padding: 16px
  }

  .prog-learn .metric-item {
    padding: 8px
  }
}

.prog-learn .faq-zone {
  background: #edecec40;
  padding: 80px 40px;
  position: relative
}

.prog-learn .faq-zone::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #023F77;
  border-radius: 40px;
  box-shadow: 16px 0 0 #023F77, -16px 0 0 #023F77
}

.prog-learn .faq-zone__wrap {
  max-width: 1170px;
  margin: 0 auto
}

.prog-learn .faq-zone__heading {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 40px;
  text-align: center;
  letter-spacing: .012em
}

.prog-learn .faq-zone__list {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.prog-learn .faq-item {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 3px 2px 0 #023f770f
}

.prog-learn .faq-item__trigger {
  width: 100%;
  padding: 16px 40px;
  background: transparent;
  border: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background .14s ease-out;
  text-align: left
}

.prog-learn .faq-item__trigger:hover {
  background: #edecec4d
}

.prog-learn .faq-item__q {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: .015em
}

.prog-learn .faq-item__arrow {
  flex: 0 0 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.prog-learn .faq-item__arrow svg {
  width: 16px;
  height: 16px;
  fill: #023F77
}

.prog-learn .faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.prog-learn .faq-item__content {
  padding: 0 40px 16px
}

.prog-learn .faq-item__a {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  color: #4a4a4a
}

.prog-learn .faq-item--open .faq-item__arrow {
  transform: rotate(180deg)
}

.prog-learn .faq-item--open .faq-item__panel {
  max-height: 500px
}

@media (max-width: 1280px) {
  .prog-learn .faq-zone {
    padding: 80px 40px
  }
}

@media (max-width: 768px) {
  .prog-learn .faq-zone {
    padding: 40px 16px
  }

  .prog-learn .faq-zone__heading {
    font-size: 22px;
    margin: 0 0 16px
  }

  .prog-learn .faq-item__trigger {
    padding: 16px
  }

  .prog-learn .faq-item__q {
    font-size: 18px
  }

  .prog-learn .faq-item__content {
    padding: 0 16px 16px
  }
}

.prog-learn .rotating-shape {
  position: fixed;
  top: 20%;
  right: 8%;
  width: 180px;
  height: 180px;
  pointer-events: none;
  z-index: 0;
  opacity: .08;
  animation: slow-rotate 60s linear infinite
}

.prog-learn .rotating-shape svg {
  width: 100%;
  height: 100%
}

@keyframes slow-rotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@media (max-width: 768px) {
  .prog-learn .rotating-shape {
    width: 120px;
    height: 120px;
    right: 4%
  }
}

.prog-learn .accent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fe83b705;
  pointer-events: none;
  animation: fade-cycle 8s ease-in-out infinite;
  z-index: 0
}

@keyframes fade-cycle {

  0%,
  100% {
    opacity: 0
  }

  50% {
    opacity: 1
  }
}

.reach-pg {
  background: #FFF;
  color: #1A1A1A;
  letter-spacing: .015em
}

.reach-pg .tb-zone {
  position: relative;
  padding: 80px 16px;
  overflow: hidden;
  background: radial-gradient(circle at 85% 90%, #fe83b72e 0%, transparent 45%), radial-gradient(circle at 15% 20%, #023f771f 0%, transparent 50%), radial-gradient(circle at 50% 50%, #edecec40 0%, transparent 60%), linear-gradient(180deg, #FAFAFA 0%, #F5F5F5 100%)
}

.reach-pg .tb-zone::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 8%;
  width: 6px;
  height: 6px;
  background: #fe83b74d;
  border-radius: 50%
}

.reach-pg .tb-zone::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 12%;
  width: 8px;
  height: 8px;
  background: #023f7733;
  border-radius: 50%
}

.reach-pg .dot-pattern {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 4px;
  height: 4px;
  background: #fe83b740;
  border-radius: 50%;
  transform: translateY(-50%)
}

.reach-pg .dot-pattern-two {
  position: absolute;
  top: 30%;
  right: 8%;
  width: 5px;
  height: 5px;
  background: #023f772e;
  border-radius: 50%
}

.reach-pg .dot-pattern-three {
  position: absolute;
  bottom: 25%;
  left: 15%;
  width: 4px;
  height: 4px;
  background: #edecec99;
  border-radius: 50%
}

.reach-pg .tb-wrap {
  max-width: 1170px;
  margin: 0 auto
}

.reach-pg .tb-hd {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 700
}

.reach-pg .tb-hd .accent-wd {
  color: #FE83B7
}

.reach-pg .tb-desc {
  font-size: 22px;
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
  color: #3A3A3A
}

.reach-pg .form-sec {
  padding: 80px 16px;
  background: #FFF
}

.reach-pg .form-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px
}

.reach-pg .info-col {
  flex: 0 0 280px
}

.reach-pg .form-col {
  flex: 1;
  min-width: 0
}

.reach-pg .info-hd {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 40px;
  font-weight: 600;
  color: #023F77
}

.reach-pg .contact-block {
  margin: 0 0 40px
}

.reach-pg .contact-block:last-child {
  margin: 0
}

.reach-pg .cb-label {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #6A6A6A;
  font-weight: 500
}

.reach-pg .cb-value {
  font-size: 22px;
  line-height: 1.55;
  margin: 0;
  color: #1A1A1A
}

.reach-pg .cb-value a {
  color: #023F77;
  text-decoration: none;
  transition: color .18s ease-out
}

.reach-pg .cb-value a:hover {
  color: #FE83B7
}

.reach-pg .cb-value a:focus {
  outline: 2px solid #FE83B7;
  outline-offset: 2px
}

.reach-pg .office-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  margin: 40px 0 0;
  box-shadow: 2px 7px 20px 0 #023f771a
}

.reach-pg .form-hd {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 40px;
  font-weight: 300;
  color: #1A1A1A
}

.reach-pg .form-actual {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.reach-pg .field-row {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.reach-pg .field-row.double {
  flex-direction: row;
  gap: 16px
}

.reach-pg .field-row.double .field-group {
  flex: 1;
  min-width: 0
}

.reach-pg .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.reach-pg .field-label {
  font-size: 14px;
  line-height: 1.55;
  color: #3A3A3A;
  font-weight: 500
}

.reach-pg .field-label .required {
  color: #FE83B7;
  margin: 0 0 0 2px
}

.reach-pg .field-input {
  padding: 16px;
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  font-size: 22px;
  line-height: 1.55;
  color: #1A1A1A;
  background: #FFF;
  transition: border-color .16s ease-out, box-shadow .16s ease-out;
  box-shadow: inset 2px 3px 2px 0 #023f7708
}

.reach-pg .field-input::placeholder {
  color: #9A9A9A;
  font-weight: 300
}

.reach-pg .field-input:focus {
  outline: none;
  border-color: #FE83B7;
  box-shadow: inset 2px 3px 2px 0 #023f7708 0 0 0 3px #fe83b726
}

.reach-pg .field-input:hover {
  border-color: #B0B0B0
}

.reach-pg .select-wrap {
  position: relative
}

.reach-pg .field-select {
  padding: 16px 40px 16px 16px;
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  font-size: 22px;
  line-height: 1.55;
  color: #1A1A1A;
  background: #FFF;
  width: 100%;
  cursor: pointer;
  appearance: none;
  transition: border-color .16s ease-out, box-shadow .16s ease-out;
  box-shadow: inset 2px 3px 2px 0 #023f7708
}

.reach-pg .field-select:focus {
  outline: none;
  border-color: #FE83B7;
  box-shadow: inset 2px 3px 2px 0 #023f7708 0 0 0 3px #fe83b726
}

.reach-pg .field-select:hover {
  border-color: #B0B0B0
}

.reach-pg .select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #3A3A3A;
  pointer-events: none
}

.reach-pg .radio-group {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap
}

.reach-pg .radio-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer
}

.reach-pg .radio-input {
  width: 20px;
  height: 20px;
  border: 2px solid #D0D0D0;
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
  position: relative;
  transition: border-color .18s ease-out;
  flex-shrink: 0
}

.reach-pg .radio-input:checked {
  border-color: #FE83B7
}

.reach-pg .radio-input:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #FE83B7;
  border-radius: 50%
}

.reach-pg .radio-input:focus {
  outline: 2px solid #FE83B7;
  outline-offset: 2px
}

.reach-pg .radio-label {
  font-size: 22px;
  line-height: 1.55;
  color: #1A1A1A;
  cursor: pointer
}

.reach-pg .checkbox-wrap {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 0
}

.reach-pg .checkbox-input {
  width: 20px;
  height: 20px;
  border: 2px solid #D0D0D0;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  position: relative;
  transition: border-color .18s ease-out, background-color .18s ease-out;
  flex-shrink: 0;
  margin: 2px 0 0
}

.reach-pg .checkbox-input:checked {
  border-color: #FE83B7;
  background: #FE83B7
}

.reach-pg .checkbox-input:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 9px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg)
}

.reach-pg .checkbox-input:focus {
  outline: 2px solid #FE83B7;
  outline-offset: 2px
}

.reach-pg .checkbox-label {
  font-size: 14px;
  line-height: 1.55;
  color: #3A3A3A;
  cursor: pointer
}

.reach-pg .checkbox-label a {
  color: #023F77;
  text-decoration: underline;
  transition: color .18s ease-out
}

.reach-pg .checkbox-label a:hover {
  color: #FE83B7
}

.reach-pg .checkbox-label a:focus {
  outline: 2px solid #FE83B7;
  outline-offset: 1px
}

.reach-pg .submit-btn {
  padding: 16px 40px;
  background: linear-gradient(135deg, #FE83B7 0%, #FF6FA8 100%);
  color: #FFF;
  border: none;
  border-radius: 40px;
  font-size: 22px;
  line-height: 1.55;
  cursor: pointer;
  transition: filter .2s ease-out, box-shadow .2s ease-out;
  box-shadow: 2px 7px 20px 0 #fe83b71a;
  margin: 16px 0 0;
  font-weight: 500
}

.reach-pg .submit-btn:hover {
  filter: brightness(1.08);
  box-shadow: 2px 9px 36px 0 #fe83b721
}

.reach-pg .submit-btn:focus {
  outline: 3px solid #fe83b766;
  outline-offset: 2px
}

.reach-pg .submit-btn:active {
  filter: brightness(0.95);
  box-shadow: 2px 3px 2px 0 #fe83b70f
}

.reach-pg .divider-sec {
  padding: 0 16px;
  margin: 80px 0
}

.reach-pg .divider-wrap {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.reach-pg .divider-line-left {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, #EDECEC 100%)
}

.reach-pg .divider-center {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fe83b733 0%, transparent 70%);
  border: 2px solid #EDECEC;
  position: relative
}

.reach-pg .divider-center::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #FE83B7;
  border-radius: 50%
}

.reach-pg .divider-line-right {
  flex: 0 0 30%;
  height: 1px;
  background: linear-gradient(to left, transparent 0%, #EDECEC 100%)
}

@media (max-width: 1280px) {
  .reach-pg .tb-zone {
    padding: 80px 16px
  }

  .reach-pg .form-sec {
    padding: 80px 16px
  }

  .reach-pg .form-container {
    gap: 40px
  }

  .reach-pg .info-col {
    flex: 0 0 240px
  }

  .reach-pg .tb-hd {
    font-size: 56px
  }

  .reach-pg .tb-desc {
    font-size: 22px
  }
}

@media (max-width: 768px) {
  .reach-pg .tb-zone {
    padding: 40px 16px
  }

  .reach-pg .form-sec {
    padding: 40px 16px
  }

  .reach-pg .form-container {
    flex-direction: column;
    gap: 40px
  }

  .reach-pg .info-col {
    flex: 1
  }

  .reach-pg .tb-hd {
    font-size: 30px
  }

  .reach-pg .tb-desc {
    font-size: 14px
  }

  .reach-pg .info-hd {
    font-size: 22px;
    margin: 0 0 16px
  }

  .reach-pg .form-hd {
    font-size: 22px;
    margin: 0 0 16px
  }

  .reach-pg .cb-value {
    font-size: 14px
  }

  .reach-pg .field-input,
  .reach-pg .field-select,
  .reach-pg .radio-label {
    font-size: 14px
  }

  .reach-pg .submit-btn {
    font-size: 14px;
    padding: 16px 40px;
    width: 100%
  }

  .reach-pg .field-row.double {
    flex-direction: column
  }

  .reach-pg .radio-group {
    gap: 16px
  }

  .reach-pg .office-img {
    height: 180px;
    margin: 16px 0 0
  }

  .reach-pg .contact-block {
    margin: 0 0 16px
  }

  .reach-pg .divider-sec {
    margin: 40px 0
  }
}

.reach-pg .hours-note {
  font-size: 14px;
  line-height: 1.8;
  color: #6A6A6A;
  margin: 16px 0 0;
  padding: 16px;
  background: #FAFAFA;
  border-radius: 4px;
  border-left: 3px solid #FE83B7
}

.reach-pg .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0 0
}

.reach-pg .stat-card {
  padding: 16px;
  background: #FFF;
  border-radius: 4px;
  box-shadow: 2px 3px 2px 0 #023f770f;
  border: 1px solid #EDECEC;
  transition: box-shadow .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.reach-pg .stat-card:hover {
  box-shadow: 2px 7px 20px 0 #fe83b71a
}

.reach-pg .stat-num {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #FE83B7;
  margin: 0 0 8px
}

.reach-pg .stat-label {
  font-size: 14px;
  line-height: 1.55;
  color: #6A6A6A;
  margin: 0
}

@media (max-width: 768px) {
  .reach-pg .stats-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 16px 0 0
  }

  .reach-pg .stat-card {
    padding: 16px
  }

  .reach-pg .stat-num {
    font-size: 22px
  }

  .reach-pg .hours-note {
    font-size: 14px;
    margin: 16px 0 0;
    padding: 16px
  }
}

.success-page {
  background: linear-gradient(135deg, #fff 0%, #EDECEC 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 16px
}

.success-page .confirmation-wrap {
  max-width: 680px;
  width: 100%;
  background: #fff;
  border-radius: 40px;
  padding: 80px 40px;
  box-shadow: 2px 9px 36px 0 #023f7721;
  text-align: center
}

.success-page .icon-check {
  width: 88px;
  height: 88px;
  margin: 0 auto 40px;
  border-radius: 50%;
  background: radial-gradient(circle at bottom right, #FE83B7, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.success-page .icon-check::before {
  content: '';
  width: 32px;
  height: 18px;
  border-left: 4px solid #023F77;
  border-bottom: 4px solid #023F77;
  transform: rotate(-45deg);
  margin-top: -8px
}

.success-page .confirm-title {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #023F77;
  margin: 0 0 16px
}

.success-page .confirm-msg {
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: .02em;
  color: #333;
  margin: 0 0 40px
}

.success-page .detail-box {
  background: #EDECEC;
  border-radius: 4px;
  padding: 40px;
  margin: 0 0 40px;
  text-align: left
}

.success-page .detail-row {
  display: flex;
  gap: 16px;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .02em
}

.success-page .detail-row:last-child {
  margin: 0
}

.success-page .detail-label {
  color: #666;
  min-width: 120px
}

.success-page .detail-value {
  color: #023F77;
  font-weight: 500
}

.success-page .action-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.success-page .btn-primary {
  background: linear-gradient(135deg, #FE83B7 0%, #fff 100%);
  color: #023F77;
  border: none;
  border-radius: 40px;
  padding: 16px 40px;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .02em;
  text-transform: lowercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  box-shadow: 2px 3px 2px 0 #fe83b70f;
  transition: filter .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.success-page .btn-primary:hover {
  filter: brightness(1.15)
}

.success-page .btn-secondary {
  background: transparent;
  color: #023F77;
  border: 2px solid #023F77;
  border-radius: 40px;
  padding: 14px 40px;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .02em;
  text-transform: lowercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s ease-out, color .2s ease-out
}

.success-page .btn-secondary:hover {
  background: #023F77;
  color: #fff
}

.success-page .support-note {
  margin: 40px 0 0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .02em;
  color: #666
}

.success-page .support-note a {
  color: #FE83B7;
  text-decoration: none;
  transition: color .16s ease-out
}

.success-page .support-note a:hover {
  color: #023F77
}

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

  .success-page .confirmation-wrap {
    padding: 40px 16px
  }

  .success-page .confirm-title {
    font-size: 30px
  }

  .success-page .confirm-msg {
    font-size: 14px
  }

  .success-page .detail-box {
    padding: 16px
  }

  .success-page .detail-row {
    flex-direction: column;
    gap: 8px
  }

  .success-page .detail-label {
    min-width: auto
  }

  .success-page .action-group {
    flex-direction: column
  }

  .success-page .btn-primary,
  .success-page .btn-secondary {
    width: 100%
  }
}