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

body {
  margin: 0;
  padding: 0;
}

.topbar {
  background: #001375;
  padding: 8px 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

.topbar-address {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(237, 240, 243, 0.82);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-address svg {
  flex-shrink: 0;
}

.topbar-phone {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #4EB9E4;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.1s ease-out;
}

.topbar-phone:focus {
  outline: none;
  border-bottom: 4px solid #4EB9E4;
}

.topbar-phone:hover {
  color: #EDF0F3;
}

.headerwrap {
  background: linear-gradient(135deg, #EDF0F3 0%, rgba(78, 185, 228, 0.08) 60%, rgba(0, 19, 117, 0.04) 100%);
  border-bottom: 2px solid rgba(0, 19, 117, 0.12);
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
  position: relative;
}

.headerwrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg,
      transparent,
      transparent 30px,
      rgba(0, 19, 117, 0.025) 30px,
      rgba(0, 19, 117, 0.025) 31px);
  pointer-events: none;
}

.headerinner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 32px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  order: 2;
}

.logoframe {
  width: 44px;
  height: 56px;
  border: 2px dashed #001375;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #ffffff;
  box-shadow: 2px 1px 3px -2px rgba(0, 19, 117, 0.06), 0 0 0 3px rgba(78, 185, 228, 0.18);
  flex-shrink: 0;
}

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

.brandname {
  font-family: 'Karla', sans-serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #001375;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brandname:focus {
  outline: none;
  border-bottom: 4px solid #001375;
}

.headerdivider {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(0, 19, 117, 0.2), transparent);
  flex-shrink: 0;
  order: 1;
}

.mainnav {
  order: 0;
  flex: 1;
}

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

.navlist li {
  display: block;
}

.navlink {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #001375;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 8px 16px;
  border-radius: 4px;
  border: 2px solid transparent;
  display: block;
  position: relative;
  transition: color 0.12s ease-out, border-color 0.1s ease-out, background 0.1s ease-out;
}

.navlink:hover {
  color: #001375;
  background: rgba(78, 185, 228, 0.15);
  border-color: rgba(78, 185, 228, 0.4);
}

.navlink:focus {
  outline: none;
  border-bottom: 4px solid #001375;
}

.navlink.active {
  color: #4EB9E4;
  border-color: rgba(78, 185, 228, 0.5);
  background: rgba(78, 185, 228, 0.08);
}

.footerwrap {
  background: linear-gradient(160deg, rgba(0, 19, 117, 0.92) 0%, rgba(0, 19, 117, 0.97) 50%, rgba(0, 8, 60, 0.98) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(78, 185, 228, 0.25);
  box-shadow: 2px 10px 36px -2px rgba(0, 19, 117, 0.12) inset;
  position: relative;
  overflow: hidden;
}

.footerwrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 185, 228, 0.6), transparent);
  pointer-events: none;
}

.footerwrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg,
      transparent,
      transparent 60px,
      rgba(78, 185, 228, 0.02) 60px,
      rgba(78, 185, 228, 0.02) 61px);
  pointer-events: none;
}

