@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

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

body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.pg_header {
  position: relative;
  background: #ffffff;
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06), 0 6px 18px 0 rgba(62,84,163,0.10);
  z-index: 100;
  overflow: visible;
}

.pg_header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1366px;
  margin: 0 auto;
  padding: 16px 40px;
  gap: 24px;
  border-bottom: 1px solid #E6E3F1;
}

.logo_shell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-top: 2px solid #3E54A3;
  border-bottom: 2px solid #3E54A3;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
  flex-shrink: 0;
}

.logo_shell img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.brand_name {
  font-family: 'Source Code Pro', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #3E54A3;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-decoration: none;
  margin-left: 16px;
}

.brand_group {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0;
}

.hdr_contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2a2a3d;
  line-height: 1.4;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 3px;
  border: 1px solid #E6E3F1;
  transition: border-color 0.2s cubic-bezier(0.4,0,0.2,1), color 0.2s cubic-bezier(0.4,0,0.2,1);
}

.hdr_contact:hover,
.hdr_contact:focus {
  color: #3E54A3;
  border-color: #AEA6D1;
  outline: none;
}

.hdr_contact:focus-visible {
  outline: 2px solid #3E54A3;
  outline-offset: 2px;
}

.hdr_contact .iconoir-phone {
  font-size: 18px;
  color: #3E54A3;
}

.pg_header_nav {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 40px;
  background: linear-gradient(90deg, #E6E3F1 0%, #ffffff 100%);
}

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

.nav_item {
  position: relative;
}

.nav_link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2a2a3d;
  text-decoration: none;
  padding: 16px 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  border-bottom: 3px solid transparent;
  transition: color 0.18s cubic-bezier(0.4,0,0.2,1), border-color 0.18s cubic-bezier(0.4,0,0.2,1);
}

.nav_link:hover,
.nav_link:focus {
  color: #3E54A3;
  border-bottom-color: #3E54A3;
  outline: none;
}

.nav_link:focus-visible {
  outline: 2px solid #3E54A3;
  outline-offset: 2px;
}

.nav_item_has_sub:hover .sub_menu,
.nav_item_has_sub:focus-within .sub_menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sub_menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: 3px;
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10), 0 9px 52px 0 rgba(62,84,163,0.14);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.22s cubic-bezier(0.0,0,0.2,1), transform 0.22s cubic-bezier(0.0,0,0.2,1);
  z-index: 200;
}

.sub_menu::before {
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

.sub_link {
  display: block;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2a2a3d;
  text-decoration: none;
  padding: 12px 24px;
  line-height: 1.4;
  transition: background 0.15s cubic-bezier(0.4,0,0.2,1), color 0.15s cubic-bezier(0.4,0,0.2,1);
}

.sub_link:hover,
.sub_link:focus {
  background: #E6E3F1;
  color: #3E54A3;
  outline: none;
}

.sub_link:focus-visible {
  outline: 2px solid #3E54A3;
  outline-offset: -2px;
}

.nav_chevron {
  width: 14px;
  height: 14px;
  display: inline-block;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .pg_header_top {
    padding: 16px 24px;
  }
  .pg_header_nav {
    padding: 0 24px;
  }
  .nav_link {
    padding: 16px 16px;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .pg_header_top {
    padding: 16px 16px;
    flex-wrap: wrap;
  }
  .pg_header_nav {
    padding: 0 16px;
  }
  .nav_link {
    padding: 12px 12px;
  }
  .brand_name {
    font-size: 16px;
  }
}

.pg_footer {
  background: #3E54A3;
  color: #E6E3F1;
  padding: 40px 0 24px;
}

.ft_inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 40px;
}

.ft_card {
  background: rgba(174,166,209,0.15);
  border-radius: 3px;
  box-shadow: inset 0 4px 10px 0 rgba(62,84,163,0.18);
  padding: 40px;
  margin-bottom: 24px;
}

.ft_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.ft_logo_col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 0 0 auto;
}

.ft_logo_shell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-top: 2px solid #AEA6D1;
  border-bottom: 2px solid #AEA6D1;
  border-radius: 3px;
  background: #ffffff;
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
}

.ft_logo_shell img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.ft_brand {
  font-family: 'Source Code Pro', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.ft_info_col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft_label {
  font-family: 'Source Code Pro', monospace;
  font-size: 16px;
  font-weight: 700;
  color: #AEA6D1;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 8px;
}

.ft_contact_link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #E6E3F1;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.18s cubic-bezier(0.4,0,0.2,1);
}

.ft_contact_link:hover,
.ft_contact_link:focus {
  color: #ffffff;
  outline: none;
}

.ft_contact_link:focus-visible {
  outline: 2px solid #AEA6D1;
  outline-offset: 2px;
}

.ft_addr {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #E6E3F1;
  line-height: 1.6;
}

.ft_nav_col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft_nav_link {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #AEA6D1;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.15s cubic-bezier(0.4,0,0.2,1);
}

.ft_nav_link:hover,
.ft_nav_link:focus {
  color: #ffffff;
  outline: none;
}

.ft_nav_link:focus-visible {
  outline: 2px solid #AEA6D1;
  outline-offset: 2px;
}

.ft_bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(174,166,209,0.3);
}

.ft_copy {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(230,227,241,0.7);
  line-height: 1.4;
}

.ft_policy_note {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(230,227,241,0.6);
  line-height: 1.4;
}

.ft_policy_link {
  color: #AEA6D1;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s cubic-bezier(0.4,0,0.2,1);
}

.ft_policy_link:hover,
.ft_policy_link:focus {
  color: #ffffff;
  outline: none;
}

.ft_policy_link:focus-visible {
  outline: 2px solid #AEA6D1;
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .ft_inner {
    padding: 0 24px;
  }
  .ft_card {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .ft_inner {
    padding: 0 16px;
  }
  .ft_card {
    padding: 16px;
  }
  .ft_grid {
    gap: 24px;
  }
  .ft_bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cookie_bar {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 680px;
  background: #ffffff;
  border-radius: 3px;
  box-shadow: 0 9px 52px 0 rgba(62,84,163,0.14), 0 6px 18px 0 rgba(62,84,163,0.10);
  padding: 24px 40px;
  z-index: 2000;
  display: none;
  border-top: 3px solid #3E54A3;
}

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

.cookie_desc {
  flex: 1 1 260px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2a2a3d;
  line-height: 1.6;
}

.cookie_desc a {
  color: #3E54A3;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s cubic-bezier(0.4,0,0.2,1);
}

.cookie_desc a:hover,
.cookie_desc a:focus {
  color: #AEA6D1;
  outline: none;
}

.cookie_desc a:focus-visible {
  outline: 2px solid #3E54A3;
  outline-offset: 2px;
}

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

.cookie_accept {
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  background: #3E54A3;
  border: none;
  border-radius: 3px;
  padding: 16px 24px;
  cursor: pointer;
  line-height: 1.15;
  min-height: 44px;
  transition: background 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s cubic-bezier(0.4,0,0.2,1);
}

.cookie_accept:hover {
  background: #2d3f82;
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
}

.cookie_accept:focus-visible {
  outline: 2px solid #AEA6D1;
  outline-offset: 2px;
}

.cookie_decline {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3E54A3;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px;
  min-height: 44px;
  line-height: 1.4;
  transition: color 0.15s cubic-bezier(0.4,0,0.2,1);
}

.cookie_decline:hover {
  color: #AEA6D1;
}

.cookie_decline:focus-visible {
  outline: 2px solid #3E54A3;
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .cookie_bar {
    padding: 16px 16px;
    width: 95%;
    bottom: 16px;
  }
}.policy-view {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px;
}

.policy-view h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1b2240;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid #E6E3F1;
}

.policy-view h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #1b2240;
    margin-top: 80px;
    margin-bottom: 24px;
}

.policy-view h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.005em;
    color: #2a3560;
    margin-top: 40px;
    margin-bottom: 16px;
}

