*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
}

body {
  font-family: 'Inconsolata', monospace;
  background: #FAFBFC;
  color: #101F26;
}

.hd_bar {
  background: #101F26;
  padding: 8px 0;
  border-bottom: 2px solid #01D8CD;
}

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

.hd_region {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #01D8CD;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.hd_region i {
  font-size: 16px;
  color: #01D8CD;
}

.hd_contact_strip {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hd_contact_strip a {
  color: #FAFBFC;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.82;
  transition: opacity 0.09s ease-out, color 0.09s ease-out;
}

.hd_contact_strip a:hover {
  opacity: 1;
  color: #01D8CD;
}

.hd_contact_strip a:focus-visible {
  outline: 2px solid #01D8CD;
  outline-offset: 3px;
  border-radius: 7px;
  opacity: 1;
}

.hd_contact_strip i {
  font-size: 16px;
}

.hd_main {
  background: #FAFBFC;
  border-bottom: 1px solid rgba(1, 216, 205, 0.22);
  box-shadow: 0 1px 4px 1px rgba(16, 31, 38, 0.05);
}

.hd_main_pod {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  min-height: 88px;
}

.hd_brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}

.hd_logo_frame {
  border: 1px solid #101F26;
  border-radius: 32px;
  padding: 8px 16px;
  background: #FAFBFC;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px 1px rgba(16, 31, 38, 0.05);
  min-width: 70px;
  height: 60px;
}

.hd_logo_frame img {
  width: 55px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.hd_brand_name {
  font-size: 24px;
  font-weight: 700;
  color: #101F26;
  line-height: 1.2;
  letter-spacing: 0;
}

.hd_nav_deck {
  display: flex;
  align-items: center;
}

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

.hd_nav li {
  display: flex;
}

.hd_nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #101F26;
  text-decoration: none;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: background 0.1s ease-out, border-color 0.1s ease-out, color 0.1s ease-out;
  white-space: nowrap;
  min-height: 44px;
}

.hd_nav a:hover {
  background: rgba(1, 216, 205, 0.1);
  border-color: rgba(1, 216, 205, 0.35);
  color: #101F26;
}

.hd_nav a:focus-visible {
  outline: 2px solid #01D8CD;
  outline-offset: 2px;
  background: rgba(1, 216, 205, 0.08);
}

.hd_nav a.active {
  background: #101F26;
  color: #01D8CD;
  border-color: #101F26;
}

.hd_nav a i {
  font-size: 16px;
}

.hd_nav_cta {
  margin-left: 16px;
  display: flex;
  align-items: center;
}

.hd_enroll_btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #01D8CD;
  color: #101F26;
  font-family: 'Inconsolata', monospace;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  min-height: 44px;
  box-shadow: 0 6px 25px 1px rgba(1, 216, 205, 0.09);
  transition: box-shadow 0.1s ease-out, transform 0.08s ease-out;
}

.hd_enroll_btn:hover {
  box-shadow: 0 9px 60px 1px rgba(1, 216, 205, 0.12);
}

.hd_enroll_btn:active {
  transform: scale(0.97);
}

.hd_enroll_btn:focus-visible {
  outline: 2px solid #101F26;
  outline-offset: 3px;
}

.hd_enroll_btn i {
  font-size: 16px;
}