.footertop {
  max-width: 1500px;
  margin: 0 auto;
  padding: 56px 56px 32px;
  border-bottom: 1px solid rgba(78, 185, 228, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerbrand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.footerbrand:focus {
  outline: none;
  border-bottom: 4px solid #4EB9E4;
}

.footerlogoframe {
  width: 56px;
  height: 72px;
  border: 2px dashed rgba(78, 185, 228, 0.6);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 2px 1px 3px -2px rgba(78, 185, 228, 0.06), 0 0 0 3px rgba(78, 185, 228, 0.1);
}

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

.footerbrandname {
  font-family: 'Karla', sans-serif;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #EDF0F3;
  letter-spacing: 0.02em;
}

.footerbody {
  max-width: 1500px;
  margin: 0 auto;
  padding: 56px 56px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

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

.footercolhead {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #4EB9E4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(78, 185, 228, 0.2);
}

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

.footerlinks li {
  display: block;
}

.footerlink {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(237, 240, 243, 0.75);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.08s ease-out;
  display: inline-block;
}

.footerlink:hover {
  color: #4EB9E4;
}

.footerlink:focus {
  outline: none;
  border-bottom: 4px solid #4EB9E4;
}

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

.footercontactitem {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(237, 240, 243, 0.75);
  letter-spacing: 0.01em;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footercontactitem svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.footercontactlink {
  color: rgba(237, 240, 243, 0.75);
  text-decoration: none;
  transition: color 0.08s ease-out;
}

.footercontactlink:hover {
  color: #4EB9E4;
}

.footercontactlink:focus {
  outline: none;
  border-bottom: 4px solid #4EB9E4;
}

.footerbottom {
  max-width: 1500px;
  margin: 0 auto;
  padding: 32px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(78, 185, 228, 0.1);
}

.footercopy {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(237, 240, 243, 0.45);
  letter-spacing: 0.01em;
}

.footerlegal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footerlegal li {
  display: block;
}

.footerlegallink {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: rgba(237, 240, 243, 0.45);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.1s ease-out;
}

.footerlegallink:hover {
  color: rgba(237, 240, 243, 0.8);
}

.footerlegallink:focus {
  outline: none;
  border-bottom: 4px solid #4EB9E4;
}

@media (max-width: 900px) {
  .topbar {
    padding: 8px 16px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .headerinner {
    padding: 16px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .mainnav {
    order: 2;
    width: 100%;
  }

  .headerdivider {
    display: none;
  }

  .brandmark {
    order: 1;
  }

  .navlist {
    gap: 8px;
  }

  .footertop {
    padding: 32px 16px;
  }

  .footerbody {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 32px;
  }

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

.terms-text {
  max-width: 1500px;
  margin: 0 auto;
  padding: 56px 32px;
  color: #1a1a2e;
}

.terms-text h1 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #001375;
  margin-bottom: 32px;
  margin-top: 0;
  padding-bottom: 16px;
  border-bottom: 3px solid #4EB9E4;
}

.terms-text h2 {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #001375;
  margin-top: 56px;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid #4EB9E4;
  border-bottom: 1px solid #EDF0F3;
  padding-bottom: 8px;
}

.terms-text h3 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #001375;
  margin-top: 32px;
  margin-bottom: 16px;
}

.terms-text h4 {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #001375;
  margin-top: 32px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.terms-text h5 {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #001375;
  margin-top: 16px;
  margin-bottom: 8px;
}

.terms-text h6 {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #4EB9E4;
  margin-top: 16px;
  margin-bottom: 8px;
}

.terms-text p {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #1a1a2e;
  margin-top: 0;
  margin-bottom: 16px;
  max-width: 72ch;
}

.terms-text ul {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px;
  list-style: none;
}

.terms-text ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 32px;
  list-style: none;
  counter-reset: policy-counter;
}

.terms-text ul li {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #1a1a2e;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
  max-width: 72ch;
}

.terms-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  background-color: #4EB9E4;
  border-radius: 0px;
  transform: rotate(45deg);
}

.terms-text ol li {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #1a1a2e;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
  max-width: 72ch;
  counter-increment: policy-counter;
}

.terms-text ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: -16px;
  top: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #001375;
  font-weight: 700;
  min-width: 24px;
}

.terms-text em,
.terms-text i {
  font-style: italic;
  color: #001375;
}

.terms-text a {
  color: #001375;
  text-decoration: underline;
  text-decoration-color: #4EB9E4;
  text-underline-offset: 3px;
  transition: color 0.1s ease-out, text-decoration-color 0.08s linear;
}

.terms-text a:hover {
  color: #4EB9E4;
  text-decoration-color: #001375;
}

.terms-text table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6;
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.terms-text thead {
  background-color: #001375;
}

.terms-text thead th {
  color: #EDF0F3;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  padding: 16px;
  text-align: left;
  font-weight: 700;
  border: none;
}

.terms-text tbody tr {
  border-bottom: 1px solid #EDF0F3;
  transition: background-color 0.1s ease-out;
}

.terms-text tbody tr:nth-child(even) {
  background-color: rgba(237, 240, 243, 0.5);
}

.terms-text tbody tr:hover {
  background-color: rgba(78, 185, 228, 0.08);
}

.terms-text td {
  padding: 16px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #1a1a2e;
  vertical-align: top;
  border: none;
}

.terms-text th {
  padding: 16px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  vertical-align: top;
}

.terms-text div {
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .terms-text {
    padding: 32px 16px;
  }

  .terms-text h1 {
    font-size: 32px;
  }

  .terms-text h2 {
    font-size: 24px;
    margin-top: 32px;
  }

  .terms-text h3 {
    font-size: 19px;
  }

  .terms-text table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .terms-text p,
  .terms-text ul li,
  .terms-text ol li {
    max-width: 100%;
  }
}

.lpdet {
  background: #fff;
  color: #0a1a3a;
  overflow-x: clip;
  position: relative;
}

.lpdet .topband {
  background: linear-gradient(112deg, #001375 0%, #001375 55%, #4EB9E4 100%);
  padding: 96px 56px 56px;
  position: relative;
  overflow: hidden;
}

.lpdet .topband::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('{{image_src}}') center / cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.lpdet .topband::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 56px;
  background: #EDF0F3;
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}

.lpdet .strokes {
  position: absolute;
  top: 32px;
  right: 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.lpdet .strokes span {
  display: block;
  height: 2px;
  background: rgba(78, 185, 228, 0.45);
  border-radius: 0px;
}

.lpdet .strokes span:nth-child(1) {
  width: 32px;
}

.lpdet .strokes span:nth-child(2) {
  width: 56px;
}

.lpdet .strokes span:nth-child(3) {
  width: 24px;
}

.lpdet .strokes span:nth-child(4) {
  width: 44px;
}

.lpdet .strokes span:nth-child(5) {
  width: 16px;
}

.lpdet .topinner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lpdet .metarow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lpdet .catbadge {
  background: rgba(78, 185, 228, 0.22);
  color: #4EB9E4;
  border: 1px solid rgba(78, 185, 228, 0.5);
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.lpdet .userbadge {
  background: rgba(255, 255, 255, 0.1);
  color: #EDF0F3;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  padding: 8px 16px;
}

.lpdet .readbadge {
  color: rgba(237, 240, 243, 0.65);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  padding: 8px 0;
}

.lpdet .titledecline {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
}

.lpdet .accentbar {
  width: 4px;
  border-radius: 0px;
  background: linear-gradient(180deg, #4EB9E4 0%, rgba(78, 185, 228, 0) 100%);
  flex-shrink: 0;
}

.lpdet .maintitle {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #fff;
  font-weight: 900;
  margin: 0;
}

.lpdet .statsrow {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
}

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

.lpdet .statpill .statlabel {
  font-size: 16px;
  line-height: 1.3;
  color: rgba(237, 240, 243, 0.6);
  letter-spacing: 0.02em;
}

.lpdet .statpill .statval {
  font-size: 24px;
  line-height: 1.1;
  color: #4EB9E4;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lpdet .likechip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 8px 16px;
  align-self: flex-start;
  margin-top: 8px;
}

.lpdet .likechip svg {
  width: 18px;
  height: 18px;
  fill: #4EB9E4;
  flex-shrink: 0;
}

.lpdet .likechip .likenum {
  font-size: 16px;
  line-height: 1.3;
  color: #EDF0F3;
  letter-spacing: 0.01em;
}

.lpdet .bodywrap {
  background: #EDF0F3;
  padding: 56px 56px 96px;
  position: relative;
}

.lpdet .bodygrid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.lpdet .leftcol {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.lpdet .imgframe {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 10px 36px -2px rgba(0, 19, 117, 0.12);
}

.lpdet .imgframe img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.lpdet .imgframe .doubletex {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(200deg, rgba(0, 19, 117, 0.18) 0%, transparent 60%, rgba(78, 185, 228, 0.12) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

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

.lpdet .seclabel {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #001375;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid #4EB9E4;
  padding-bottom: 8px;
  display: inline-block;
}

.lpdet .descblock p {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #1a2a4a;
  margin: 0;
  text-indent: -1.2em;
  padding-left: 1.2em;
}

.lpdet .descblock h2 {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 900;
  margin: 0;
}

.lpdet .descblock h3 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 700;
  margin: 0;
}

.lpdet .descblock ul,
.lpdet .descblock ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lpdet .descblock ul li,
.lpdet .descblock ol li {
  display: inline-flex;
  background: rgba(0, 19, 117, 0.07);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #001375;
  letter-spacing: 0.01em;
}

.lpdet .descblock blockquote {
  border-top: 2px solid #4EB9E4;
  border-bottom: 2px solid #4EB9E4;
  padding: 16px 32px;
  margin: 0;
  font-size: 19px;
  line-height: 1.6;
  color: #001375;
  font-style: italic;
  letter-spacing: 0.01em;
}

.lpdet .descblock cite {
  font-size: 16px;
  color: rgba(0, 19, 117, 0.6);
  font-style: normal;
}

.lpdet .descblock figure {
  margin: 0;
}

.lpdet .descblock figcaption {
  font-size: 16px;
  color: rgba(0, 19, 117, 0.6);
  line-height: 1.3;
  padding-top: 8px;
}

.lpdet .descblock details {
  background: rgba(0, 19, 117, 0.04);
  border-radius: 4px;
  padding: 16px;
}

.lpdet .descblock summary {
  font-size: 19px;
  font-weight: 700;
  color: #001375;
  cursor: pointer;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

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

.lpdet .progblock p {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #1a2a4a;
  margin: 0;
}

.lpdet .progblock h2 {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 900;
  margin: 0;
}

.lpdet .progblock h3 {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 700;
  margin: 0;
}

.lpdet .progblock strong {
  color: #001375;
  font-weight: 800;
}

.lpdet .progblock ul,
.lpdet .progblock ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lpdet .progblock ul li,
.lpdet .progblock ol li {
  display: inline-flex;
  background: rgba(78, 185, 228, 0.12);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #001375;
  letter-spacing: 0.01em;
  border: 1px solid rgba(78, 185, 228, 0.25);
}

.lpdet .progblock dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.lpdet .progblock dt {
  font-size: 16px;
  font-weight: 700;
  color: #001375;
  letter-spacing: 0.02em;
}

.lpdet .progblock dd {
  font-size: 16px;
  line-height: 1.6;
  color: #1a2a4a;
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid #4EB9E4;
}

.lpdet .progblock blockquote {
  border-top: 2px solid rgba(0, 19, 117, 0.2);
  padding: 16px 32px;
  margin: 0;
  font-size: 19px;
  line-height: 1.6;
  color: #001375;
  font-style: italic;
}

.lpdet .sidecol {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 32px;
}

.lpdet .pricecard {
  background: #fff;
  border-radius: 4px;
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.12s ease-out, transform 0.1s ease-out;
}

.lpdet .pricecard:hover {
  box-shadow: 2px 10px 36px -2px rgba(0, 19, 117, 0.12);
  transform: translateY(-4px);
}

.lpdet .pricelabel {
  font-size: 16px;
  line-height: 1.3;
  color: rgba(0, 19, 117, 0.6);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lpdet .priceval {
  font-size: 44px;
  line-height: 1.1;
  color: #001375;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.lpdet .seatrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(78, 185, 228, 0.1);
  border-radius: 4px;
}

.lpdet .seatdot {
  width: 10px;
  height: 10px;
  border-radius: 38px;
  background: #4EB9E4;
  flex-shrink: 0;
  animation: seatpulse 2.4s ease-out infinite;
}

@keyframes seatpulse {

  0%,
  100% {
    background: #4EB9E4;
  }

  50% {
    background: #001375;
  }
}

.lpdet .seattxt {
  font-size: 16px;
  line-height: 1.3;
  color: #001375;
  letter-spacing: 0.01em;
}

.lpdet .seattxt strong {
  font-weight: 800;
}

.lpdet .enrollbtn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #001375;
  border: 2px solid #001375;
  border-radius: 4px;
  padding: 16px 32px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.1s ease-out, color 0.1s ease-out;
  position: relative;
  overflow: hidden;
}

.lpdet .enrollbtn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.12s ease-out;
}

.lpdet .enrollbtn:hover {
  background: #001375;
  color: #fff;
}

.lpdet .enrollbtn:hover svg {
  transform: translateX(6px);
}

.lpdet .enrollbtn:focus {
  outline: 3px solid #4EB9E4;
  outline-offset: 2px;
}

.lpdet .enrollbtn:active {
  background: #001375;
  color: #4EB9E4;
}

.lpdet .infocard {
  background: #fff;
  border-radius: 4px;
  box-shadow: 2px 1px 3px -2px rgba(0, 19, 117, 0.06);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.12s ease-out, transform 0.1s ease-out;
}

.lpdet .infocard:hover {
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
  transform: translateY(-2px);
}

.lpdet .inforow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 19, 117, 0.08);
}

.lpdet .inforow:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lpdet .infokey {
  font-size: 16px;
  line-height: 1.3;
  color: rgba(0, 19, 117, 0.55);
  letter-spacing: 0.01em;
}

.lpdet .infoval {
  font-size: 16px;
  line-height: 1.3;
  color: #001375;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: right;
}

.lpdet .ratingcard {
  background: linear-gradient(135deg, #001375 0%, rgba(0, 19, 117, 0.85) 100%);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.12);
}

.lpdet .ratingstars {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.lpdet .star {
  width: 20px;
  height: 20px;
}

.lpdet .star svg {
  width: 20px;
  height: 20px;
  fill: #4EB9E4;
}

.lpdet .ratingnum {
  font-size: 44px;
  line-height: 1.1;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.lpdet .ratingcount {
  font-size: 16px;
  line-height: 1.3;
  color: rgba(237, 240, 243, 0.65);
  letter-spacing: 0.01em;
}

.lpdet .bgoscil {
  animation: bgshift 5s ease-in-out infinite;
}

@keyframes bgshift {

  0%,
  100% {
    background-color: #EDF0F3;
  }

  50% {
    background-color: #e4eaf0;
  }
}

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

  .lpdet .sidecol {
    position: static;
  }

  .lpdet .topband {
    padding: 56px 32px 56px;
  }

  .lpdet .bodywrap {
    padding: 56px 32px 96px;
  }

  .lpdet .maintitle {
    font-size: 44px;
  }
}

@media (max-width: 640px) {
  .lpdet .topband {
    padding: 56px 16px 56px;
  }

  .lpdet .bodywrap {
    padding: 32px 16px 56px;
  }

  .lpdet .maintitle {
    font-size: 32px;
  }

  .lpdet .statsrow {
    gap: 16px;
  }

  .lpdet .strokes {
    right: 16px;
  }

  .lpdet .priceval {
    font-size: 32px;
  }

  .lpdet .ratingnum {
    font-size: 32px;
  }

  .lpdet .bodygrid {
    gap: 32px;
  }
}

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

.aboutus .pgwrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px;
}

.aboutus .titlesec {
  position: relative;
  padding: 96px 0 56px;
  background: linear-gradient(127deg, #001375 0%, #002080 30%, #4EB9E4 65%, #001375 100%);
  background-size: 300% 300%;
  animation: gradshift 9s ease-in-out infinite;
}

@keyframes gradshift {
  0% {
    background-position: 0% 50%;
  }

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

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

.aboutus .titlesec .atmospot {
  position: absolute;
  border-radius: 38px;
  pointer-events: none;
  overflow: hidden;
}

.aboutus .titlesec .atmospot.sp1 {
  width: 320px;
  height: 320px;
  background: rgba(78, 185, 228, 0.18);
  filter: blur(72px);
  top: -40px;
  left: 10%;
}

.aboutus .titlesec .atmospot.sp2 {
  width: 240px;
  height: 240px;
  background: rgba(0, 19, 117, 0.28);
  filter: blur(56px);
  bottom: -20px;
  right: 8%;
}

.aboutus .titlesec .atmospot.sp3 {
  width: 180px;
  height: 180px;
  background: rgba(78, 185, 228, 0.12);
  filter: blur(48px);
  top: 30%;
  right: 25%;
}

.aboutus .titlesec .tgrid {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.aboutus .titlesec .tgrid .tleft {
  flex: 0 0 40%;
  max-width: 40%;
}

.aboutus .titlesec .tgrid .tright {
  flex: 1;
}

.aboutus .titlesec .imgframe {
  position: relative;
  display: inline-block;
  border: 2px dashed rgba(78, 185, 228, 0.6);
  padding: 8px;
  border-radius: 4px;
}

.aboutus .titlesec .imgframe img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: 380px;
  object-fit: cover;
  border-radius: 4px;
  filter: grayscale(100%) contrast(1.15) brightness(0.85);
  transition: filter 0.12s ease-out;
}

.aboutus .titlesec .imgframe img:hover {
  filter: grayscale(100%) contrast(1.1) brightness(1.05);
}

.aboutus .titlesec .imgframe .dashlabel {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 19, 117, 0.82);
  color: #EDF0F3;
  font-size: 16px;
  line-height: 1.3;
  padding: 8px 16px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.aboutus .titlesec .tright .tdialogue {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(237, 240, 243, 0.72);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.aboutus .titlesec .tright h1 {
  font-size: 60px;
  line-height: 1.1;
  color: #EDF0F3;
  letter-spacing: 0.01em;
  font-weight: 900;
  margin-bottom: 32px;
}

.aboutus .titlesec .tright .tsubtxt {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(237, 240, 243, 0.85);
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  max-width: 540px;
}

.aboutus .titlesec .tright .tsubtxt+.tsubtxt {
  margin-bottom: 0;
}

.aboutus .titlesec .statrow {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 32px;
}

.aboutus .titlesec .statitem {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aboutus .statitem .statnum {
  font-size: 44px;
  line-height: 1.1;
  color: #4EB9E4;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.aboutus .statitem .statlbl {
  font-size: 16px;
  line-height: 1.3;
  color: rgba(237, 240, 243, 0.7);
  letter-spacing: 0.02em;
}

.aboutus .aboutsec {
  position: relative;
  padding: 96px 0;
  background: #EDF0F3;
}

.aboutus .aboutsec .bandaccent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #001375 0%, #4EB9E4 50%, transparent 100%);
}

.aboutus .aboutsec .splitgrid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.aboutus .aboutsec .splitlabel {
  font-size: 16px;
  line-height: 1.3;
  color: #001375;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.aboutus .aboutsec .splitleft h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #001375;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.aboutus .aboutsec .splitleft .imgpair {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aboutus .aboutsec .splitleft .imgpair img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.9);
  transition: filter 0.1s ease-out;
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
}

.aboutus .aboutsec .splitleft .imgpair img:hover {
  filter: brightness(1.08);
}

.aboutus .aboutsec .splitright {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.aboutus .aboutsec .splitright h3 {
  font-size: 32px;
  line-height: 1.1;
  color: #001375;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.aboutus .aboutsec .bodytxt {
  font-size: 19px;
  line-height: 1.6;
  color: #1a1f3c;
  letter-spacing: 0.01em;
}

.aboutus .aboutsec .bodytxt.hanging {
  text-indent: -1.2em;
  padding-left: 1.2em;
}

.aboutus .aboutsec .pillarlist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.aboutus .aboutsec .pillitem {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.aboutus .aboutsec .pillbadge {
  flex-shrink: 0;
  background: #001375;
  color: #EDF0F3;
  font-size: 16px;
  line-height: 1.3;
  padding: 8px 16px;
  border-radius: 38px;
  letter-spacing: 0.02em;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 2px 1px 3px -2px rgba(0, 19, 117, 0.06);
}

.aboutus .aboutsec .pilltxt {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1f3c;
  letter-spacing: 0.01em;
  padding-top: 8px;
}

.aboutus .aboutsec .linedraw {
  position: relative;
  padding-left: 32px;
}

.aboutus .aboutsec .linedraw::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #4EB9E4;
  transform-origin: top;
  animation: linegrow 0.9s ease-out forwards;
}

@keyframes linegrow {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

.aboutus .aboutsec .processtrack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.aboutus .aboutsec .processtrack::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #001375 0%, #4EB9E4 100%);
  animation: linegrow 1.1s ease-out forwards;
}

.aboutus .aboutsec .procstep {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  position: relative;
}

.aboutus .aboutsec .procnum {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #001375;
  color: #EDF0F3;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
  position: relative;
  z-index: 1;
}

.aboutus .aboutsec .proctxt {
  flex: 1;
  padding-top: 8px;
}

.aboutus .aboutsec .proctxt h5 {
  font-size: 19px;
  line-height: 1.3;
  color: #001375;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.aboutus .aboutsec .proctxt p {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1f3c;
  letter-spacing: 0.01em;
}

.aboutus .aboutsec .imgthird {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.9);
  transition: filter 0.1s ease-out;
  box-shadow: 2px 10px 36px -2px rgba(0, 19, 117, 0.12);
  display: block;
}

.aboutus .aboutsec .imgthird:hover {
  filter: brightness(1.08);
}

.aboutus .aboutsec .dashedframe {
  border: 2px dashed rgba(0, 19, 117, 0.3);
  padding: 8px;
  border-radius: 4px;
  margin-top: 32px;
}

.aboutus .aboutsec .dashedframe .frametag {
  font-size: 16px;
  line-height: 1.3;
  color: #001375;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 8px 0 0;
}

.aboutus .aboutsec .tagrow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 8px;
}

.aboutus .aboutsec .tagpill {
  background: rgba(0, 19, 117, 0.07);
  color: #001375;
  font-size: 16px;
  line-height: 1.3;
  padding: 8px 16px;
  border-radius: 38px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(0, 19, 117, 0.18);
  transition: background 0.1s ease-out, color 0.1s ease-out;
}

.aboutus .aboutsec .tagpill:hover {
  background: #001375;
  color: #EDF0F3;
}

@media (max-width: 1024px) {
  .aboutus .titlesec .tgrid {
    flex-direction: column;
    gap: 32px;
  }

  .aboutus .titlesec .tgrid .tleft,
  .aboutus .titlesec .tgrid .tright {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .aboutus .titlesec .tgrid .tleft {
    order: 2;
  }

  .aboutus .titlesec .tgrid .tright {
    order: 1;
  }

  .aboutus .titlesec .tright h1 {
    font-size: 44px;
  }

  .aboutus .aboutsec .splitgrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .aboutus .aboutsec .processtrack::before {
    left: 20px;
  }
}

@media (max-width: 640px) {
  .aboutus .titlesec {
    padding: 56px 0 32px;
  }

  .aboutus .titlesec .tright h1 {
    font-size: 32px;
  }

  .aboutus .titlesec .statrow {
    flex-direction: column;
    gap: 16px;
  }

  .aboutus .statitem .statnum {
    font-size: 32px;
  }

  .aboutus .pgwrap {
    padding: 0 16px;
  }

  .aboutus .aboutsec {
    padding: 56px 0;
  }

  .aboutus .aboutsec .splitright h3 {
    font-size: 24px;
  }
}

.lrnprog {
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: clip;
}

.lrnprog .pghead {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 420px;
  position: relative;
  background: linear-gradient(112deg, #001375 0%, rgba(0, 19, 117, 0.08) 55%, rgba(78, 185, 228, 0.18) 100%);
  padding: 56px 56px 96px 56px;
  gap: 56px;
}

.lrnprog .pghead .headtext {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
}

.lrnprog .pghead .headtext .bracket {
  position: absolute;
  top: -8px;
  left: -16px;
  width: 32px;
  height: 32px;
  border-top: 3px solid #4EB9E4;
  border-left: 3px solid #4EB9E4;
  pointer-events: none;
}

.lrnprog .pghead .headtext .bracketbr {
  position: absolute;
  bottom: -8px;
  right: -16px;
  width: 32px;
  height: 32px;
  border-bottom: 3px solid #4EB9E4;
  border-right: 3px solid #4EB9E4;
  pointer-events: none;
}

.lrnprog .pghead .headtext .supertag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78, 185, 228, 0.18);
  border: 1px solid rgba(78, 185, 228, 0.5);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 16px;
  color: #4EB9E4;
  letter-spacing: 0.02em;
  width: fit-content;
}

.lrnprog .pghead .headtext h1 {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #EDF0F3;
  font-weight: 900;
  margin: 0;
}

.lrnprog .pghead .headtext h1 .accent {
  background: #4EB9E4;
  color: #001375;
  padding: 0 8px;
  border-radius: 4px;
}

.lrnprog .pghead .headtext .subline {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(237, 240, 243, 0.82);
  letter-spacing: 0.01em;
  max-width: 520px;
}

.lrnprog .pghead .headtext .countrow {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 8px;
}

.lrnprog .pghead .headtext .countrow .metric {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lrnprog .pghead .headtext .countrow .metric .num {
  font-size: 44px;
  line-height: 1.1;
  color: #4EB9E4;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.lrnprog .pghead .headtext .countrow .metric .label {
  font-size: 16px;
  color: rgba(237, 240, 243, 0.7);
  letter-spacing: 0.01em;
}

.lrnprog .pghead .imgstrip {
  width: 280px;
  flex-shrink: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 10px 36px -2px rgba(0, 19, 117, 0.12);
}

.lrnprog .pghead .imgstrip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lrnprog .pghead .imgstrip .imgtint {
  position: absolute;
  inset: 0;
  background: rgba(0, 19, 117, 0.28);
  pointer-events: none;
}

.lrnprog .pghead .imgstrip .imgfade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 19, 117, 0.55) 0%, transparent 60%);
  pointer-events: none;
}

.lrnprog .cardgrid {
  padding: 56px 56px 56px 56px;
  background: #EDF0F3;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.lrnprog .cardgrid .progcard {
  background: #fff;
  border-radius: 4px;
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.12s ease-out, transform 0.1s ease-out;
  position: relative;
}

.lrnprog .cardgrid .progcard:hover {
  box-shadow: 2px 10px 36px -2px rgba(0, 19, 117, 0.12);
  transform: translateY(-2px);
}

.lrnprog .cardgrid .progcard .cardimg {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  position: relative;
  flex-shrink: 0;
}

.lrnprog .cardgrid .progcard .cardimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lrnprog .cardgrid .progcard .cardimg .imgover {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 19, 117, 0.22) 100%);
  pointer-events: none;
}

.lrnprog .cardgrid .progcard .cardbody {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.lrnprog .cardgrid .progcard .cardbody .tagrow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.lrnprog .cardgrid .progcard .cardbody .tagrow .ctag {
  font-size: 16px;
  background: rgba(78, 185, 228, 0.14);
  color: #001375;
  border-radius: 38px;
  padding: 4px 12px;
  letter-spacing: 0.01em;
  border: 1px solid rgba(78, 185, 228, 0.35);
}

.lrnprog .cardgrid .progcard .cardbody .tagrow .utag {
  font-size: 16px;
  background: rgba(0, 19, 117, 0.07);
  color: #001375;
  border-radius: 38px;
  padding: 4px 12px;
  letter-spacing: 0.01em;
  border: 1px solid rgba(0, 19, 117, 0.13);
}

.lrnprog .cardgrid .progcard .cardbody .cardtitle {
  font-size: 19px;
  line-height: 1.3;
  color: #001375;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrnprog .cardgrid .progcard .cardbody .carddesc {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3060;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrnprog .cardgrid .progcard .cardbody .metarow {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.lrnprog .cardgrid .progcard .cardbody .metarow .metaitem {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lrnprog .cardgrid .progcard .cardbody .metarow .metaitem .metaval {
  font-size: 16px;
  color: #001375;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.lrnprog .cardgrid .progcard .cardbody .metarow .metaitem .metalabel {
  font-size: 16px;
  color: rgba(0, 19, 117, 0.55);
  letter-spacing: 0.01em;
}

.lrnprog .cardgrid .progcard .cardfooter {
  padding: 16px;
  border-top: 1px solid rgba(0, 19, 117, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lrnprog .cardgrid .progcard .cardfooter .pricetag {
  font-size: 24px;
  color: #001375;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.lrnprog .cardgrid .progcard .cardfooter .likerow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: rgba(0, 19, 117, 0.55);
  font-size: 16px;
}

.lrnprog .cardgrid .progcard .cardfooter .likerow .likeheart {
  display: inline-block;
  width: 16px;
  height: 14px;
  background: #4EB9E4;
  clip-path: polygon(50% 90%, 0% 30%, 15% 0%, 50% 20%, 85% 0%, 100% 30%);
}

.lrnprog .cardgrid .progcard .cardfooter .cardlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #001375;
  border: 2px solid #001375;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.1s ease-out, color 0.1s ease-out;
}

.lrnprog .cardgrid .progcard .cardfooter .cardlink:hover {
  background: #001375;
  color: #EDF0F3;
}

.lrnprog .cardgrid .progcard .cardfooter .cardlink .arrowicon {
  display: inline-block;
  width: 14px;
  height: 10px;
  position: relative;
  transition: transform 0.1s ease-out;
}

.lrnprog .cardgrid .progcard .cardfooter .cardlink:hover .arrowicon {
  transform: translateX(4px);
}

.lrnprog .cardgrid .progcard .cardfooter .cardlink .arrowicon svg {
  width: 14px;
  height: 10px;
}

.lrnprog .cardgrid .progcard .seatsbadge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 19, 117, 0.88);
  color: #EDF0F3;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 16px;
  letter-spacing: 0.01em;
  z-index: 2;
}

.lrnprog .cardgrid .progcard .readtimebadge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(78, 185, 228, 0.9);
  color: #001375;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  z-index: 2;
}

.lrnprog .whystrip {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: linear-gradient(96deg, #001375 0%, rgba(0, 19, 117, 0.82) 60%, rgba(78, 185, 228, 0.22) 100%);
  padding: 56px 56px 56px 56px;
  gap: 56px;
  position: relative;
  overflow: hidden;
}

.lrnprog .whystrip .geodeco {
  position: absolute;
  top: -40px;
  right: 80px;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(78, 185, 228, 0.18);
  border-radius: 0px;
  pointer-events: none;
  animation: geodeco 5s ease-in-out infinite alternate;
}

.lrnprog .whystrip .geodecoinner {
  position: absolute;
  top: 20px;
  right: 120px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(78, 185, 228, 0.1);
  border-radius: 0px;
  pointer-events: none;
  animation: geodeco 7s ease-in-out infinite alternate-reverse;
}

@keyframes geodeco {
  0% {
    opacity: 0.5;
    transform: rotate(0deg);
  }

  100% {
    opacity: 1;
    transform: rotate(8deg);
  }
}

.lrnprog .whystrip .whyleft {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.lrnprog .whystrip .whyleft h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #EDF0F3;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrnprog .whystrip .whyleft h2 .accentword {
  background: #4EB9E4;
  color: #001375;
  padding: 0 8px;
  border-radius: 4px;
}

.lrnprog .whystrip .whyleft p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(237, 240, 243, 0.78);
  letter-spacing: 0.01em;
  margin: 0;
}

.lrnprog .whystrip .whyright {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: center;
}

.lrnprog .whystrip .whyright .whycard {
  background: rgba(237, 240, 243, 0.07);
  border: 1px solid rgba(78, 185, 228, 0.18);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.12s ease-out;
}

.lrnprog .whystrip .whyright .whycard:hover {
  background: rgba(78, 185, 228, 0.14);
}

.lrnprog .whystrip .whyright .whycard .wicon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lrnprog .whystrip .whyright .whycard .wicon svg {
  width: 28px;
  height: 28px;
}

.lrnprog .whystrip .whyright .whycard h4 {
  font-size: 16px;
  line-height: 1.3;
  color: #4EB9E4;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrnprog .whystrip .whyright .whycard p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(237, 240, 243, 0.72);
  letter-spacing: 0.01em;
  margin: 0;
}

.lrnprog .processdiv {
  padding: 96px 56px 56px 56px;
  background: #fff;
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.lrnprog .processdiv .procleft {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 32px;
}

.lrnprog .processdiv .procleft .procintro {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 19, 117, 0.6);
  letter-spacing: 0.01em;
  border-top: 3px solid #4EB9E4;
  padding-top: 16px;
  margin: 0;
}

.lrnprog .processdiv .procleft h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #001375;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrnprog .processdiv .procleft .procdetail {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3060;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrnprog .processdiv .procright {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lrnprog .processdiv .procright .procstep {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 19, 117, 0.08);
  transition: background 0.1s ease-out;
}

.lrnprog .processdiv .procright .procstep:last-child {
  border-bottom: none;
}

.lrnprog .processdiv .procright .procstep .stepnum {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: #001375;
  color: #EDF0F3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.lrnprog .processdiv .procright .procstep .stepcontent {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lrnprog .processdiv .procright .procstep .stepcontent h4 {
  font-size: 19px;
  line-height: 1.3;
  color: #001375;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrnprog .processdiv .procright .procstep .stepcontent p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3060;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrnprog .processdiv .procright .procstep .stepcontent .steptag {
  display: inline-block;
  background: rgba(78, 185, 228, 0.14);
  color: #001375;
  border-radius: 38px;
  padding: 4px 12px;
  font-size: 16px;
  letter-spacing: 0.01em;
  border: 1px solid rgba(78, 185, 228, 0.35);
  width: fit-content;
}

.lrnprog .imgfeature {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: linear-gradient(108deg, #EDF0F3 0%, rgba(237, 240, 243, 0.6) 55%, rgba(78, 185, 228, 0.1) 100%);
  padding: 56px 56px 56px 56px;
  gap: 56px;
}

.lrnprog .imgfeature .imgwrap {
  flex: 0 0 420px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
}

.lrnprog .imgfeature .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lrnprog .imgfeature .imgwrap .imggradfade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(237, 240, 243, 0.7) 100%);
  pointer-events: none;
}

.lrnprog .imgfeature .feattext {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.lrnprog .imgfeature .feattext .featlabel {
  font-size: 16px;
  color: rgba(0, 19, 117, 0.55);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lrnprog .imgfeature .feattext h3 {
  font-size: 32px;
  line-height: 1.3;
  color: #001375;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrnprog .imgfeature .feattext h3 .inlinehl {
  background: rgba(78, 185, 228, 0.28);
  border-radius: 4px;
  padding: 0 6px;
}

.lrnprog .imgfeature .feattext p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3060;
  letter-spacing: 0.01em;
  margin: 0;
}

.lrnprog .imgfeature .feattext .statrow {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 8px;
}

.lrnprog .imgfeature .feattext .statrow .statitem {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lrnprog .imgfeature .feattext .statrow .statitem .statval {
  font-size: 32px;
  line-height: 1.1;
  color: #001375;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.lrnprog .imgfeature .feattext .statrow .statitem .statlabel {
  font-size: 16px;
  color: rgba(0, 19, 117, 0.55);
  letter-spacing: 0.01em;
}

.lrnprog .imgfeature .feattext .ctabtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #001375;
  border: 2px solid #001375;
  border-radius: 4px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  width: fit-content;
  transition: background 0.1s ease-out, color 0.1s ease-out;
}

.lrnprog .imgfeature .feattext .ctabtn:hover {
  background: #001375;
  color: #EDF0F3;
}

.lrnprog .imgfeature .feattext .ctabtn .arrowsvg {
  display: inline-block;
  transition: transform 0.1s ease-out;
}

.lrnprog .imgfeature .feattext .ctabtn:hover .arrowsvg {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .lrnprog .cardgrid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .lrnprog .pghead {
    flex-direction: column;
    padding: 32px 16px 56px 16px;
    gap: 32px;
  }

  .lrnprog .pghead .imgstrip {
    width: 100%;
    height: 200px;
  }

  .lrnprog .pghead .headtext h1 {
    font-size: 44px;
  }

  .lrnprog .cardgrid {
    grid-template-columns: 1fr;
    padding: 32px 16px;
  }

  .lrnprog .whystrip {
    flex-direction: column;
    padding: 32px 16px;
    gap: 32px;
  }

  .lrnprog .whystrip .whyleft {
    flex: none;
  }

  .lrnprog .whystrip .whyright {
    grid-template-columns: 1fr;
  }

  .lrnprog .processdiv {
    flex-direction: column;
    padding: 32px 16px;
    gap: 32px;
  }

  .lrnprog .processdiv .procleft {
    flex: none;
    position: static;
  }

  .lrnprog .imgfeature {
    flex-direction: column;
    padding: 32px 16px;
    gap: 32px;
  }

  .lrnprog .imgfeature .imgwrap {
    flex: none;
    height: 220px;
  }
}

@keyframes slideinleft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

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

@keyframes slideinright {
  from {
    opacity: 0;
    transform: translateX(32px);
  }

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

.lrnprog .cardgrid .progcard:nth-child(odd) {
  animation: slideinleft 0.38s ease-out both;
}

.lrnprog .cardgrid .progcard:nth-child(even) {
  animation: slideinright 0.38s ease-out both;
}

.lrnprog .cardgrid .progcard:nth-child(1) {
  animation-delay: 0.04s;
}

.lrnprog .cardgrid .progcard:nth-child(2) {
  animation-delay: 0.1s;
}

.lrnprog .cardgrid .progcard:nth-child(3) {
  animation-delay: 0.16s;
}

.lrnprog .cardgrid .progcard:nth-child(4) {
  animation-delay: 0.22s;
}

.lrnprog .cardgrid .progcard:nth-child(5) {
  animation-delay: 0.28s;
}

.lrnprog .processdiv .procright .procstep:nth-child(odd) {
  animation: slideinleft 0.32s ease-out both;
}

.lrnprog .processdiv .procright .procstep:nth-child(even) {
  animation: slideinright 0.32s ease-out both;
}

.lrnprog .processdiv .procright .procstep:nth-child(1) {
  animation-delay: 0.05s;
}

.lrnprog .processdiv .procright .procstep:nth-child(2) {
  animation-delay: 0.12s;
}

.lrnprog .processdiv .procright .procstep:nth-child(3) {
  animation-delay: 0.19s;
}

.lrnprog .processdiv .procright .procstep:nth-child(4) {
  animation-delay: 0.26s;
}

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

.ld .wrap {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.ld .titlesec {
  padding-top: 56px;
  padding-bottom: 56px;
  background: linear-gradient(160deg, #ffffff 0%, rgba(78, 185, 228, 0.08) 50%, rgba(0, 19, 117, 0.06) 100%);
  position: relative;
}

.ld .titlesec .bgcurves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ld .titlesec .bgcurves svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ld .titlesec .tinner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.ld .titlesec .ttext {
  text-align: center;
  max-width: 820px;
}

.ld .titlesec .tlabel {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #001375;
  border: 1.5px solid rgba(0, 19, 117, 0.25);
  border-radius: 4px;
  padding: 8px 16px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.7);
}

.ld .titlesec .tproblem {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 900;
  margin-bottom: 16px;
}

.ld .titlesec .tsolution {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #222c55;
  font-weight: 400;
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.ld .titlesec .timgwrap {
  width: 100%;
  max-width: 960px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 10px 36px -2px rgba(0, 19, 117, 0.12);
}

.ld .titlesec .timgwrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ld .titlesec .timgwrap .tdiag {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 19, 117, 0.45) 0%, transparent 55%, rgba(78, 185, 228, 0.25) 100%);
  pointer-events: none;
}

.ld .patternsec {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #EDF0F3;
}

.ld .patternsec .pinner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.ld .patternsec .plabel {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #4EB9E4;
  margin-bottom: 16px;
  display: block;
}

.ld .patternsec .ptitle {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 900;
}

.ld .patternsec .pright {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ld .patternsec .pquote {
  border-top: 2px solid rgba(0, 19, 117, 0.12);
  padding-top: 16px;
}

.ld .patternsec .pqtext {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #001375;
  margin-bottom: 8px;
}

.ld .patternsec .pqauthor {
  font-size: 16px;
  line-height: 1.3;
  color: #4a5578;
  letter-spacing: 0.01em;
}

.ld .teamsec {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #ffffff;
  position: relative;
}

.ld .teamsec .tsdivider {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}

.ld .teamsec .tsdivider::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(0, 19, 117, 0.12);
  position: absolute;
  top: 50%;
  left: 0;
}

.ld .teamsec .tsdivider span {
  position: relative;
  background: #ffffff;
  padding: 0 16px;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #4a5578;
}

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

.ld .teamsec .tsmember {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 4px;
  border: 1.5px solid rgba(0, 19, 117, 0.1);
  background: #ffffff;
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
  transition: box-shadow 0.12s ease-out, border-color 0.1s ease-out;
  cursor: default;
}

.ld .teamsec .tsmember:hover {
  box-shadow: 2px 10px 36px -2px rgba(0, 19, 117, 0.12);
  border-color: rgba(78, 185, 228, 0.4);
}

.ld .teamsec .tsmember:active {
  transform: scale(1.03);
  transition: transform 0.08s ease-out, box-shadow 0.12s ease-out;
}

.ld .teamsec .tsname {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #001375;
}

.ld .teamsec .tsrole {
  font-size: 16px;
  letter-spacing: 0.01em;
  color: #4EB9E4;
  margin-bottom: 8px;
}

.ld .teamsec .tsbio {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #2a3050;
}

.ld .teamsec .tsimgwrap {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.ld .teamsec .tsimgwrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ld .changesec {
  padding-top: 96px;
  padding-bottom: 96px;
  background: linear-gradient(170deg, rgba(0, 19, 117, 0.04) 0%, rgba(78, 185, 228, 0.10) 40%, rgba(237, 240, 243, 0.6) 100%);
}

.ld .changesec .chinner {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.ld .changesec .chtop {
  text-align: center;
}

.ld .changesec .chtitle {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 900;
  margin-bottom: 16px;
}

.ld .changesec .chsub {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #2a3050;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.ld .changesec .chsteps {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.ld .changesec .chstep {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ld .changesec .chnum {
  font-size: 44px;
  font-weight: 900;
  color: rgba(0, 19, 117, 0.12);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.ld .changesec .chbar {
  width: 100%;
  height: 3px;
  background: rgba(0, 19, 117, 0.1);
  border-radius: 0px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.ld .changesec .chbarfill {
  height: 100%;
  background: linear-gradient(90deg, #001375, #4EB9E4);
  border-radius: 0px;
}

.ld .changesec .chstepname {
  font-size: 19px;
  font-weight: 700;
  color: #001375;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.ld .changesec .chstepdesc {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3050;
  letter-spacing: 0.01em;
}

.ld .sitsec {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #001375;
}

.ld .sitsec .sitinner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.ld .sitsec .sitleft {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ld .sitsec .sittitle {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #ffffff;
  font-weight: 900;
}

.ld .sitsec .sitsub {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.72);
}

.ld .sitsec .sitimgwrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 2px 10px 36px -2px rgba(0, 19, 117, 0.12);
}

.ld .sitsec .sitimgwrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ld .sitsec .sitright {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ld .sitsec .sititem {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.1s ease-out;
}

.ld .sitsec .sititem:hover {
  background: rgba(78, 185, 228, 0.12);
}

.ld .sitsec .siticon {
  width: 8px;
  height: 8px;
  border-radius: 0px;
  background: #4EB9E4;
  margin-top: 8px;
  flex-shrink: 0;
}

.ld .sitsec .sittxt {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
}

.ld .casesec {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #EDF0F3;
  position: relative;
}

.ld .casesec .casedivider {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}

.ld .casesec .casedivider::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(0, 19, 117, 0.15);
  position: absolute;
  top: 50%;
  left: 0;
}

.ld .casesec .casedivider span {
  position: relative;
  background: #EDF0F3;
  padding: 0 16px;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #4a5578;
}

.ld .casesec .caseinner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ld .casesec .caserow {
  display: grid;
  gap: 32px;
}

.ld .casesec .caserow.one {
  grid-template-columns: 1fr;
}

.ld .casesec .caserow.two {
  grid-template-columns: 1fr 1fr;
}

.ld .casesec .casecard {
  background: #ffffff;
  border-radius: 4px;
  padding: 32px;
  box-shadow: 2px 1px 3px -2px rgba(0, 19, 117, 0.06);
  border: 1.5px solid rgba(0, 19, 117, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.12s ease-out;
}

.ld .casesec .casecard:hover {
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
}

.ld .casesec .caseclient {
  font-size: 19px;
  font-weight: 700;
  color: #001375;
  letter-spacing: 0.01em;
}

.ld .casesec .casesit {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3050;
  letter-spacing: 0.01em;
}

.ld .casesec .caseout {
  font-size: 16px;
  line-height: 1.6;
  color: #001375;
  letter-spacing: 0.01em;
  padding-top: 8px;
  border-top: 1.5px solid rgba(78, 185, 228, 0.35);
}

.ld .casesec .casetag {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #4EB9E4;
  background: rgba(78, 185, 228, 0.1);
  border-radius: 38px;
  padding: 8px 16px;
  align-self: flex-start;
}

.ld .objsec {
  padding-top: 96px;
  padding-bottom: 96px;
  background: #ffffff;
  position: relative;
}

.ld .objsec .objinner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.ld .objsec .objtitle {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 900;
  margin-bottom: 16px;
}

.ld .objsec .objq {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 4px;
  background: rgba(0, 19, 117, 0.04);
  border: 1.5px solid rgba(0, 19, 117, 0.1);
}

.ld .objsec .objbody {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #2a3050;
  margin-bottom: 16px;
}

.ld .objsec .objright {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ld .objsec .objfact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(0, 19, 117, 0.04), rgba(78, 185, 228, 0.08));
  box-shadow: 2px 1px 3px -2px rgba(0, 19, 117, 0.06);
}

.ld .objsec .objfactnum {
  font-size: 44px;
  font-weight: 900;
  color: #001375;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.ld .objsec .objfactbar {
  width: 100%;
  height: 3px;
  background: rgba(0, 19, 117, 0.1);
}

.ld .objsec .objfactbarfill {
  height: 100%;
  background: linear-gradient(90deg, #001375, #4EB9E4);
}

.ld .objsec .objfactdesc {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3050;
  letter-spacing: 0.01em;
}

@keyframes rotateReveal {
  from {
    opacity: 0;
    transform: rotate(-4deg) translateY(24px);
  }

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

.ld .titlesec .tinner {
  animation: rotateReveal 0.5s ease-out both;
}

.ld .changesec .chsteps {
  animation: rotateReveal 0.45s 0.1s ease-out both;
}

.ld .patternsec .pright {
  animation: rotateReveal 0.4s 0.05s ease-out both;
}

@media (max-width: 900px) {
  .ld .patternsec .pinner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ld .teamsec .tsinner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ld .changesec .chsteps {
    flex-direction: column;
    gap: 32px;
  }

  .ld .sitsec .sitinner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ld .casesec .caserow.two {
    grid-template-columns: 1fr;
  }

  .ld .objsec .objinner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ld .titlesec .tproblem {
    font-size: 32px;
  }

  .ld .changesec .chtitle {
    font-size: 32px;
  }

  .ld .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 600px) {
  .ld .titlesec .tproblem {
    font-size: 24px;
  }

  .ld .titlesec .tsolution {
    font-size: 19px;
  }

  .ld .patternsec .ptitle {
    font-size: 24px;
  }

  .ld .changesec .chtitle {
    font-size: 24px;
  }

  .ld .sitsec .sittitle {
    font-size: 24px;
  }

  .ld .objsec .objtitle {
    font-size: 24px;
  }
}

.srvpg {
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: clip;
  position: relative;
}

.srvpg .dashed-divider {
  border: none;
  border-top: 2px dashed #c8cfd8;
  margin: 0;
}

.srvpg .spotdrift {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 30% 40%, rgba(78, 185, 228, 0.13) 0%, transparent 70%);
  pointer-events: none;
  animation: driftspot 9s ease-in-out infinite alternate;
  top: 0;
  left: -80px;
  z-index: 0;
}

@keyframes driftspot {
  0% {
    transform: translate(0, 0);
    opacity: 0.7;
  }

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

.srvpg .outlineshape {
  position: absolute;
  right: -40px;
  top: 40px;
  width: 280px;
  height: 280px;
  border: 2px solid rgba(0, 19, 117, 0.08);
  border-radius: 38px;
  pointer-events: none;
  z-index: 0;
  transform: rotate(18deg);
}

.srvpg .outlineshape2 {
  position: absolute;
  left: 16px;
  bottom: 32px;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(78, 185, 228, 0.13);
  border-radius: 0px;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-10deg);
}

.srvpg .titleblock {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #EDF0F3;
  padding: 56px 56px 56px 0;
  position: relative;
  gap: 56px;
}

.srvpg .titleblock .imgstrip {
  width: 220px;
  min-width: 180px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: stretch;
}

.srvpg .titleblock .imgstrip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(1.5px) brightness(0.92);
}

.srvpg .titleblock .textzone {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.srvpg .titleblock .textzone .bigtag {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #4EB9E4;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.srvpg .titleblock .textzone h1 {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 900;
  margin: 0;
}

.srvpg .titleblock .textzone .accentline {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #001375, transparent 60%, #4EB9E4);
  border-radius: 0px;
  margin: 8px 0;
}

.srvpg .titleblock .textzone .sub {
  font-size: 19px;
  line-height: 1.6;
  color: #2a3560;
  max-width: 520px;
  margin: 0;
  letter-spacing: 0.01em;
}

.srvpg .svcsblock {
  padding: 96px 56px;
  background: #fff;
  position: relative;
}

.srvpg .svcsblock .svcshead {
  text-align: center;
  margin-bottom: 56px;
}

.srvpg .svcsblock .svcshead h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #001375;
  font-weight: 900;
  margin: 0 0 8px 0;
  letter-spacing: 0.01em;
}

.srvpg .svcsblock .svcshead .headaccentline {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #4EB9E4, transparent 80%, #001375);
  border-radius: 0px;
  margin: 0 auto 16px auto;
}

.srvpg .svcsblock .svcshead p {
  font-size: 19px;
  line-height: 1.6;
  color: #2a3560;
  max-width: 540px;
  margin: 0 auto;
  letter-spacing: 0.01em;
  text-align: left;
}

.srvpg .svcslist {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px 56px;
  max-width: 1100px;
  margin: 0 auto;
}

.srvpg .svcsitem {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 4px;
  background: #EDF0F3;
  box-shadow: 2px 1px 3px -2px rgba(0, 19, 117, 0.06);
  transition: box-shadow 0.12s ease-out, background 0.1s linear;
  position: relative;
}

.srvpg .svcsitem:hover {
  background: #e4eaf0;
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
}

.srvpg .svcsitem .itemaccentline {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #001375, transparent 60%, #4EB9E4);
  border-radius: 0px;
  margin-bottom: 8px;
}

.srvpg .svcsitem h3 {
  font-size: 24px;
  line-height: 1.3;
  color: #001375;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.01em;
}

.srvpg .svcsitem p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3560;
  margin: 0;
  letter-spacing: 0.01em;
}

.srvpg .svcsitem .badgelist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.srvpg .svcsitem .badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 38px;
  background: rgba(0, 19, 117, 0.08);
  color: #001375;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.6;
  transition: background 0.1s ease-out;
}

.srvpg .svcsitem:hover .badge {
  background: rgba(78, 185, 228, 0.18);
}

.srvpg .svcsitem.featured {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  background: #001375 !important;
  box-shadow: 2px 10px 36px -2px rgba(0, 19, 117, 0.12);
}

.srvpg .svcsitem.featured h3 {
  color: #fff;
  font-size: 32px;
}

.srvpg .svcsitem.featured p {
  color: rgba(237, 240, 243, 0.9);
}

.srvpg .svcsitem.featured .itemaccentline {
  background: linear-gradient(90deg, #4EB9E4, transparent 80%, #fff);
}

.srvpg .svcsitem.featured .badge {
  background: rgba(78, 185, 228, 0.22);
  color: #4EB9E4;
}

.srvpg .svcsitem.featured:hover {
  background: #001375;
}

.srvpg .svcsitem.featured:hover .badge {
  background: rgba(78, 185, 228, 0.32);
}

.srvpg .svcsitem.featured .featuredtag {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #4EB9E4;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.srvpg .metricsblock {
  padding: 56px 56px;
  background: linear-gradient(160deg, rgba(0, 19, 117, 0.96) 0%, rgba(0, 19, 117, 0.88) 50%, rgba(78, 185, 228, 0.82) 100%);
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
}

.srvpg .metricsblock .mtext {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}

.srvpg .metricsblock .mtext h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #EDF0F3;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.01em;
}

.srvpg .metricsblock .mtext p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(237, 240, 243, 0.85);
  margin: 0;
  letter-spacing: 0.01em;
  max-width: 360px;
}

.srvpg .metricsblock .mtext .maccent {
  width: 40px;
  height: 2px;
  background: #4EB9E4;
  border-radius: 0px;
}

.srvpg .metricsrow {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex: 2;
  z-index: 1;
  flex-wrap: wrap;
}

.srvpg .metriccard {
  flex: 1;
  min-width: 140px;
  padding: 32px 16px;
  border-radius: 4px;
  background: rgba(237, 240, 243, 0.07);
  box-shadow: inset 0 2px 4px rgba(237, 240, 243, 0.08), inset 0 -2px 6px rgba(0, 19, 117, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: background 0.13s ease-out;
}

.srvpg .metriccard:hover {
  background: rgba(78, 185, 228, 0.14);
}

.srvpg .metriccard .mnum {
  font-size: 44px;
  line-height: 1.1;
  color: #4EB9E4;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.srvpg .metriccard .mlabel {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(237, 240, 243, 0.8);
  text-align: center;
  letter-spacing: 0.01em;
}

.srvpg .metricsblock .mdecorshape {
  position: absolute;
  right: 56px;
  top: 16px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(78, 185, 228, 0.15);
  border-radius: 38px;
  pointer-events: none;
  transform: rotate(22deg);
}

.srvpg .processblock {
  padding: 96px 56px;
  background: #EDF0F3;
  position: relative;
}

.srvpg .processblock .prhead {
  max-width: 600px;
  margin: 0 auto 56px auto;
  text-align: center;
}

.srvpg .processblock .prhead h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #001375;
  font-weight: 900;
  margin: 0 0 8px 0;
  letter-spacing: 0.01em;
}

.srvpg .processblock .prhead .praccent {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #001375, transparent 60%, #4EB9E4);
  border-radius: 0px;
  margin: 0 auto 16px auto;
}

.srvpg .processblock .prhead p {
  font-size: 19px;
  line-height: 1.6;
  color: #2a3560;
  margin: 0;
  letter-spacing: 0.01em;
  text-align: left;
}

.srvpg .steplist {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.srvpg .steplist::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #001375 0%, #4EB9E4 100%);
  z-index: 0;
}

.srvpg .stepitem {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0;
  position: relative;
  z-index: 1;
}

.srvpg .stepitem .stepnum {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 0px;
  background: #001375;
  color: #EDF0F3;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
  transition: background 0.1s ease-out;
}

.srvpg .stepitem:hover .stepnum {
  background: #4EB9E4;
}

.srvpg .stepitem .steptxt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}

.srvpg .stepitem .steptxt h4 {
  font-size: 19px;
  line-height: 1.3;
  color: #001375;
  font-weight: 900;
  margin: 0;
  letter-spacing: 0.01em;
}

.srvpg .stepitem .steptxt p {
  font-size: 16px;
  line-height: 1.6;
  color: #2a3560;
  margin: 0;
  letter-spacing: 0.01em;
}

.srvpg .stepitem .steptxt .stepbadgelist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.srvpg .stepitem .steptxt .stepbadge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 38px;
  background: rgba(0, 19, 117, 0.08);
  color: #001375;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.6;
  transition: background 0.1s ease-out;
}

.srvpg .stepitem:hover .stepbadge {
  background: rgba(78, 185, 228, 0.22);
}

.srvpg .stepitem .svgoutline {
  position: absolute;
  right: 0;
  top: 24px;
  width: 56px;
  height: 56px;
  pointer-events: none;
  opacity: 0.13;
}

.srvpg .svgdrawline {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: drawsvg 1.1s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes drawsvg {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 900px) {
  .srvpg .titleblock {
    flex-direction: column;
    padding: 32px 16px;
    gap: 16px;
  }

  .srvpg .titleblock .imgstrip {
    width: 100%;
    min-width: 0;
    height: 180px;
  }

  .srvpg .titleblock .textzone h1 {
    font-size: 44px;
  }

  .srvpg .svcsblock {
    padding: 56px 16px;
  }

  .srvpg .svcslist {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .srvpg .svcsitem.featured {
    grid-column: 1;
    grid-row: auto;
  }

  .srvpg .metricsblock {
    flex-direction: column;
    padding: 56px 16px;
    gap: 32px;
  }

  .srvpg .metricsrow {
    gap: 16px;
  }

  .srvpg .processblock {
    padding: 56px 16px;
  }

  .srvpg .steplist::before {
    left: 23px;
  }
}

@media (max-width: 600px) {
  .srvpg .titleblock .textzone h1 {
    font-size: 32px;
  }

  .srvpg .svcsblock .svcshead h2 {
    font-size: 32px;
  }

  .srvpg .metricsblock .mtext h2 {
    font-size: 24px;
  }

  .srvpg .metriccard .mnum {
    font-size: 32px;
  }

  .srvpg .processblock .prhead h2 {
    font-size: 32px;
  }

  .srvpg .stepitem {
    gap: 16px;
  }
}

.ctus {
  background: #EDF0F3;
  overflow-x: clip;
  position: relative;
}

.ctus .split {
  display: flex;
  flex-direction: row;
  max-width: 1500px;
  margin: 0 auto;
  padding: 96px 56px;
  gap: 56px;
  align-items: stretch;
}

.ctus .imgcol {
  flex: 0 0 420px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.ctus .imgcol img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.9) hue-rotate(0deg);
  transition: filter 0.12s ease-out;
  animation: slowzoom 14s ease-in-out infinite alternate;
}

.ctus .imgcol:hover img {
  filter: brightness(0.95) saturate(1.05);
}

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

  to {
    transform: scale(1.07);
  }
}

.ctus .textcol {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.ctus .textcol h1 {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 900;
  margin: 0;
}

.ctus .textcol h1 span {
  color: #4EB9E4;
}

.ctus .tagline {
  font-size: 19px;
  line-height: 1.6;
  color: #001375;
  opacity: 0.75;
  margin: 0;
  max-width: 480px;
}

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

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

.ctus .icobox {
  width: 40px;
  height: 40px;
  background: #001375;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
}

.ctus .icobox svg {
  width: 18px;
  height: 18px;
  fill: #EDF0F3;
}

.ctus .infotext {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ctus .infolabel {
  font-size: 16px;
  color: #001375;
  opacity: 0.5;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.ctus .infovalue {
  font-size: 19px;
  color: #001375;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.1s ease-out;
}

.ctus .infovalue:hover {
  color: #4EB9E4;
}

.ctus .divline {
  width: 100%;
  height: 2px;
  background: #4EB9E4;
  opacity: 0.6;
}

.ctus .formsec {
  background: #fff;
  position: relative;
}

.ctus .formsec::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #001375 0%, transparent 40%, #4EB9E4 100%);
}

.ctus .formwrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 96px 56px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.ctus .formleft {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 32px;
}

.ctus .formleft h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #001375;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin: 0;
}

.ctus .formleft p {
  font-size: 19px;
  line-height: 1.6;
  color: #001375;
  opacity: 0.7;
  margin: 0;
}

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

.ctus .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78, 185, 228, 0.12);
  border: 1px solid rgba(78, 185, 228, 0.35);
  border-radius: 38px;
  padding: 8px 16px;
  font-size: 16px;
  color: #001375;
  font-weight: 600;
  letter-spacing: 0.01em;
  width: fit-content;
}

.ctus .badge svg {
  width: 14px;
  height: 14px;
  fill: #4EB9E4;
  flex-shrink: 0;
}

.ctus .formright {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ctus .formcard {
  background: #EDF0F3;
  border-radius: 4px;
  padding: 56px;
  box-shadow: 2px 10px 36px -2px rgba(0, 19, 117, 0.12);
}

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

.ctus .formgroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
  margin-bottom: 16px;
}

.ctus .formgroup label {
  font-size: 16px;
  color: #001375;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.ctus .formgroup input,
.ctus .formgroup select,
.ctus .formgroup textarea {
  background: #fff;
  border: 2px solid rgba(0, 19, 117, 0.18);
  border-radius: 4px;
  padding: 16px;
  font-size: 16px;
  color: #001375;
  line-height: 1.3;
  outline: none;
  transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.ctus .formgroup input::placeholder,
.ctus .formgroup textarea::placeholder {
  color: rgba(0, 19, 117, 0.35);
}

.ctus .formgroup input:focus,
.ctus .formgroup select:focus,
.ctus .formgroup textarea:focus {
  border-color: #4EB9E4;
  box-shadow: 2px 1px 3px -2px rgba(0, 19, 117, 0.06);
}

.ctus .formgroup select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23001375' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.ctus .formgroup textarea {
  resize: vertical;
  min-height: 96px;
}

.ctus .radiogroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.ctus .radiogroup legend {
  font-size: 16px;
  color: #001375;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin-bottom: 8px;
  display: block;
}

.ctus .radioopts {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}

.ctus .radioopts label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid rgba(0, 19, 117, 0.18);
  border-radius: 38px;
  padding: 8px 16px;
  font-size: 16px;
  color: #001375;
  cursor: pointer;
  transition: border-color 0.1s ease-out, background 0.1s ease-out;
  user-select: none;
}

.ctus .radioopts input[type="radio"] {
  accent-color: #001375;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.ctus .radioopts label:has(input:checked) {
  border-color: #001375;
  background: rgba(0, 19, 117, 0.06);
}

.ctus .radioopts label:hover {
  border-color: #4EB9E4;
}

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

.ctus .privacyrow input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #001375;
  cursor: pointer;
}

.ctus .privacyrow span {
  font-size: 16px;
  color: #001375;
  opacity: 0.75;
  line-height: 1.6;
}

.ctus .privacyrow a {
  color: #001375;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.08s linear;
}

.ctus .privacyrow a:hover {
  color: #4EB9E4;
}

.ctus .submitbtn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid #001375;
  border-radius: 4px;
  padding: 16px 32px;
  font-size: 19px;
  color: #001375;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.1s ease-out, color 0.1s ease-out;
  position: relative;
  overflow: hidden;
}