.policy-view h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0;
    color: #2a3560;
    margin-top: 40px;
    margin-bottom: 16px;
}

.policy-view h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #3E54A3;
    margin-top: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.policy-view h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.015em;
    color: #5a6a9e;
    margin-top: 24px;
    margin-bottom: 8px;
}

.policy-view p {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.005em;
    color: #2c2c3a;
    margin-bottom: 16px;
    max-width: 72ch;
}

.policy-view a {
    color: #3E54A3;
    text-decoration: underline;
    text-decoration-color: #AEA6D1;
    text-underline-offset: 3px;
    transition: color 0.2s cubic-bezier(0.4,0,0.2,1), text-decoration-color 0.15s cubic-bezier(0.4,0,0.2,1);
}

.policy-view a:hover {
    color: #2a3a80;
    text-decoration-color: #3E54A3;
}

.policy-view a:visited {
    color: #6b5fa8;
}

.policy-view hr {
    border: none;
    border-top: 1px solid #E6E3F1;
    margin: 80px 0;
    box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
}

.policy-view div {
    margin-bottom: 16px;
}

.policy-view div p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .policy-view {
        padding: 80px 40px;
    }

    .policy-view h1 {
        font-size: 44px;
    }
}

@media (max-width: 900px) {
    .policy-view {
        padding: 40px 24px;
    }

    .policy-view h1 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .policy-view h2 {
        font-size: 24px;
        margin-top: 40px;
        margin-bottom: 16px;
    }

    .policy-view h3 {
        font-size: 18px;
        margin-top: 24px;
    }

    .policy-view h4 {
        font-size: 16px;
        margin-top: 24px;
    }

    .policy-view p {
        font-size: 16px;
        max-width: 100%;
    }

    .policy-view hr {
        margin: 40px 0;
    }
}

@media (max-width: 600px) {
    .policy-view {
        padding: 40px 16px;
    }

    .policy-view h1 {
        font-size: 24px;
        padding-bottom: 16px;
    }

    .policy-view h2 {
        font-size: 18px;
        margin-top: 40px;
    }

    .policy-view h3 {
        font-size: 16px;
    }

    .policy-view h5 {
        font-size: 16px;
    }

    .policy-view hr {
        margin: 40px 0;
    }
}
.mcd {
  max-width: 1366px;
  margin: 0 auto;
  overflow-x: clip;
}

.mcd .divider_grad {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #3E54A3 30%, #AEA6D1 70%, transparent 100%);
  border: none;
  margin: 0;
}

.mcd .wavy_line {
  width: 100%;
  height: 18px;
  overflow: hidden;
  line-height: 0;
}

.mcd .wavy_line svg {
  display: block;
  width: 100%;
  height: 18px;
}

.mcd .overline_label {
  display: block;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #3E54A3;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.mcd .grad_word {
  background: linear-gradient(135deg, #2a3a8a 0%, #3E54A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mcd .pill_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #E6E3F1;
  border: 1px solid #AEA6D1;
  border-radius: 3px;
  padding: 8px 16px;
  font-size: 16px;
  color: #3E54A3;
  font-weight: 500;
}

.mcd .pill_badge svg {
  flex-shrink: 0;
}

.mcd .badge_row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}


.mcd .title_blk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: linear-gradient(105deg, #E6E3F1 0%, #f5f4fb 55%, #ffffff 100%);
  position: relative;
}

.mcd .title_text_col {
  padding: 80px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.mcd .faded_quote {
  position: absolute;
  top: 40px;
  left: 24px;
  font-size: 200px;
  line-height: 1.15;
  color: #AEA6D1;
  opacity: 0.13;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.mcd .title_h1 {
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1a2050;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.mcd .title_sub {
  font-size: 18px;
  line-height: 1.6;
  color: #3d3d5c;
  margin-bottom: 24px;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.mcd .meta_chips {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.mcd .meta_chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #AEA6D1;
  border-radius: 3px;
  padding: 8px 16px;
  font-size: 16px;
  color: #3E54A3;
  box-shadow: 0 1px 4px 0 rgba(62, 84, 163, 0.06);
}

.mcd .price_row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.mcd .price_val {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  color: #3E54A3;
  letter-spacing: -0.02em;
}

.mcd .price_note_txt {
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a7a;
  padding-bottom: 8px;
}

.mcd .btn_primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #3E54A3;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 18px 0 rgba(62, 84, 163, 0.10);
  transition: background 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.15s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  z-index: 1;
  align-self: flex-start;
}

.mcd .btn_primary:hover {
  background: #2a3a8a;
  box-shadow: 0 9px 52px 0 rgba(62, 84, 163, 0.14);
  transform: translateY(-2px);
}

.mcd .btn_primary:active {
  background: #E6E3F1;
  color: #3E54A3;
  transform: translateY(0);
}

.mcd .btn_primary:focus {
  outline: 2px solid #3E54A3;
  outline-offset: 3px;
}

.mcd .title_img_col {
  position: relative;
  overflow: hidden;
}

.mcd .title_img_col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}

.mcd .title_img_col:hover img {
  transform: scale(1.04);
}

.mcd .img_vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, transparent 40%, rgba(62, 84, 163, 0.22) 100%);
  pointer-events: none;
}

.mcd .seats_badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  border: 1px solid #AEA6D1;
  border-radius: 3px;
  padding: 8px 16px;
  font-size: 16px;
  color: #3E54A3;
  font-weight: 600;
  box-shadow: 0 6px 18px 0 rgba(62, 84, 163, 0.10);
  display: flex;
  align-items: center;
  gap: 8px;
}


.mcd .prog_blk {
  background: #ffffff;
  padding: 80px 40px;
  position: relative;
}

.mcd .prog_inner {
  max-width: 900px;
  margin: 0 auto;
}

.mcd .prog_h2 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1a2050;
  margin-bottom: 8px;
}

.mcd .prog_lead {
  font-size: 18px;
  line-height: 1.6;
  color: #3d3d5c;
  margin-bottom: 40px;
  max-width: 600px;
}

.mcd .prog_content {
  font-size: 18px;
  line-height: 1.6;
  color: #2a2a45;
}

.mcd .prog_content h2 {
  font-size: 24px;
  line-height: 1.4;
  color: #3E54A3;
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 600;
}

.mcd .prog_content p {
  margin-bottom: 16px;
  color: #2a2a45;
}

.mcd .prog_content ul,
.mcd .prog_content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.mcd .prog_content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.mcd .prog_content ol {
  list-style: none;
  padding-left: 0;
  counter-reset: prog_counter;
}

.mcd .prog_content ol li {
  counter-increment: prog_counter;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 3px;
  background: #f4f3fb;
  margin-bottom: 8px;
  transition: background 0.2s cubic-bezier(0.4,0,0.2,1);
}

.mcd .prog_content ol li:hover {
  background: #E6E3F1;
}

.mcd .prog_content ol li::before {
  content: counter(prog_counter);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: #3E54A3;
  color: #ffffff;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.mcd .prog_content abbr {
  text-decoration: underline dotted #AEA6D1;
  cursor: help;
}

.mcd .prog_content blockquote {
  border-left: 3px solid #3E54A3;
  border-top: 1px solid #E6E3F1;
  border-bottom: 1px solid #E6E3F1;
  border-right: 1px solid #E6E3F1;
  padding: 16px 24px;
  margin: 24px 0;
  background: #f4f3fb;
  border-radius: 3px;
  font-size: 18px;
  color: #3E54A3;
  font-style: italic;
}

.mcd .prog_content cite {
  font-style: normal;
  font-size: 16px;
  color: #5a5a7a;
}

.mcd .prog_content dl {
  margin-bottom: 16px;
}

.mcd .prog_content dt {
  font-weight: 700;
  color: #3E54A3;
  margin-top: 16px;
}

.mcd .prog_content dd {
  margin-left: 24px;
  color: #2a2a45;
}

