html {
  box-sizing: border-box
}

body {
  margin: 0;
  scrollbar-gutter: stable;
  min-height: 100vh
}

.page-header {
  border-bottom: 2px solid #004147;
  background: #E1EFEC;
  position: relative
}

.header-top-bar {
  background: #004147;
  padding: 4px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px
}

.header-contact-link {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  color: #E1EFEC;
  text-decoration: none;
  letter-spacing: .01em;
  line-height: 1.4;
  transition: color .4s cubic-bezier(0.22, 1, 0.36, 1)
}

.header-contact-link:hover {
  color: #FF4C92
}

.header-contact-link:focus {
  outline: 3px solid;
  outline-color: #FF4C92;
  border-radius: 2px
}

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

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.brand-logo-wrap {
  width: 90px;
  height: 90px;
  background: #004147;
  border-radius: 16px 2px 16px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 4px 14px 0 #00414717;
  padding: 12px
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.brand-name-group {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.brand-name {
  font-family: 'Inconsolata', monospace;
  font-size: 21px;
  font-weight: 700;
  color: #004147;
  letter-spacing: .02em;
  line-height: 1.15
}

.brand-tagline {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  color: #FF4C92;
  letter-spacing: .01em;
  line-height: 1.4
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap
}

.nav-link {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  color: #004147;
  text-decoration: none;
  letter-spacing: .01em;
  line-height: 1.4;
  padding: 12px 24px;
  border-radius: 9px;
  border: 1.5px solid transparent;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), border-color .5s cubic-bezier(0.22, 1, 0.36, 1), color .4s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px
}

.nav-link:hover {
  background: #004147;
  color: #E1EFEC;
  border-color: #004147
}

.nav-link:focus {
  outline: 3px solid #FF4C92;
  outline-offset: 2px;
  border-radius: 9px
}

.nav-link-arrow {
  font-size: 13px;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-block
}

.nav-link:hover .nav-link-arrow {
  transform: translateX(3px)
}

.nav-link.active {
  background: #FF4C92;
  color: #fff;
  border-color: #FF4C92
}

.header-accent-line {
  height: 4px;
  background: linear-gradient(90deg, #FF4C92 0%, #004147 60%, #E1EFEC 100%)
}

.site-footer {
  background: #004147;
  padding: 48px 0 0
}

.footer-body {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start
}

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

.footer-logo-wrap {
  width: 80px;
  height: 80px;
  background: #E1EFEC;
  border-radius: 2px 16px 2px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: -1px 4px 14px 0 #ff4c9217
}

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

.footer-brand-name {
  font-family: 'Inconsolata', monospace;
  font-size: 21px;
  font-weight: 700;
  color: #E1EFEC;
  letter-spacing: .02em;
  line-height: 1.15
}

.footer-brand-desc {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  color: #FF4C92;
  letter-spacing: .01em;
  line-height: 1.6;
  max-width: 220px
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px
}

.footer-col-heading {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #FF4C92;
  letter-spacing: .02em;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 12px
}

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

.footer-nav-list li {
  display: flex
}

.footer-nav-link {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  color: #E1EFEC;
  text-decoration: none;
  letter-spacing: .01em;
  line-height: 1.6;
  padding: 4px 0;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px
}

.footer-nav-link:hover {
  color: #FF4C92
}

.footer-nav-link:focus {
  outline: 3px solid #FF4C92;
  outline-offset: 2px;
  border-radius: 2px
}

.footer-contact-item {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  color: #E1EFEC;
  letter-spacing: .01em;
  line-height: 1.6;
  display: block;
  margin-bottom: 4px
}

.footer-contact-link {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  color: #E1EFEC;
  text-decoration: none;
  letter-spacing: .01em;
  line-height: 1.6;
  transition: color .45s ease-in-out;
  display: block;
  margin-bottom: 4px
}

.footer-contact-link:hover {
  color: #FF4C92
}

.footer-contact-link:focus {
  outline: 3px solid #FF4C92;
  outline-offset: 2px;
  border-radius: 2px
}

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid #e1efec26;
  padding: 24px 48px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.footer-copyright {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  color: #e1efec99;
  letter-spacing: .01em;
  line-height: 1.4
}

.footer-policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center
}

.footer-policy-link {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  color: #e1efec99;
  text-decoration: none;
  letter-spacing: .01em;
  line-height: 1.4;
  transition: color .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.footer-policy-link:hover {
  color: #FF4C92
}

.footer-policy-link:focus {
  outline: 3px solid #FF4C92;
  outline-offset: 2px;
  border-radius: 2px
}

.cookie-notice {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 480px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border: 1.5px solid #004147;
  border-radius: 16px;
  padding: 24px;
  box-shadow: -1px 12px 36px 0 #0041471f;
  z-index: 1500;
  display: none;
  transform: translateY(24px);
  opacity: 0;
  transition: transform .38s cubic-bezier(0.22, 1, 0.36, 1), opacity .38s cubic-bezier(0.22, 1, 0.36, 1)
}

.cookie-notice.visible {
  transform: translateY(0);
  opacity: 1
}

.cookie-text {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  color: #004147;
  letter-spacing: .01em;
  line-height: 1.6;
  margin-bottom: 12px
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 24px
}

.cookie-accept {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #004147;
  border: none;
  border-radius: 9px;
  padding: 12px 24px;
  cursor: pointer;
  letter-spacing: .01em;
  line-height: 1.4;
  transition: background .45s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 4px
}

.cookie-accept:hover {
  background: #FF4C92
}

.cookie-accept:focus {
  outline: 3px solid #FF4C92;
  outline-offset: 2px;
  border-radius: 9px
}

.cookie-decline {
  font-family: 'Inconsolata', monospace;
  font-size: 13px;
  color: #004147;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: .01em;
  line-height: 1.4;
  text-decoration: underline;
  padding: 4px 0;
  min-height: 44px;
  transition: color .4s ease-in-out
}

.cookie-decline:hover {
  color: #FF4C92
}

.cookie-decline:focus {
  outline: 3px solid #FF4C92;
  outline-offset: 2px;
  border-radius: 2px
}

@media (max-width: 900px) {
  .header-body {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start
  }

  .main-nav {
    width: 100%
  }

  .footer-body {
    grid-template-columns: 1fr;
    padding: 0 24px
  }

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

  .footer-bottom {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 600px) {
  .header-top-bar {
    padding: 4px 12px;
    flex-wrap: wrap;
    gap: 4px
  }

  .header-body {
    padding: 12px
  }

  .brand-logo-wrap {
    width: 72px;
    height: 72px
  }

  .footer-body {
    padding: 0 12px
  }

  .footer-bottom {
    padding: 12px
  }

  .footer-policy-list {
    gap: 4px
  }
}

.ezic-legal-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 96px 48px
}

.ezic-legal-container p {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #004147;
  margin-bottom: 24px
}

.ezic-legal-container ul,
.ezic-legal-container ol {
  padding-left: 24px;
  margin-bottom: 24px
}

.ezic-legal-container li {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #004147;
  margin-bottom: 12px
}

.ezic-legal-container ul li {
  list-style-type: disc
}

.ezic-legal-container ol li {
  list-style-type: decimal
}

.ezic-legal-container ul ul,
.ezic-legal-container ol ol,
.ezic-legal-container ul ol,
.ezic-legal-container ol ul {
  margin-top: 12px;
  margin-bottom: 0
}

.ezic-legal-container a {
  color: #FF4C92;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .4s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color .5s ease-in-out
}

.ezic-legal-container a:hover {
  color: #004147;
  text-decoration-color: #004147
}

.ezic-legal-container table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
  font-size: 15px;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: -1px 4px 14px 0 #00414717
}

.ezic-legal-container thead {
  background-color: #004147
}

.ezic-legal-container thead th {
  color: #E1EFEC;
  font-size: 13px;
  letter-spacing: .02em;
  line-height: 1.4;
  padding: 12px 24px;
  text-align: left;
  font-weight: 700
}

.ezic-legal-container tbody tr {
  border-bottom: 1px solid #E1EFEC;
  transition: background-color .4s cubic-bezier(0.22, 1, 0.36, 1)
}

.ezic-legal-container tbody tr:last-child {
  border-bottom: none
}

.ezic-legal-container tbody tr:nth-child(even) {
  background-color: #f4faf9
}

.ezic-legal-container tbody tr:hover {
  background-color: #E1EFEC
}

.ezic-legal-container td {
  color: #004147;
  font-size: 15px;
  line-height: 1.6;
  padding: 12px 24px;
  vertical-align: top
}

.ezic-legal-container hr {
  border: none;
  border-top: 2px solid #E1EFEC;
  margin: 48px 0;
  border-radius: 2px
}

.ezic-legal-container div {
  margin-bottom: 24px
}

@media (max-width: 900px) {
  .ezic-legal-container {
    padding: 48px 24px
  }

  .ezic-legal-container table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }
}