@media (max-width: 1024px) {
  .hd_bar_pod {
    padding: 0 16px;
  }

  .hd_main_pod {
    padding: 0 16px;
    gap: 16px;
    flex-wrap: wrap;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hd_nav_cta {
    margin-left: 8px;
  }

  .hd_nav a {
    padding: 10px 12px;
  }
}

@media (max-width: 768px) {
  .hd_contact_strip a span {
    display: none;
  }

  .hd_main_pod {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hd_nav_deck {
    width: 100%;
    flex-wrap: wrap;
  }

  .hd_nav {
    flex-wrap: wrap;
  }

  .hd_nav_cta {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }

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

@media (max-width: 480px) {
  .hd_region span {
    display: none;
  }

  .hd_bar_pod {
    gap: 8px;
  }

  .hd_brand_name {
    font-size: 24px;
  }
}

.ft_root {
  background: #101F26;
  color: #FAFBFC;
  padding: 96px 32px 48px;
}

.ft_grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.ft_brand_pod {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ft_logo_frame {
  border: 1px solid rgba(1, 216, 205, 0.4);
  border-radius: 32px;
  padding: 8px 16px;
  background: rgba(1, 216, 205, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px 1px rgba(1, 216, 205, 0.05);
  min-width: 70px;
  height: 60px;
}

.ft_logo_frame img {
  width: 55px;
  height: 44px;
  object-fit: contain;
  display: block;
  background: #FAFBFC;
  border-radius: 7px;
  padding: 4px;
}

.ft_tagline {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(250, 251, 252, 0.65);
  max-width: 200px;
}

.ft_col_head {
  font-size: 16px;
  font-weight: 700;
  color: #01D8CD;
  margin: 0 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(1, 216, 205, 0.2);
  line-height: 1.2;
}

.ft_link_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.ft_link_list a {
  color: rgba(250, 251, 252, 0.72);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.09s ease-out;
  justify-content: center;
}

.ft_link_list a:hover {
  color: #01D8CD;
}

.ft_link_list a:focus-visible {
  outline: 2px solid #01D8CD;
  outline-offset: 3px;
  border-radius: 7px;
  color: #01D8CD;
}

.ft_link_list i {
  font-size: 16px;
  flex-shrink: 0;
}

.ft_contact_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.ft_contact_item a {
  color: rgba(250, 251, 252, 0.72);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.09s ease-out;
  word-break: break-word;
}

.ft_contact_item a:hover {
  color: #01D8CD;
}

.ft_contact_item a:focus-visible {
  outline: 2px solid #01D8CD;
  outline-offset: 3px;
  border-radius: 7px;
}

.ft_contact_item i {
  font-size: 16px;
  color: #01D8CD;
  flex-shrink: 0;
}

.ft_addr {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(250, 251, 252, 0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
}

.ft_addr i {
  font-size: 16px;
  color: #01D8CD;
  flex-shrink: 0;
  margin-top: 2px;
}

.ft_divider {
  max-width: 1200px;
  margin: 48px auto 0;
  border: none;
  border-top: 1px solid rgba(1, 216, 205, 0.15);
}

.ft_bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.ft_copy {
  font-size: 16px;
  color: rgba(250, 251, 252, 0.45);
  line-height: 1.45;
}

.ft_legal_links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.ft_legal_links a {
  font-size: 16px;
  color: rgba(250, 251, 252, 0.5);
  text-decoration: none;
  transition: color 0.09s ease-out;
}

.ft_legal_links a:hover {
  color: #01D8CD;
}

.ft_legal_links a:focus-visible {
  outline: 2px solid #01D8CD;
  outline-offset: 3px;
  border-radius: 7px;
  color: #01D8CD;
}

@media (max-width: 1024px) {
  .ft_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .ft_root {
    padding: 96px 16px 48px;
  }
}

@media (max-width: 768px) {
  .ft_grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ft_root {
    padding: 48px 16px 48px;
  }
}

@media (max-width: 480px) {
  .ft_legal_links {
    gap: 16px;
  }
}

.ck_bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #101F26;
  border-bottom: 2px solid #01D8CD;
  box-shadow: 0 6px 25px 1px rgba(16, 31, 38, 0.09);
  transform: translateY(-100%);
  transition: transform 0.18s ease-out;
}

.ck_bar.ck_visible {
  transform: translateY(0);
}

.ck_pod {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.ck_icon_cell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(1, 216, 205, 0.12);
  flex-shrink: 0;
}

.ck_icon_cell i {
  font-size: 24px;
  color: #01D8CD;
}

.ck_body {
  flex: 1;
  min-width: 260px;
}

.ck_txt {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(250, 251, 252, 0.82);
  margin: 0 0 8px 0;
}

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

.ck_optout_lbl {
  font-size: 16px;
  color: rgba(250, 251, 252, 0.65);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ck_optout_lbl input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #01D8CD;
  cursor: pointer;
}

.ck_policy_note {
  font-size: 16px;
  color: rgba(250, 251, 252, 0.45);
  margin: 0;
}

.ck_policy_note a {
  color: #01D8CD;
  text-decoration: underline;
  transition: opacity 0.09s ease-out;
}

.ck_policy_note a:hover {
  opacity: 0.75;
}

.ck_policy_note a:focus-visible {
  outline: 2px solid #01D8CD;
  outline-offset: 2px;
  border-radius: 7px;
}

.ck_actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.ck_btn_accept {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #01D8CD;
  border-radius: 12px;
  color: #01D8CD;
  font-family: 'Inconsolata', monospace;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  transition: background 0.1s ease-out, color 0.1s ease-out;
}

.ck_btn_accept:hover {
  background: rgba(1, 216, 205, 0.12);
}

.ck_btn_accept:focus-visible {
  outline: 2px solid #01D8CD;
  outline-offset: 3px;
}

.ck_btn_decline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(250, 251, 252, 0.3);
  border-radius: 12px;
  color: rgba(250, 251, 252, 0.65);
  font-family: 'Inconsolata', monospace;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.1s ease-out, color 0.1s ease-out;
}

.ck_btn_decline:hover {
  border-color: rgba(250, 251, 252, 0.6);
  color: #FAFBFC;
}

.ck_btn_decline:focus-visible {
  outline: 2px solid rgba(250, 251, 252, 0.5);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .ck_pod {
    padding: 16px;
    gap: 16px;
  }

  .ck_actions {
    width: 100%;
  }

  .ck_btn_accept,
  .ck_btn_decline {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ck_actions {
    flex-direction: column;
  }

  .ck_btn_accept,
  .ck_btn_decline {
    width: 100%;
  }
}

.frq-policy-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
  color: #101F26;
  background: #FAFBFC;
}

.frq-policy-main p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
  color: #101F26;
}

.frq-policy-main ul,
.frq-policy-main ol {
  margin: 16px 0 16px 32px;
  padding: 0;
}

.frq-policy-main ul {
  list-style-type: disc;
}

.frq-policy-main ol {
  list-style-type: decimal;
}

.frq-policy-main li {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 8px;
  color: #101F26;
  padding-left: 4px;
}

.frq-policy-main li:last-child {
  margin-bottom: 0;
}

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

.frq-policy-main strong,
.frq-policy-main b {
  font-weight: 700;
  color: #101F26;
}

.frq-policy-main em,
.frq-policy-main i {
  font-style: italic;
  color: #101F26;
}

.frq-policy-main a {
  color: #008f8a;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.1s ease-out, text-decoration-color 0.08s linear;
}

.frq-policy-main a:hover {
  color: #01D8CD;
  text-decoration-color: #01D8CD;
}

.frq-policy-main a:active {
  color: #101F26;
}

.frq-policy-main table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 16px;
  line-height: 1.45;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px 1px rgba(1, 216, 205, 0.05), 0 6px 25px 1px rgba(1, 216, 205, 0.09);
}

.frq-policy-main thead {
  background: #101F26;
}

.frq-policy-main thead th {
  color: #FAFBFC;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  padding: 16px;
  text-align: left;
  border: none;
}

.frq-policy-main tbody tr {
  background: #FAFBFC;
  transition: background 0.09s ease-out;
}

.frq-policy-main tbody tr:nth-child(even) {
  background: #eef8f8;
}

.frq-policy-main tbody tr:hover {
  background: #d6f5f4;
}

.frq-policy-main td {
  font-size: 16px;
  line-height: 1.65;
  color: #101F26;
  padding: 16px;
  border-bottom: 1px solid rgba(1, 216, 205, 0.18);
  vertical-align: top;
}

.frq-policy-main tbody tr:last-child td {
  border-bottom: none;
}

.frq-policy-main th {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

.frq-policy-main hr {
  border: none;
  border-top: 2px solid rgba(1, 216, 205, 0.3);
  margin: 48px 0;
  border-radius: 7px;
}

@media (max-width: 1024px) {
  .frq-policy-main {
    padding: 96px 32px;
  }
}

@media (max-width: 768px) {
  .frq-policy-main {
    padding: 48px 16px;
  }

  .frq-policy-main table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 7px;
  }

  .frq-policy-main thead th,
  .frq-policy-main td {
    padding: 16px 8px;
  }

  .frq-policy-main ul,
  .frq-policy-main ol {
    margin-left: 16px;
  }
}

@media (max-width: 480px) {
  .frq-policy-main {
    padding: 32px 16px;
  }

  .frq-policy-main p,
  .frq-policy-main li,
  .frq-policy-main td,
  .frq-policy-main th {
    font-size: 16px;
  }
}

.abt-pg {
  background: #FAFBFC;
  overflow-x: clip;
  position: relative;
}

.abt-pg .ld-schema {
  display: none;
}

.abt-pg .hero-blk {
  position: relative;
  padding: 96px 32px 96px;
  background: linear-gradient(160deg, #101F26 0%, #0d2a35 40%, #01D8CD08 100%);
  overflow: hidden;
}

.abt-pg .hero-blk::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(1, 216, 205, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(1, 216, 205, 0.07) 0%, transparent 40%);
  pointer-events: none;
}

.abt-pg .hero-blk::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #FAFBFC);
  pointer-events: none;
}

.abt-pg .spot-drift {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 216, 205, 0.08) 0%, transparent 70%);
  top: -80px;
  right: -60px;
  animation: spotMove 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes spotMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-60px, 80px);
  }
}

.abt-pg .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.abt-pg .hero-copy {
  flex: 1 1 0;
  min-width: 0;
}

.abt-pg .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border-radius: 32px;
  border: 1px solid rgba(1, 216, 205, 0.35);
  background: rgba(1, 216, 205, 0.08);
  margin-bottom: 32px;
}

.abt-pg .hero-badge span {
  font-size: 16px;
  color: #01D8CD;
  line-height: 1.45;
}

.abt-pg .hero-h1 {
  font-size: 62px;
  line-height: 1.2;
  color: #FAFBFC;
  margin: 0 0 24px;
}

.abt-pg .hero-h1 em {
  font-style: normal;
  color: #01D8CD;
}

.abt-pg .hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 251, 252, 0.72);
  margin: 0 0 32px;
  max-width: 480px;
}

.abt-pg .hero-meta {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.abt-pg .meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-pg .meta-num {
  font-size: 32px;
  line-height: 1.2;
  color: #01D8CD;
}

.abt-pg .meta-lbl {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(250, 251, 252, 0.55);
}

.abt-pg .hero-img-col {
  flex: 0 0 420px;
  position: relative;
}

.abt-pg .img-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.abt-pg .img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(1, 216, 205, 0.15) 100%);
  z-index: 1;
  pointer-events: none;
}

.abt-pg .img-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(16, 31, 38, 0.6));
  z-index: 1;
  pointer-events: none;
}

.abt-pg .corner-br {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.abt-pg .corner-br.tl {
  top: -8px;
  left: -8px;
}

.abt-pg .corner-br.br {
  bottom: -8px;
  right: -8px;
}

.abt-pg .corner-br svg {
  display: block;
}

.abt-pg .img-frame img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.12s ease-out;
}

.abt-pg .hero-img-col:hover .img-frame img {
  transform: scale(1.02);
}

.abt-pg .img-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1a2d38 25%, #1f3542 50%, #1a2d38 75%);
  border-radius: 12px;
  z-index: 3;
  transition: opacity 0.1s ease-out;
}

.abt-pg .img-frame img.loaded+.img-skeleton,
.abt-pg .img-skeleton.hidden {
  opacity: 0;
  pointer-events: none;
}

.abt-pg .vals-blk {
  padding: 96px 32px;
  background: #FAFBFC;
  position: relative;
}

.abt-pg .vals-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.abt-pg .vals-lead {
  position: sticky;
  top: 32px;
}

.abt-pg .sec-eyebrow {
  font-size: 16px;
  line-height: 1.45;
  color: #01D8CD;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}

.abt-pg .vals-h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #101F26;
  margin: 0 0 24px;
}