.mcd .stats_strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #E6E3F1;
}

.mcd .stat_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  background: linear-gradient(160deg, #f4f3fb 0%, #ffffff 100%);
  border-radius: 3px;
  border: 1px solid #E6E3F1;
  box-shadow: 0 1px 4px 0 rgba(62, 84, 163, 0.06);
  transition: box-shadow 0.22s cubic-bezier(0.4,0,0.2,1), transform 0.18s cubic-bezier(0.4,0,0.2,1);
}

.mcd .stat_item:hover {
  box-shadow: 0 6px 18px 0 rgba(62, 84, 163, 0.10);
  transform: translateY(-2px) rotate(0.5deg);
}

.mcd .stat_num {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  color: #3E54A3;
  letter-spacing: -0.02em;
}

.mcd .stat_lbl {
  font-size: 16px;
  line-height: 1.4;
  color: #5a5a7a;
  text-align: center;
}


.mcd .desc_blk {
  background: linear-gradient(105deg, #3E54A3 0%, #5a6fc4 60%, #AEA6D1 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.mcd .desc_blk_inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}

.mcd .desc_col {
  position: relative;
  z-index: 1;
}

.mcd .desc_overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #E6E3F1;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.mcd .desc_h2 {
  font-size: 32px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.mcd .desc_content {
  font-size: 18px;
  line-height: 1.6;
  color: #E6E3F1;
}

.mcd .desc_content h2 {
  font-size: 24px;
  line-height: 1.4;
  color: #ffffff;
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}

.mcd .desc_content h3 {
  font-size: 18px;
  line-height: 1.4;
  color: #E6E3F1;
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.mcd .desc_content p {
  margin-bottom: 16px;
  color: #E6E3F1;
}

.mcd .desc_content small {
  font-size: 16px;
  color: #c8c3e8;
}

.mcd .desc_content ul,
.mcd .desc_content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.mcd .desc_content li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #E6E3F1;
}

.mcd .desc_content figure {
  margin: 24px 0;
  border-radius: 3px;
  overflow: hidden;
}

.mcd .desc_content figcaption {
  font-size: 16px;
  color: #c8c3e8;
  margin-top: 8px;
  font-style: italic;
}

.mcd .desc_content dl {
  margin-bottom: 16px;
}

.mcd .desc_content dt {
  font-weight: 700;
  color: #ffffff;
  margin-top: 16px;
}

.mcd .desc_content dd {
  margin-left: 24px;
  color: #E6E3F1;
}

.mcd .enroll_card {
  background: #ffffff;
  border-radius: 3px;
  padding: 40px;
  box-shadow: 0 9px 52px 0 rgba(62, 84, 163, 0.14);
  position: relative;
  z-index: 1;
}

.mcd .enroll_price_big {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  color: #3E54A3;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.mcd .enroll_price_note {
  font-size: 16px;
  color: #5a5a7a;
  margin-bottom: 24px;
  line-height: 1.6;
}

.mcd .enroll_meta_list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.mcd .enroll_meta_list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #E6E3F1;
  font-size: 16px;
  color: #2a2a45;
  line-height: 1.4;
}

.mcd .enroll_meta_list li:last-child {
  border-bottom: none;
}

.mcd .enroll_meta_list svg {
  color: #3E54A3;
  flex-shrink: 0;
}

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

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

.mcd .field_lbl {
  font-size: 16px;
  font-weight: 600;
  color: #2a2a45;
}

.mcd .field_inp {
  border: 1px solid #AEA6D1;
  border-radius: 3px;
  padding: 16px;
  font-size: 16px;
  color: #2a2a45;
  background: #f9f5ff;
  transition: border-color 0.18s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s cubic-bezier(0.4,0,0.2,1);
  width: 100%;
  box-sizing: border-box;
}

.mcd .field_inp::placeholder {
  color: rgba(42, 42, 69, 0.4);
}

.mcd .field_inp:focus {
  outline: none;
  border-color: #3E54A3;
  box-shadow: 0 0 0 3px rgba(62, 84, 163, 0.10), inset 0 4px 8px 0 rgba(62, 84, 163, 0.06);
}

.mcd .btn_enroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #3E54A3;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px 0 rgba(62, 84, 163, 0.10);
  transition: background 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.15s cubic-bezier(0.4,0,0.2,1);
  width: 100%;
  position: relative;
}

.mcd .btn_enroll:hover {
  background: #2a3a8a;
  box-shadow: 0 9px 52px 0 rgba(62, 84, 163, 0.14);
  transform: translateY(-2px);
}

.mcd .btn_enroll:active {
  background: #E6E3F1;
  color: #3E54A3;
  transform: translateY(0);
}

.mcd .btn_enroll:focus {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.mcd .btn_enroll .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #ffffff;
  border-radius: 40px;
  animation: spin 0.7s linear infinite;
}

.mcd .btn_enroll.loading .spinner {
  display: block;
}

.mcd .btn_enroll.loading .btn_txt {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.mcd .desc_deco_circle {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  bottom: -80px;
  right: -80px;
  pointer-events: none;
  transform: rotate(20deg);
}

.mcd .desc_deco_circle2 {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  top: 40px;
  left: -40px;
  pointer-events: none;
  transform: rotate(-12deg);
}


@media (max-width: 900px) {
  .mcd .title_blk {
    grid-template-columns: 1fr;
  }
  .mcd .title_img_col {
    min-height: 280px;
    order: -1;
  }
  .mcd .title_text_col {
    padding: 40px 24px 40px 24px;
  }
  .mcd .title_h1 {
    font-size: 32px;
  }
  .mcd .desc_blk_inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mcd .stats_strip {
    grid-template-columns: 1fr;
  }
  .mcd .prog_blk {
    padding: 40px 24px;
  }
  .mcd .desc_blk {
    padding: 40px 24px;
  }
}

@media (max-width: 600px) {
  .mcd .title_h1 {
    font-size: 24px;
  }
  .mcd .price_val,
  .mcd .enroll_price_big {
    font-size: 32px;
  }
  .mcd .prog_h2,
  .mcd .desc_h2 {
    font-size: 24px;
  }
  .mcd .meta_chips {
    flex-direction: column;
  }
  .mcd .enroll_card {
    padding: 24px 16px;
  }
}

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

.mstrcls .pg_top {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  padding: 80px 40px 0 40px;
  position: relative;
}

.mstrcls .pg_top_text {
  flex: 1 1 0;
  padding: 40px 40px 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.mstrcls .pg_top_strip {
  width: 260px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 3px 3px 0 0;
}

.mstrcls .pg_top_strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.85);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.mstrcls .pg_top_strip:hover img {
  transform: scale(1.04);
}

.mstrcls .strip_overlay {
  position: absolute;
  inset: 0;
  background: rgba(62, 84, 163, 0.38);
  pointer-events: none;
}

.mstrcls .overline_label {
  display: block;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #3E54A3;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
  border-top: 2px solid #AEA6D1;
  padding-top: 8px;
  width: fit-content;
}

.mstrcls .pg_top_h1 {
  font-size: 62px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1b2245;
  font-weight: 800;
  margin: 0;
}

.mstrcls .pg_top_h1 .accent_word {
  color: #3E54A3;
}

.mstrcls .pg_top_desc {
  font-size: 18px;
  line-height: 1.6;
  color: #3a3a4a;
  max-width: 520px;
  margin: 0;
}

.mstrcls .pg_top_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #3E54A3;
  border-radius: 40px;
  padding: 16px 40px;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
  transition: background 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.18s cubic-bezier(0.4,0,0.2,1);
}

.mstrcls .pg_top_link:hover {
  background: #2d3f82;
  box-shadow: 0 9px 52px 0 rgba(62,84,163,0.14);
}

.mstrcls .wave_divider {
  width: 100%;
  display: block;
  line-height: 0;
}

.mstrcls .wave_divider svg {
  display: block;
  width: 100%;
}