@media (max-width: 600px) {
  .ezic-legal-container {
    padding: 48px 12px
  }

  .ezic-legal-container p,
  .ezic-legal-container li,
  .ezic-legal-container td {
    font-size: 13px
  }

  .ezic-legal-container thead th {
    font-size: 13px;
    padding: 12px
  }

  .ezic-legal-container td {
    padding: 12px
  }

  .ezic-legal-container ul,
  .ezic-legal-container ol {
    padding-left: 12px
  }
}

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

.ct .pg-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  position: relative
}

.ct .pg-top-txt {
  padding: 96px 48px 96px 96px;
  background: #004147;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1
}

.ct .pg-top-img-col {
  position: relative;
  overflow: hidden
}

.ct .pg-top-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .13;
  display: block
}

.ct .pg-top-img-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(157deg, #004147 0%, #FF4C92 60%, #E1EFEC 100%);
  opacity: .88
}

.ct .dot-scatter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.ct .dot-scatter span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #E1EFEC;
  opacity: .18
}

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

.ct .dot-scatter span:nth-child(2) {
  top: 28%;
  left: 22%
}

.ct .dot-scatter span:nth-child(3) {
  top: 55%;
  left: 14%
}

.ct .dot-scatter span:nth-child(4) {
  top: 72%;
  left: 35%
}

.ct .dot-scatter span:nth-child(5) {
  top: 18%;
  left: 60%
}

.ct .dot-scatter span:nth-child(6) {
  top: 45%;
  left: 72%
}

.ct .dot-scatter span:nth-child(7) {
  top: 80%;
  left: 55%
}

.ct .dot-scatter span:nth-child(8) {
  top: 38%;
  left: 88%
}

.ct .dot-scatter span:nth-child(9) {
  top: 65%;
  left: 90%
}

.ct .dot-scatter span:nth-child(10) {
  top: 10%;
  left: 45%
}