.ctus .submitbtn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.12s ease-out;
}

.ctus .submitbtn:hover {
  background: #001375;
  color: #EDF0F3;
}

.ctus .submitbtn:hover svg {
  transform: translateX(5px);
}

.ctus .submitbtn:focus {
  outline: 2px solid #4EB9E4;
  outline-offset: 3px;
}

.ctus .submitbtn:active {
  background: #001375;
  color: #EDF0F3;
  opacity: 0.85;
}

.ctus .colA {
  animation: colappear 0.35s ease-out both;
}

.ctus .colB {
  animation: colappear 0.35s 0.12s ease-out both;
}

.ctus .colC {
  animation: colappear 0.35s 0.22s ease-out both;
}

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

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

@media (max-width: 1024px) {
  .ctus .split {
    flex-direction: column;
    padding: 56px 32px;
    gap: 32px;
  }

  .ctus .imgcol {
    flex: 0 0 280px;
    height: 280px;
  }

  .ctus .formwrap {
    grid-template-columns: 1fr;
    padding: 56px 32px;
    gap: 32px;
  }

  .ctus .formleft {
    position: static;
  }

  .ctus .formcard {
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .ctus .split {
    padding: 56px 16px;
  }

  .ctus .textcol h1 {
    font-size: 44px;
  }

  .ctus .formwrap {
    padding: 56px 16px;
  }

  .ctus .formrow {
    flex-direction: column;
  }

  .ctus .formcard {
    padding: 16px;
  }

  .ctus .formleft h2 {
    font-size: 32px;
  }

  .ctus .radioopts {
    flex-direction: column;
  }
}

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

.mstrcls .pageinner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 32px;
}