.mstrcls .monogram_div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  margin: 40px 0;
}

.mstrcls .monogram_div::before,
.mstrcls .monogram_div::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #AEA6D1;
  opacity: 0.5;
}

.mstrcls .monogram_sym {
  font-size: 32px;
  font-weight: 800;
  color: #3E54A3;
  letter-spacing: -0.03em;
  line-height: 1.15;
  border: 2px solid #AEA6D1;
  border-radius: 40px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
}

.mstrcls .cards_area {
  padding: 0 40px 80px 40px;
  position: relative;
}

.mstrcls .cards_area_bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, #E6E3F1 0%, #fff 80%);
  z-index: 0;
  pointer-events: none;
}

.mstrcls .cards_area_inner {
  position: relative;
  z-index: 1;
}

.mstrcls .cards_area_head {
  text-align: center;
  margin-bottom: 40px;
}

.mstrcls .cards_area_head .overline_label {
  margin: 0 auto 16px auto;
}

.mstrcls .cards_area_h2 {
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1b2245;
  font-weight: 800;
  margin: 0;
}

.mstrcls .cards_area_h2 .accent_word {
  color: #3E54A3;
}

.mstrcls .card_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mstrcls .mc_card {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s cubic-bezier(0.4,0,0.2,1), transform 0.2s cubic-bezier(0.4,0,0.2,1);
}

.mstrcls .mc_card:hover {
  box-shadow: 0 9px 52px 0 rgba(62,84,163,0.14);
  transform: translateY(-3px);
}

.mstrcls .mc_card_img_wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.mstrcls .mc_card_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.mstrcls .mc_card:hover .mc_card_img_wrap img {
  transform: scale(1.05);
}

.mstrcls .mc_card_img_overlay {
  position: absolute;
  inset: 0;
  background: rgba(62, 84, 163, 0.18);
  pointer-events: none;
}

.mstrcls .mc_card_badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #3E54A3;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 40px;
  padding: 8px 16px;
  line-height: 1.4;
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
}

.mstrcls .mc_card_body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.mstrcls .mc_card_meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.mstrcls .meta_pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #3E54A3;
  background: #E6E3F1;
  border-radius: 40px;
  padding: 8px 16px;
  line-height: 1.4;
  font-weight: 600;
}

.mstrcls .meta_pill svg {
  flex-shrink: 0;
}

.mstrcls .mc_card_h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #1b2245;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.mstrcls .mc_card_desc {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a4a;
  margin: 0;
}

.mstrcls .mc_card_details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.mstrcls .detail_item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #555570;
  line-height: 1.4;
}

.mstrcls .detail_sep {
  width: 4px;
  height: 4px;
  border-radius: 40px;
  background: #AEA6D1;
  display: inline-block;
}

.mstrcls .mc_card_stats {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid #E6E3F1;
}

.mstrcls .stat_item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #555570;
  line-height: 1.4;
}

.mstrcls .mc_card_foot {
  padding: 0 24px 24px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mstrcls .price_block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mstrcls .price_val {
  font-size: 24px;
  font-weight: 800;
  color: #3E54A3;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.mstrcls .price_note {
  font-size: 16px;
  color: #888;
  line-height: 1.4;
}

.mstrcls .seats_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #3E54A3;
  background: #E6E3F1;
  border-radius: 3px;
  padding: 8px 16px;
  line-height: 1.4;
}

.mstrcls .card_cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #3E54A3;
  border-radius: 40px;
  padding: 16px 24px;
  text-decoration: none;
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
  transition: background 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.18s cubic-bezier(0.4,0,0.2,1);
}

.mstrcls .card_cta:hover {
  background: #2d3f82;
  box-shadow: 0 9px 52px 0 rgba(62,84,163,0.14);
}

.mstrcls .process_area {
  padding: 80px 40px;
  background: #1b2245;
  position: relative;
  overflow: hidden;
}

.mstrcls .process_blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.mstrcls .process_blob {
  position: absolute;
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  opacity: 0.07;
  background: #AEA6D1;
}

.mstrcls .process_blob.b1 {
  width: 380px;
  height: 320px;
  top: -60px;
  left: -80px;
}

.mstrcls .process_blob.b2 {
  width: 260px;
  height: 220px;
  bottom: -40px;
  right: 80px;
}

.mstrcls .process_inner {
  position: relative;
  z-index: 1;
}

.mstrcls .process_head {
  margin-bottom: 40px;
}

.mstrcls .process_head .overline_label {
  color: #AEA6D1;
  border-top-color: #AEA6D1;
}

.mstrcls .process_h2 {
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  font-weight: 800;
  margin: 0;
}

.mstrcls .process_h2 .accent_word {
  color: #AEA6D1;
}

.mstrcls .before_after {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: stretch;
}

.mstrcls .ba_step {
  flex: 1;
  background: rgba(174,166,209,0.08);
  border-radius: 3px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(174,166,209,0.18);
  box-shadow: 0 1px 4px 0 rgba(174,166,209,0.06);
  transition: border-color 0.2s cubic-bezier(0.4,0,0.2,1);
}

.mstrcls .ba_step:hover {
  border-color: rgba(174,166,209,0.45);
}

.mstrcls .ba_num {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  background: #3E54A3;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
}

.mstrcls .ba_step_label {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AEA6D1;
  font-weight: 600;
  line-height: 1.4;
}

.mstrcls .ba_step_h4 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

.mstrcls .ba_step_desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.mstrcls .ba_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #AEA6D1;
}

.mstrcls .contact_area {
  padding: 80px 40px;
  background: #E6E3F1;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
}

.mstrcls .contact_text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mstrcls .contact_h2 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1b2245;
  font-weight: 800;
  margin: 0;
}

.mstrcls .contact_h2 .accent_word {
  color: #3E54A3;
}

.mstrcls .contact_desc {
  font-size: 18px;
  line-height: 1.6;
  color: #3a3a4a;
  margin: 0;
}

.mstrcls .contact_form_wrap {
  flex: 1 1 0;
}

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

.mstrcls .form_row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.mstrcls .form_field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.mstrcls .form_label {
  font-size: 16px;
  font-weight: 600;
  color: #1b2245;
  line-height: 1.4;
}

.mstrcls .form_input {
  font-size: 16px;
  line-height: 1.4;
  color: #1b2245;
  background: #fff;
  border: 1.5px solid #AEA6D1;
  border-radius: 3px;
  padding: 16px;
  outline: none;
  box-shadow: inset 0 4px 8px 0 rgba(62,84,163,0.04);
  transition: border-color 0.18s cubic-bezier(0.4,0,0.2,1), box-shadow 0.18s cubic-bezier(0.4,0,0.2,1);
}

.mstrcls .form_input::placeholder {
  color: rgba(27,34,69,0.4);
}

.mstrcls .form_input:focus {
  border-color: #3E54A3;
  box-shadow: inset 0 4px 10px 0 rgba(62,84,163,0.07), 0 0 0 3px rgba(62,84,163,0.08);
}

.mstrcls .form_textarea {
  resize: vertical;
  min-height: 120px;
}

.mstrcls .form_submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #3E54A3;
  border: none;
  border-radius: 40px;
  padding: 16px 40px;
  cursor: pointer;
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
  transition: background 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.22s cubic-bezier(0.4,0,0.2,1);
  width: fit-content;
}

.mstrcls .form_submit:hover {
  background: #2d3f82;
  box-shadow: 0 9px 52px 0 rgba(62,84,163,0.14);
}

.mstrcls .form_submit:active {
  background: #233070;
  box-shadow: inset 0 4px 8px 0 rgba(62,84,163,0.12);
}

.mstrcls .quoted_mark {
  font-size: 72px;
  line-height: 1.15;
  color: #E6E3F1;
  font-weight: 900;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: -16px;
  user-select: none;
  pointer-events: none;
}