.abt-pg .vals-h2 strong {
  color: #01D8CD;
}

.abt-pg .vals-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4f5a;
  margin: 0 0 32px;
}

.abt-pg .vals-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.abt-pg .vals-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(250, 251, 252, 0.9) 100%);
  pointer-events: none;
}

.abt-pg .vals-img-wrap img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

.abt-pg .vals-img-sk {
  position: absolute;
  inset: 0;
  background: #d8dee3;
  border-radius: 12px;
  z-index: 2;
  transition: opacity 0.1s ease-out;
}

.abt-pg .vals-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.abt-pg .val-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(16, 31, 38, 0.1);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.abt-pg .val-item:first-child {
  border-top: 1px solid rgba(16, 31, 38, 0.1);
}

.abt-pg .val-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: rgba(1, 216, 205, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01D8CD;
  font-size: 20px;
  transition: background 0.09s ease-out;
}

.abt-pg .val-item:hover .val-icon {
  background: rgba(1, 216, 205, 0.2);
}

.abt-pg .val-txt {
  flex: 1 1 0;
  min-width: 0;
}

.abt-pg .val-name {
  font-size: 16px;
  line-height: 1.45;
  color: #101F26;
  margin: 0 0 4px;
}

.abt-pg .val-name strong {
  color: #01D8CD;
}

.abt-pg .val-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #4d6370;
  margin: 0;
}

.abt-pg .team-blk {
  padding: 96px 32px;
  background: #101F26;
  position: relative;
  overflow: hidden;
}

.abt-pg .team-blk::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(1, 216, 205, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(1, 216, 205, 0.05) 0%, transparent 45%);
  pointer-events: none;
}

.abt-pg .geom-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.abt-pg .team-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.abt-pg .team-hd {
  text-align: center;
  margin-bottom: 48px;
}

.abt-pg .team-h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #FAFBFC;
  margin: 0 0 16px;
}

.abt-pg .team-h2 strong {
  color: #01D8CD;
}

.abt-pg .team-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 251, 252, 0.6);
  max-width: 560px;
  margin: 0 auto;
}

.abt-pg .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.abt-pg .tm-card {
  background: rgba(250, 251, 252, 0.04);
  border: 1px solid rgba(1, 216, 205, 0.12);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.1s ease-out, background 0.1s ease-out;
}

.abt-pg .tm-card:hover {
  border-color: rgba(1, 216, 205, 0.3);
  background: rgba(250, 251, 252, 0.07);
}

.abt-pg .tm-img-wrap {
  width: 72px;
  height: 72px;
  border-radius: 48px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  border: 2px solid rgba(1, 216, 205, 0.25);
}

.abt-pg .tm-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abt-pg .tm-img-sk {
  position: absolute;
  inset: 0;
  background: #1f3542;
  z-index: 2;
  transition: opacity 0.1s ease-out;
}

.abt-pg .tm-name {
  font-size: 16px;
  line-height: 1.45;
  color: #FAFBFC;
  margin: 0 0 4px;
}

.abt-pg .tm-role {
  font-size: 16px;
  line-height: 1.45;
  color: #01D8CD;
  margin: 0 0 16px;
}

.abt-pg .tm-bio {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 251, 252, 0.58);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(250, 251, 252, 0.08);
}

.abt-pg .team-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.abt-pg .tm-card.wide {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}

.abt-pg .tm-card.wide .tm-img-wrap {
  flex: 0 0 72px;
  margin-bottom: 0;
}

.abt-pg .tm-card.wide .tm-body {
  flex: 1 1 0;
  min-width: 0;
}

.abt-pg .appr-blk {
  padding: 96px 32px;
  background: #FAFBFC;
  position: relative;
}

.abt-pg .appr-blk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #01D8CD 40%, transparent);
  pointer-events: none;
}

.abt-pg .appr-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.abt-pg .appr-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.abt-pg .appr-hd {
  flex: 0 0 auto;
}

.abt-pg .appr-h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #101F26;
  margin: 0 0 8px;
}

.abt-pg .appr-h2 strong {
  color: #01D8CD;
}

.abt-pg .appr-tagline {
  font-size: 16px;
  line-height: 1.45;
  color: #5a7080;
  margin: 0;
}

.abt-pg .appr-img-strip {
  flex: 0 0 340px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.abt-pg .appr-img-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 40%, rgba(250, 251, 252, 0.95) 100%);
  z-index: 1;
  pointer-events: none;
}

.abt-pg .appr-img-strip img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.abt-pg .appr-img-sk {
  position: absolute;
  inset: 0;
  background: #d0d8de;
  border-radius: 12px;
  z-index: 2;
  transition: opacity 0.1s ease-out;
}

.abt-pg .steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.abt-pg .step-item {
  padding: 32px 24px 32px 0;
  border-right: 1px solid rgba(16, 31, 38, 0.1);
  position: relative;
}

.abt-pg .step-item:last-child {
  border-right: none;
  padding-right: 0;
}

.abt-pg .step-item:first-child {
  padding-left: 0;
}

.abt-pg .step-item:not(:first-child) {
  padding-left: 24px;
}

.abt-pg .step-num {
  font-size: 44px;
  line-height: 1.2;
  color: rgba(1, 216, 205, 0.18);
  margin: 0 0 8px;
  display: block;
}

.abt-pg .step-name {
  font-size: 16px;
  line-height: 1.45;
  color: #101F26;
  margin: 0 0 8px;
}

.abt-pg .step-name strong {
  color: #01D8CD;
}

.abt-pg .step-txt {
  font-size: 16px;
  line-height: 1.65;
  color: #4d6370;
  margin: 0;
}

.abt-pg .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #01D8CD;
  position: absolute;
  top: 32px;
  right: -4px;
  animation: dotPulse 2s ease-in-out infinite;
}

.abt-pg .step-item:last-child .pulse-dot {
  display: none;
}

@keyframes dotPulse {

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

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.abt-pg .appr-bottom {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.abt-pg .appr-stat-card {
  background: #101F26;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-pg .stat-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.abt-pg .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-pg .stat-n {
  font-size: 32px;
  line-height: 1.2;
  color: #01D8CD;
}

.abt-pg .stat-l {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(250, 251, 252, 0.55);
}

.abt-pg .stat-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 251, 252, 0.65);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(250, 251, 252, 0.08);
}

.abt-pg .appr-txt-card {
  background: rgba(1, 216, 205, 0.05);
  border: 1px solid rgba(1, 216, 205, 0.15);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.abt-pg .appr-txt-card h5 {
  font-size: 24px;
  line-height: 1.2;
  color: #101F26;
  margin: 0;
}

.abt-pg .appr-txt-card h5 strong {
  color: #01D8CD;
}

.abt-pg .appr-txt-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4f5a;
  margin: 0;
}

@media (max-width: 1024px) {
  .abt-pg .hero-inner {
    flex-direction: column;
    gap: 48px;
  }

  .abt-pg .hero-img-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .abt-pg .hero-h1 {
    font-size: 44px;
  }

  .abt-pg .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-pg .steps-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .abt-pg .step-item {
    border-right: none;
    border-bottom: 1px solid rgba(16, 31, 38, 0.1);
    padding: 24px 0;
  }

  .abt-pg .step-item:last-child {
    border-bottom: none;
  }

  .abt-pg .pulse-dot {
    display: none;
  }

  .abt-pg .appr-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .abt-pg .appr-img-strip {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .abt-pg .hero-blk {
    padding: 48px 16px 96px;
  }

  .abt-pg .hero-h1 {
    font-size: 32px;
  }

  .abt-pg .hero-meta {
    flex-direction: column;
    gap: 16px;
  }

  .abt-pg .vals-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .abt-pg .vals-lead {
    position: static;
  }

  .abt-pg .team-grid {
    grid-template-columns: 1fr;
  }

  .abt-pg .team-wide {
    grid-template-columns: 1fr;
  }

  .abt-pg .tm-card.wide {
    flex-direction: column;
  }

  .abt-pg .appr-bottom {
    grid-template-columns: 1fr;
  }

  .abt-pg .vals-blk,
  .abt-pg .team-blk,
  .abt-pg .appr-blk {
    padding: 48px 16px;
  }

  .abt-pg .appr-h2,
  .abt-pg .vals-h2,
  .abt-pg .team-h2 {
    font-size: 32px;
  }

  .abt-pg .steps-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .abt-pg .hero-h1 {
    font-size: 32px;
  }

  .abt-pg .hero-img-col {
    display: none;
  }

  .abt-pg .stat-row {
    flex-direction: column;
    gap: 16px;
  }

  .abt-pg .appr-h2,
  .abt-pg .vals-h2,
  .abt-pg .team-h2 {
    font-size: 24px;
  }
}

.dgst {
  background: #FAFBFC;
  overflow-x: clip;
}

.dgst .pg_ld {
  display: none;
}

@keyframes ltr_drop {
  0% {
    opacity: 0;
    transform: translateY(-28px);
  }

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

.dgst .drop_ltr {
  display: inline-block;
  opacity: 0;
  animation: ltr_drop 0.18s ease-out forwards;
}

.dgst .splt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
}

.dgst .splt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #01D8CD;
}