.ct .pg-top-lbl {
  font-size: 13px;
  letter-spacing: .12em;
  color: #FF4C92;
  text-transform: uppercase;
  line-height: 1.15
}

.ct .pg-top-h {
  font-size: 50px;
  line-height: 1.15;
  color: #fff;
  letter-spacing: .01em;
  font-weight: 900;
  margin: 0
}

.ct .pg-top-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #E1EFEC;
  letter-spacing: .01em;
  max-width: 420px
}

.ct .contact-strip {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px
}

.ct .cstrip-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.ct .cstrip-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #ff4c922e;
  border: 1px solid #ff4c9252;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.ct .cstrip-icon svg {
  width: 16px;
  height: 16px
}

.ct .cstrip-label {
  font-size: 13px;
  color: #FF4C92;
  letter-spacing: .02em;
  line-height: 1.15;
  margin-bottom: 4px
}

.ct .cstrip-val {
  font-size: 15px;
  color: #E1EFEC;
  line-height: 1.4;
  letter-spacing: .01em
}

.ct .cstrip-val a {
  color: #E1EFEC;
  text-decoration: none;
  border-bottom: 1px solid #e1efec4d;
  transition: border-color .4s cubic-bezier(0.22, 1, 0.36, 1), color .4s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct .cstrip-val a:hover {
  color: #FF4C92;
  border-bottom-color: #FF4C92
}

.ct .divider-dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 0 96px;
  margin: 48px 0
}

.ct .divider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #FF4C92;
  opacity: .35;
  flex-shrink: 0
}

.ct .divider-dots span:nth-child(even) {
  opacity: .15
}

.ct .divider-dots span:nth-child(3n) {
  opacity: .55
}

.ct .form-area {
  padding: 0 96px 96px;
  background: #fff
}

.ct .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.ct .form-left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ct .form-left-h {
  font-size: 21px;
  font-weight: 800;
  color: #004147;
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0
}

.ct .form-left-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #2a4a4d;
  letter-spacing: .01em
}

.ct .ratio-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  background: #E1EFEC;
  border: 1px solid #0041471f;
  box-shadow: -1px 4px 14px 0 #00414717
}

.ct .ratio-bar-label {
  font-size: 13px;
  color: #004147;
  letter-spacing: .02em;
  line-height: 1.15;
  font-weight: 700
}

.ct .ratio-bar-track {
  width: 100%;
  height: 12px;
  border-radius: 9px;
  background: #0041471a;
  overflow: hidden;
  position: relative
}

.ct .ratio-bar-fill {
  height: 100%;
  border-radius: 9px;
  background: linear-gradient(157deg, #004147 0%, #FF4C92 100%);
  width: 68%;
  transition: width .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct .ratio-bar-meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center
}

.ct .ratio-bar-a {
  font-size: 13px;
  color: #004147;
  font-weight: 700;
  letter-spacing: .01em
}

.ct .ratio-bar-b {
  font-size: 13px;
  color: #FF4C92;
  font-weight: 700;
  letter-spacing: .01em
}

.ct .info-note {
  font-size: 13px;
  line-height: 1.6;
  color: #2a4a4d;
  letter-spacing: .01em;
  padding: 12px 16px;
  border-left: 3px solid #FF4C92;
  border-top: 1px solid #ff4c922e;
  border-right: 1px solid #ff4c922e;
  border-bottom: 1px solid #ff4c922e;
  border-radius: 2px 9px 9px 2px;
  background: #ff4c920a
}

.ct .form-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ct .form-card {
  background: #fff;
  border-radius: 16px;
  border: 2px solid #E1EFEC;
  outline: 1px solid #00414714;
  outline-offset: 4px;
  padding: 48px;
  box-shadow: -1px 12px 36px 0 #0041471f;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ct .field-group {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ct .field-lbl {
  font-size: 13px;
  color: #004147;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15
}

.ct .field-input-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center
}

.ct .field-icon {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  pointer-events: none;
  flex-shrink: 0
}

.ct .field-icon svg {
  width: 16px;
  height: 16px;
  display: block
}

.ct .finput {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border-radius: 9px;
  border: 1.5px solid #00414733;
  background: #fff;
  font-size: 15px;
  color: #004147;
  letter-spacing: .01em;
  line-height: 1.4;
  box-shadow: inset 0 1px 2px #00414712;
  transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
  box-sizing: border-box
}

.ct .finput::placeholder {
  color: #00414766;
  font-size: 13px
}

.ct .finput:focus {
  outline: none;
  border-color: #FF4C92;
  box-shadow: inset 0 1px 2px #00414712 0 0 0 3px #ff4c921f
}

.ct .channel-lbl {
  font-size: 13px;
  color: #004147;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  margin-bottom: 4px
}

.ct .channel-opts {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap
}

.ct .ch-opt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px
}

.ct .ch-radio {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 9px;
  border: 2px solid #00414740;
  background: #fff;
  cursor: pointer;
  transition: border-color .4s cubic-bezier(0.22, 1, 0.36, 1), background .4s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
  position: relative
}

.ct .ch-radio:checked {
  border-color: #FF4C92;
  background: #FF4C92
}

.ct .ch-radio:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 9px;
  background: #fff
}

.ct .ch-radio:focus {
  outline: 2px solid #FF4C92;
  outline-offset: 2px
}

.ct .ch-txt {
  font-size: 13px;
  color: #004147;
  letter-spacing: .01em;
  line-height: 1.4;
  cursor: pointer
}