.mstrcls .feat_area {
  padding: 80px 40px;
  background: #fff;
}

.mstrcls .feat_cols {
  display: grid;
  grid-template-columns: 1fr 2fr 3fr;
  gap: 40px;
  align-items: start;
}

.mstrcls .feat_col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mstrcls .feat_head {
  margin-bottom: 0;
}

.mstrcls .feat_h2 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #1b2245;
  font-weight: 800;
  margin: 0;
}

.mstrcls .feat_h2 .accent_word {
  color: #3E54A3;
}

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

.mstrcls .feat_num_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.mstrcls .num_circle {
  width: 36px;
  height: 36px;
  border-radius: 40px;
  background: #3E54A3;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
}

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

.mstrcls .num_h5 {
  font-size: 16px;
  font-weight: 700;
  color: #1b2245;
  margin: 0;
  line-height: 1.4;
}

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

.mstrcls .feat_highlight {
  background: #E6E3F1;
  border-radius: 3px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
}

.mstrcls .feat_hl_h5 {
  font-size: 18px;
  font-weight: 700;
  color: #3E54A3;
  margin: 0;
  line-height: 1.4;
}

.mstrcls .feat_hl_desc {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3a4a;
  margin: 0;
}

.mstrcls .mask_reveal {
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: default;
}

.mstrcls .mask_reveal_inner {
  display: inline-block;
  background: linear-gradient(105deg, #1b2245 0%, #3E54A3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.2s cubic-bezier(0.4,0,0.2,1);
}

.mstrcls .mask_reveal:hover .mask_reveal_inner {
  opacity: 0.7;
}

.mstrcls .anim_overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: rgba(62,84,163,0);
  animation: bg_fade 7s ease-in-out infinite;
}

@keyframes bg_fade {
  0%, 100% { background: rgba(62,84,163,0); }
  50% { background: rgba(62,84,163,0.025); }
}