.dgst .splt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #01D8CD;
}

.dgst .splt_img {
  position: relative;
  overflow: hidden;
}

.dgst .splt_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dgst .splt_img .img_ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 216, 205, 0.18) 0%, rgba(16, 31, 38, 0.55) 100%);
}

.dgst .dot_bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(1, 216, 205, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
}

.dgst .splt_txt {
  background: #101F26;
  padding: 96px 48px 96px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  position: relative;
}

.dgst .splt_txt .dot_bg {
  background-image: radial-gradient(circle, rgba(1, 216, 205, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.dgst .splt_tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1, 216, 205, 0.12);
  border: 1px solid rgba(1, 216, 205, 0.3);
  border-radius: 7px;
  padding: 4px 16px;
  color: #01D8CD;
  font-size: 16px;
  width: fit-content;
}

.dgst .splt_h {
  font-size: 44px;
  line-height: 1.2;
  color: #FAFBFC;
  margin: 0;
}

.dgst .splt_h .acc {
  color: #01D8CD;
}

.dgst .splt_desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 251, 252, 0.75);
  margin: 0;
  max-width: 440px;
}

.dgst .splt_lnk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #01D8CD;
  color: #101F26;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  padding: 16px 32px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.1s ease-out, transform 0.08s ease-out;
  box-shadow: 0 6px 25px 1px rgba(1, 216, 205, 0.09);
}

.dgst .splt_lnk:hover {
  background: #00c4ba;
}

.dgst .splt_lnk:active {
  transform: scale(0.97);
}

.dgst .ovw {
  padding: 96px 0;
  background: #FAFBFC;
  max-width: 100%;
}

.dgst .ovw_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.dgst .ovw_top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.dgst .ovw_h {
  font-size: 44px;
  line-height: 1.2;
  color: #101F26;
  margin: 0;
}

.dgst .ovw_h .acc {
  color: #01D8CD;
}

.dgst .ovw_sub {
  font-size: 16px;
  line-height: 1.65;
  color: #101F26;
  max-width: 380px;
  margin: 0;
  opacity: 0.7;
}

.dgst .num_anchor {
  font-size: 72px;
  line-height: 1.2;
  color: #01D8CD;
  font-weight: 900;
  letter-spacing: -2px;
  flex-shrink: 0;
}

.dgst .num_lbl {
  font-size: 16px;
  color: #101F26;
  opacity: 0.5;
  margin-top: 4px;
}

.dgst .topics_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dgst .tp_card {
  border-radius: 12px;
  border: 1px solid rgba(16, 31, 38, 0.1);
  background: #fff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 4px 1px rgba(16, 31, 38, 0.05);
  transition: box-shadow 0.12s ease-out, border-color 0.1s ease-out;
}

.dgst .tp_card:hover {
  box-shadow: 0 6px 25px 1px rgba(16, 31, 38, 0.09);
  border-color: rgba(1, 216, 205, 0.35);
}

.dgst .topics_grid:has(.tp_card:hover) .tp_card:not(:hover) {
  opacity: 0.6;
  transition: opacity 0.1s ease-out;
}

.dgst .tp_icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(1, 216, 205, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01D8CD;
  font-size: 24px;
  flex-shrink: 0;
}

.dgst .tp_nm {
  font-size: 24px;
  line-height: 1.2;
  color: #101F26;
  margin: 0;
}

.dgst .tp_nm .acc {
  color: #01D8CD;
}

.dgst .tp_body {
  font-size: 16px;
  line-height: 1.65;
  color: #101F26;
  opacity: 0.75;
  margin: 0;
}

.dgst .tp_sep {
  height: 1px;
  background: rgba(16, 31, 38, 0.08);
  margin: 4px 0;
}

.dgst .tp_meta {
  font-size: 16px;
  color: #101F26;
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dgst .lgnd {
  position: relative;
  padding: 96px 0;
}

.dgst .lgnd_bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.dgst .lgnd_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dgst .lgnd_bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 251, 252, 0.91);
}

.dgst .lgnd_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.dgst .lgnd_head {
  text-align: center;
  margin-bottom: 48px;
}

.dgst .lgnd_h {
  font-size: 44px;
  line-height: 1.2;
  color: #101F26;
  margin: 0 0 16px 0;
}

.dgst .lgnd_h .acc {
  color: #01D8CD;
}

.dgst .lgnd_desc {
  font-size: 16px;
  line-height: 1.65;
  color: #101F26;
  opacity: 0.7;
  max-width: 560px;
  margin: 0 auto;
}

.dgst .lgnd_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.dgst .lgnd_list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dgst .lgnd_item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 31, 38, 0.1);
}

.dgst .lgnd_item:last-child {
  border-bottom: none;
}

.dgst .li_icon {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.dgst .li_icon.c1 {
  background: rgba(1, 216, 205, 0.15);
  color: #01D8CD;
}

.dgst .li_icon.c2 {
  background: rgba(16, 31, 38, 0.08);
  color: #101F26;
}

.dgst .li_icon.c3 {
  background: rgba(1, 216, 205, 0.25);
  color: #01D8CD;
}

.dgst .li_icon.c4 {
  background: rgba(16, 31, 38, 0.12);
  color: #101F26;
}

.dgst .li_icon.c5 {
  background: rgba(1, 216, 205, 0.1);
  color: #01D8CD;
}

.dgst .li_txt {
  flex: 1;
}

.dgst .li_lbl {
  font-size: 16px;
  font-weight: 700;
  color: #101F26;
  margin: 0 0 4px 0;
}

.dgst .li_desc {
  font-size: 16px;
  line-height: 1.45;
  color: #101F26;
  opacity: 0.65;
  margin: 0;
}

.dgst .lgnd_aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dgst .aside_card {
  background: #101F26;
  border-radius: 12px;
  padding: 32px;
  color: #FAFBFC;
  box-shadow: 0 9px 60px 1px rgba(16, 31, 38, 0.12);
}

.dgst .aside_card_h {
  font-size: 24px;
  line-height: 1.2;
  color: #FAFBFC;
  margin: 0 0 16px 0;
}

.dgst .aside_card_h .acc {
  color: #01D8CD;
}

.dgst .aside_card_p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 251, 252, 0.72);
  margin: 0 0 16px 0;
}

.dgst .aside_stat_row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 16px;
}

.dgst .aside_stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dgst .aside_stat_val {
  font-size: 32px;
  line-height: 1.2;
  color: #01D8CD;
  font-weight: 900;
}

.dgst .aside_stat_lbl {
  font-size: 16px;
  color: rgba(250, 251, 252, 0.55);
}

.dgst .aside_card2 {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(1, 216, 205, 0.2);
  box-shadow: 0 1px 4px 1px rgba(1, 216, 205, 0.05);
}

.dgst .aside_card2_h {
  font-size: 24px;
  line-height: 1.2;
  color: #101F26;
  margin: 0 0 16px 0;
}

