html {
  font-size: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
}

.pg_head {
  position: relative;
  z-index: 100;
  background: linear-gradient(135deg, #383853 0%, #4793A3 100%);
}

.pg_head_bar {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
}

.brand_mount {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  flex-shrink: 0;
}

.brand_img_shell {
  width: 120px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 2px 1px rgba(56, 56, 83, 0.08), 0 4px 25px 1px rgba(56, 56, 83, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  flex-shrink: 0;
}

.brand_img_shell img {
  width: 100%;
  height: 55px;
  object-fit: contain;
  display: block;
}

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

.brand_name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
}

.brand_tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #9F9EB5;
  margin: 0;
}

.head_right_shell {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 0;
  gap: 12px;
}

.contact_strip {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact_link_phone,
.contact_link_email {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact_link_phone:focus,
.contact_link_email:focus {
  outline: none;
  border-bottom: 4px solid #ffffff;
}

.contact_link_phone:hover,
.contact_link_email:hover {
  color: #383853;
  background-color: #ffffff;
}

.contact_label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #9F9EB5;
  margin-right: 4px;
}

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

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

.pri_nav_item {
  display: flex;
}

.pri_nav_link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background-color 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pri_nav_link:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.pri_nav_link:focus {
  outline: none;
  border-bottom: 4px solid #ffffff;
}

.pri_nav_link.active {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

.head_accent_bar {
  height: 4px;
  background: linear-gradient(90deg, #4793A3 0%, #9F9EB5 50%, #383853 100%);
}

.pg_foot {
  background-color: #383853;
  position: relative;
}

.pg_foot_pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
}

.pg_foot_hold {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  position: relative;
  z-index: 1;
}

.pg_foot_upper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.foot_brand_zone {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 300px;
}

.foot_img_shell {
  width: 90px;
  height: 44px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 3px 2px 1px rgba(71, 147, 163, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
}

.foot_img_shell img {
  width: 100%;
  height: 36px;
  object-fit: contain;
  display: block;
}

.foot_brand_desc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #9F9EB5;
  margin: 0;
  max-width: 380px;
}

.foot_contact_email_link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #4793A3;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.foot_contact_email_link:hover {
  color: #ffffff;
}

.foot_contact_email_link:focus {
  outline: none;
  border-bottom: 4px solid #4793A3;
}

.foot_nav_zone {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.foot_nav_label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  letter-spacing: -0.02em;
}

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

.foot_nav_link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #9F9EB5;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.foot_nav_link:hover {
  color: #ffffff;
}

.foot_nav_link:focus {
  outline: none;
  border-bottom: 4px solid #4793A3;
}

.pg_foot_lower {
  border-top: 1px solid rgba(159, 158, 181, 0.2);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.foot_copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #9F9EB5;
  margin: 0;
}

.foot_copy_accent {
  color: #4793A3;
}

.ck_popup {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 300px;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 40px 1px rgba(56, 56, 83, 0.13);
  z-index: 4000;
  padding: 20px;
  font-family: 'IBM Plex Mono', monospace;
}

.ck_popup_hed {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #383853;
  margin: 0 0 8px 0;
}

.ck_popup_desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #383853;
  margin: 0 0 20px 0;
}

.ck_policy_link {
  color: #4793A3;
  text-decoration: underline;
  transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ck_policy_link:hover {
  color: #383853;
}

.ck_policy_link:focus {
  outline: none;
  border-bottom: 4px solid #4793A3;
}

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

.ck_accept_btn,
.ck_decline_btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid #4793A3;
  background-color: transparent;
  color: #4793A3;
  transition: background-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 44px;
}

.ck_accept_btn:hover {
  background-color: #4793A3;
  color: #ffffff;
}

.ck_decline_btn:hover {
  background-color: #383853;
  border-color: #383853;
  color: #ffffff;
}

.ck_accept_btn:focus,
.ck_decline_btn:focus {
  outline: none;
  border-bottom: 4px solid #383853;
}

@media (max-width: 992px) {
  .pg_head_bar {
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
  }

  .head_right_shell {
    width: 100%;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0 20px;
  }

  .pg_foot_upper {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 576px) {
  .pg_head_bar {
    padding: 0 12px;
    gap: 12px;
  }

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

  .pg_foot_hold {
    padding: 32px 20px 20px;
  }

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

  .ck_popup {
    right: 12px;
    left: 12px;
    width: auto;
    top: 12px;
  }

  .brand_tagline {
    display: none;
  }
}

.yog-policy-details {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 32px;
  color: #383853;
}

.yog-policy-details h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #383853;
  margin-bottom: 32px;
  margin-top: 0;
}

.yog-policy-details h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #383853;
  margin-top: 64px;
  margin-bottom: 20px;
}

.yog-policy-details h3 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #383853;
  margin-top: 32px;
  margin-bottom: 12px;
}

.yog-policy-details h4 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: #4793A3;
  margin-top: 32px;
  margin-bottom: 12px;
}

.yog-policy-details h5 {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9F9EB5;
  margin-top: 20px;
  margin-bottom: 8px;
}

.yog-policy-details h6 {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #9F9EB5;
  margin-top: 20px;
  margin-bottom: 8px;
}

.yog-policy-details p {
  font-size: 16px;
  line-height: 1.9;
  color: #383853;
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 72ch;
}

.yog-policy-details ul,
.yog-policy-details ol {
  font-size: 16px;
  line-height: 1.9;
  color: #383853;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 32px;
  max-width: 72ch;
}

.yog-policy-details ul {
  list-style: none;
  padding-left: 20px;
}

.yog-policy-details ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.yog-policy-details ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #4793A3;
}

.yog-policy-details ol {
  list-style: decimal;
}

.yog-policy-details ol li {
  padding-left: 8px;
  margin-bottom: 8px;
}

.yog-policy-details ol li::marker {
  color: #4793A3;
  font-size: 16px;
}

.yog-policy-details ul ul,
.yog-policy-details ol ol,
.yog-policy-details ul ol,
.yog-policy-details ol ul {
  margin-top: 8px;
  margin-bottom: 4px;
}

.yog-policy-details strong,
.yog-policy-details b {
  font-weight: 700;
  color: #383853;
}

.yog-policy-details em,
.yog-policy-details i {
  font-style: italic;
  color: #4793A3;
}

.yog-policy-details hr {
  border: none;
  border-top: 1px solid #9F9EB5;
  opacity: 0.35;
  margin-top: 64px;
  margin-bottom: 64px;
}

.yog-policy-details table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 25px 1px rgba(56, 56, 83, 0.10);
}

.yog-policy-details thead {
  background-color: #383853;
}

.yog-policy-details thead th {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 20px;
  text-align: left;
}