.ct .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.ct .priv-check {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 2px solid #00414740;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color .4s cubic-bezier(0.22, 1, 0.36, 1), background .4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative
}

.ct .priv-check:checked {
  border-color: #FF4C92;
  background: #FF4C92
}

.ct .priv-check:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg)
}

.ct .priv-check:focus {
  outline: 2px solid #FF4C92;
  outline-offset: 2px
}

.ct .priv-txt {
  font-size: 13px;
  color: #2a4a4d;
  line-height: 1.6;
  letter-spacing: .01em
}

.ct .priv-txt a {
  color: #FF4C92;
  text-decoration: none;
  border-bottom: 1px solid #ff4c9259;
  transition: border-color .4s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct .priv-txt a:hover {
  border-bottom-color: #FF4C92
}

.ct .submit-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 9px;
  background: linear-gradient(157deg, #004147 0%, #FF4C92 100%);
  border: none;
  cursor: pointer;
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.15;
  transition: opacity .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -1px 4px 14px 0 #ff4c9217;
  align-self: flex-start
}

.ct .submit-btn:hover {
  opacity: .88;
  box-shadow: -1px 12px 36px 0 #ff4c921f
}

.ct .submit-btn:focus {
  outline: 2px solid #FF4C92;
  outline-offset: 3px
}

.ct .submit-btn:active {
  opacity: .75
}

.ct .btn-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

@keyframes shake-once {
  0% {
    transform: translateX(0)
  }

  15% {
    transform: translateX(-6px)
  }

  35% {
    transform: translateX(6px)
  }

  55% {
    transform: translateX(-4px)
  }

  75% {
    transform: translateX(4px)
  }

  90% {
    transform: translateX(-2px)
  }

  100% {
    transform: translateX(0)
  }
}

.ct .submit-btn:invalid {
  animation: shake-once .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct .form-card:invalid .submit-btn {
  animation: shake-once .55s cubic-bezier(0.22, 1, 0.36, 1)
}

@media (max-width: 900px) {
  .ct .pg-top {
    grid-template-columns: 1fr
  }

  .ct .pg-top-img-col {
    display: none
  }

  .ct .pg-top-txt {
    padding: 48px 24px
  }

  .ct .divider-dots {
    padding: 0 24px;
    margin: 24px 0
  }

  .ct .form-area {
    padding: 0 24px 48px
  }

  .ct .form-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .ct .form-card {
    padding: 24px
  }

  .ct .pg-top-h {
    font-size: 21px
  }
}

@media (max-width: 600px) {
  .ct .pg-top-txt {
    padding: 48px 12px
  }

  .ct .form-area {
    padding: 0 12px 48px
  }

  .ct .channel-opts {
    flex-direction: column
  }

  .ct .divider-dots {
    padding: 0 12px
  }
}

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

.lnch .ttl-blk {
  padding: 96px 48px;
  position: relative;
  background: #fff
}

.lnch .ttl-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  max-width: 1200px
}

.lnch .ttl-left {
  flex: 0 0 55%;
  position: relative;
  z-index: 1
}

.lnch .ttl-dots {
  display: flex;
  flex-direction: row;
  gap: 4px;
  margin-bottom: 24px
}

.lnch .ttl-dots span {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #FF4C92;
  opacity: .3
}

.lnch .ttl-dots span:nth-child(2) {
  opacity: .6
}

.lnch .ttl-dots span:nth-child(3) {
  opacity: 1
}

.lnch .ttl-dots span:nth-child(4) {
  opacity: .6
}

.lnch .ttl-dots span:nth-child(5) {
  opacity: .3
}

.lnch .ttl-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .02em;
  color: #004147;
  border: 1px solid #004147;
  border-radius: 2px;
  padding: 4px 12px;
  margin-bottom: 24px;
  line-height: 1.4
}

.lnch .ttl-h1 {
  font-size: 50px;
  line-height: 1.15;
  letter-spacing: .01em;
  color: #004147;
  font-weight: 900;
  margin-bottom: 24px
}

.lnch .ttl-h1 em {
  font-style: normal;
  color: #FF4C92
}

.lnch .ttl-desc {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #004147;
  max-width: 480px;
  margin-bottom: 24px
}

.lnch .ttl-note {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .01em;
  color: #004147;
  opacity: .65
}

.lnch .ttl-cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #FF4C92;
  color: #fff;
  font-size: 15px;
  letter-spacing: .01em;
  line-height: 1.4;
  padding: 12px 24px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  margin-bottom: 24px;
  box-shadow: -1px 4px 14px 0 #ff4c9217;
  transition: background-color .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s ease-in-out
}

.lnch .ttl-cta:hover {
  background: #e03a7e;
  box-shadow: -1px 12px 36px 0 #ff4c921f
}

.lnch .ttl-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.lnch .ttl-right {
  flex: 1;
  position: relative
}

.lnch .ttl-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #0041471f;
  box-shadow: -1px 12px 36px 0 #0041471f
}

.lnch .ttl-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block
}

.lnch .ttl-img-vignette {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(157deg, #00414747 0%, transparent 50%, #0041472e 100%);
  pointer-events: none
}

.lnch .ttl-img-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(157deg, #00414773 0%, transparent 70%);
  border-radius: 16px 0 0 0;
  pointer-events: none
}

.lnch .ttl-img-corner-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(157deg, transparent 30%, #ff4c9238 100%);
  border-radius: 0 0 16px 0;
  pointer-events: none
}

.lnch .ttl-stat-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 12px
}