.dgst .aside_card2_h .acc {
  color: #01D8CD;
}

.dgst .aside_tag_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dgst .aside_tag {
  background: rgba(1, 216, 205, 0.1);
  border: 1px solid rgba(1, 216, 205, 0.25);
  border-radius: 7px;
  padding: 4px 16px;
  font-size: 16px;
  color: #101F26;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dgst .aside_tag i {
  color: #01D8CD;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .dgst .splt {
    grid-template-columns: 1fr;
  }

  .dgst .splt_img {
    height: 320px;
  }

  .dgst .splt_txt {
    padding: 48px 32px;
  }

  .dgst .topics_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dgst .lgnd_row {
    grid-template-columns: 1fr;
  }

  .dgst .ovw_top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .dgst .splt_h {
    font-size: 32px;
  }

  .dgst .ovw_inner {
    padding: 0 32px;
  }

  .dgst .ovw_h {
    font-size: 32px;
  }

  .dgst .num_anchor {
    font-size: 44px;
  }

  .dgst .topics_grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dgst .lgnd_inner {
    padding: 0 32px;
  }

  .dgst .lgnd_h {
    font-size: 32px;
  }

  .dgst .lgnd {
    padding: 48px 0;
  }

  .dgst .ovw {
    padding: 48px 0;
  }

  .dgst .aside_stat_row {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .dgst .splt_txt {
    padding: 32px 16px;
    gap: 16px;
  }

  .dgst .splt_h {
    font-size: 24px;
  }

  .dgst .ovw_inner {
    padding: 0 16px;
  }

  .dgst .lgnd_inner {
    padding: 0 16px;
  }

  .dgst .splt_lnk {
    padding: 16px 24px;
    font-size: 16px;
  }

  .dgst .num_anchor {
    font-size: 32px;
  }

  .dgst .aside_stat_row {
    flex-direction: column;
    gap: 8px;
  }
}

.opn *,
.opn *::before,
.opn *::after {
  box-sizing: border-box;
}

.opn {
  background: #FAFBFC;
  overflow-x: clip;
}

.opn .t_blk {
  position: relative;
  padding: 96px 32px 48px;
  background: #101F26;
  overflow: clip;
}

.opn .t_bg_pat {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(1, 216, 205, 0.13) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(1, 216, 205, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 10%, rgba(250, 251, 252, 0.04) 0%, transparent 40%);
  background-size: 100% 100%;
}

.opn .t_grid_pat {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(1, 216, 205, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 216, 205, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.opn .t_inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 48px;
}

.opn .t_left {
  flex: 1 1 0;
  min-width: 0;
}

.opn .t_eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #01D8CD;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.opn .t_eyebrow i {
  font-size: 16px;
}

.opn .t_h1 {
  font-size: 62px;
  line-height: 1.2;
  color: #FAFBFC;
  margin: 0 0 32px;
}

.opn .t_h1 .acc {
  color: #01D8CD;
}

.opn .t_desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 251, 252, 0.72);
  max-width: 520px;
  margin: 0 0 32px;
}

.opn .t_stats_row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}

.opn .t_stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.opn .t_stat_num {
  font-size: 32px;
  line-height: 1.2;
  color: #01D8CD;
}

.opn .t_stat_lbl {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(250, 251, 252, 0.55);
}

.opn .t_right {
  flex: 0 0 420px;
  position: relative;
}

.opn .t_img_wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 420px;
  height: 320px;
  box-shadow: 0 9px 60px 1px rgba(1, 216, 205, 0.12);
}

.opn .t_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(0px) saturate(0.9);
  transition: filter 0.12s ease-out;
}

.opn .t_img_wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 31, 38, 0.45) 0%, transparent 60%);
  pointer-events: none;
}

.opn .t_badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: #01D8CD;
  color: #101F26;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 6px 25px 1px rgba(1, 216, 205, 0.09);
  z-index: 2;
}

.opn .t_badge_num {
  font-size: 24px;
  line-height: 1.2;
}

.opn .t_badge_txt {
  font-size: 16px;
  line-height: 1.45;
}

.opn .t_arr_deco {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.opn .t_arr_deco span {
  display: block;
  width: 32px;
  height: 2px;
  background: rgba(1, 216, 205, 0.3);
  border-radius: 7px;
}

.opn .t_arr_deco span:nth-child(2) {
  width: 24px;
}

.opn .t_arr_deco span:nth-child(3) {
  width: 16px;
}

.opn .t_dash_border {
  position: absolute;
  inset: 16px;
  border: 1.5px dashed rgba(1, 216, 205, 0.22);
  border-radius: 12px;
  pointer-events: none;
}

.opn .t_blk_bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 0;
  border-top: 1px solid rgba(250, 251, 252, 0.08);
}

.opn .t_nav_link {
  flex: 1 1 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  color: rgba(250, 251, 252, 0.5);
  font-size: 16px;
  text-decoration: none !important;
  border-right: 1px solid rgba(250, 251, 252, 0.08);
  transition: color 0.1s ease-out;
}

.opn .t_nav_link:last-child {
  border-right: none;
}

.opn .t_nav_link:hover {
  color: #01D8CD;
}

.opn .t_nav_link i {
  font-size: 16px;
}

.opn .val_sec {
  padding: 96px 32px;
  background: #FAFBFC;
}

.opn .val_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.opn .val_left {}

.opn .val_tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #01D8CD;
  margin-bottom: 16px;
}

.opn .val_h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #101F26;
  margin: 0 0 32px;
}

.opn .val_h2 .acc {
  color: #01D8CD;
}

.opn .val_lead {
  font-size: 16px;
  line-height: 1.65;
  color: #101F26;
  margin: 0 0 32px;
  max-width: 460px;
}

.opn .val_img_wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 340px;
  box-shadow: 0 6px 25px 1px rgba(16, 31, 38, 0.09);
}

.opn .val_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.opn .val_img_counter {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #101F26;
  color: #01D8CD;
  border-radius: 7px;
  padding: 4px 8px;
  font-size: 16px;
  line-height: 1.45;
}

.opn .val_right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.opn .val_item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 31, 38, 0.1);
  position: relative;
}

.opn .val_item:first-child {
  border-top: 1px solid rgba(16, 31, 38, 0.1);
}

.opn .val_item_hd {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.45;
  color: #101F26;
}

.opn .val_item_hd i {
  color: #01D8CD;
  font-size: 16px;
  flex-shrink: 0;
}

.opn .val_item_hd strong {
  font-size: 16px;
}

.opn .val_item_body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 31, 38, 0.65);
  padding-left: 24px;
}

.opn .val_item_num {
  position: absolute;
  top: 16px;
  right: 0;
  font-size: 16px;
  color: rgba(1, 216, 205, 0.4);
}

.opn .val_dashed_box {
  margin-top: 32px;
  border: 1.5px dashed rgba(1, 216, 205, 0.4);
  border-radius: 12px;
  padding: 16px;
  background: rgba(1, 216, 205, 0.04);
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.opn .val_dashed_box i {
  color: #01D8CD;
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.opn .val_dashed_txt {
  font-size: 16px;
  line-height: 1.65;
  color: #101F26;
}

.opn .exp_sec {
  padding: 96px 32px;
  position: relative;
  overflow: clip;
}

.opn .exp_diag_bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.opn .exp_diag_bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #101F26;
  clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%);
}

.opn .exp_diag_bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #FAFBFC;
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 42% 100%);
}

.opn .exp_inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.opn .exp_left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.opn .exp_tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #01D8CD;
}

.opn .exp_h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #FAFBFC;
  margin: 0;
}

.opn .exp_h2 .acc {
  color: #01D8CD;
}

.opn .exp_phases {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.opn .exp_phase {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(250, 251, 252, 0.1);
  align-items: flex-start;
}

.opn .exp_phase:first-child {
  border-top: 1px solid rgba(250, 251, 252, 0.1);
}

.opn .exp_phase_dot {
  width: 32px;
  height: 32px;
  border-radius: 48px;
  background: rgba(1, 216, 205, 0.12);
  border: 1.5px solid rgba(1, 216, 205, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #01D8CD;
  font-size: 16px;
}

.opn .exp_phase_body {
  flex: 1 1 0;
}

.opn .exp_phase_lbl {
  font-size: 16px;
  line-height: 1.45;
  color: #FAFBFC;
  margin-bottom: 4px;
}

.opn .exp_phase_desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 251, 252, 0.55);
}