.yog-policy-details tbody tr {
  border-bottom: 1px solid rgba(159, 158, 181, 0.25);
  transition: background-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.yog-policy-details tbody tr:last-child {
  border-bottom: none;
}

.yog-policy-details tbody tr:nth-child(even) {
  background-color: rgba(71, 147, 163, 0.05);
}

.yog-policy-details tbody tr:hover {
  background-color: rgba(71, 147, 163, 0.10);
}

.yog-policy-details td {
  padding: 12px 20px;
  vertical-align: top;
}

.yog-policy-details th {
  padding: 12px 20px;
  vertical-align: middle;
}

@media (max-width: 992px) {
  .yog-policy-details {
    padding: 32px 20px;
  }

  .yog-policy-details h1 {
    font-size: 40px;
  }

  .yog-policy-details h2 {
    font-size: 40px;
    margin-top: 32px;
  }

  .yog-policy-details table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 576px) {
  .yog-policy-details {
    padding: 32px 20px;
  }

  .yog-policy-details h1 {
    font-size: 40px;
  }

  .yog-policy-details h2 {
    font-size: 22px;
    margin-top: 32px;
  }

  .yog-policy-details h3 {
    font-size: 22px;
  }

  .yog-policy-details p,
  .yog-policy-details ul,
  .yog-policy-details ol {
    max-width: 100%;
  }
}

.mstr_det {
  background: #ffffff;
  overflow-x: hidden;
}

.mstr_det .breadcrumb_trail {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 32px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mstr_det .breadcrumb_trail a {
  color: #4793A3;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
  transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstr_det .breadcrumb_trail a:hover {
  color: #383853;
}

.mstr_det .breadcrumb_trail .bc_sep {
  color: #9F9EB5;
  font-size: 16px;
  line-height: 1.6;
}

.mstr_det .breadcrumb_trail .bc_current {
  color: #383853;
  font-size: 16px;
  line-height: 1.6;
}

.mstr_det .title_block {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 32px 64px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
  position: relative;
}

.mstr_det .title_block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  bottom: 0;
  background: linear-gradient(160deg, #f5f5f8 50%, #eaf3f5 50%);
  border-radius: 14px;
  z-index: 0;
}

.mstr_det .title_block .noise_layer {
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  bottom: 0;
  border-radius: 14px;
  z-index: 1;
  pointer-events: none;
}

.mstr_det .title_block .title_left {
  position: relative;
  z-index: 2;
  padding: 32px 0 32px 32px;
}

.mstr_det .title_block .title_right {
  position: relative;
  z-index: 2;
  padding: 32px 32px 32px 0;
}

.mstr_det .title_block .overline_label {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  color: #4793A3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.mstr_det .title_block .overline_label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #4793A3;
  vertical-align: middle;
  margin-right: 8px;
}

.mstr_det .title_block .page_heading {
  font-size: 56px;
  line-height: 1.1;
  color: #383853;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 20px;
  animation: heading_lift 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes heading_lift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.mstr_det .title_block .meta_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.mstr_det .title_block .meta_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #9F9EB5;
}

.mstr_det .title_block .meta_item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mstr_det .title_block .lead_text {
  font-size: 22px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
  max-width: 560px;
}

.mstr_det .title_block .img_anchor {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px 1px rgba(56, 56, 83, 0.13);
}

.mstr_det .title_block .img_anchor img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  opacity: 0.7;
  transition: opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstr_det .title_block .img_anchor:hover img {
  opacity: 1;
}

.mstr_det .title_block .img_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(71, 147, 163, 0.45) 50%, rgba(56, 56, 83, 0.45) 50%);
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstr_det .title_block .img_anchor:hover .img_overlay {
  opacity: 0;
}

.mstr_det .title_block .stat_split_card {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 25px 1px rgba(71, 147, 163, 0.10);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mstr_det .title_block .stat_zone {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mstr_det .title_block .stat_zone.zone_a {
  background: #383853;
}

.mstr_det .title_block .stat_zone.zone_b {
  background: #4793A3;
}

.mstr_det .title_block .stat_num {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
}

.mstr_det .title_block .stat_label {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.mstr_det .desc_panel {
  background: #ffffff;
  padding: 64px 0;
  margin-left: 64px;
}

.mstr_det .desc_panel .desc_inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.mstr_det .desc_panel .desc_frame {
  position: relative;
  padding: 32px;
  border-radius: 14px;
  border-top: 1px solid #9F9EB5;
  border-bottom: 1px solid #9F9EB5;
}

.mstr_det .desc_panel .desc_frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(159, 158, 181, 0.35);
  pointer-events: none;
}

.mstr_det .desc_panel .desc_frame::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(159, 158, 181, 0.35);
  pointer-events: none;
}

.mstr_det .desc_panel .sec_overline {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  color: #4793A3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.mstr_det .desc_panel .sec_overline::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #4793A3;
  vertical-align: middle;
  margin-right: 8px;
}

.mstr_det .desc_panel .desc_heading {
  font-size: 40px;
  line-height: 1.3;
  color: #383853;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}

.mstr_det .desc_panel .desc_body p {
  font-size: 16px;
  line-height: 1.9;
  color: #383853;
  margin: 0;
  text-indent: 2em;
}

.mstr_det .desc_panel .desc_body p+p {
  margin-top: 0;
}

.mstr_det .desc_panel .desc_body h2 {
  font-size: 22px;
  line-height: 1.3;
  color: #383853;
  font-weight: 700;
  margin: 20px 0 8px;
  text-indent: 0;
}

.mstr_det .desc_panel .desc_body em {
  color: #4793A3;
  font-style: normal;
  font-weight: 600;
}

.mstr_det .desc_panel .desc_body ul,
.mstr_det .desc_panel .desc_body ol {
  padding-left: 20px;
  margin: 8px 0;
}

.mstr_det .desc_panel .desc_body li {
  font-size: 16px;
  line-height: 1.9;
  color: #383853;
  margin-bottom: 4px;
}

.mstr_det .desc_panel .desc_body figure {
  margin: 20px 0;
}

.mstr_det .desc_panel .desc_body figcaption {
  font-size: 16px;
  line-height: 1.6;
  color: #9F9EB5;
  text-align: center;
  margin-top: 8px;
}

.mstr_det .price_aside {
  position: sticky;
  top: 32px;
}

.mstr_det .price_card {
  border-radius: 14px;
  box-shadow: 0 4px 25px 1px rgba(56, 56, 83, 0.10);
  overflow: hidden;
}

.mstr_det .price_card .price_top {
  background: #383853;
  padding: 32px;
}

.mstr_det .price_card .price_amount {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.mstr_det .price_card .price_desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.mstr_det .price_card .price_body {
  background: #f5f5f8;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mstr_det .price_card .price_detail_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.mstr_det .price_card .detail_icon_ring {
  width: 40px;
  height: 40px;
  border-radius: 22px;
  background: #4793A3;
  border: 2px solid #383853;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mstr_det .price_card .detail_icon_ring svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.mstr_det .price_card .detail_txt {
  flex: 1;
}

.mstr_det .price_card .detail_label {
  font-size: 16px;
  line-height: 1.6;
  color: #9F9EB5;
  display: block;
}

.mstr_det .price_card .detail_val {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  font-weight: 600;
  display: block;
}

.mstr_det .price_card .price_note {
  font-size: 16px;
  line-height: 1.6;
  color: #9F9EB5;
  margin: 0;
}

.mstr_det .price_card .enroll_btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #4793A3;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 20px 32px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  box-shadow: 0 3px 2px 1px rgba(71, 147, 163, 0.08);
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.mstr_det .price_card .enroll_btn:hover {
  background: #383853;
  box-shadow: 0 10px 40px 1px rgba(56, 56, 83, 0.13);
}

.mstr_det .price_card .enroll_btn:hover .btn_arrow {
  transform: translateX(6px);
}

.mstr_det .price_card .btn_arrow {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstr_det .price_card .contact_link {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #4793A3;
  text-decoration: none;
  border: 1px solid #4793A3;
  border-radius: 8px;
  padding: 12px 20px;
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstr_det .price_card .contact_link:hover {
  background: #4793A3;
  color: #ffffff;
}

.mstr_det .prog_panel {
  background: #383853;
  padding: 64px 0;
  margin-right: 64px;
  position: relative;
  overflow: hidden;
}

.mstr_det .prog_panel .prog_bg_pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.mstr_det .prog_panel .prog_inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.mstr_det .prog_panel .prog_header {
  margin-bottom: 32px;
}

.mstr_det .prog_panel .prog_overline {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  color: #4793A3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.mstr_det .prog_panel .prog_overline::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #4793A3;
  vertical-align: middle;
  margin-right: 8px;
}

.mstr_det .prog_panel .prog_heading {
  font-size: 40px;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

.mstr_det .prog_panel .prog_body p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-indent: 2em;
}

.mstr_det .prog_panel .prog_body p+p {
  margin-top: 0;
}

.mstr_det .prog_panel .prog_body h2 {
  font-size: 22px;
  line-height: 1.3;
  color: #ffffff;
  font-weight: 700;
  margin: 20px 0 8px;
}

.mstr_det .prog_panel .prog_body mark {
  background: rgba(71, 147, 163, 0.35);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
}

.mstr_det .prog_panel .prog_body ul,
.mstr_det .prog_panel .prog_body ol {
  padding-left: 20px;
  margin: 8px 0;
}

.mstr_det .prog_panel .prog_body li {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.mstr_det .prog_panel .prog_body dl {
  margin: 12px 0;
}

.mstr_det .prog_panel .prog_body dt {
  font-size: 16px;
  line-height: 1.6;
  color: #4793A3;
  font-weight: 700;
  margin-top: 12px;
}

.mstr_det .prog_panel .prog_body dd {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 20px;
}

.mstr_det .prog_panel .prog_body blockquote {
  border-top: 2px solid #4793A3;
  border-bottom: 2px solid #4793A3;
  margin: 20px 0;
  padding: 20px 32px;
  font-size: 22px;
  line-height: 1.6;
  color: #ffffff;
  font-style: italic;
}

.mstr_det .prog_panel .prog_body details {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  margin: 8px 0;
  overflow: hidden;
}

.mstr_det .prog_panel .prog_body summary {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 600;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstr_det .prog_panel .prog_body summary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mstr_det .prog_panel .prog_body details[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mstr_det .prog_panel .prog_body details>*:not(summary) {
  padding: 12px 20px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
}

.mstr_det .skills_panel {
  background: #ffffff;
  padding: 64px 0;
  margin-left: 32px;
}

.mstr_det .skills_panel .skills_inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.mstr_det .skills_panel .skills_header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.mstr_det .skills_panel .skills_overline {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  color: #4793A3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.mstr_det .skills_panel .skills_overline::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #4793A3;
  vertical-align: middle;
  margin-right: 8px;
}

.mstr_det .skills_panel .skills_heading {
  font-size: 40px;
  line-height: 1.3;
  color: #383853;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}

.mstr_det .skills_panel .skills_lead {
  font-size: 16px;
  line-height: 1.9;
  color: #383853;
  margin: 0;
}

.mstr_det .skills_panel .icon_grid_complex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.mstr_det .skills_panel .icon_grid_complex::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, #4793A3 50%, #383853 50%);
  pointer-events: none;
  z-index: 0;
}

.mstr_det .skills_panel .icon_node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 32px 20px;
  border-radius: 14px;
  background: #f5f5f8;
  box-shadow: 0 3px 2px 1px rgba(56, 56, 83, 0.08);
  transition: box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstr_det .skills_panel .icon_node:hover {
  box-shadow: 0 10px 40px 1px rgba(56, 56, 83, 0.13);
  transform: translateY(-4px);
}

.mstr_det .skills_panel .icon_ring_wrap {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mstr_det .skills_panel .icon_circle {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: #4793A3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.mstr_det .skills_panel .icon_circle svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.mstr_det .skills_panel .icon_outline_ring {
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 2px solid #383853;
  z-index: 0;
  pointer-events: none;
}

.mstr_det .skills_panel .icon_node_title {
  font-size: 22px;
  line-height: 1.3;
  color: #383853;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.mstr_det .skills_panel .icon_node_text {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  text-align: center;
  margin: 0;
}

.mstr_det .skills_panel .icon_node_text span {
  display: inline;
}

.mstr_det .skills_panel .icon_node_text span:hover {
  background: rgba(71, 147, 163, 0.15);
  border-radius: 4px;
  padding: 0 4px;
  margin: 0 -4px;
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstr_det .divider_double_curve {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.mstr_det .divider_double_curve svg {
  display: block;
  width: 100%;
}

@media (max-width: 1200px) {
  .mstr_det .title_block {
    grid-template-columns: 1fr 320px;
    gap: 32px;
  }

  .mstr_det .desc_panel .desc_inner {
    grid-template-columns: 1fr 280px;
    gap: 32px;
  }

  .mstr_det .skills_panel .icon_grid_complex {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

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

  .mstr_det .title_block .title_right {
    padding: 0 32px 32px;
  }

  .mstr_det .title_block .page_heading {
    font-size: 40px;
  }

  .mstr_det .desc_panel .desc_inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mstr_det .price_aside {
    position: static;
  }

  .mstr_det .skills_panel .skills_header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mstr_det .skills_panel .icon_grid_complex {
    grid-template-columns: 1fr 1fr;
  }

  .mstr_det .skills_panel .icon_grid_complex::before {
    display: none;
  }

  .mstr_det .desc_panel {
    margin-left: 32px;
  }

  .mstr_det .prog_panel {
    margin-right: 32px;
  }

  .mstr_det .skills_panel {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .mstr_det .title_block {
    padding: 20px 20px 32px;
  }

  .mstr_det .title_block::before {
    left: 20px;
    right: 20px;
  }

  .mstr_det .title_block .noise_layer {
    left: 20px;
    right: 20px;
  }

  .mstr_det .title_block .title_left {
    padding: 20px 0 20px 20px;
  }

  .mstr_det .title_block .title_right {
    padding: 0 20px 20px;
  }

  .mstr_det .title_block .page_heading {
    font-size: 40px;
  }

  .mstr_det .breadcrumb_trail {
    padding: 20px 20px 0;
  }

  .mstr_det .desc_panel {
    margin-left: 0;
    padding: 32px 0;
  }

  .mstr_det .desc_panel .desc_inner {
    padding: 0 20px;
  }

  .mstr_det .prog_panel {
    margin-right: 0;
    padding: 32px 0;
  }

  .mstr_det .prog_panel .prog_inner {
    padding: 0 20px;
  }

  .mstr_det .skills_panel {
    margin-left: 0;
    padding: 32px 0;
  }

  .mstr_det .skills_panel .skills_inner {
    padding: 0 20px;
  }

  .mstr_det .skills_panel .icon_grid_complex {
    grid-template-columns: 1fr;
  }

  .mstr_det .skills_panel .skills_header {
    margin-bottom: 32px;
  }

  .mstr_det .title_block .stat_split_card {
    grid-template-columns: 1fr 1fr;
  }
}

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

.mstrcls .pg_band {
  height: 4px;
  background: #4793A3;
  width: 100%;
}

.mstrcls .ttl_block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  position: relative;
}

.mstrcls .ttl_img_zone {
  position: relative;
  overflow: hidden;
}

.mstrcls .ttl_img_zone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: slow_zoom 12s ease-in-out infinite alternate;
}

@keyframes slow_zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.mstrcls .ttl_img_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #383853 50%, transparent 50%);
  pointer-events: none;
}

.mstrcls .ttl_shape_a {
  position: absolute;
  top: 32px;
  right: 64px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(71, 147, 163, 0.22);
  border-radius: 22px;
  transform: rotate(18deg);
  pointer-events: none;
}

.mstrcls .ttl_shape_b {
  position: absolute;
  bottom: 64px;
  right: 20px;
  width: 90px;
  height: 90px;
  border: 2px solid rgba(159, 158, 181, 0.18);
  border-radius: 14px;
  transform: rotate(-10deg);
  pointer-events: none;
}

.mstrcls .ttl_txt_zone {
  background: #383853;
  padding: 64px 64px 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.mstrcls .ttl_txt_zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234793A3' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.mstrcls .ttl_overline {
  display: block;
  font-size: 16px;
  color: #4793A3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.mstrcls .ttl_heading {
  font-size: 56px;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.mstrcls .ttl_desc {
  font-size: 16px;
  line-height: 1.6;
  color: #9F9EB5;
  margin: 0 0 32px 0;
  max-width: 420px;
}

.mstrcls .ttl_actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.mstrcls .btn_prim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4793A3;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none !important;
  border: 2px solid #4793A3;
  transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.mstrcls .btn_prim:hover {
  background: #383853;
  border-color: #4793A3;
  transform: scale(1.04);
}

.mstrcls .btn_prim svg {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstrcls .btn_prim:hover svg {
  transform: translateX(5px);
}

.mstrcls .btn_sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #9F9EB5;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  border: 2px solid rgba(159, 158, 181, 0.3);
  transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstrcls .btn_sec:hover {
  color: #ffffff;
  border-color: #9F9EB5;
}

.mstrcls .btn_sec svg {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstrcls .btn_sec:hover svg {
  transform: translateX(5px);
}

.mstrcls .div_stripe {
  height: 6px;
  background: linear-gradient(90deg, #4793A3 50%, #383853 50%);
}

.mstrcls .metrics_row {
  background: #f4f5f8;
  padding: 32px 64px;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mstrcls .metrics_row::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(71, 147, 163, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.mstrcls .metric_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: appear_scale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.mstrcls .metric_item:nth-child(2) {
  animation-delay: 0.07s;
}

.mstrcls .metric_item:nth-child(3) {
  animation-delay: 0.14s;
}

.mstrcls .metric_item:nth-child(4) {
  animation-delay: 0.21s;
}

@keyframes appear_scale {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

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

.mstrcls .metric_val {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #383853;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.mstrcls .metric_arrow {
  display: inline-flex;
  align-items: center;
}

.mstrcls .metric_arrow svg {
  width: 22px;
  height: 22px;
}

.mstrcls .metric_lbl {
  font-size: 16px;
  color: #9F9EB5;
  line-height: 1.3;
  text-align: center;
}

.mstrcls .metric_sep {
  width: 1px;
  height: 48px;
  background: rgba(56, 56, 83, 0.15);
}

.mstrcls .cards_area {
  padding: 64px;
  background: #ffffff;
  position: relative;
}

.mstrcls .cards_area_head {
  margin-bottom: 32px;
}

.mstrcls .cards_overline {
  display: block;
  font-size: 16px;
  color: #4793A3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.mstrcls .cards_heading {
  font-size: 40px;
  line-height: 1.1;
  color: #383853;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

.mstrcls .cards_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.mstrcls .mcard {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 25px 1px rgba(56, 56, 83, 0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: appear_scale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.mstrcls .mcard:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 10px 40px 1px rgba(56, 56, 83, 0.13);
}

.mstrcls .mcard_img_wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.mstrcls .mcard_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstrcls .mcard:hover .mcard_img_wrap img {
  transform: scale(1.05);
}

.mstrcls .mcard_img_tint {
  position: absolute;
  inset: 0;
  background: rgba(56, 56, 83, 0.38);
  transition: opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.mstrcls .mcard:hover .mcard_img_tint {
  opacity: 0;
}

.mstrcls .mcard_dur_badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #383853;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.mstrcls .mcard_body {
  padding: 20px 20px 12px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mstrcls .mcard_ttl {
  font-size: 22px;
  line-height: 1.3;
  color: #383853;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.mstrcls .mcard_desc {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
  text-indent: 1.2em;
}

.mstrcls .mcard_meta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.mstrcls .mcard_meta_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #9F9EB5;
}

.mstrcls .mcard_foot {
  padding: 12px 20px 20px 20px;
  border-top: 1px solid rgba(56, 56, 83, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mstrcls .mcard_price_block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mstrcls .mcard_price {
  font-size: 22px;
  font-weight: 700;
  color: #383853;
  line-height: 1.1;
}

.mstrcls .mcard_price_terms {
  font-size: 16px;
  color: #9F9EB5;
  line-height: 1.3;
}

.mstrcls .mcard_price_note {
  font-size: 16px;
  color: #4793A3;
  font-weight: 500;
  line-height: 1.3;
}

.mstrcls .mcard_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #4793A3;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  border: 2px solid #4793A3;
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.mstrcls .mcard_link:hover {
  background: #383853;
  border-color: #383853;
  transform: scale(1.04);
}

.mstrcls .mcard_link svg {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstrcls .mcard_link:hover svg {
  transform: translateX(4px);
}

.mstrcls .div_thin {
  height: 2px;
  background: rgba(71, 147, 163, 0.2);
  margin: 0 64px;
}

.mstrcls .about_split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  background: #383853;
  position: relative;
}

.mstrcls .about_left {
  padding: 64px 32px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.mstrcls .about_left::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid rgba(71, 147, 163, 0.15);
  border-radius: 14px;
  pointer-events: none;
}

.mstrcls .about_diag {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.mstrcls .about_diag svg {
  width: 100%;
  height: 100%;
}

.mstrcls .about_overline {
  display: block;
  font-size: 16px;
  color: #4793A3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.mstrcls .about_heading {
  font-size: 40px;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.mstrcls .about_stat_row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 32px;
}

.mstrcls .about_stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mstrcls .about_stat_num {
  font-size: 40px;
  font-weight: 700;
  color: #4793A3;
  line-height: 1.1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.mstrcls .about_stat_lbl {
  font-size: 16px;
  color: #9F9EB5;
  line-height: 1.3;
}

.mstrcls .about_right {
  background: #f4f5f8;
  padding: 64px 64px 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.mstrcls .about_right_overline {
  display: block;
  font-size: 16px;
  color: #4793A3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.mstrcls .about_right_heading {
  font-size: 22px;
  line-height: 1.3;
  color: #383853;
  font-weight: 700;
  margin: 0;
}

.mstrcls .about_para {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
  text-indent: 1.2em;
}

.mstrcls .about_tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.mstrcls .about_tag {
  background: rgba(71, 147, 163, 0.12);
  color: #383853;
  font-size: 16px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(71, 147, 163, 0.25);
}

.mstrcls .div_pattern {
  height: 8px;
  background: repeating-linear-gradient(90deg, #4793A3 0px, #4793A3 20px, #383853 20px, #383853 40px);
}

.mstrcls .how_area {
  padding: 64px;
  background: #f4f5f8;
  position: relative;
  overflow: hidden;
}

.mstrcls .how_area_diag {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  overflow: hidden;
}

.mstrcls .how_area_diag svg {
  width: 100%;
  height: 100%;
}

.mstrcls .how_head {
  margin-bottom: 32px;
}

.mstrcls .how_overline {
  display: block;
  font-size: 16px;
  color: #4793A3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.mstrcls .how_heading {
  font-size: 40px;
  line-height: 1.1;
  color: #383853;
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.mstrcls .how_sub {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  max-width: 580px;
  margin: 0;
}

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

.mstrcls .how_step {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 20px;
  box-shadow: 0 3px 2px 1px rgba(56, 56, 83, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: appear_scale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.mstrcls .how_step:nth-child(2) {
  animation-delay: 0.08s;
}

.mstrcls .how_step:nth-child(3) {
  animation-delay: 0.16s;
}

.mstrcls .how_step_num {
  font-size: 40px;
  font-weight: 700;
  color: rgba(71, 147, 163, 0.18);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.mstrcls .how_step_heading {
  font-size: 22px;
  line-height: 1.3;
  color: #383853;
  font-weight: 700;
  margin: 0;
}

.mstrcls .how_step_txt {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
}

.mstrcls .how_step_badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(71, 147, 163, 0.1);
  color: #4793A3;
  font-size: 16px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  align-self: flex-start;
  margin-top: 4px;
}

.mstrcls .div_accent {
  height: 3px;
  background: #9F9EB5;
  opacity: 0.3;
}

.mstrcls .faq_area {
  padding: 64px;
  background: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.mstrcls .faq_left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mstrcls .faq_overline {
  display: block;
  font-size: 16px;
  color: #4793A3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.mstrcls .faq_heading {
  font-size: 40px;
  line-height: 1.1;
  color: #383853;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

.mstrcls .faq_desc {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
  text-indent: 1.2em;
}

.mstrcls .faq_contact_box {
  background: #383853;
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.mstrcls .faq_contact_lbl {
  font-size: 16px;
  color: #9F9EB5;
  line-height: 1.3;
}

.mstrcls .faq_contact_val {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none !important;
  transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstrcls .faq_contact_val:hover {
  color: #4793A3;
}

.mstrcls .faq_right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mstrcls .faq_item {
  border-radius: 8px;
  overflow: hidden;
}

.mstrcls .faq_item summary {
  list-style: none;
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #383853;
  background: #f4f5f8;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 8px;
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstrcls .faq_item summary::-webkit-details-marker {
  display: none;
}

.mstrcls .faq_item summary:hover {
  background: rgba(71, 147, 163, 0.12);
  color: #4793A3;
}

.mstrcls .faq_item[open] summary {
  background: #383853;
  color: #ffffff;
  border-radius: 8px 8px 0 0;
}

.mstrcls .faq_item_body {
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  background: rgba(71, 147, 163, 0.06);
  border-radius: 0 0 8px 8px;
}

.mstrcls .faq_icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstrcls .faq_item[open] .faq_icon {
  transform: rotate(45deg);
}

.mstrcls .cstrip {
  background: #4793A3;
  padding: 32px 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.mstrcls .cstrip::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.mstrcls .cstrip_txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mstrcls .cstrip_heading {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.mstrcls .cstrip_sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.3;
}

.mstrcls .cstrip_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #383853;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none !important;
  border: 2px solid #ffffff;
  transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.mstrcls .cstrip_link:hover {
  background: #383853;
  color: #ffffff;
  border-color: #383853;
  transform: scale(1.04);
}

.mstrcls .cstrip_link svg {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mstrcls .cstrip_link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .mstrcls .ttl_block {
    grid-template-columns: 1fr;
  }

  .mstrcls .ttl_img_zone {
    height: 280px;
  }

  .mstrcls .ttl_txt_zone {
    padding: 32px;
  }

  .mstrcls .ttl_heading {
    font-size: 40px;
  }

  .mstrcls .metrics_row {
    padding: 32px 20px;
    gap: 32px;
    flex-wrap: wrap;
  }

  .mstrcls .cards_area {
    padding: 32px 20px;
  }

  .mstrcls .cards_grid {
    grid-template-columns: 1fr;
  }

  .mstrcls .about_split {
    grid-template-columns: 1fr;
  }

  .mstrcls .about_left {
    padding: 32px;
  }

  .mstrcls .about_right {
    padding: 32px;
  }

  .mstrcls .how_area {
    padding: 32px 20px;
  }

  .mstrcls .how_steps {
    grid-template-columns: 1fr;
  }

  .mstrcls .faq_area {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 32px;
  }

  .mstrcls .cstrip {
    flex-direction: column;
    padding: 32px 20px;
    align-items: flex-start;
  }

  .mstrcls .div_thin {
    margin: 0 20px;
  }
}

@media (max-width: 576px) {
  .mstrcls .ttl_heading {
    font-size: 40px;
  }

  .mstrcls .ttl_actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .mstrcls .metrics_row {
    gap: 20px;
  }

  .mstrcls .metric_sep {
    display: none;
  }

  .mstrcls .about_stat_row {
    flex-direction: column;
    gap: 20px;
  }

  .mstrcls .cards_heading {
    font-size: 22px;
  }

  .mstrcls .how_heading {
    font-size: 22px;
  }

  .mstrcls .faq_heading {
    font-size: 22px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .mstrcls .cards_grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

.cont-us .pg-lead {
  padding: 64px 64px 64px 64px;
  background: linear-gradient(135deg, #383853 50%, #4793A3 50%);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cont-us .pg-lead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(-45deg,
      transparent,
      transparent 8px,
      rgba(71, 147, 163, 0.07) 8px,
      rgba(71, 147, 163, 0.07) 9px);
  pointer-events: none;
}

.cont-us .lead-text-area {
  position: relative;
  z-index: 1;
}

.cont-us .lead-overline {
  display: block;
  font-size: 16px;
  color: #9F9EB5;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(159, 158, 181, 0.4);
}

.cont-us .lead-heading {
  font-size: 56px;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.cont-us .lead-subtext {
  font-size: 22px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 32px 0;
}

.cont-us .lead-problem {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.cont-us .lead-info-area {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cont-us .info-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cont-us .info-card-label {
  font-size: 16px;
  color: #9F9EB5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(159, 158, 181, 0.25);
}

.cont-us .info-entry {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cont-us .info-entry-key {
  font-size: 16px;
  color: #9F9EB5;
  line-height: 1.3;
}

.cont-us .info-entry-val {
  font-size: 22px;
  color: #ffffff;
  line-height: 1.3;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cont-us .info-entry-val:hover {
  color: #4793A3;
}

.cont-us .info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cont-us .form-area {
  padding: 64px;
  background: #ffffff;
  position: relative;
}

.cont-us .form-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #383853 50%, #4793A3 50%);
}

.cont-us .form-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.cont-us .form-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 32px;
}

.cont-us .form-overline {
  display: block;
  font-size: 16px;
  color: #4793A3;
  letter-spacing: 0.08em;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(71, 147, 163, 0.3);
}

.cont-us .form-heading {
  font-size: 40px;
  line-height: 1.1;
  color: #383853;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

.cont-us .form-desc-body {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
  text-indent: 1.5em;
}

.cont-us .response-pledge {
  background: linear-gradient(135deg, #383853 50%, #4793A3 50%);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cont-us .pledge-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

.cont-us .pledge-val {
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}

.cont-us .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cont-us .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cont-us .field-label {
  font-size: 16px;
  color: #383853;
  font-weight: 600;
  line-height: 1.3;
}

.cont-us .field-input {
  border: 1px solid rgba(56, 56, 83, 0.25);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  color: #383853;
  background: #ffffff;
  line-height: 1.6;
  transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  box-sizing: border-box;
}

.cont-us .field-input::placeholder {
  color: #9F9EB5;
}

.cont-us .field-input:focus {
  outline: none;
  border-color: #4793A3;
  box-shadow: 0 4px 25px 1px rgba(71, 147, 163, 0.10);
}

.cont-us .field-select {
  border: 1px solid rgba(56, 56, 83, 0.25);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  color: #383853;
  background: #ffffff;
  line-height: 1.6;
  transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23383853' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.cont-us .field-select:focus {
  outline: none;
  border-color: #4793A3;
  box-shadow: 0 4px 25px 1px rgba(71, 147, 163, 0.10);
}

.cont-us .channel-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.cont-us .channel-opt {
  position: relative;
}

.cont-us .channel-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cont-us .channel-opt-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  border: 1px solid rgba(56, 56, 83, 0.2);
  border-radius: 14px;
  cursor: pointer;
  font-size: 16px;
  color: #383853;
  line-height: 1.3;
  text-align: center;
  transition: border-color 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: #ffffff;
}

.cont-us .channel-opt input[type="radio"]:checked+.channel-opt-label {
  border-color: #4793A3;
  background: rgba(71, 147, 163, 0.08);
  box-shadow: 0 3px 2px 1px rgba(71, 147, 163, 0.08);
  color: #383853;
  font-weight: 600;
}

.cont-us .channel-opt-label:hover {
  border-color: #9F9EB5;
  box-shadow: 0 3px 2px 1px rgba(56, 56, 83, 0.08);
}

.cont-us .channel-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cont-us .channel-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #4793A3;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cont-us .field-textarea {
  border: 1px solid rgba(56, 56, 83, 0.25);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 16px;
  color: #383853;
  background: #ffffff;
  line-height: 1.6;
  transition: border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  min-height: 120px;
}

.cont-us .field-textarea::placeholder {
  color: #9F9EB5;
}

.cont-us .field-textarea:focus {
  outline: none;
  border-color: #4793A3;
  box-shadow: 0 4px 25px 1px rgba(71, 147, 163, 0.10);
}

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

.cont-us .privacy-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid rgba(56, 56, 83, 0.3);
  border-radius: 4px;
  cursor: pointer;
  margin-top: 2px;
  accent-color: #4793A3;
}

.cont-us .privacy-text {
  font-size: 16px;
  color: #383853;
  line-height: 1.6;
}

.cont-us .privacy-link {
  color: #4793A3;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cont-us .privacy-link:hover {
  color: #383853;
}

.cont-us .submit-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #383853;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 20px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  align-self: flex-start;
  transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 3px 2px 1px rgba(56, 56, 83, 0.08);
}

.cont-us .submit-btn:hover {
  background: #4793A3;
  box-shadow: 0 10px 40px 1px rgba(71, 147, 163, 0.13);
}

.cont-us .submit-btn:hover .btn-arrow {
  transform: translateX(6px);
}

.cont-us .btn-arrow {
  display: inline-block;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cont-us .btn-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cont-us .submit-btn:focus {
  outline: 3px solid #4793A3;
  outline-offset: 3px;
}

.cont-us .alt-contact-strip {
  background: #383853;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.cont-us .strip-zigzag-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  overflow: hidden;
}

.cont-us .strip-zigzag-top svg {
  width: 100%;
  height: 20px;
  display: block;
}

.cont-us .strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-top: 20px;
}

.cont-us .strip-col-label {
  font-size: 16px;
  color: #9F9EB5;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(159, 158, 181, 0.25);
  margin-bottom: 20px;
}

.cont-us .strip-col-heading {
  font-size: 40px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
}

.cont-us .strip-col-body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  text-indent: 1.5em;
}

.cont-us .strip-hours-table {
  width: 100%;
  border-collapse: collapse;
}

.cont-us .strip-hours-table tr {
  border-bottom: 1px solid rgba(159, 158, 181, 0.15);
}

.cont-us .strip-hours-table td {
  padding: 8px 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.cont-us .strip-hours-table td:last-child {
  text-align: right;
  color: #4793A3;
  font-weight: 600;
}

.cont-us .strip-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cont-us .strip-link-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(159, 158, 181, 0.2);
  transition: border-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cont-us .strip-link-item:hover {
  border-color: #4793A3;
  background: rgba(71, 147, 163, 0.1);
}

.cont-us .strip-link-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #4793A3;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.cont-us .strip-link-text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.3;
}

.cont-us .strip-link-sub {
  font-size: 16px;
  color: #9F9EB5;
  line-height: 1.3;
  display: block;
}

@keyframes brightness-pulse {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.04);
  }
}

.cont-us .alt-contact-strip {
  animation: brightness-pulse 5s ease-in-out infinite;
}

@media (max-width: 1200px) {
  .cont-us .pg-lead {
    padding: 64px 32px;
    gap: 32px;
  }

  .cont-us .form-area {
    padding: 64px 32px;
  }

  .cont-us .alt-contact-strip {
    padding: 64px 32px;
  }

  .cont-us .lead-heading {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .cont-us .pg-lead {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 32px;
  }

  .cont-us .info-row {
    grid-template-columns: 1fr;
  }

  .cont-us .form-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cont-us .form-desc {
    position: static;
  }

  .cont-us .strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cont-us .strip-col-heading {
    font-size: 22px;
  }

  .cont-us .channel-group {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .cont-us .pg-lead {
    padding: 32px 20px;
  }

  .cont-us .lead-heading {
    font-size: 40px;
  }

  .cont-us .form-area {
    padding: 32px 20px;
  }

  .cont-us .alt-contact-strip {
    padding: 32px 20px;
  }

  .cont-us .strip-inner {
    grid-template-columns: 1fr;
  }

  .cont-us .channel-group {
    grid-template-columns: 1fr;
  }

  .cont-us .form-heading {
    font-size: 22px;
  }
}

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

.entr .bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  padding: 32px;
  background: #f5f4f8;
  position: relative;
}

.entr .bento-blob {
  position: absolute;
  border-radius: 22px;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.entr .bento-blob.blob-a {
  width: 320px;
  height: 320px;
  background: rgba(71, 147, 163, 0.18);
  top: -40px;
  left: -60px;
}

.entr .bento-blob.blob-b {
  width: 260px;
  height: 260px;
  background: rgba(56, 56, 83, 0.12);
  bottom: 20px;
  right: -40px;
}

.entr .bento-cell {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.entr .bento-cell.cell-img {
  grid-row: 1 / 3;
  min-height: 520px;
}

.entr .bento-cell.cell-statement {
  background: #383853;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.entr .bento-cell.cell-meta {
  background: #4793A3;
  padding: 20px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.entr .bento-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.entr .bento-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entr .bento-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(56, 56, 83, 0.72) 0%, rgba(56, 56, 83, 0.72) 50%, transparent 50%);
  transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.entr .bento-img-wrap:hover::after {
  opacity: 0.3;
}

.entr .bento-img-wrap:hover img {
  filter: brightness(1.08);
}

.entr .bento-overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9F9EB5;
  margin-bottom: 8px;
}

.entr .bento-h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.entr .bento-lead {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.entr .bento-badge {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.entr .badge-num {
  font-size: 40px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 700;
}

.entr .badge-lbl {
  font-size: 16px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.82);
}

.entr .bento-meta-txt {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.entr .deco-lines {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.entr .deco-lines svg {
  display: block;
}

.entr .approach-strip {
  background: #ffffff;
  padding: 64px 32px;
  position: relative;
}

.entr .approach-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.entr .approach-txt-col {
  position: relative;
}

.entr .approach-overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4793A3;
  margin-bottom: 8px;
}

.entr .approach-h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #383853;
  margin: 0 0 20px 0;
}

.entr .approach-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
  text-indent: 1.8em;
}

.entr .approach-body p+p {
  margin-top: 0;
}

.entr .approach-pillars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.entr .pillar-item {
  border-radius: 8px;
  padding: 20px;
  background: #f5f4f8;
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entr .pillar-item:hover {
  background: #eeedf5;
  box-shadow: 0 4px 25px 1px rgba(56, 56, 83, 0.10);
}

.entr .pillar-num {
  font-size: 22px;
  font-weight: 700;
  color: #4793A3;
  display: block;
  margin-bottom: 4px;
}

.entr .pillar-title {
  font-size: 16px;
  font-weight: 700;
  color: #383853;
  margin: 0 0 4px 0;
}

.entr .pillar-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
}

.entr .offer-strip {
  background: #383853;
  padding: 64px 32px;
  position: relative;
}

.entr .offer-deco {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
}

.entr .offer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.entr .offer-head {
  margin-bottom: 32px;
}

.entr .offer-overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9F9EB5;
  margin-bottom: 8px;
}

.entr .offer-h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.entr .offer-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  margin: 0;
}

.entr .offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.entr .offer-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entr .offer-card:hover {
  border-color: rgba(71, 147, 163, 0.5);
  box-shadow: 0 10px 40px 1px rgba(71, 147, 163, 0.13);
}

.entr .offer-card-img {
  width: 100%;
  height: 200px;
  position: relative;
}

.entr .offer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entr .offer-card:hover .offer-card-img img {
  filter: brightness(1.1);
}

.entr .offer-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(56, 56, 83, 0.45);
  transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.entr .offer-card:hover .offer-card-img::after {
  opacity: 0.15;
}

.entr .offer-card-body {
  padding: 20px;
}

.entr .offer-card-tag {
  display: inline-block;
  font-size: 16px;
  color: #4793A3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.entr .offer-card-title {
  font-size: 22px;
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.entr .offer-card-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.entr .offer-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 16px;
  color: #4793A3;
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entr .offer-card-link:hover {
  gap: 12px;
  color: #ffffff;
}

.entr .offer-card-link .lnk-arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entr .offer-card-link:hover .lnk-arrow {
  transform: translateX(4px);
}

.entr .hesit-strip {
  background: linear-gradient(135deg, #f5f4f8 50%, #eaf2f4 50%);
  padding: 64px 32px;
  position: relative;
}

.entr .hesit-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 64px;
  align-items: center;
}

.entr .hesit-overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4793A3;
  margin-bottom: 8px;
}

.entr .hesit-h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #383853;
  margin: 0 0 20px 0;
}

.entr .hesit-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
  text-indent: 1.8em;
}

.entr .hesit-body p+p {
  margin-top: 0;
}

.entr .hesit-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.entr .hesit-fact {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 3px 2px 1px rgba(56, 56, 83, 0.08);
}

.entr .hesit-fact-num {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #383853;
  display: block;
}

.entr .hesit-fact-lbl {
  font-size: 16px;
  line-height: 1.6;
  color: #9F9EB5;
}

.entr .rep-strip {
  background: #4793A3;
  padding: 64px 32px;
  position: relative;
}

.entr .rep-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.entr .rep-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.entr .rep-overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.entr .rep-h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 0;
}

.entr .rep-intro {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  align-self: end;
}

.entr .rep-refs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.entr .rep-ref-item {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entr .rep-ref-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.entr .rep-ref-label {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}

.entr .rep-ref-detail {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.entr .exp-strip {
  background: #ffffff;
  padding: 64px 32px;
  position: relative;
}

.entr .exp-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.entr .exp-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.entr .exp-portrait-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.entr .exp-portrait-wrap img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entr .exp-portrait-wrap:hover img {
  filter: brightness(1.08);
}

.entr .exp-portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(71, 147, 163, 0.3);
  transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.entr .exp-portrait-wrap:hover::after {
  opacity: 0;
}

.entr .exp-portrait-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(56, 56, 83, 0.82);
  padding: 8px 12px;
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

.entr .exp-portrait-role {
  font-size: 16px;
  color: #9F9EB5;
  font-weight: 400;
  display: block;
}

.entr .exp-quotes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.entr .exp-overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4793A3;
  margin-bottom: 8px;
}

.entr .exp-h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #383853;
  margin: 0 0 20px 0;
}

.entr .exp-quote {
  background: #f5f4f8;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 3px 2px 1px rgba(56, 56, 83, 0.08);
}

.entr .exp-quote-text {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0 0 12px 0;
  font-style: italic;
}

.entr .exp-quote-author {
  font-size: 16px;
  font-weight: 700;
  color: #383853;
  display: block;
}

.entr .exp-quote-ctx {
  font-size: 16px;
  color: #9F9EB5;
}

.entr .support-strip {
  background: #f5f4f8;
  padding: 64px 32px;
  position: relative;
}

.entr .support-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.entr .support-overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4793A3;
  margin-bottom: 8px;
}

.entr .support-h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #383853;
  margin: 0 0 12px 0;
}

.entr .support-intro {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
}

.entr .support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.entr .support-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 3px 2px 1px rgba(56, 56, 83, 0.08);
  transition: box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entr .support-item:hover {
  box-shadow: 0 4px 25px 1px rgba(56, 56, 83, 0.10);
  transform: translateY(-2px);
}

.entr .support-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #383853;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.entr .support-item-icon svg {
  width: 20px;
  height: 20px;
}

.entr .support-item-title {
  font-size: 16px;
  font-weight: 700;
  color: #383853;
  margin: 0 0 4px 0;
}

.entr .support-item-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
}

.entr .support-cta-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.entr .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #383853;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), gap 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entr .btn-primary:hover {
  background: #4793A3;
  box-shadow: 0 4px 25px 1px rgba(71, 147, 163, 0.13);
  gap: 12px;
}

.entr .btn-primary .btn-arr {
  display: inline-block;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entr .btn-primary:hover .btn-arr {
  transform: translateX(4px);
}

.entr .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #383853;
  border: 2px solid #383853;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), gap 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entr .btn-secondary:hover {
  border-color: #4793A3;
  color: #4793A3;
  gap: 12px;
}

.entr .btn-secondary .btn-arr {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.entr .btn-secondary:hover .btn-arr {
  transform: translateX(4px);
}

.entr .qty-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4793A3;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 22px;
  padding: 4px 12px;
  min-width: 36px;
}

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

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

.entr .bento-cell.cell-statement {
  animation: blur-reveal 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.entr .bento-cell.cell-meta {
  animation: blur-reveal 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) 0.22s both;
}

.entr .bento-cell.cell-img {
  animation: blur-reveal 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s both;
}

.entr .approach-inner {
  animation: blur-reveal 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

@media (max-width: 1200px) {
  .entr .bento-h1 {
    font-size: 40px;
  }

  .entr .offer-cards {
    grid-template-columns: 1fr 1fr;
  }

  .entr .rep-refs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .entr .bento-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .entr .bento-cell.cell-img {
    grid-row: auto;
    min-height: 340px;
  }

  .entr .approach-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .entr .hesit-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .entr .rep-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .entr .rep-refs {
    grid-template-columns: 1fr 1fr;
  }

  .entr .exp-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .entr .support-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .entr .offer-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .entr .bento-grid {
    padding: 12px;
    gap: 8px;
  }

  .entr .bento-h1 {
    font-size: 40px;
  }

  .entr .approach-strip,
  .entr .offer-strip,
  .entr .hesit-strip,
  .entr .rep-strip,
  .entr .exp-strip,
  .entr .support-strip {
    padding: 32px 20px;
  }

  .entr .rep-refs {
    grid-template-columns: 1fr;
  }

  .entr .exp-portraits {
    grid-template-columns: 1fr;
  }

  .entr .support-grid {
    grid-template-columns: 1fr;
  }

  .entr .approach-h2,
  .entr .offer-h2,
  .entr .hesit-h2,
  .entr .rep-h2,
  .entr .exp-h2,
  .entr .support-h2 {
    font-size: 40px;
  }
}

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

.lrn-prog .prog-title {
  position: relative;
  background: linear-gradient(135deg, #383853 50%, #4793A3 50%);
  padding: 64px 64px 64px;
}

.lrn-prog .prog-title__stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: #4793A3;
}

.lrn-prog .prog-title__grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.lrn-prog .prog-title__text {
  flex: 1;
}

.lrn-prog .prog-title__overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #9F9EB5;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.3;
}

.lrn-prog .prog-title__h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 32px;
  font-weight: 800;
}

.lrn-prog .prog-title__h1 em {
  color: #4793A3;
  font-style: normal;
}

.lrn-prog .prog-title__link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid rgba(71, 147, 163, 0.6);
  border-radius: 4px;
  padding: 12px 20px;
  transition: border-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lrn-prog .prog-title__link:hover {
  border-color: #4793A3;
  background: rgba(71, 147, 163, 0.15);
}

.lrn-prog .prog-title__link:hover .prog-title__link-icon {
  transform: translateX(5px);
}

.lrn-prog .prog-title__link-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lrn-prog .prog-title__img-wrap {
  flex: 0 0 420px;
  position: relative;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 10px 40px 1px rgba(56, 56, 83, 0.13);
}

.lrn-prog .prog-title__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(56, 56, 83, 0.18) 0%, rgba(56, 56, 83, 0.55) 100%);
  transition: opacity 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.lrn-prog .prog-title__img-wrap:hover::after {
  opacity: 0;
}

.lrn-prog .prog-title__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lrn-prog .prog-divider-a {
  display: block;
  width: 100%;
  line-height: 0;
}

.lrn-prog .prog-divider-a svg {
  display: block;
  width: 100%;
}

.lrn-prog .prog-struct {
  background: #f5f5f8;
  padding: 64px 64px;
}

.lrn-prog .prog-struct__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lrn-prog .prog-struct__top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
  margin-bottom: 64px;
}

.lrn-prog .prog-struct__lead {
  flex: 0 0 340px;
}

.lrn-prog .prog-struct__overline {
  display: block;
  width: 40px;
  height: 2px;
  background: #4793A3;
  margin-bottom: 12px;
}

.lrn-prog .prog-struct__h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #383853;
  margin: 0 0 20px;
  font-weight: 700;
}

.lrn-prog .prog-struct__desc {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
  text-indent: 1.5em;
}

.lrn-prog .prog-struct__metrics {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
}

.lrn-prog .prog-metric {
  flex: 1;
  background: #ffffff;
  border-radius: 8px;
  padding: 32px 20px;
  box-shadow: 0 4px 25px 1px rgba(56, 56, 83, 0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lrn-prog .prog-metric:hover {
  box-shadow: 0 10px 40px 1px rgba(56, 56, 83, 0.13);
  transform: translateY(-4px);
}

.lrn-prog .prog-metric__num {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 800;
  color: #4793A3;
  letter-spacing: -0.03em;
}

.lrn-prog .prog-metric__label {
  font-size: 16px;
  line-height: 1.3;
  color: #383853;
}

.lrn-prog .prog-metric__arrow {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #9F9EB5;
}

.lrn-prog .prog-metric__arrow-svg {
  width: 20px;
  height: 20px;
  color: #4793A3;
}

.lrn-prog .prog-metric__change {
  font-size: 16px;
  color: #4793A3;
  font-weight: 600;
}

.lrn-prog .prog-steps {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.lrn-prog .prog-step {
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 20px;
  box-shadow: 0 3px 2px 1px rgba(56, 56, 83, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lrn-prog .prog-step:hover {
  background: #383853;
}

.lrn-prog .prog-step:hover .prog-step__num,
.lrn-prog .prog-step:hover .prog-step__h4,
.lrn-prog .prog-step:hover .prog-step__body {
  color: #ffffff;
}

.lrn-prog .prog-step:hover .prog-step__num {
  color: #4793A3;
}

.lrn-prog .prog-step.featured {
  background: #383853;
  box-shadow: 0 10px 40px 1px rgba(56, 56, 83, 0.13);
  padding: 32px 32px;
}

.lrn-prog .prog-step.featured .prog-step__num,
.lrn-prog .prog-step.featured .prog-step__h4,
.lrn-prog .prog-step.featured .prog-step__body {
  color: #ffffff;
}

.lrn-prog .prog-step.featured .prog-step__num {
  color: #4793A3;
}

.lrn-prog .prog-step__num {
  font-size: 40px;
  font-weight: 800;
  color: #9F9EB5;
  line-height: 1.1;
  letter-spacing: -0.03em;
  transition: color 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lrn-prog .prog-step__h4 {
  font-size: 22px;
  line-height: 1.3;
  color: #383853;
  margin: 0;
  font-weight: 700;
  transition: color 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lrn-prog .prog-step__body {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
  text-indent: 1.5em;
  transition: color 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lrn-prog .prog-divider-b {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px 64px;
  background: #f5f5f8;
}

.lrn-prog .prog-divider-b__line {
  flex: 1;
  height: 1px;
  background: #9F9EB5;
  max-width: 400px;
}

.lrn-prog .prog-divider-b__ornament {
  width: 12px;
  height: 12px;
  border: 2px solid #4793A3;
  border-radius: 1px;
  transform: rotate(45deg);
}

.lrn-prog .prog-voices {
  background: #ffffff;
  padding: 64px 64px;
}

.lrn-prog .prog-voices__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.lrn-prog .prog-voices__header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 32px;
}

.lrn-prog .prog-voices__overline {
  display: block;
  width: 40px;
  height: 2px;
  background: #4793A3;
  margin-bottom: 12px;
}

.lrn-prog .prog-voices__h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #383853;
  margin: 0;
  font-weight: 700;
}

.lrn-prog .prog-voices__sub {
  font-size: 16px;
  line-height: 1.6;
  color: #9F9EB5;
  max-width: 360px;
  margin: 0;
}

.lrn-prog .prog-voices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.lrn-prog .prog-review {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 4px 25px 1px rgba(71, 147, 163, 0.10);
  border: 1px solid rgba(71, 147, 163, 0.12);
  transition: box-shadow 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.lrn-prog .prog-review:hover {
  box-shadow: 0 10px 40px 1px rgba(71, 147, 163, 0.13);
}

.lrn-prog .prog-review.wide {
  grid-column: 1 / -1;
  flex-direction: row;
  background: #f5f5f8;
}

.lrn-prog .prog-review__portrait-wrap {
  flex: 0 0 auto;
}

.lrn-prog .prog-review__portrait {
  width: 80px;
  height: 103px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lrn-prog .prog-review__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lrn-prog .prog-review__quote {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
  text-indent: 1.5em;
}

.lrn-prog .prog-review__name {
  font-size: 16px;
  font-weight: 700;
  color: #383853;
  margin: 0;
}

.lrn-prog .prog-review__role {
  font-size: 16px;
  color: #9F9EB5;
  margin: 0;
}

.lrn-prog .prog-review__no-portrait {
  flex: 0 0 80px;
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(135deg, #383853 50%, #4793A3 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lrn-prog .prog-review__initials {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.lrn-prog .prog-bg-anim {
  position: relative;
  padding: 64px 64px;
  overflow: hidden;
}

.lrn-prog .prog-bg-anim::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #383853 0%, #383853 50%, #4793A3 50%, #4793A3 100%);
  background-size: 400% 400%;
  animation: prog-bg-shift 5s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes prog-bg-shift {
  0% {
    background-position: 0% 0%;
  }

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

.lrn-prog .prog-bg-anim__rel {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
}

.lrn-prog .prog-pattern-section {
  background: #f5f5f8;
  padding: 64px 64px;
}

.lrn-prog .prog-pattern-section .pattern-cross-dots {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .lrn-prog .prog-title__img-wrap {
    flex: 0 0 320px;
  }

  .lrn-prog .prog-steps {
    grid-template-columns: 1fr 1fr;
  }

  .lrn-prog .prog-step.featured {
    grid-column: 1 / -1;
  }

  .lrn-prog .prog-struct__top {
    flex-direction: column;
    gap: 32px;
  }

  .lrn-prog .prog-struct__lead {
    flex: none;
  }
}

@media (max-width: 992px) {
  .lrn-prog .prog-title__grid {
    flex-direction: column;
    gap: 32px;
  }

  .lrn-prog .prog-title__img-wrap {
    flex: none;
    width: 100%;
  }

  .lrn-prog .prog-title {
    padding: 64px 32px;
  }

  .lrn-prog .prog-struct {
    padding: 64px 32px;
  }

  .lrn-prog .prog-voices {
    padding: 64px 32px;
  }

  .lrn-prog .prog-bg-anim {
    padding: 64px 32px;
  }

  .lrn-prog .prog-divider-b {
    padding: 32px;
  }

  .lrn-prog .prog-voices__grid {
    grid-template-columns: 1fr;
  }

  .lrn-prog .prog-review.wide {
    grid-column: auto;
  }

  .lrn-prog .prog-struct__metrics {
    flex-direction: column;
  }

  .lrn-prog .prog-steps {
    grid-template-columns: 1fr;
  }

  .lrn-prog .prog-step.featured {
    grid-column: auto;
  }

  .lrn-prog .prog-bg-anim__rel {
    flex-direction: column;
    gap: 32px;
  }

  .lrn-prog .prog-voices__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .lrn-prog .prog-title__h1 {
    font-size: 40px;
  }

  .lrn-prog .prog-struct__h2,
  .lrn-prog .prog-voices__h2 {
    font-size: 40px;
  }

  .lrn-prog .prog-title {
    padding: 32px 20px;
  }

  .lrn-prog .prog-struct {
    padding: 32px 20px;
  }

  .lrn-prog .prog-voices {
    padding: 32px 20px;
  }

  .lrn-prog .prog-bg-anim {
    padding: 32px 20px;
  }

  .lrn-prog .prog-divider-b {
    padding: 20px;
  }

  .lrn-prog .prog-review {
    flex-direction: column;
  }

  .lrn-prog .prog-review.wide {
    flex-direction: column;
  }
}

.lrn-prog .prog-cta-text {
  flex: 1;
}

.lrn-prog .prog-cta-text__overline {
  display: block;
  width: 40px;
  height: 2px;
  background: #4793A3;
  margin-bottom: 12px;
}

.lrn-prog .prog-cta-text__h3 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 20px;
  font-weight: 700;
}

.lrn-prog .prog-cta-text__body {
  font-size: 16px;
  line-height: 1.6;
  color: #9F9EB5;
  margin: 0;
  text-indent: 1.5em;
}

.lrn-prog .prog-cta-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.lrn-prog .prog-cta-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  padding: 12px 32px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lrn-prog .prog-cta-btn.primary {
  background: #4793A3;
  color: #ffffff;
}

.lrn-prog .prog-cta-btn.primary:hover {
  background: #ffffff;
  color: #383853;
  transform: translateY(-2px);
}

.lrn-prog .prog-cta-btn.primary:hover .prog-cta-btn__icon {
  transform: translateX(4px);
}

.lrn-prog .prog-cta-btn.secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.lrn-prog .prog-cta-btn.secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.lrn-prog .prog-cta-btn.secondary:hover .prog-cta-btn__icon {
  transform: translateX(4px);
}

.lrn-prog .prog-cta-btn__icon {
  width: 18px;
  height: 18px;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.abt-pg .divider-edge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  margin: 0;
}

.abt-pg .divider-edge span {
  display: block;
  width: 80px;
  height: 2px;
  background: #4793A3;
}

.abt-pg .overline-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4793A3;
  display: block;
  margin-bottom: 12px;
}

.abt-pg .overline-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #4793A3;
  vertical-align: middle;
  margin-right: 8px;
}

.abt-pg .pg-lead {
  position: relative;
  padding: 64px 64px 64px 64px;
  background: #383853;
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(71, 147, 163, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(159, 158, 181, 0.18) 0%, transparent 50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.abt-pg .pg-lead-dots {
  position: absolute;
  top: 32px;
  right: 120px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-end;
  pointer-events: none;
}

.abt-pg .pg-lead-dots span {
  display: block;
  border-radius: 50%;
  background: rgba(71, 147, 163, 0.35);
}

.abt-pg .pg-lead-dots span:nth-child(1) {
  width: 6px;
  height: 6px;
}

.abt-pg .pg-lead-dots span:nth-child(2) {
  width: 10px;
  height: 10px;
  background: rgba(71, 147, 163, 0.55);
}

.abt-pg .pg-lead-dots span:nth-child(3) {
  width: 5px;
  height: 5px;
}

.abt-pg .pg-lead-dots span:nth-child(4) {
  width: 14px;
  height: 14px;
  background: rgba(159, 158, 181, 0.4);
}

.abt-pg .pg-lead-dots span:nth-child(5) {
  width: 7px;
  height: 7px;
  background: rgba(71, 147, 163, 0.3);
}

.abt-pg .pg-lead-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.abt-pg .pg-lead-text .overline-label {
  color: #4793A3;
}

.abt-pg .pg-lead-h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  font-weight: 800;
}

.abt-pg .pg-lead-h1 em {
  display: block;
  color: #4793A3;
  font-style: normal;
}

.abt-pg .pg-lead-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #9F9EB5;
  max-width: 480px;
  margin: 0;
  text-indent: 1.5em;
}

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

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

.abt-pg .pg-lead-stat-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.abt-pg .pg-lead-stat-num.alt {
  color: #4793A3;
}

.abt-pg .pg-lead-stat-lbl {
  font-size: 16px;
  color: #9F9EB5;
  line-height: 1.3;
}

.abt-pg .pg-lead-img-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.abt-pg .pg-lead-img-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 40px 1px rgba(56, 56, 83, 0.13);
}

.abt-pg .pg-lead-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-pg .pg-lead-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(56, 56, 83, 0.45);
  mix-blend-mode: multiply;
  transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 14px;
}

.abt-pg .pg-lead-img-frame:hover::after {
  opacity: 0;
}

.abt-pg .pg-lead-img-frame:hover img {
  transform: scale(1.03);
}

.abt-pg .pg-lead-grain {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.abt-pg .story-band {
  background: #ffffff;
  padding: 64px 64px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}

.abt-pg .story-col-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-pg .story-h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #383853;
  margin: 0;
}

.abt-pg .story-body {
  display: flex;
  flex-direction: column;
}

.abt-pg .story-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
  text-indent: 1.5em;
}

.abt-pg .before-after-pair {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-end;
  margin-top: 20px;
}

.abt-pg .ba-num {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.abt-pg .ba-num.before {
  color: #9F9EB5;
}

.abt-pg .ba-num.after {
  color: #383853;
}

.abt-pg .ba-sep {
  font-size: 40px;
  font-weight: 300;
  color: #4793A3;
  line-height: 1.1;
  padding-bottom: 8px;
}

.abt-pg .ba-labels {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
}

.abt-pg .ba-label {
  font-size: 16px;
  color: #9F9EB5;
  line-height: 1.3;
}

.abt-pg .ba-label.active {
  color: #383853;
  font-weight: 700;
}

.abt-pg .story-col-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.abt-pg .data-tbl-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 25px 1px rgba(71, 147, 163, 0.10);
}

.abt-pg .data-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.abt-pg .data-tbl thead tr {
  background: #383853;
}

.abt-pg .data-tbl thead th {
  padding: 12px 20px;
  color: #ffffff;
  font-weight: 700;
  text-align: left;
  font-size: 16px;
  line-height: 1.3;
}

.abt-pg .data-tbl tbody tr {
  transition: background 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-pg .data-tbl tbody tr:nth-child(odd) {
  background: #f4f4f8;
}

.abt-pg .data-tbl tbody tr:nth-child(even) {
  background: #ffffff;
}

.abt-pg .data-tbl tbody tr:hover {
  background: rgba(71, 147, 163, 0.12);
}

.abt-pg .data-tbl tbody td {
  padding: 12px 20px;
  color: #383853;
  line-height: 1.6;
  border-bottom: 1px solid rgba(159, 158, 181, 0.18);
}

.abt-pg .data-tbl tbody td:last-child {
  font-weight: 700;
  color: #4793A3;
}

.abt-pg .story-side-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 2px 1px rgba(56, 56, 83, 0.08);
}

.abt-pg .story-side-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-pg .story-side-img:hover img {
  transform: scale(1.04);
}

.abt-pg .team-band {
  background: #f0f0f5;
  padding: 64px 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.abt-pg .team-band-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.abt-pg .team-h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #383853;
  margin: 0;
  max-width: 520px;
}

.abt-pg .team-intro-p {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  max-width: 380px;
  margin: 0;
  text-indent: 1.5em;
}

.abt-pg .three-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.abt-pg .col-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 25px 1px rgba(56, 56, 83, 0.10);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-pg .col-card:hover {
  transform: rotate(1deg) translateY(-4px);
  box-shadow: 0 10px 40px 1px rgba(56, 56, 83, 0.13);
}

.abt-pg .col-card.tall {
  margin-top: -32px;
  margin-bottom: -32px;
}

.abt-pg .col-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.abt-pg .col-card-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-pg .col-card.tall .col-card-img-wrap img {
  height: 280px;
}

.abt-pg .col-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(71, 147, 163, 0.38);
  mix-blend-mode: multiply;
  transition: opacity 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-pg .col-card:hover .col-card-img-wrap::after {
  opacity: 0;
}

.abt-pg .col-card:hover .col-card-img-wrap img {
  transform: scale(1.04);
}

.abt-pg .col-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.abt-pg .col-card-tag {
  font-size: 16px;
  font-weight: 700;
  color: #4793A3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.abt-pg .col-card-h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: #383853;
  margin: 0;
}

.abt-pg .col-card-p {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
  text-indent: 1.5em;
}

.abt-pg .col-card-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #4793A3;
  text-decoration: none;
  margin-top: 8px;
  border-radius: 4px;
  padding: 4px 0;
  transition: gap 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.abt-pg .col-card-link:hover {
  gap: 16px;
  color: #383853;
}

.abt-pg .col-card-link-arrow {
  display: inline-block;
  width: 18px;
  height: 12px;
  position: relative;
}

.abt-pg .col-card-link-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.abt-pg .col-card-link-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.abt-pg .portrait-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 25px 1px rgba(56, 56, 83, 0.10);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}

.abt-pg .portrait-card-img {
  width: 120px;
  flex-shrink: 0;
}

.abt-pg .portrait-card-img img {
  width: 120px;
  height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.abt-pg .portrait-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-pg .portrait-card-name {
  font-size: 22px;
  font-weight: 800;
  color: #383853;
  margin: 0;
  line-height: 1.3;
}

.abt-pg .portrait-card-role {
  font-size: 16px;
  color: #4793A3;
  font-weight: 700;
}

.abt-pg .portrait-card-quote {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0;
  font-style: italic;
}

.abt-pg .team-bottom-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: center;
}

.abt-pg .dots-corner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  width: 80px;
  pointer-events: none;
}

.abt-pg .dots-corner span {
  display: block;
  border-radius: 50%;
  background: #4793A3;
  opacity: 0.3;
  width: 8px;
  height: 8px;
}

.abt-pg .dots-corner span:nth-child(2n) {
  opacity: 0.55;
  background: #383853;
}

.abt-pg .dots-corner span:nth-child(3n) {
  width: 12px;
  height: 12px;
  opacity: 0.2;
}

@media (max-width: 1200px) {
  .abt-pg .pg-lead {
    padding: 64px 32px;
    gap: 32px;
  }

  .abt-pg .story-band {
    padding: 64px 32px;
    gap: 32px;
  }

  .abt-pg .team-band {
    padding: 64px 32px;
  }

  .abt-pg .divider-edge {
    padding: 0 32px;
  }
}

@media (max-width: 992px) {
  .abt-pg .pg-lead {
    grid-template-columns: 1fr;
    padding: 64px 32px;
  }

  .abt-pg .pg-lead-img-frame img {
    height: 280px;
  }

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

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

  .abt-pg .col-card.tall {
    margin-top: 0;
    margin-bottom: 0;
  }

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

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

  .abt-pg .pg-lead-h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .abt-pg .pg-lead {
    padding: 32px 20px;
    gap: 20px;
  }

  .abt-pg .story-band {
    padding: 32px 20px;
    gap: 20px;
  }

  .abt-pg .team-band {
    padding: 32px 20px;
    gap: 32px;
  }

  .abt-pg .pg-lead-h1 {
    font-size: 40px;
  }

  .abt-pg .story-h2,
  .abt-pg .team-h2 {
    font-size: 40px;
  }

  .abt-pg .ba-num {
    font-size: 56px;
  }

  .abt-pg .pg-lead-stat-row {
    gap: 20px;
  }

  .abt-pg .divider-edge {
    padding: 0 20px;
  }

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

  .abt-pg .portrait-card-img img {
    width: 100%;
    height: 180px;
  }

  .abt-pg .portrait-card-img {
    width: 100%;
  }
}

.success_page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  background-color: #f5f5f8;
}

.success_page .success_card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 40px 1px rgba(56, 56, 83, 0.13);
  padding: 64px;
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.success_page .success_card .icon_wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
  border-radius: 22px;
  background: linear-gradient(135deg, #4793A3 50%, #383853 50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.success_page .success_card .icon_wrap svg {
  display: block;
}

.success_page .success_card .success_overline {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4793A3;
  margin-bottom: 8px;
}

.success_page .success_card .success_heading {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #383853;
  margin: 0 0 20px;
  font-weight: 700;
}

.success_page .success_card .success_body {
  font-size: 16px;
  line-height: 1.6;
  color: #383853;
  margin: 0 0 32px;
}

.success_page .success_card .success_body strong {
  color: #4793A3;
}

.success_page .success_card .divider_line {
  width: 48px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #4793A3 50%, #9F9EB5 50%);
  margin: 0 auto 32px;
}

.success_page .success_card .action_group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.success_page .success_card .btn_primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #383853;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  border: 2px solid #383853;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 25px 1px rgba(56, 56, 83, 0.10);
}

.success_page .success_card .btn_primary svg {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success_page .success_card .btn_primary:hover {
  background: #4793A3;
  border-color: #4793A3;
}

.success_page .success_card .btn_primary:hover svg {
  transform: translateX(4px);
}

.success_page .success_card .btn_primary:focus-visible {
  outline: 3px solid #4793A3;
  outline-offset: 3px;
}

.success_page .success_card .btn_secondary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #383853;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 8px;
  border: 2px solid #9F9EB5;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.22s cubic-bezier(0.68, -0.55, 0.27, 1.55), color 0.22s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.success_page .success_card .btn_secondary svg {
  transition: transform 0.28s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.success_page .success_card .btn_secondary:hover {
  border-color: #4793A3;
  color: #4793A3;
}

.success_page .success_card .btn_secondary:hover svg {
  transform: translateX(4px);
}

.success_page .success_card .btn_secondary:focus-visible {
  outline: 3px solid #4793A3;
  outline-offset: 3px;
}

@media (max-width: 576px) {
  .success_page {
    padding: 32px 12px;
  }

  .success_page .success_card {
    padding: 32px 20px;
  }

  .success_page .success_card .success_heading {
    font-size: 22px;
  }

  .success_page .success_card .btn_primary,
  .success_page .success_card .btn_secondary {
    width: 100%;
    justify-content: center;
  }
}