@media (max-width: 900px) {
  .mstrcls .pg_top {
    flex-direction: column;
    padding: 40px 24px 0 24px;
  }
  .mstrcls .pg_top_strip {
    width: 100%;
    height: 220px;
    border-radius: 3px;
  }
  .mstrcls .pg_top_text {
    padding: 24px 0 40px 0;
  }
  .mstrcls .pg_top_h1 {
    font-size: 44px;
  }
  .mstrcls .card_grid {
    grid-template-columns: 1fr;
  }
  .mstrcls .cards_area {
    padding: 0 24px 40px 24px;
  }
  .mstrcls .before_after {
    flex-direction: column;
  }
  .mstrcls .ba_arrow {
    transform: rotate(90deg);
  }
  .mstrcls .process_area {
    padding: 40px 24px;
  }
  .mstrcls .contact_area {
    flex-direction: column;
    padding: 40px 24px;
    gap: 40px;
  }
  .mstrcls .feat_cols {
    grid-template-columns: 1fr;
  }
  .mstrcls .feat_area {
    padding: 40px 24px;
  }
  .mstrcls .monogram_div {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .mstrcls .pg_top_h1 {
    font-size: 32px;
  }
  .mstrcls .cards_area_h2 {
    font-size: 32px;
  }
  .mstrcls .process_h2 {
    font-size: 32px;
  }
  .mstrcls .form_row {
    flex-direction: column;
  }
  .mstrcls .mc_card_foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ab-us {
    max-width: 100%;
    overflow-x: hidden;
}

.ab-us .pg-wrap {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 24px;
}

.ab-us .overline {
    display: block;
    font-size: 16px;
    letter-spacing: 0.12em;
    color: #3E54A3;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.ab-us .grad-word {
    background: linear-gradient(135deg, #2a3a8a 0%, #3E54A3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.ab-us .hero-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    padding: 80px 0 80px;
    position: relative;
}

.ab-us .hero-main {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.ab-us .hero-sidebar {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ab-us .hero-h1 {
    font-size: 62px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1b2340;
    margin: 0 0 24px;
}

.ab-us .hero-lead {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3a4a;
    margin: 0 0 40px;
    max-width: 480px;
}

.ab-us .dot-path {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.ab-us .dot-path .dp-dot {
    width: 8px;
    height: 8px;
    border-radius: 40px;
    background: #3E54A3;
    flex-shrink: 0;
}

.ab-us .dot-path .dp-dot.sm {
    width: 5px;
    height: 5px;
    background: #AEA6D1;
}

.ab-us .dot-path .dp-dot.xs {
    width: 3px;
    height: 3px;
    background: #E6E3F1;
}

.ab-us .hero-stat-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

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

.ab-us .h-stat-num {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #3E54A3;
    font-weight: 700;
}

.ab-us .h-stat-label {
    font-size: 16px;
    line-height: 1.4;
    color: #5a5a6e;
}

.ab-us .hero-img-card {
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
    flex: 0 0 220px;
    position: relative;
    cursor: pointer;
}

.ab-us .hero-img-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: blur(2px);
    transition: filter 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.ab-us .hero-img-card:hover img {
    filter: blur(0px);
    transform: scale(1.04);
}

.ab-us .hero-sidebar-card {
    background: #E6E3F1;
    border-radius: 3px;
    padding: 24px;
    box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
}

.ab-us .sidebar-card-label {
    font-size: 16px;
    color: #3E54A3;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.ab-us .sidebar-card-text {
    font-size: 16px;
    line-height: 1.6;
    color: #2a2a3a;
    margin: 0;
}

.ab-us .circles-deco {
    position: absolute;
    right: -40px;
    top: 40px;
    width: 220px;
    height: 220px;
    pointer-events: none;
    z-index: 0;
}

.ab-us .circles-deco .c1 {
    position: absolute;
    border-radius: 40px;
    border: 2px solid rgba(174,166,209,0.18);
    width: 180px;
    height: 180px;
    top: 0;
    left: 0;
}

.ab-us .circles-deco .c2 {
    position: absolute;
    border-radius: 40px;
    border: 2px solid rgba(62,84,163,0.10);
    width: 130px;
    height: 130px;
    top: 30px;
    left: 30px;
}

.ab-us .circles-deco .c3 {
    position: absolute;
    border-radius: 40px;
    background: rgba(230,227,241,0.35);
    width: 80px;
    height: 80px;
    top: 60px;
    left: 60px;
}


.ab-us .divider-tri {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -1px;
}

.ab-us .divider-tri svg {
    display: block;
    width: 100%;
}


.ab-us .compare-block {
    background: #1b2340;
    padding: 80px 0;
    position: relative;
}

.ab-us .compare-block .pg-wrap {
    position: relative;
    z-index: 1;
}

.ab-us .moroccan-bg {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='56'%3E%3Cpath d='M28 0 L56 14 L56 42 L28 56 L0 42 L0 14 Z' fill='none' stroke='%23AEA6D1' stroke-width='1'/%3E%3Cpath d='M28 14 L42 21 L42 35 L28 42 L14 35 L14 21 Z' fill='none' stroke='%23AEA6D1' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 56px 56px;
    pointer-events: none;
}

.ab-us .compare-heading {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 8px;
}

.ab-us .compare-sub {
    font-size: 18px;
    line-height: 1.6;
    color: #AEA6D1;
    margin: 0 0 40px;
    max-width: 520px;
}

.ab-us .compare-overline {
    display: block;
    font-size: 16px;
    letter-spacing: 0.12em;
    color: #AEA6D1;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.ab-us .compare-cards {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
}

.ab-us .cmp-card {
    flex: 1 1 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(174,166,209,0.18);
    border-radius: 3px;
    padding: 40px;
    box-shadow: 0 9px 52px 0 rgba(62,84,163,0.14);
    transition: background 0.2s cubic-bezier(0.4,0,0.2,1), border-color 0.2s cubic-bezier(0.4,0,0.2,1);
}

.ab-us .cmp-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(174,166,209,0.35);
}

.ab-us .cmp-card.featured {
    background: rgba(62,84,163,0.22);
    border-color: rgba(174,166,209,0.40);
}

.ab-us .cmp-card-label {
    font-size: 16px;
    color: #AEA6D1;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.ab-us .cmp-card-title {
    font-size: 24px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0 0 24px;
}

.ab-us .cmp-feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ab-us .cmp-feat-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #d4d0e8;
}

.ab-us .feat-num {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 40px;
    background: #3E54A3;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
}

.ab-us .cmp-feat-list li .feat-dot {
    width: 8px;
    height: 8px;
    border-radius: 40px;
    background: #AEA6D1;
    flex-shrink: 0;
    margin-top: 8px;
}


.ab-us .team-block {
    background: #f4f3f9;
    padding: 80px 0;
}

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

.ab-us .team-left {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ab-us .team-right {
    flex: 1 1 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ab-us .team-heading {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1b2340;
    margin: 0 0 16px;
}

.ab-us .team-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a4a;
    margin: 0;
}

.ab-us .person-card {
    background: #ffffff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
    transition: box-shadow 0.2s cubic-bezier(0.0,0,0.2,1), transform 0.18s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
}

.ab-us .person-card:hover {
    box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
    transform: rotate(1deg);
}

.ab-us .person-img-wrap {
    overflow: hidden;
    height: 180px;
}

.ab-us .person-img-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    filter: blur(2px);
    transition: filter 0.25s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.ab-us .person-card:hover .person-img-wrap img {
    filter: blur(0px);
    transform: scale(1.05);
}

.ab-us .person-info {
    padding: 16px;
}

.ab-us .person-name {
    font-size: 18px;
    line-height: 1.4;
    color: #1b2340;
    margin: 0 0 8px;
    font-weight: 600;
}

.ab-us .person-role {
    font-size: 16px;
    line-height: 1.4;
    color: #3E54A3;
    margin: 0 0 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ab-us .person-role .role-dot {
    width: 6px;
    height: 6px;
    border-radius: 40px;
    background: #3E54A3;
    flex-shrink: 0;
}

.ab-us .person-bio {
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a6e;
    margin: 0;
}

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

.ab-us .val-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #E6E3F1;
    border-radius: 3px;
    transition: background 0.2s cubic-bezier(0.4,0,0.2,1);
}

.ab-us .val-item:hover {
    background: #d6d2ea;
}

.ab-us .val-icon {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #3E54A3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.18s cubic-bezier(0.4,0,0.2,1);
}

.ab-us .val-item:hover .val-icon {
    transform: rotate(6deg);
}

.ab-us .val-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ab-us .val-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ab-us .val-label {
    font-size: 16px;
    font-weight: 600;
    color: #1b2340;
    margin: 0;
}

.ab-us .val-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a4a;
    margin: 0;
}

.ab-us .divider-tri-inv {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.ab-us .divider-tri-inv svg {
    display: block;
    width: 100%;
}


.ab-us .flip-area {
    perspective: 800px;
    height: 100%;
}

.ab-us .flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
    transform-style: preserve-3d;
}

.ab-us .flip-area:hover .flip-inner {
    transform: rotateY(180deg);
}

.ab-us .flip-front,
.ab-us .flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
}

.ab-us .flip-back {
    transform: rotateY(180deg);
    background: #3E54A3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    gap: 16px;
}

.ab-us .flip-back-text {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    text-align: center;
    margin: 0;
}

.ab-us .flip-back-tag {
    font-size: 16px;
    color: #E6E3F1;
    font-weight: 600;
    text-align: center;
}


@media (max-width: 900px) {
    .ab-us .hero-row {
        flex-direction: column;
        padding: 40px 0;
    }

    .ab-us .hero-main {
        padding-right: 0;
    }

    .ab-us .hero-sidebar {
        flex: 0 0 auto;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .ab-us .hero-img-card {
        flex: 1 1 180px;
    }

    .ab-us .hero-sidebar-card {
        flex: 1 1 220px;
    }

    .ab-us .hero-h1 {
        font-size: 44px;
    }

    .ab-us .compare-cards {
        flex-direction: column;
    }

    .ab-us .team-row {
        flex-direction: column;
    }

    .ab-us .team-left {
        flex: 0 0 auto;
        width: 100%;
    }

    .ab-us .compare-heading {
        font-size: 32px;
    }

    .ab-us .team-heading {
        font-size: 32px;
    }

    .ab-us .circles-deco {
        display: none;
    }
}

@media (max-width: 600px) {
    .ab-us .hero-h1 {
        font-size: 32px;
    }

    .ab-us .hero-stat-row {
        flex-direction: column;
        gap: 16px;
    }

    .ab-us .h-stat-num {
        font-size: 32px;
    }

    .ab-us .team-right {
        grid-template-columns: 1fr;
    }

    .ab-us .compare-heading {
        font-size: 24px;
    }

    .ab-us .team-heading {
        font-size: 24px;
    }

    .ab-us .compare-block {
        padding: 40px 0;
    }

    .ab-us .team-block {
        padding: 40px 0;
    }
}

@media (max-width: 1200px) {
    .ab-us .hero-sidebar {
        flex: 0 0 280px;
    }
}

.ctus {
  max-width: 1366px;
  margin: 0 auto;
  overflow-x: clip;
}

.ctus .elastic-in {
  animation: elasticIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes elasticIn {
  0% { opacity: 0; transform: translateY(24px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.ctus .reach_panel {
  background: linear-gradient(158deg, #1a2560 0%, #3E54A3 100%);
  padding: 80px 40px;
  position: relative;
}

.ctus .reach_panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(174,166,209,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.ctus .reach_col {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.ctus .reach_overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #AEA6D1;
  margin-bottom: 16px;
  font-weight: 500;
}

.ctus .reach_h1 {
  font-size: 62px;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.ctus .reach_h1 .grad_word {
  background: linear-gradient(135deg, #AEA6D1 0%, #E6E3F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ctus .reach_sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(230,227,241,0.82);
  margin: 0 0 40px 0;
}

.ctus .bracket_box {
  display: inline-block;
  position: relative;
  padding: 16px 24px;
}

.ctus .bracket_box::before,
.ctus .bracket_box::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #AEA6D1;
  border-style: solid;
}

.ctus .bracket_box::before {
  top: 0; left: 0;
  border-width: 2px 0 0 2px;
}

.ctus .bracket_box::after {
  bottom: 0; right: 0;
  border-width: 0 2px 2px 0;
}

.ctus .reach_meta {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
}

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

.ctus .reach_meta_label {
  font-size: 16px;
  color: rgba(230,227,241,0.6);
  letter-spacing: 0.04em;
}

.ctus .reach_meta_val {
  font-size: 18px;
  color: #E6E3F1;
  font-weight: 600;
}

.ctus .reach_meta_val a {
  color: #E6E3F1;
  text-decoration: none;
  border-bottom: 1px solid rgba(174,166,209,0.4);
  transition: border-color 0.2s cubic-bezier(0.4,0,0.2,1), color 0.2s cubic-bezier(0.4,0,0.2,1);
}

.ctus .reach_meta_val a:hover {
  color: #ffffff;
  border-color: #AEA6D1;
}

.ctus .form_strip {
  background: #ffffff;
  padding: 80px 40px;
}

.ctus .form_col {
  max-width: 640px;
  margin: 0 auto;
}

.ctus .form_overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #3E54A3;
  margin-bottom: 16px;
  font-weight: 600;
}

.ctus .form_h2 {
  font-size: 32px;
  line-height: 1.15;
  color: #1e2a52;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.ctus .form_h2 .marker_word {
  background: linear-gradient(180deg, transparent 55%, rgba(174,166,209,0.55) 55%);
  padding: 0 4px;
}

.ctus .form_desc {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5070;
  margin: 0 0 40px 0;
}

.ctus .field_row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 16px;
}

.ctus .field_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ctus .field_group.full {
  flex: 1 1 100%;
}

.ctus .f_label {
  font-size: 16px;
  color: #1e2a52;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ctus .f_input {
  border: 1.5px solid #d0cce8;
  border-radius: 3px;
  padding: 16px;
  font-size: 16px;
  color: #1e2a52;
  background: #f7f6fc;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.0,0,0.2,1);
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
  outline: none;
}

.ctus .f_input::placeholder {
  color: rgba(30,42,82,0.4);
}

.ctus .f_input:focus {
  border-color: #3E54A3;
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
  background: #ffffff;
}

.ctus .f_select {
  border: 1.5px solid #d0cce8;
  border-radius: 3px;
  padding: 16px;
  font-size: 16px;
  color: #1e2a52;
  background: #f7f6fc;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.0,0,0.2,1);
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
  outline: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233E54A3' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.ctus .f_select:focus {
  border-color: #3E54A3;
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
  background-color: #ffffff;
}

.ctus .f_textarea {
  border: 1.5px solid #d0cce8;
  border-radius: 3px;
  padding: 16px;
  font-size: 16px;
  color: #1e2a52;
  background: #f7f6fc;
  width: 100%;
  box-sizing: border-box;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.0,0,0.2,1);
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
  outline: none;
}

.ctus .f_textarea::placeholder {
  color: rgba(30,42,82,0.4);
}

.ctus .f_textarea:focus {
  border-color: #3E54A3;
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
  background: #ffffff;
}

.ctus .privacy_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  margin-top: 24px;
}

.ctus .privacy_check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: #3E54A3;
  cursor: pointer;
  margin-top: 2px;
}

.ctus .privacy_text {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5070;
}

.ctus .privacy_text a {
  color: #3E54A3;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s cubic-bezier(0.4,0,0.2,1);
}

.ctus .privacy_text a:hover {
  color: #1e2a52;
}

.ctus .submit_btn {
  background: linear-gradient(135deg, #1a2560 0%, #3E54A3 100%);
  color: #ffffff;
  border: none;
  border-radius: 3px;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: box-shadow 0.22s cubic-bezier(0.4,0,0.2,1), transform 0.18s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
  display: inline-block;
}

.ctus .submit_btn:hover {
  box-shadow: 0 9px 52px 0 rgba(62,84,163,0.14);
  transform: translateY(-2px);
}

.ctus .submit_btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
}

.ctus .submit_btn:focus {
  outline: 2px solid #AEA6D1;
  outline-offset: 3px;
}

.ctus .detail_strip {
  background: #E6E3F1;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.ctus .diag_bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

.ctus .diag_bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 55%;
  height: 100%;
  background: #d8d3ec;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}

.ctus .detail_grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
}

.ctus .detail_img_col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ctus .detail_img_wrap {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 9px 52px 0 rgba(62,84,163,0.14);
  position: relative;
}

.ctus .detail_img_wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}

.ctus .detail_img_wrap:hover img {
  transform: scale(1.04);
}

.ctus .detail_text_col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.ctus .detail_overline {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #3E54A3;
  font-weight: 600;
  margin-bottom: 8px;
}

.ctus .detail_h2 {
  font-size: 32px;
  line-height: 1.15;
  color: #1e2a52;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}

.ctus .detail_body {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3f5c;
  margin: 0;
}

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

.ctus .addr_item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.72);
  border-radius: 3px;
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
  transition: box-shadow 0.2s cubic-bezier(0.4,0,0.2,1), background 0.2s cubic-bezier(0.4,0,0.2,1);
  cursor: default;
}

.ctus .addr_item:hover {
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
  background: rgba(255,255,255,0.95);
}

.ctus .addr_icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, #1a2560 0%, #3E54A3 100%);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctus .addr_icon svg {
  width: 18px;
  height: 18px;
}

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

.ctus .addr_item_label {
  font-size: 16px;
  font-weight: 700;
  color: #1e2a52;
  letter-spacing: 0.02em;
}

.ctus .addr_item_val {
  font-size: 16px;
  color: #3a3f5c;
  line-height: 1.4;
}

.ctus .addr_item_val a {
  color: #3E54A3;
  text-decoration: none;
  border-bottom: 1px solid rgba(62,84,163,0.3);
  transition: border-color 0.18s cubic-bezier(0.4,0,0.2,1), color 0.18s cubic-bezier(0.4,0,0.2,1);
}

.ctus .addr_item_val a:hover {
  color: #1e2a52;
  border-color: #1e2a52;
}

.ctus .time_note {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3f5c;
  background: rgba(255,255,255,0.6);
  border-radius: 3px;
  padding: 16px;
  border-left: 3px solid #3E54A3;
  border-top: 1px solid rgba(62,84,163,0.15);
  box-shadow: inset 0 4px 8px 0 rgba(62,84,163,0.06);
  margin: 0;
}

@media (max-width: 900px) {
  .ctus .reach_h1 {
    font-size: 44px;
  }

  .ctus .detail_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ctus .detail_img_col {
    order: 2;
  }

  .ctus .detail_text_col {
    order: 1;
  }

  .ctus .field_row {
    flex-direction: column;
    gap: 16px;
  }

  .ctus .diag_bg::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 38%, 0 52%);
    height: 100%;
  }
}

@media (max-width: 600px) {
  .ctus .reach_panel {
    padding: 40px 24px;
  }

  .ctus .reach_h1 {
    font-size: 32px;
  }

  .ctus .reach_meta {
    flex-direction: column;
    gap: 16px;
  }

  .ctus .form_strip {
    padding: 40px 24px;
  }

  .ctus .detail_strip {
    padding: 40px 24px;
  }

  .ctus .submit_btn {
    width: 100%;
    text-align: center;
  }
}

.dbt {
  max-width: 100%;
  overflow-x: hidden;
}

.dbt .pg_wrap {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 600px) {
  .dbt .pg_wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 900px) {
  .dbt .pg_wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.dbt .fade_in {
  opacity: 0;
  transform: translateY(18px);
  animation: dbt_rise 0.55s cubic-bezier(0.0,0,0.2,1) forwards;
}

.dbt .fade_in:nth-child(1) { animation-delay: 0.05s; }
.dbt .fade_in:nth-child(2) { animation-delay: 0.18s; }
.dbt .fade_in:nth-child(3) { animation-delay: 0.31s; }
.dbt .fade_in:nth-child(4) { animation-delay: 0.44s; }

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

.dbt .img_load {
  opacity: 0;
  animation: dbt_imgfade 0.7s cubic-bezier(0.4,0,0.2,1) 0.2s forwards;
}

@keyframes dbt_imgfade {
  to { opacity: 1; }
}

.dbt .overline_label {
  display: block;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3E54A3;
  margin-bottom: 8px;
  font-weight: 600;
}

.dbt .accent_line {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(100deg, #3E54A3, #AEA6D1);
  margin-bottom: 16px;
  border-radius: 3px;
}

.dbt .grad_word {
  background: linear-gradient(100deg, #1a2a6c, #3E54A3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.dbt .asym_divider .div_long {
  flex: 5;
  height: 1px;
  background: #3E54A3;
  opacity: 0.22;
}

.dbt .asym_divider .div_short {
  flex: 1;
  height: 1px;
  background: #AEA6D1;
  opacity: 0.4;
}



.dbt .split_band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

@media (max-width: 900px) {
  .dbt .split_band {
    grid-template-columns: 1fr;
  }
}

.dbt .split_text {
  background: #f5f4fa;
  padding: 80px 40px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.dbt .split_text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    -62deg,
    transparent,
    transparent 60px,
    rgba(62,84,163,0.04) 60px,
    rgba(62,84,163,0.04) 61px
  );
}

.dbt .split_text .eyebrow {
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3E54A3;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

.dbt .split_text .band_h1 {
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1b1e3d;
  font-weight: 800;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .dbt .split_text {
    padding: 40px 16px;
  }
  .dbt .split_text .band_h1 {
    font-size: 32px;
  }
}

.dbt .split_img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.dbt .split_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.dbt .split_img:hover img {
  transform: scale(1.04);
}



.dbt .readiness {
  background: #fff;
  padding: 80px 0;
}

.dbt .readiness_grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

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

.dbt .readiness_left .r_h2 {
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #1b1e3d;
  font-weight: 700;
  margin-bottom: 16px;
}

.dbt .readiness_left .r_body {
  font-size: 18px;
  line-height: 1.6;
  color: #3a3d5c;
  margin-bottom: 0;
}

.dbt .readiness_right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.dbt .req_item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 3px;
  background: #f5f4fa;
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
  transition: box-shadow 0.2s cubic-bezier(0.4,0,0.2,1), transform 0.2s cubic-bezier(0.4,0,0.2,1);
}

.dbt .req_item:hover {
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
  transform: translateY(-2px);
}

.dbt .req_num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 40px;
  background: linear-gradient(135deg, #3E54A3, #AEA6D1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.dbt .req_text .req_label {
  font-size: 18px;
  font-weight: 700;
  color: #1b1e3d;
  margin-bottom: 8px;
  display: block;
}

.dbt .req_text .req_desc {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3d5c;
  margin-bottom: 0;
}



.dbt .approach {
  background: #1b2050;
  padding: 80px 0;
  position: relative;
}

.dbt .approach::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(62,84,163,0.18));
}

.dbt .approach_inner {
  position: relative;
}

.dbt .approach_top {
  margin-bottom: 40px;
}

.dbt .approach_top .overline_label {
  color: #AEA6D1;
}

.dbt .approach_top .ap_h2 {
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #f5f4fa;
  font-weight: 800;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .dbt .approach_top .ap_h2 {
    font-size: 32px;
  }
}

.dbt .approach_mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

@media (max-width: 900px) {
  .dbt .approach_mosaic {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .dbt .approach_mosaic {
    grid-template-columns: 1fr;
  }
}

.dbt .ap_img_wrap {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
}

@media (max-width: 900px) {
  .dbt .ap_img_wrap {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
}

.dbt .ap_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 300px;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.dbt .ap_img_wrap:hover img {
  transform: scale(1.05);
}

.dbt .ap_card {
  border-radius: 3px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(174,166,209,0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s cubic-bezier(0.4,0,0.2,1), border-color 0.2s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}

.dbt .ap_card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #3E54A3, #AEA6D1);
  border-radius: 3px 0 0 3px;
}

.dbt .ap_card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(174,166,209,0.35);
}

.dbt .ap_card .ap_card_h {
  font-size: 18px;
  font-weight: 700;
  color: #f5f4fa;
  margin-bottom: 0;
}

.dbt .ap_card .ap_card_p {
  font-size: 16px;
  line-height: 1.6;
  color: #AEA6D1;
  margin-bottom: 0;
}

.dbt .ap_img2_wrap {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
}

.dbt .ap_img2_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1);
}