.opn .exp_right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.opn .exp_img_wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 280px;
  box-shadow: 0 9px 60px 1px rgba(16, 31, 38, 0.12);
}

.opn .exp_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.opn .exp_img_counter {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(1, 216, 205, 0.9);
  color: #101F26;
  border-radius: 7px;
  padding: 4px 8px;
  font-size: 16px;
  line-height: 1.45;
}

.opn .exp_cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.opn .exp_card {
  background: #FAFBFC;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 4px 1px rgba(16, 31, 38, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opn .exp_card i {
  color: #01D8CD;
  font-size: 24px;
}

.opn .exp_card_lbl {
  font-size: 16px;
  line-height: 1.45;
  color: #101F26;
}

.opn .exp_card_val {
  font-size: 24px;
  line-height: 1.2;
  color: #101F26;
}

.opn .inv_sec {
  padding: 96px 32px;
  background: #FAFBFC;
}

.opn .inv_inner {
  max-width: 1200px;
  margin: 0 auto;
}

.opn .inv_top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.opn .inv_tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #01D8CD;
  margin-bottom: 16px;
}

.opn .inv_h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #101F26;
  margin: 0;
}

.opn .inv_h2 .acc {
  color: #01D8CD;
}

.opn .inv_sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 31, 38, 0.65);
  max-width: 380px;
}

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

.opn .inv_main_card {
  background: #101F26;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px 1px rgba(16, 31, 38, 0.09);
  display: flex;
  flex-direction: column;
}

.opn .inv_main_img {
  position: relative;
  width: 100%;
  height: 220px;
}

.opn .inv_main_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.opn .inv_main_img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16, 31, 38, 0.85) 100%);
  pointer-events: none;
}

.opn .inv_main_body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opn .inv_main_h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #FAFBFC;
  margin: 0;
}

.opn .inv_main_h3 .acc {
  color: #01D8CD;
}

.opn .inv_main_desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 251, 252, 0.65);
  margin: 0;
}

.opn .inv_main_meta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.opn .inv_meta_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: rgba(250, 251, 252, 0.5);
}

.opn .inv_meta_item i {
  color: #01D8CD;
  font-size: 16px;
}

.opn .inv_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #01D8CD;
  color: #101F26;
  border: none;
  border-radius: 7px;
  padding: 16px 32px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none !important;
  align-self: flex-start;
  box-shadow: 0 1px 4px 1px rgba(1, 216, 205, 0.05);
  transition: background 0.09s ease-out, box-shadow 0.09s ease-out;
}

.opn .inv_btn:hover {
  background: #00c4ba;
  box-shadow: 0 6px 25px 1px rgba(1, 216, 205, 0.09);
}

.opn .inv_btn:active {
  transform: scale(0.97);
}

.opn .inv_btn i {
  font-size: 16px;
}

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

.opn .inv_side_card {
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 1px 4px 1px rgba(16, 31, 38, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #FAFBFC;
  border: 1px solid rgba(16, 31, 38, 0.08);
}

.opn .inv_side_card.featured {
  background: rgba(1, 216, 205, 0.06);
  border: 1.5px dashed rgba(1, 216, 205, 0.4);
}

.opn .inv_side_card i {
  color: #01D8CD;
  font-size: 24px;
}

.opn .inv_side_card_lbl {
  font-size: 16px;
  line-height: 1.45;
  color: #101F26;
}

.opn .inv_side_card_val {
  font-size: 24px;
  line-height: 1.2;
  color: #101F26;
}

.opn .inv_side_card_desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(16, 31, 38, 0.55);
}

.opn .inv_side_img_card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 180px;
  box-shadow: 0 1px 4px 1px rgba(16, 31, 38, 0.05);
}

.opn .inv_side_img_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.opn .inv_side_img_card .inv_img_label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(16, 31, 38, 0.82);
  color: #01D8CD;
  border-radius: 7px;
  padding: 4px 8px;
  font-size: 16px;
  line-height: 1.45;
}

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

.opn .inv_stat_tile {
  background: #101F26;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.opn .inv_stat_tile_num {
  font-size: 32px;
  line-height: 1.2;
  color: #01D8CD;
}

.opn .inv_stat_tile_lbl {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(250, 251, 252, 0.6);
}

.opn .inv_stat_tile_cnt {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 16px;
  color: rgba(1, 216, 205, 0.35);
}

.opn .char_hover_row {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.opn .char_hover_row .ch {
  display: inline-block;
  transition: color 0.08s linear;
  color: inherit;
}

.opn .char_hover_row:hover .ch:nth-child(1) {
  color: #01D8CD;
  transition-delay: 0.00s;
}

.opn .char_hover_row:hover .ch:nth-child(2) {
  color: #01D8CD;
  transition-delay: 0.02s;
}

.opn .char_hover_row:hover .ch:nth-child(3) {
  color: #01D8CD;
  transition-delay: 0.04s;
}

.opn .char_hover_row:hover .ch:nth-child(4) {
  color: #01D8CD;
  transition-delay: 0.06s;
}

.opn .char_hover_row:hover .ch:nth-child(5) {
  color: #01D8CD;
  transition-delay: 0.08s;
}

.opn .char_hover_row:hover .ch:nth-child(6) {
  color: #01D8CD;
  transition-delay: 0.10s;
}

.opn .char_hover_row:hover .ch:nth-child(7) {
  color: #01D8CD;
  transition-delay: 0.12s;
}

.opn .char_hover_row:hover .ch:nth-child(8) {
  color: #01D8CD;
  transition-delay: 0.14s;
}

.opn .char_hover_row:hover .ch:nth-child(9) {
  color: #01D8CD;
  transition-delay: 0.16s;
}

.opn .char_hover_row:hover .ch:nth-child(10) {
  color: #01D8CD;
  transition-delay: 0.18s;
}

.opn .char_hover_row:hover .ch:nth-child(11) {
  color: #01D8CD;
  transition-delay: 0.20s;
}

.opn .char_hover_row:hover .ch:nth-child(12) {
  color: #01D8CD;
  transition-delay: 0.22s;
}

@keyframes zoomSettle {
  from {
    transform: scale(1.08);
    opacity: 0.7;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.opn .t_blk {
  animation: zoomSettle 0.5s ease-out both;
}

@media (max-width: 1024px) {
  .opn .t_inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .opn .t_right {
    flex: none;
    width: 100%;
  }

  .opn .t_img_wrap {
    width: 100%;
    height: 260px;
  }

  .opn .t_arr_deco {
    display: none;
  }

  .opn .val_inner {
    grid-template-columns: 1fr;
  }

  .opn .val_img_wrap {
    height: 260px;
  }

  .opn .exp_inner {
    grid-template-columns: 1fr;
  }

  .opn .exp_diag_bg::before {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 55%);
  }

  .opn .exp_diag_bg::after {
    clip-path: polygon(0 55%, 100% 45%, 100% 100%, 0 100%);
  }

  .opn .exp_left {
    padding-bottom: 32px;
  }

  .opn .exp_h2 {
    font-size: 32px;
  }

  .opn .inv_grid {
    grid-template-columns: 1fr 1fr;
  }

  .opn .inv_main_card {
    grid-column: 1 / -1;
  }

  .opn .inv_bottom_row {
    grid-template-columns: 1fr 1fr;
  }

  .opn .inv_top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .opn .t_blk {
    padding: 48px 16px 32px;
  }

  .opn .t_h1 {
    font-size: 44px;
  }

  .opn .t_stats_row {
    gap: 16px;
  }

  .opn .t_blk_bottom {
    flex-direction: column;
  }

  .opn .t_nav_link {
    border-right: none;
    border-bottom: 1px solid rgba(250, 251, 252, 0.08);
  }

  .opn .val_sec {
    padding: 48px 16px;
  }

  .opn .val_h2 {
    font-size: 32px;
  }

  .opn .exp_sec {
    padding: 48px 16px;
  }

  .opn .exp_cards {
    grid-template-columns: 1fr;
  }

  .opn .inv_sec {
    padding: 48px 16px;
  }

  .opn .inv_h2 {
    font-size: 32px;
  }

  .opn .inv_grid {
    grid-template-columns: 1fr;
  }

  .opn .inv_bottom_row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .opn .t_h1 {
    font-size: 32px;
  }

  .opn .t_badge {
    display: none;
  }

  .opn .inv_bottom_row {
    grid-template-columns: 1fr;
  }

  .opn .t_nav_link {
    padding: 16px;
  }

  .opn .exp_card_val {
    font-size: 24px;
  }
}

.cont_us {
  background: #FAFBFC;
  overflow-x: clip;
  position: relative;
}

.cont_us .pg_reveal {
  animation: diag_in 0.12s ease-out both;
}

@keyframes diag_in {
  from {
    opacity: 0;
    transform: translate(-18px, -18px);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.cont_us .blk_a {
  position: relative;
  background: #101F26;
  padding: 96px 48px 48px;
  overflow: hidden;
}

.cont_us .blk_a::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(1, 216, 205, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(1, 216, 205, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 10%, rgba(250, 251, 252, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.cont_us .blk_a_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  position: relative;
  z-index: 1;
}

.cont_us .tri_tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 64px solid rgba(1, 216, 205, 0.18);
  border-right: 64px solid transparent;
  pointer-events: none;
}

.cont_us .tri_br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 48px solid rgba(1, 216, 205, 0.10);
  border-left: 48px solid transparent;
  pointer-events: none;
}

.cont_us .lbl_tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1, 216, 205, 0.12);
  border: 1px solid rgba(1, 216, 205, 0.25);
  border-radius: 7px;
  padding: 4px 16px;
  font-size: 16px;
  color: #01D8CD;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.cont_us .lbl_tag i {
  font-size: 16px;
}

.cont_us .pg_hdg {
  font-size: 44px;
  line-height: 1.2;
  color: #FAFBFC;
  margin: 0 0 32px;
  font-weight: 700;
}

.cont_us .pg_hdg span {
  color: #01D8CD;
}

.cont_us .pg_desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 251, 252, 0.72);
  margin: 0 0 48px;
  max-width: 480px;
}

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