.lnch .ttl-stat {
  background: #E1EFEC;
  border-radius: 9px;
  padding: 12px 24px;
  flex: 1
}

.lnch .ttl-stat-num {
  font-size: 21px;
  line-height: 1.15;
  font-weight: 800;
  color: #004147;
  letter-spacing: .01em
}

.lnch .ttl-stat-lbl {
  font-size: 13px;
  line-height: 1.4;
  color: #004147;
  opacity: .7;
  letter-spacing: .01em
}

.lnch .svg-divider {
  width: 100%;
  display: block;
  overflow: hidden
}

.lnch .proof-blk {
  background: #004147;
  padding: 96px 48px;
  position: relative
}

.lnch .proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  align-items: start
}

.lnch .proof-text-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lnch .proof-eyebrow {
  font-size: 13px;
  letter-spacing: .02em;
  color: #FF4C92;
  line-height: 1.4;
  text-transform: uppercase
}

.lnch .proof-h2 {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 900;
  color: #E1EFEC;
  letter-spacing: .01em
}

.lnch .proof-para {
  font-size: 15px;
  line-height: 1.6;
  color: #E1EFEC;
  opacity: .85;
  letter-spacing: .01em
}

.lnch .proof-dashed {
  border: 1.5px dashed #e1efec4d;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.lnch .proof-fact {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e1efec1f
}

.lnch .proof-fact:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.lnch .proof-fact-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #ff4c9226;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.lnch .proof-fact-icon svg {
  width: 16px;
  height: 16px
}

.lnch .proof-fact-text {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.lnch .proof-fact-title {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #E1EFEC;
  letter-spacing: .01em
}

.lnch .proof-fact-sub {
  font-size: 13px;
  line-height: 1.4;
  color: #E1EFEC;
  opacity: .65;
  letter-spacing: .01em
}

.lnch .proof-img-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lnch .proof-img-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e1efec26;
  box-shadow: -1px 12px 36px 0 #0041471f;
  position: relative
}

.lnch .proof-img-frame img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block
}

.lnch .proof-img-grad {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #004147b3, transparent);
  pointer-events: none
}

.lnch .proof-compare {
  background: #e1efec12;
  border-radius: 9px;
  overflow: hidden
}

.lnch .proof-compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #e1efec26
}

.lnch .proof-compare-cell {
  padding: 12px;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .01em;
  color: #E1EFEC;
  font-weight: 700;
  text-align: center
}

.lnch .proof-compare-cell.feature-label {
  text-align: left;
  color: #e1efec99;
  font-weight: 400
}

.lnch .proof-compare-cell.us {
  background: #ff4c921f;
  color: #FF4C92
}

.lnch .proof-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #e1efec12
}

.lnch .proof-compare-row:last-child {
  border-bottom: none
}

.lnch .proof-compare-val {
  padding: 12px;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .01em;
  color: #e1efecbf;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center
}

.lnch .proof-compare-val.feature-name {
  text-align: left;
  justify-content: flex-start;
  color: #E1EFEC
}

.lnch .proof-compare-val.us-val {
  background: #ff4c9212
}

.lnch .chk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.lnch .chk-icon svg {
  width: 16px;
  height: 16px
}

.lnch .svg-divider2 {
  width: 100%;
  display: block;
  overflow: hidden
}

.lnch .offer-blk {
  padding: 96px 48px;
  background: #fff;
  position: relative
}

.lnch .offer-top {
  max-width: 600px;
  margin-bottom: 48px
}

.lnch .offer-eyebrow {
  font-size: 13px;
  letter-spacing: .02em;
  color: #FF4C92;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 12px
}

.lnch .offer-h2 {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 900;
  color: #004147;
  letter-spacing: .01em;
  margin-bottom: 12px
}

.lnch .offer-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #004147;
  opacity: .75;
  letter-spacing: .01em
}

.lnch .offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px
}

.lnch .offer-card {
  border-radius: 16px;
  border: 1px solid #0041471a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 4px 14px 0 #00414717;
  transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .4s ease-in-out
}

.lnch .offer-card:hover {
  box-shadow: -1px 12px 36px 0 #0041471f;
  transform: translateY(-2px)
}

.lnch .offer-card-img {
  position: relative;
  overflow: hidden
}

.lnch .offer-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #00414714
}

.lnch .offer-card-img-grad {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, #ffffffe6, transparent);
  pointer-events: none
}

.lnch .offer-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1
}

.lnch .offer-card-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .02em;
  color: #FF4C92;
  background: #ff4c9214;
  border-radius: 2px;
  padding: 4px 12px;
  line-height: 1.4;
  align-self: flex-start
}

.lnch .offer-card-h3 {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 800;
  color: #004147;
  letter-spacing: .01em
}

.lnch .offer-card-para {
  font-size: 15px;
  line-height: 1.6;
  color: #004147;
  opacity: .75;
  letter-spacing: .01em
}

.lnch .offer-card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #00414712;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between
}

.lnch .offer-card-meta {
  font-size: 13px;
  line-height: 1.4;
  color: #004147;
  opacity: .55;
  letter-spacing: .01em
}

.lnch .offer-card-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  line-height: 1.4;
  color: #FF4C92;
  text-decoration: none !important;
  letter-spacing: .01em;
  font-weight: 700;
  transition: gap .4s cubic-bezier(0.22, 1, 0.36, 1)
}

.lnch .offer-card-link:hover {
  gap: 12px
}