.dbt .ap_img2_wrap:hover img {
  transform: scale(1.05);
}



.dbt .diff {
  background: #E6E3F1;
  padding: 80px 0;
}

.dbt .diff_layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: center;
}

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

.dbt .diff_left .d_h2 {
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #1b1e3d;
  font-weight: 700;
  margin-bottom: 16px;
}

.dbt .diff_left .d_body {
  font-size: 18px;
  line-height: 1.6;
  color: #3a3d5c;
  margin-bottom: 24px;
}

.dbt .diff_pts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

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

.dbt .diff_pt_icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #3E54A3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dbt .diff_pt_icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dbt .diff_pt_body .dp_label {
  font-size: 18px;
  font-weight: 700;
  color: #1b1e3d;
  margin-bottom: 8px;
  display: block;
}

.dbt .diff_pt_body .dp_text {
  font-size: 16px;
  line-height: 1.6;
  color: #3a3d5c;
  margin-bottom: 0;
}

.dbt .diff_right {
  position: relative;
}

.dbt .diff_img_wrap {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 9px 52px 0 rgba(62,84,163,0.14);
  position: relative;
}

.dbt .diff_img_wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}

.dbt .diff_img_wrap:hover img {
  transform: scale(1.04);
}

.dbt .diff_badge {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: #3E54A3;
  color: #fff;
  padding: 16px 24px;
  border-radius: 3px;
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 180px;
}