.cont_us .divider_asym .d_short {
  width: 24px;
  height: 2px;
  background: #01D8CD;
  border-radius: 2px;
}

.cont_us .divider_asym .d_long {
  flex: 1;
  height: 1px;
  background: rgba(1, 216, 205, 0.22);
  border-radius: 1px;
}

.cont_us .info_list {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cont_us .info_list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(250, 251, 252, 0.08);
}

.cont_us .info_list li:last-child {
  border-bottom: none;
}

.cont_us .info_ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(1, 216, 205, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #01D8CD;
  font-size: 16px;
  box-shadow: 0 1px 4px 1px rgba(1, 216, 205, 0.05);
}

.cont_us .info_txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cont_us .info_lbl {
  font-size: 16px;
  color: rgba(250, 251, 252, 0.45);
  line-height: 1.2;
}

.cont_us .info_val {
  font-size: 16px;
  color: #FAFBFC;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.09s ease-out;
}

.cont_us .info_val:hover {
  color: #01D8CD;
}

.cont_us .pull_quote {
  margin: 0 0 48px;
  padding: 24px 32px;
  background: rgba(1, 216, 205, 0.06);
  border-radius: 12px;
  position: relative;
}

.cont_us .pull_quote::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 0;
  width: 3px;
  height: calc(100% - 32px);
  background: #01D8CD;
  border-radius: 0 2px 2px 0;
}

.cont_us .pull_q_txt {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 251, 252, 0.80);
  margin: 0;
  font-style: italic;
}

.cont_us .form_col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.cont_us .form_hdg {
  font-size: 24px;
  line-height: 1.2;
  color: #FAFBFC;
  margin: 0 0 8px;
  font-weight: 600;
}

.cont_us .form_hdg span {
  color: #01D8CD;
}

.cont_us .form_sub {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(250, 251, 252, 0.55);
  margin: 0 0 32px;
}

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

.cont_us .field_grp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cont_us .field_lbl {
  font-size: 16px;
  color: rgba(250, 251, 252, 0.65);
  line-height: 1.2;
}

.cont_us .field_req {
  color: #01D8CD;
  margin-left: 2px;
}

.cont_us .f_input {
  background: rgba(250, 251, 252, 0.06);
  border: 1px solid rgba(250, 251, 252, 0.14);
  border-radius: 7px;
  padding: 16px;
  font-size: 16px;
  color: #FAFBFC;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  box-shadow: inset 0 2px 4px 1px rgba(1, 31, 38, 0.18);
  transition: border-color 0.10s ease-out, box-shadow 0.10s ease-out;
  appearance: none;
  -webkit-appearance: none;
}

.cont_us .f_input::placeholder {
  color: rgba(250, 251, 252, 0.28);
}

.cont_us .f_input:focus {
  border-color: #01D8CD;
  box-shadow: inset 0 2px 4px 1px rgba(1, 31, 38, 0.18), 0 0 0 2px rgba(1, 216, 205, 0.18);
}

.cont_us .f_select {
  background: rgba(250, 251, 252, 0.06);
  border: 1px solid rgba(250, 251, 252, 0.14);
  border-radius: 7px;
  padding: 16px;
  font-size: 16px;
  color: #FAFBFC;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  box-shadow: inset 0 2px 4px 1px rgba(1, 31, 38, 0.18);
  transition: border-color 0.10s ease-out, box-shadow 0.10s ease-out;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(250,251,252,0.45)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
  cursor: pointer;
}

.cont_us .f_select option {
  background: #101F26;
  color: #FAFBFC;
}

.cont_us .f_select:focus {
  border-color: #01D8CD;
  box-shadow: inset 0 2px 4px 1px rgba(1, 31, 38, 0.18), 0 0 0 2px rgba(1, 216, 205, 0.18);
}

.cont_us .row_2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cont_us .privacy_row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}

.cont_us .priv_chk {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(250, 251, 252, 0.30);
  border-radius: 7px;
  background: rgba(250, 251, 252, 0.06);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  box-shadow: inset 0 1px 3px rgba(1, 31, 38, 0.20);
  accent-color: #01D8CD;
}

.cont_us .priv_txt {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(250, 251, 252, 0.55);
}

.cont_us .priv_txt a {
  color: #01D8CD;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: opacity 0.08s linear;
}

.cont_us .priv_txt a:hover {
  opacity: 0.80;
}

.cont_us .btn_submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #01D8CD;
  color: #101F26;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 6px 25px 1px rgba(1, 216, 205, 0.09);
  transition: background 0.09s ease-out, box-shadow 0.09s ease-out, transform 0.08s ease-out;
  margin-top: 8px;
}

.cont_us .btn_submit:hover {
  background: #00c4ba;
  box-shadow: 0 9px 60px 1px rgba(1, 216, 205, 0.12);
}

.cont_us .btn_submit:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px 1px rgba(1, 216, 205, 0.05);
}

.cont_us .btn_submit:focus-visible {
  outline: 2px solid #01D8CD;
  outline-offset: 3px;
}

.cont_us .blk_b {
  position: relative;
  padding: 96px 48px;
  background: #FAFBFC;
  overflow: hidden;
}

.cont_us .blk_b::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(1, 216, 205, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 80%, rgba(16, 31, 38, 0.04) 0%, transparent 45%);
  pointer-events: none;
}

.cont_us .blob_bg {
  position: absolute;
  top: -48px;
  right: -96px;
  width: 480px;
  height: 380px;
  background: rgba(1, 216, 205, 0.06);
  border-radius: 48% 52% 60% 40% / 45% 55% 45% 55%;
  pointer-events: none;
  z-index: 0;
}