.lnch .offer-card-link svg {
  width: 14px;
  height: 14px
}

.lnch .svg-divider3 {
  width: 100%;
  display: block;
  overflow: hidden
}

.lnch .value-blk {
  position: relative;
  padding: 96px 48px;
  overflow: hidden
}

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

.lnch .value-diag-bg-left {
  position: absolute;
  inset: 0;
  background: #E1EFEC;
  clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%)
}

.lnch .value-diag-bg-right {
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 42% 100%)
}

.lnch .value-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  max-width: 1200px;
  align-items: center
}

.lnch .value-left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lnch .value-eyebrow {
  font-size: 13px;
  letter-spacing: .02em;
  color: #FF4C92;
  line-height: 1.4;
  text-transform: uppercase
}

.lnch .value-h2 {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 900;
  color: #004147;
  letter-spacing: .01em
}

.lnch .value-para {
  font-size: 15px;
  line-height: 1.6;
  color: #004147;
  letter-spacing: .01em
}

.lnch .value-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0
}

.lnch .value-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #004147;
  letter-spacing: .01em
}

.lnch .value-list-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #FF4C92;
  flex-shrink: 0;
  margin-top: 8px
}

.lnch .value-right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lnch .value-img-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #0041471f;
  box-shadow: -1px 12px 36px 0 #0041471f;
  position: relative
}

.lnch .value-img-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block
}

.lnch .value-img-frame-grad {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #e1efeccc, transparent);
  pointer-events: none
}

.lnch .value-rating {
  background: #fff;
  border-radius: 9px;
  padding: 24px;
  border: 1px solid #0041471a;
  box-shadow: -1px 4px 14px 0 #00414712;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.lnch .value-rating-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between
}

.lnch .value-rating-num {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 900;
  color: #004147;
  letter-spacing: .01em
}

.lnch .value-rating-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px
}

.lnch .value-rating-stars {
  display: flex;
  flex-direction: row;
  gap: 4px
}

.lnch .value-rating-stars svg {
  width: 18px;
  height: 18px
}

.lnch .value-rating-count {
  font-size: 13px;
  line-height: 1.4;
  color: #004147;
  opacity: .6;
  letter-spacing: .01em
}

.lnch .value-rating-bar-row {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.lnch .value-rating-bar-label {
  font-size: 13px;
  line-height: 1.4;
  color: #004147;
  opacity: .7;
  letter-spacing: .01em
}

.lnch .value-bar-track {
  height: 6px;
  border-radius: 2px;
  background: #0041471a;
  overflow: hidden
}

.lnch .value-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(157deg, #FF4C92, #004147);
  transition: width .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.lnch .value-disclaimer {
  font-size: 13px;
  line-height: 1.4;
  color: #004147;
  opacity: .55;
  letter-spacing: .01em;
  border-top: 1px solid #0041471a;
  padding-top: 12px
}

@keyframes lnch-fade-blur-in {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(16px)
  }

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

.lnch .ttl-blk {
  animation: lnch-fade-blur-in .7s cubic-bezier(0.22, 1, 0.36, 1) both
}

.lnch .proof-blk {
  animation: lnch-fade-blur-in .65s cubic-bezier(0.22, 1, 0.36, 1) .1s both
}

.lnch .offer-blk {
  animation: lnch-fade-blur-in .7s cubic-bezier(0.22, 1, 0.36, 1) .15s both
}

.lnch .value-blk {
  animation: lnch-fade-blur-in .65s cubic-bezier(0.22, 1, 0.36, 1) .2s both
}

@media (max-width: 900px) {
  .lnch .ttl-inner {
    flex-direction: column
  }

  .lnch .ttl-left {
    flex: 0 0 auto
  }

  .lnch .ttl-h1 {
    font-size: 21px
  }

  .lnch .proof-grid {
    grid-template-columns: 1fr
  }

  .lnch .offer-grid {
    grid-template-columns: 1fr
  }

  .lnch .value-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .lnch .value-diag-bg-left {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 55%)
  }

  .lnch .value-diag-bg-right {
    clip-path: polygon(0 45%, 100% 55%, 100% 100%, 0 100%)
  }
}

@media (max-width: 600px) {

  .lnch .ttl-blk,
  .lnch .proof-blk,
  .lnch .offer-blk,
  .lnch .value-blk {
    padding: 48px 24px
  }

  .lnch .ttl-stat-row {
    flex-direction: column
  }

  .lnch .proof-compare-head,
  .lnch .proof-compare-row {
    grid-template-columns: 1fr 1fr 1fr
  }

  .lnch .value-rating-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .lnch .value-rating-detail {
    align-items: flex-start
  }
}

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

.abt-pg .load-blur {
  animation: blurIn .65s cubic-bezier(0.22, 1, 0.36, 1) both
}

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

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

.abt-pg .load-blur-delay {
  animation: blurIn .65s cubic-bezier(0.22, 1, 0.36, 1) .18s both
}

.abt-pg .load-blur-delay2 {
  animation: blurIn .65s cubic-bezier(0.22, 1, 0.36, 1) .32s both
}

.abt-pg .top-strip {
  background: #004147;
  padding: 48px 96px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
  position: relative
}

.abt-pg .top-strip-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 22px, #ff4c9212 22px, #ff4c9212 23px), repeating-linear-gradient(90deg, transparent, transparent 22px, #ff4c9212 22px, #ff4c9212 23px);
  pointer-events: none
}

.abt-pg .top-text {
  flex: 1 1 0;
  position: relative;
  z-index: 1
}