.mstrcls .titlewrap {
  position: relative;
  padding-top: 56px;
  padding-bottom: 96px;
  background-color: #EDF0F3;
}

.mstrcls .titlewrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

.mstrcls .titlewrap .mathsymbol {
  position: absolute;
  right: 56px;
  top: 32px;
  font-size: 70px;
  line-height: 1.1;
  color: #001375;
  opacity: 0.05;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: 0.02em;
}

.mstrcls .titlecontent {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mstrcls .titlebadge {
  display: inline-block;
  background-color: #001375;
  color: #EDF0F3;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 700;
}

.mstrcls .titleh1 {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #001375;
  text-align: center;
  font-weight: 900;
  margin: 0;
  max-width: 900px;
}

.mstrcls .titletagline {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #001375;
  text-align: left;
  max-width: 640px;
  margin: 0;
  opacity: 0.8;
}

.mstrcls .titleimg {
  width: 100%;
  max-width: 900px;
  border-radius: 4px;
  box-shadow: 2px 10px 36px -2px rgba(0, 19, 117, 0.12);
  display: block;
  object-fit: cover;
  animation: imgfadein 0.8s ease-out both;
}

@keyframes imgfadein {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.mstrcls .titleactions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.mstrcls .btnprimary {
  display: inline-block;
  padding: 16px 32px;
  background-color: transparent;
  border: 2px solid #001375;
  color: #001375;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.1s ease-out, color 0.1s ease-out;
  position: relative;
  overflow: hidden;
}

.mstrcls .btnprimary:hover {
  background-color: #001375;
  color: #EDF0F3;
}

.mstrcls .btnsecond {
  display: inline-block;
  padding: 16px 32px;
  background-color: transparent;
  border: 2px solid #4EB9E4;
  color: #001375;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.12s ease-out, color 0.12s ease-out;
}

.mstrcls .btnsecond:hover {
  background-color: #4EB9E4;
  color: #001375;
}

.mstrcls .waveedge {
  display: block;
  width: 100%;
  margin-bottom: -2px;
  line-height: 0;
}

.mstrcls .programwrap {
  background: linear-gradient(162deg, #001375 0%, #001375 40%, #4EB9E4 100%);
  padding: 96px 0 56px;
  position: relative;
}

.mstrcls .programwrap .mathbg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mstrcls .programwrap .mathbg svg {
  opacity: 0.04;
  width: 320px;
  height: 320px;
}

.mstrcls .programgrid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.mstrcls .programlabel {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #EDF0F3;
  font-weight: 900;
  margin: 0 0 16px 0;
  text-align: center;
}

.mstrcls .programsub {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #4EB9E4;
  margin: 0 0 32px 0;
  text-align: left;
}

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

.mstrcls .donutlegend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.mstrcls .donutlegenditem {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.3;
  color: #EDF0F3;
  letter-spacing: 0.01em;
}

.mstrcls .legenddot {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex-shrink: 0;
}

.mstrcls .glasscard {
  background: rgba(237, 240, 243, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(78, 185, 228, 0.2);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
}

.mstrcls .cardsgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mstrcls .glasscard .cardnum {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #4EB9E4;
  font-weight: 900;
  display: block;
  margin-bottom: 8px;
}

.mstrcls .glasscard .cardlabel {
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #EDF0F3;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.mstrcls .glasscard .carddesc {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(237, 240, 243, 0.7);
  margin: 0;
}

.mstrcls .fullcard {
  grid-column: 1 / -1;
}

.mstrcls .materialswrap {
  background-color: #fff;
  padding: 96px 0;
  position: relative;
}

.mstrcls .materialstop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}

.mstrcls .materialsh2 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 900;
  margin: 0 0 16px 0;
  text-align: center;
}

.mstrcls .materialsp {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #001375;
  margin: 0 0 16px 0;
  text-align: left;
  padding-left: 16px;
}

.mstrcls .materialsp:last-child {
  margin-bottom: 0;
}

.mstrcls .announcebox {
  background: linear-gradient(162deg, rgba(0, 19, 117, 0.04) 0%, rgba(78, 185, 228, 0.08) 100%);
  border-radius: 4px;
  border: 1px solid rgba(0, 19, 117, 0.1);
  padding: 32px;
  box-shadow: 2px 1px 3px -2px rgba(0, 19, 117, 0.06);
}

.mstrcls .announcetitle {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 900;
  margin: 0 0 16px 0;
  text-align: center;
}

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

.mstrcls .announcelist li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #001375;
}

.mstrcls .announcelist li .pill {
  display: inline-block;
  background-color: #001375;
  color: #EDF0F3;
  font-size: 16px;
  line-height: 1.3;
  padding: 4px 16px;
  border-radius: 38px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

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

.mstrcls .matitem {
  border: 1px solid rgba(0, 19, 117, 0.12);
  border-radius: 4px;
  padding: 32px 16px;
  background-color: #EDF0F3;
  box-shadow: 2px 1px 3px -2px rgba(0, 19, 117, 0.06);
  transition: box-shadow 0.1s ease-out, background-color 0.1s ease-out;
  cursor: default;
}

.mstrcls .matitem:hover {
  background-color: #fff;
  box-shadow: 2px 7px 25px -2px rgba(0, 19, 117, 0.08);
}

.mstrcls .matitem .maticon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.mstrcls .matitem .math4 {
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.mstrcls .matitem .matp {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #001375;
  opacity: 0.75;
  margin: 0;
}

.mstrcls .colorhover {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
}

.mstrcls .colorhover .ch {
  display: inline-block;
  transition: color 0.08s ease-out;
  color: #EDF0F3;
}

.mstrcls .colorhover:hover .ch:nth-child(odd) {
  color: #4EB9E4;
}

.mstrcls .colorhover:hover .ch:nth-child(even) {
  color: rgba(237, 240, 243, 0.6);
}

@keyframes dropbounce {
  0% {
    transform: translateY(-24px);
    opacity: 0;
  }

  60% {
    transform: translateY(4px);
    opacity: 1;
  }

  80% {
    transform: translateY(-2px);
  }

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

.mstrcls .bounceload {
  animation: dropbounce 0.5s ease-out both;
  animation-delay: 0.1s;
}

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

  .mstrcls .programgrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .mstrcls .materialstop {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .mstrcls .mathsymbol {
    display: none;
  }
}

@media (max-width: 600px) {
  .mstrcls .titleh1 {
    font-size: 32px;
  }

  .mstrcls .programlabel {
    font-size: 32px;
  }

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

  .mstrcls .materialsh2 {
    font-size: 32px;
  }

  .mstrcls .pageinner {
    padding: 0 16px;
  }

  .mstrcls .titleactions {
    flex-direction: column;
    align-items: center;
  }
}

.SuccessPage {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background-color: #EDF0F3;
}

.SuccessPage .ConfirmCard {
  background: #ffffff;
  border: 4px solid #001375;
  border-radius: 4px;
  padding: 56px;
  max-width: 600px;
  width: 100%;
  box-shadow: 2px 10px 36px -2px rgba(0, 19, 117, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.SuccessPage .ConfirmCard .IconMark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.SuccessPage .ConfirmCard .IconMark svg {
  width: 100%;
  height: 100%;
}

.SuccessPage .ConfirmCard .MessageBlock {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.SuccessPage .ConfirmCard .MessageBlock .SuccessHeading {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: #001375;
  font-weight: 900;
  margin: 0;
}

.SuccessPage .ConfirmCard .MessageBlock .SuccessBody {
  font-size: 19px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #2a2a3d;
  margin: 0;
}

.SuccessPage .ConfirmCard .MessageBlock .SuccessNote {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #4a4a6a;
  margin: 0;
}

.SuccessPage .ConfirmCard .Divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #001375, #4EB9E4, transparent);
  border: none;
  border-radius: 0px;
}

.SuccessPage .ConfirmCard .ReturnBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #001375;
  background: transparent;
  border: 3px solid #001375;
  border-radius: 4px;
  padding: 16px 32px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.1s ease-out, color 0.1s ease-out;
}

.SuccessPage .ConfirmCard .ReturnBtn .BtnArrow {
  display: inline-block;
  transition: transform 0.12s linear;
}

.SuccessPage .ConfirmCard .ReturnBtn:hover {
  background-color: #001375;
  color: #ffffff;
}

.SuccessPage .ConfirmCard .ReturnBtn:hover .BtnArrow {
  transform: translateX(4px);
}

.SuccessPage .ConfirmCard .ReturnBtn:focus {
  outline: 3px solid #4EB9E4;
  outline-offset: 3px;
}

.SuccessPage .ConfirmCard .ReturnBtn:active {
  background-color: #001375;
  color: #4EB9E4;
}

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

  .SuccessPage .ConfirmCard {
    padding: 32px 16px;
    gap: 16px;
  }

  .SuccessPage .ConfirmCard .MessageBlock .SuccessHeading {
    font-size: 24px;
  }

  .SuccessPage .ConfirmCard .MessageBlock .SuccessBody {
    font-size: 16px;
  }
}