.cont_us .blob_bg2 {
  position: absolute;
  bottom: -32px;
  left: -64px;
  width: 320px;
  height: 260px;
  background: rgba(16, 31, 38, 0.04);
  border-radius: 55% 45% 38% 62% / 52% 48% 52% 48%;
  pointer-events: none;
  z-index: 0;
}

.cont_us .tri_tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 56px solid rgba(1, 216, 205, 0.12);
  border-left: 56px solid transparent;
  pointer-events: none;
  z-index: 1;
}

.cont_us .tri_bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 40px solid rgba(16, 31, 38, 0.06);
  border-right: 40px solid transparent;
  pointer-events: none;
  z-index: 1;
}

.cont_us .blk_b_inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cont_us .b_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  margin-bottom: 96px;
}

.cont_us .img_col {
  position: relative;
}

.cont_us .img_wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 9px 60px 1px rgba(16, 31, 38, 0.12);
  width: 100%;
}

.cont_us .img_wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: blur(0px);
  transition: filter 0.10s ease-out, transform 0.12s ease-out;
}

.cont_us .img_wrap:hover img {
  filter: blur(1.5px);
  transform: scale(1.02);
}

.cont_us .img_caption {
  position: absolute;
  inset: 0;
  background: rgba(16, 31, 38, 0.72);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.10s ease-out;
  border-radius: 12px;
}

.cont_us .img_wrap:hover .img_caption {
  opacity: 1;
}

.cont_us .cap_txt {
  font-size: 16px;
  line-height: 1.45;
  color: #FAFBFC;
  margin: 0;
}

.cont_us .cap_txt strong {
  color: #01D8CD;
}

.cont_us .img_dots {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 16px;
  align-items: center;
}

.cont_us .dot {
  border-radius: 48px;
  background: #01D8CD;
  flex-shrink: 0;
}

.cont_us .dot.lg {
  width: 24px;
  height: 8px;
  opacity: 0.9;
}

.cont_us .dot.md {
  width: 12px;
  height: 8px;
  opacity: 0.55;
}

.cont_us .dot.sm {
  width: 8px;
  height: 8px;
  opacity: 0.30;
}

.cont_us .dot.xs {
  width: 6px;
  height: 6px;
  opacity: 0.15;
}

.cont_us .txt_col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cont_us .sec_lbl {
  font-size: 16px;
  color: #01D8CD;
  line-height: 1.2;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cont_us .sec_lbl::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: rgba(1, 216, 205, 0.25);
  max-width: 64px;
}

.cont_us .sec_hdg {
  font-size: 32px;
  line-height: 1.2;
  color: #101F26;
  margin: 0 0 16px;
  font-weight: 700;
}

.cont_us .sec_hdg span {
  color: #01D8CD;
}

.cont_us .sec_body {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4f5a;
  margin: 0 0 32px;
}

.cont_us .num_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cont_us .num_list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 31, 38, 0.08);
}

.cont_us .num_list li:last-child {
  border-bottom: none;
}

.cont_us .num_anchor {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(1, 216, 205, 0.35);
  flex-shrink: 0;
  width: 48px;
  text-align: right;
}

.cont_us .num_body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}

.cont_us .num_lbl {
  font-size: 16px;
  font-weight: 600;
  color: #101F26;
  line-height: 1.2;
}

.cont_us .num_desc {
  font-size: 16px;
  line-height: 1.45;
  color: #4f6470;
}

.cont_us .b_bottom {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
}

.cont_us .stat_card {
  flex: 1;
  background: #101F26;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 6px 25px 1px rgba(16, 31, 38, 0.09);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.10s ease-out, transform 0.10s ease-out;
}

.cont_us .stat_card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(1, 216, 205, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

.cont_us .stat_card:hover {
  box-shadow: 0 9px 60px 1px rgba(16, 31, 38, 0.12);
  transform: translateY(-2px);
}

.cont_us .stat_ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(1, 216, 205, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #01D8CD;
  font-size: 24px;
  margin-bottom: 8px;
}

.cont_us .stat_val {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #FAFBFC;
}

.cont_us .stat_val span {
  color: #01D8CD;
}

.cont_us .stat_lbl {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(250, 251, 252, 0.55);
}

.cont_us .quote_wide {
  flex: 2;
  background: rgba(1, 216, 205, 0.06);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: 0 1px 4px 1px rgba(1, 216, 205, 0.05);
}

.cont_us .quote_wide::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 3px;
  height: calc(100% - 48px);
  background: #01D8CD;
  border-radius: 0 2px 2px 0;
}

.cont_us .quote_text {
  font-size: 24px;
  line-height: 1.45;
  color: #101F26;
  margin: 0 0 16px;
  font-weight: 600;
}

.cont_us .quote_attr {
  font-size: 16px;
  line-height: 1.2;
  color: #01D8CD;
}

@media (max-width: 1024px) {
  .cont_us .blk_a_inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cont_us .b_top {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .cont_us .b_bottom {
    flex-direction: column;
  }

  .cont_us .pg_hdg {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .cont_us .blk_a {
    padding: 48px 32px 32px;
  }

  .cont_us .blk_b {
    padding: 48px 32px;
  }

  .cont_us .row_2col {
    grid-template-columns: 1fr;
  }

  .cont_us .pg_hdg {
    font-size: 32px;
  }

  .cont_us .sec_hdg {
    font-size: 24px;
  }

  .cont_us .stat_val {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .cont_us .blk_a {
    padding: 48px 16px 32px;
  }

  .cont_us .blk_b {
    padding: 48px 16px;
  }

  .cont_us .pg_hdg {
    font-size: 24px;
  }

  .cont_us .pull_quote {
    padding: 16px 24px;
  }
}

.pg_success {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FAFBFC;
  padding: 96px 16px;
}

.pg_success .success_wrap {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 25px 1px rgba(1, 216, 205, 0.09);
  padding: 48px;
  text-align: center;
}

.pg_success .icon_ring {
  width: 72px;
  height: 72px;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(1, 216, 205, 0.12) 0%, rgba(1, 216, 205, 0.22) 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 2px solid rgba(1, 216, 205, 0.35);
}

.pg_success .icon_ring svg {
  display: block;
}

.pg_success .success_title {
  font-size: 32px;
  line-height: 1.2;
  color: #101F26;
  margin: 0 0 16px;
}

.pg_success .success_title span {
  color: #01D8CD;
}

.pg_success .success_msg {
  font-size: 16px;
  line-height: 1.65;
  color: #3a5260;
  margin: 0 0 32px;
}

.pg_success .divider_line {
  width: 48px;
  height: 2px;
  background: #01D8CD;
  border-radius: 7px;
  margin: 0 auto 32px;
}

.pg_success .detail_list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.pg_success .detail_list li {
  font-size: 16px;
  line-height: 1.45;
  color: #101F26;
  padding: 8px 0;
  border-bottom: 1px solid rgba(16, 31, 38, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.pg_success .detail_list li:last-child {
  border-bottom: none;
}

.pg_success .detail_list li .li_icon {
  color: #01D8CD;
  font-size: 16px;
  flex-shrink: 0;
}

.pg_success .back_btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #101F26;
  color: #FAFBFC;
  font-size: 16px;
  line-height: 1.2;
  padding: 16px 32px;
  border-radius: 7px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.1s ease-out, transform 0.08s ease-out;
}

.pg_success .back_btn:hover {
  background: #01D8CD;
  color: #101F26;
}

.pg_success .back_btn:active {
  transform: scale(0.97);
}

.pg_success .back_btn:focus-visible {
  outline: 2px solid #01D8CD;
  outline-offset: 3px;
}

.pg_success .contact_note {
  font-size: 16px;
  line-height: 1.45;
  color: #3a5260;
  margin: 24px 0 0;
}

.pg_success .contact_note a {
  color: #01D8CD;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.1s linear;
}

.pg_success .contact_note a:hover {
  color: #101F26;
}

@media (max-width: 480px) {
  .pg_success .success_wrap {
    padding: 32px 16px;
  }

  .pg_success .success_title {
    font-size: 24px;
  }
}