@media (max-width: 900px) {
  .dbt .diff_badge {
    left: 8px;
    bottom: 16px;
  }
}

.dbt .diff_badge .badge_num {
  font-size: 32px;
  font-weight: 800;
  display: block;
  line-height: 1.15;
}

.dbt .masterclass_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 16px 40px;
  background: #3E54A3;
  color: #fff !important;
  border-radius: 3px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 1px 4px 0 rgba(62,84,163,0.06);
  transition: background 0.18s cubic-bezier(0.4,0,0.2,1), box-shadow 0.18s cubic-bezier(0.4,0,0.2,1);
}

.dbt .masterclass_link:hover {
  background: #2d3f85;
  box-shadow: 0 6px 18px 0 rgba(62,84,163,0.10);
  color: #fff !important;
}

.dbt .masterclass_link:focus {
  outline: 2px solid #3E54A3;
  outline-offset: 3px;
}

.dbt .curtain_group .curtain_item {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.22s cubic-bezier(0.4,0,0.2,1);
}

.dbt .curtain_trigger:hover .curtain_item,
.dbt .curtain_trigger:focus-within .curtain_item {
  max-height: 200px;
  opacity: 1;
}


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

.success_page .success_wrap {
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.success_page .icon_wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 40px;
    border-radius: 40px;
    background: #E6E3F1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px 0 rgba(62, 84, 163, 0.10);
}

.success_page .icon_wrap svg {
    display: block;
}

.success_page .overline_label {
    display: block;
    font-size: 16px;
    letter-spacing: 0.08em;
    color: #3E54A3;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.4;
}

.success_page .success_heading {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1b1e36;
    margin: 0 0 24px;
}

.success_page .success_heading .accent_word {
    background: linear-gradient(120deg, #1b1e36 0%, #3E54A3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success_page .success_text {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3d52;
    margin: 0 0 40px;
}

.success_page .divider_line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #3E54A3 0%, #AEA6D1 100%);
    border-radius: 3px;
    margin: 0 auto 40px;
}

.success_page .info_strip {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.success_page .info_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: #E6E3F1;
    border-radius: 3px;
    min-width: 140px;
    flex: 1;
    box-shadow: 0 1px 4px 0 rgba(62, 84, 163, 0.06);
}

.success_page .info_item svg {
    color: #3E54A3;
    flex-shrink: 0;
}

.success_page .info_item_label {
    font-size: 16px;
    line-height: 1.4;
    color: #3a3d52;
    text-align: center;
}

.success_page .back_link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: #3E54A3;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    border-radius: 3px;
    text-decoration: none;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 18px 0 rgba(62, 84, 163, 0.10);
    transition: background-color 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.0,0,0.2,1);
}

.success_page .back_link:hover {
    background: #2e4090;
    box-shadow: 0 9px 52px 0 rgba(62, 84, 163, 0.14);
}

.success_page .back_link:focus {
    outline: 2px solid #3E54A3;
    outline-offset: 3px;
}

.success_page .back_link:active {
    background: #253680;
    box-shadow: 0 1px 4px 0 rgba(62, 84, 163, 0.06);
}

.success_page .back_link svg {
    transition: transform 0.15s cubic-bezier(0.4,0,0.2,1);
}

.success_page .back_link:hover svg {
    transform: translateX(-3px);
}

@media (max-width: 600px) {
    .success_page {
        padding: 40px 16px;
    }

    .success_page .success_heading {
        font-size: 32px;
    }

    .success_page .info_strip {
        flex-direction: column;
        gap: 16px;
    }

    .success_page .info_item {
        min-width: unset;
    }

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