.abt-pg .top-eyebrow {
  font-size: 13px;
  letter-spacing: .12em;
  color: #FF4C92;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.4
}

.abt-pg .top-h1 {
  font-size: 50px;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #E1EFEC;
  font-weight: 900;
  margin-bottom: 24px
}

.abt-pg .top-h1 .kw-under {
  text-decoration: underline;
  text-decoration-color: #FF4C92;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px
}

.abt-pg .top-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #b8d4cf;
  max-width: 520px;
  letter-spacing: .01em
}

.abt-pg .top-img-wrap {
  flex: 0 0 380px;
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: -1px 12px 36px 0 #0041471f
}

.abt-pg .top-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, #0041478c 0%, transparent 65%);
  border-radius: 16px;
  pointer-events: none
}

.abt-pg .top-img-wrap img {
  display: block;
  width: 380px;
  height: 260px;
  object-fit: cover;
  border-radius: 16px
}

.abt-pg .div-band-1 {
  height: 4px;
  background: linear-gradient(157deg, #FF4C92 0%, #004147 100%)
}

.abt-pg .who-strip {
  background: #fff;
  padding: 96px 96px 48px;
  display: flex;
  flex-direction: row;
  gap: 96px;
  align-items: flex-start
}

.abt-pg .who-left {
  flex: 0 0 260px
}

.abt-pg .who-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FF4C92;
  margin-bottom: 12px;
  line-height: 1.4
}

.abt-pg .who-h2 {
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: .01em;
  color: #004147;
  font-weight: 800;
  margin-bottom: 24px
}

.abt-pg .who-dashed {
  border: 2px dashed #FF4C92;
  border-radius: 9px;
  padding: 24px;
  margin-top: 24px
}

.abt-pg .who-dashed-txt {
  font-size: 13px;
  line-height: 1.6;
  color: #004147;
  letter-spacing: .01em
}

.abt-pg .who-right {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.abt-pg .who-card {
  background: #E1EFEC;
  border-radius: 16px;
  padding: 24px;
  box-shadow: -1px 4px 14px 0 #00414717;
  transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1);
  border-top: 3px solid #004147
}

.abt-pg .who-card:hover {
  box-shadow: -1px 12px 36px 0 #0041471f;
  transform: translateY(-4px)
}

.abt-pg .who-card-num {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.15;
  color: #FF4C92;
  letter-spacing: -.02em;
  margin-bottom: 4px
}

.abt-pg .who-card-lbl {
  font-size: 13px;
  font-weight: 700;
  color: #004147;
  letter-spacing: .02em;
  line-height: 1.4;
  margin-bottom: 12px;
  text-transform: uppercase
}

.abt-pg .who-card-body {
  font-size: 13px;
  line-height: 1.6;
  color: #1a3a3d;
  letter-spacing: .01em
}

.abt-pg .div-band-2 {
  height: 24px;
  background: #E1EFEC;
  border-top: 1px solid #c4ddd8;
  border-bottom: 1px solid #c4ddd8
}

.abt-pg .approach-strip {
  background: #004147;
  padding: 96px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start
}

.abt-pg .approach-header {
  grid-column: 1 / -1;
  margin-bottom: 24px
}

.abt-pg .approach-h2 {
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: .01em;
  color: #E1EFEC;
  font-weight: 800;
  margin-bottom: 12px
}

.abt-pg .approach-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #b8d4cf;
  max-width: 600px;
  letter-spacing: .01em
}

.abt-pg .ap-card {
  background: #e1efec0f;
  border: 1px solid #e1efec2e;
  border-radius: 16px;
  padding: 24px;
  transition: background .6s ease-in-out, border-color .4s ease-in-out
}

.abt-pg .ap-card:hover {
  background: #ff4c921a;
  border-color: #ff4c9266
}

.abt-pg .ap-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #FF4C92;
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.abt-pg .ap-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.abt-pg .ap-card-h {
  font-size: 15px;
  font-weight: 800;
  color: #E1EFEC;
  line-height: 1.4;
  letter-spacing: .01em;
  margin-bottom: 12px
}

.abt-pg .ap-card-p {
  font-size: 13px;
  line-height: 1.6;
  color: #b8d4cf;
  letter-spacing: .01em
}

.abt-pg .div-band-3 {
  height: 6px;
  background: #FF4C92
}

.abt-pg .team-strip {
  background: #E1EFEC;
  padding: 96px;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center
}

.abt-pg .team-imgs {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.abt-pg .team-img-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #004147;
  box-shadow: -1px 4px 14px 0 #00414717
}

.abt-pg .team-img-frame img {
  display: block;
  width: 300px;
  height: 200px;
  object-fit: cover
}

.abt-pg .team-body {
  flex: 1 1 0
}

.abt-pg .team-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FF4C92;
  margin-bottom: 12px;
  line-height: 1.4
}

.abt-pg .team-h2 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.4;
  color: #004147;
  letter-spacing: .01em;
  margin-bottom: 24px
}

.abt-pg .team-rows {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.abt-pg .team-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  border-left: 4px solid #004147;
  border-top: 1px solid #c4ddd8;
  box-shadow: -1px 1px 5px 0 #00414712;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt-pg .team-row:focus-within {
  box-shadow: -1px 4px 14px 0 #ff4c922e;
  outline: 2px solid #FF4C92;
  outline-offset: 2px
}

.abt-pg .team-row:hover {
  box-shadow: -1px 4px 14px 0 #00414717
}

.abt-pg .team-row-num {
  flex: 0 0 40px;
  height: 40px;
  background: #004147;
  border-radius: 9px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  color: #E1EFEC;
  letter-spacing: .01em;
  line-height: 1.15
}

.abt-pg .team-row-text {
  flex: 1 1 0
}

.abt-pg .team-row-h {
  font-size: 15px;
  font-weight: 700;
  color: #004147;
  line-height: 1.4;
  letter-spacing: .01em;
  margin-bottom: 4px
}

.abt-pg .team-row-p {
  font-size: 13px;
  line-height: 1.6;
  color: #2a5a5f;
  letter-spacing: .01em
}

.abt-pg .notice-bar {
  background: #004147;
  border-radius: 9px;
  padding: 12px 24px;
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.abt-pg .notice-bar svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  stroke: #FF4C92;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.abt-pg .notice-bar-txt {
  font-size: 13px;
  line-height: 1.4;
  color: #E1EFEC;
  letter-spacing: .01em
}

@media (max-width: 1200px) {
  .abt-pg .top-strip {
    padding: 48px
  }

  .abt-pg .top-img-wrap {
    flex: 0 0 280px
  }

  .abt-pg .top-img-wrap img {
    width: 280px;
    height: 200px
  }

  .abt-pg .who-strip {
    padding: 48px;
    gap: 48px
  }

  .abt-pg .approach-strip {
    padding: 48px;
    grid-template-columns: 1fr 1fr
  }

  .abt-pg .team-strip {
    padding: 48px
  }
}

@media (max-width: 900px) {
  .abt-pg .top-strip {
    flex-direction: column;
    padding: 48px 24px;
    gap: 24px
  }

  .abt-pg .top-img-wrap {
    flex: 0 0 auto;
    width: 100%
  }

  .abt-pg .top-img-wrap img {
    width: 100%;
    height: 220px
  }

  .abt-pg .top-h1 {
    font-size: 21px
  }

  .abt-pg .who-strip {
    flex-direction: column;
    padding: 48px 24px;
    gap: 24px
  }

  .abt-pg .who-left {
    flex: 0 0 auto;
    width: 100%
  }

  .abt-pg .who-right {
    grid-template-columns: 1fr 1fr
  }

  .abt-pg .approach-strip {
    padding: 48px 24px;
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .abt-pg .team-strip {
    flex-direction: column;
    padding: 48px 24px;
    gap: 24px
  }

  .abt-pg .team-imgs {
    width: 100%
  }

  .abt-pg .team-img-frame img {
    width: 100%;
    height: 180px
  }

  .abt-pg .team-img-frame {
    width: 100%
  }
}

@media (max-width: 600px) {
  .abt-pg .top-strip {
    padding: 24px 12px
  }

  .abt-pg .top-h1 {
    font-size: 21px
  }

  .abt-pg .who-strip {
    padding: 24px 12px
  }

  .abt-pg .who-right {
    grid-template-columns: 1fr
  }

  .abt-pg .approach-strip {
    padding: 24px 12px;
    grid-template-columns: 1fr
  }

  .abt-pg .team-strip {
    padding: 24px 12px
  }

  .abt-pg .team-row {
    flex-direction: column;
    gap: 12px
  }
}

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

.suc-page .suc-wrap {
  max-width: 600px;
  width: 100%;
  text-align: center
}

.suc-page .suc-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E1EFEC;
  border-radius: 24px;
  box-shadow: -1px 4px 14px 0 #00414717
}

.suc-page .suc-icon svg {
  width: 36px;
  height: 36px;
  display: block
}

.suc-page .suc-heading {
  font-size: 50px;
  line-height: 1.15;
  letter-spacing: .01em;
  font-weight: 900;
  color: #004147;
  margin: 0 0 24px
}

.suc-page .suc-sub {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: .01em;
  color: #004147;
  margin: 0 0 12px
}

.suc-page .suc-note {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #004147;
  opacity: .72;
  margin: 0 0 48px
}

.suc-page .suc-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(157deg, #004147, #FF4C92);
  border-radius: 2px;
  margin: 0 auto 48px
}

.suc-page .suc-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #004147;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: .02em;
  font-weight: 700;
  border-radius: 9px;
  border: 2px solid #004147;
  text-decoration: none;
  cursor: pointer;
  transition: background .4s cubic-bezier(0.22, 1, 0.36, 1), color .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -1px 4px 14px 0 #00414717
}

.suc-page .suc-btn:hover,
.suc-page .suc-btn:focus {
  background: #FF4C92;
  border-color: #FF4C92;
  color: #fff;
  box-shadow: -1px 12px 36px 0 #ff4c921f;
  outline: none
}

.suc-page .suc-btn:active {
  box-shadow: -1px 1px 5px 0 #00414712
}

.suc-page .suc-btn-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.suc-page .suc-disclaimer {
  margin-top: 48px;
  padding: 12px 24px;
  background: #E1EFEC;
  border-radius: 9px;
  border-top: 3px solid #004147;
  border-left: 1px solid #00414726;
  border-right: 1px solid #00414726;
  border-bottom: 1px solid #00414726
}

.suc-page .suc-disclaimer p {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #004147;
  margin: 0
}

@media (max-width: 600px) {
  .suc-page {
    padding: 48px 24px
  }

  .suc-page .suc-heading {
    font-size: 21px
  }

  .suc-page .suc-sub {
    font-size: 15px
  }
}