html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: auto;
}

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

*:focus {
  outline: 3px solid #022251;
  outline-offset: 2px;
  filter: invert(1);
}

.sitehead {
  background: #ffffff;
  box-shadow: 0 3px 2px 0 rgba(1, 34, 81, 0.06), 0 7px 20px 0 rgba(1, 34, 81, 0.11);
  position: relative;
  z-index: 100;
  border-bottom: 2px solid #F6F6F6;
}

.sitehead-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
}

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

.logobox {
  width: 56px;
  height: 68px;
  border: 3px solid #119BFD;
  border-radius: 8px;
  background: #F6F6F6;
  box-shadow: 0 3px 2px 0 rgba(17, 155, 253, 0.06), inset 0 1px 2px 0 rgba(17, 155, 253, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logobox img {
  width: 46px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.brandname {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brandname-label {
  font-family: 'Karla', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #022251;
  letter-spacing: -0.03em;
}

.brandname-tag {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  color: #119BFD;
  letter-spacing: 0.04em;
}

.sitenav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  justify-content: flex-end;
}

.sitenav a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: #022251;
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  display: inline-block;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.5s ease, border-color 0.6s ease;
  position: relative;
  overflow: hidden;
}

.sitenav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #119BFD 0%, #022251 100%);
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 8px;
  z-index: 0;
}

.sitenav a:hover::before {
  opacity: 1;
}

.sitenav a:hover {
  color: #ffffff;
  border-color: #119BFD;
}

.sitenav a span {
  position: relative;
  z-index: 1;
}

.sitenav a.active {
  background: #022251;
  color: #ffffff;
  border-color: #022251;
}

@media (max-width: 1024px) {
  .sitehead-inner {
    padding: 24px 24px;
    gap: 24px;
  }

  .sitenav a {
    font-size: 13px;
    padding: 12px 6px;
  }
}

@media (max-width: 768px) {
  .sitehead-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 12px;
  }

  .sitenav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .sitehead-inner {
    padding: 12px;
  }

  .brandname-label {
    font-size: 21px;
  }

  .sitenav a {
    font-size: 13px;
    padding: 12px 6px;
  }
}

.sitefooter {
  background: #022251;
  position: relative;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 52px 52px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.footer-divider-v {
  border: none;
  border-right: 1px solid rgba(17, 155, 253, 0.25);
  margin: 0;
  height: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 52px;
}

.footer-logorow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logobox {
  width: 56px;
  height: 68px;
  border: 2px solid rgba(17, 155, 253, 0.6);
  border-radius: 8px;
  background: rgba(246, 246, 246, 0.08);
  box-shadow: 0 3px 2px 0 rgba(17, 155, 253, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-logobox img {
  width: 46px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.footer-brandname {
  font-family: 'Karla', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(246, 246, 246, 0.75);
}

.footer-contact {
  padding: 0 24px;
}

.footer-col-label {
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #119BFD;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a,
.footer-contact-list span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(246, 246, 246, 0.85);
  text-decoration: none;
  transition: color 0.55s ease;
}

.footer-contact-list a:hover {
  color: #119BFD;
}

.footer-links-col {
  padding-left: 24px;
}

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

.footer-links-list a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(246, 246, 246, 0.75);
  text-decoration: none;
  transition: color 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-links-list a:hover {
  color: #119BFD;
}

.footer-consent-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(246, 246, 246, 0.5);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.55s ease;
}

.footer-consent-link:hover {
  color: #119BFD;
}

.footer-mid {
  border-top: 1px solid rgba(17, 155, 253, 0.15);
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 52px;
}

.footer-bottom {
  border-top: 1px solid rgba(17, 155, 253, 0.1);
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 52px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(246, 246, 246, 0.45);
}

.footer-domain {
  font-family: 'Karla', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(17, 155, 253, 0.6);
  text-decoration: none;
  transition: color 0.6s ease;
}

.footer-domain:hover {
  color: #119BFD;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 52px 24px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer-mid {
    padding: 24px;
  }

  .footer-bottom {
    padding: 12px 24px 24px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 24px 24px 12px;
  }

  .footer-contact {
    padding: 0;
  }

  .footer-links-col {
    padding-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    padding: 24px 12px 12px;
  }

  .footer-mid {
    padding: 12px;
  }

  .footer-bottom {
    padding: 12px 12px 24px;
  }
}

.legal-cplp-details {
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 52px;
  color: #022251;
  background: #ffffff;
}

.legal-cplp-details h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
  color: #022251;
}

.legal-cplp-details h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-top: 52px;
  margin-bottom: 24px;
  color: #022251;
}

.legal-cplp-details h3 {
  font-size: 28px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-top: 52px;
  margin-bottom: 24px;
  color: #022251;
}

.legal-cplp-details h4 {
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #022251;
}

.legal-cplp-details h5 {
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #022251;
}

.legal-cplp-details h6 {
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #022251;
  text-transform: uppercase;
}

.legal-cplp-details p {
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  margin-bottom: 24px;
  color: #022251;
}

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

.legal-cplp-details ul {
  list-style: none;
  padding-left: 0;
}

.legal-cplp-details ul li {
  padding-left: 24px;
  position: relative;
}

.legal-cplp-details ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #119BFD;
}

.legal-cplp-details ol {
  list-style: decimal;
}

.legal-cplp-details li {
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.005em;
  margin-bottom: 12px;
  color: #022251;
}

.legal-cplp-details em,
.legal-cplp-details i {
  font-style: italic;
  color: inherit;
}

.legal-cplp-details a {
  color: #119BFD;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-decoration-color 0.5s ease;
}

.legal-cplp-details a:hover {
  color: #022251;
  text-decoration-color: #022251;
}

.legal-cplp-details hr {
  border: none;
  border-top: 1px solid #F6F6F6;
  margin-top: 52px;
  margin-bottom: 52px;
  box-shadow: 0 3px 2px 0 rgba(1, 34, 81, 0.06);
}

.legal-cplp-details div {
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .legal-cplp-details {
    padding: 96px 52px;
  }

  .legal-cplp-details h1 {
    font-size: 38px;
  }

  .legal-cplp-details h2 {
    font-size: 28px;
  }

  .legal-cplp-details h3 {
    font-size: 21px;
  }
}

@media (max-width: 768px) {
  .legal-cplp-details {
    padding: 52px 24px;
  }

  .legal-cplp-details h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .legal-cplp-details h2 {
    font-size: 21px;
    margin-top: 24px;
  }

  .legal-cplp-details h3 {
    font-size: 16px;
    margin-top: 24px;
  }

  .legal-cplp-details h4,
  .legal-cplp-details h5,
  .legal-cplp-details h6 {
    margin-top: 12px;
  }

  .legal-cplp-details hr {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .legal-cplp-details {
    padding: 52px 12px;
  }

  .legal-cplp-details h1 {
    font-size: 21px;
  }

  .legal-cplp-details h2 {
    font-size: 16px;
  }

  .legal-cplp-details p,
  .legal-cplp-details li {
    font-size: 13px;
  }
}

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

.lrnprog .pgwrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.lrnprog .titlesec {
  background: #fff;
  padding: 52px 0 52px;
  position: relative;
}

.lrnprog .titlesec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(17, 155, 253, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.lrnprog .titlegrid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.lrnprog .titleleft {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.lrnprog .catag {
  background: #022251;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
}

.lrnprog .userfmt {
  background: #F6F6F6;
  color: #022251;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 3px;
  font-weight: 500;
  border: 1px solid rgba(2, 34, 81, 0.12);
}

.lrnprog .pubdate {
  font-size: 13px;
  color: #555;
  letter-spacing: 0.03em;
}

.lrnprog .overline {
  display: block;
  width: 40px;
  height: 2px;
  background: #119BFD;
  margin-bottom: 12px;
  animation: drawline 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  transform-origin: left;
}

@keyframes drawline {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.lrnprog .maintitle {
  font-size: 52px;
  line-height: 1.2;
  color: #022251;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0;
}

.lrnprog .maintitle .accentword {
  text-transform: uppercase;
  color: #119BFD;
}

.lrnprog .titledesc {
  font-size: 21px;
  line-height: 1.45;
  color: #333;
  margin: 0;
  max-width: 560px;
}

.lrnprog .titlemeta {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.lrnprog .pricebig {
  font-size: 38px;
  font-weight: 800;
  color: #022251;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.lrnprog .printbtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F6F6F6;
  color: #022251;
  border: 1.5px solid rgba(2, 34, 81, 0.18);
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.lrnprog .printbtn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, rgba(17, 155, 253, 0.18) 0%, rgba(17, 155, 253, 0) 100%);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.lrnprog .printbtn:hover::after {
  left: 130%;
}

.lrnprog .printbtn:hover {
  background: #022251;
  color: #fff;
  border-color: #022251;
}

.lrnprog .printbtn:focus {
  outline: 2px solid #119BFD;
  outline-offset: 3px;
}

.lrnprog .printsvg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lrnprog .titleright {
  position: relative;
}

.lrnprog .imgwrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 60px 0 rgba(17, 155, 253, 0.11);
  position: relative;
}

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

.lrnprog .imgvignette {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: conic-gradient(from 0deg at 50% 50%, rgba(2, 34, 81, 0.28) 0deg, rgba(17, 155, 253, 0.06) 120deg, rgba(2, 34, 81, 0.22) 240deg, rgba(2, 34, 81, 0.28) 360deg);
  border-radius: 16px;
  pointer-events: none;
}

.lrnprog .cornerlines {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60px;
  height: 60px;
  pointer-events: none;
}

.lrnprog .cornerlines span {
  display: block;
  height: 2px;
  background: rgba(17, 155, 253, 0.35);
  margin-bottom: 6px;
  border-radius: 0;
}

.lrnprog .cornerlines span:nth-child(1) {
  width: 60px;
}

.lrnprog .cornerlines span:nth-child(2) {
  width: 44px;
  margin-left: 16px;
}

.lrnprog .cornerlines span:nth-child(3) {
  width: 28px;
  margin-left: 32px;
}

.lrnprog .cornerlines span:nth-child(4) {
  width: 16px;
  margin-left: 44px;
}

.lrnprog .descsec {
  background: #F6F6F6;
  padding: 96px 0;
  position: relative;
}

.lrnprog .descinner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 52px;
  align-items: start;
}

.lrnprog .sidenote {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lrnprog .sidenoteitem {
  border-top: 2px solid rgba(17, 155, 253, 0.3);
  padding-top: 12px;
}

.lrnprog .sidenotelabel {
  font-size: 13px;
  color: #119BFD;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.lrnprog .sidenotetext {
  font-size: 13px;
  color: #444;
  line-height: 1.45;
  margin: 0;
}

.lrnprog .descbody {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lrnprog .descbody .secoverline {
  display: block;
  width: 40px;
  height: 2px;
  background: #022251;
  margin-bottom: 6px;
}

.lrnprog .descsechead {
  font-size: 38px;
  line-height: 1.2;
  color: #022251;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}

.lrnprog .descbody p {
  font-size: 16px;
  line-height: 1.65;
  color: #2a2a2a;
  margin: 0;
}

.lrnprog .descbody h2 {
  font-size: 28px;
  line-height: 1.2;
  color: #022251;
  font-weight: 700;
  margin: 12px 0 0;
}

.lrnprog .descbody small {
  font-size: 13px;
  color: #555;
  line-height: 1.45;
  display: block;
}

.lrnprog .descbody mark {
  background: rgba(17, 155, 253, 0.15);
  color: #022251;
  padding: 0 4px;
  border-radius: 3px;
}

.lrnprog .descbody ul {
  margin: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lrnprog .descbody ul li {
  font-size: 16px;
  line-height: 1.65;
  color: #2a2a2a;
}

.lrnprog .descbody dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 24px;
  margin: 0;
}

.lrnprog .descbody dt {
  font-size: 13px;
  font-weight: 700;
  color: #022251;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 2px;
}

.lrnprog .descbody dd {
  font-size: 16px;
  color: #2a2a2a;
  line-height: 1.65;
  margin: 0;
}

.lrnprog .descbody blockquote {
  margin: 0;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 2px 0 rgba(17, 155, 253, 0.06);
}

.lrnprog .descbody blockquote p {
  font-size: 21px;
  line-height: 1.45;
  color: #022251;
  font-style: italic;
}

.lrnprog .descbody figure {
  margin: 0;
}

.lrnprog .descbody figcaption {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
  line-height: 1.45;
}

.lrnprog .descbody details {
  background: #fff;
  border-radius: 8px;
  padding: 12px 24px;
  box-shadow: 0 3px 2px 0 rgba(17, 155, 253, 0.06);
}

.lrnprog .descbody summary {
  font-size: 16px;
  font-weight: 600;
  color: #022251;
  cursor: pointer;
  padding: 6px 0;
}

.lrnprog .progsec {
  background: #fff;
  padding: 96px 0;
  position: relative;
}

.lrnprog .progmesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: conic-gradient(from 45deg at 20% 60%, rgba(17, 155, 253, 0.04) 0deg, rgba(2, 34, 81, 0.03) 90deg, rgba(17, 155, 253, 0.05) 200deg, rgba(246, 246, 246, 0.8) 310deg, rgba(17, 155, 253, 0.03) 360deg);
  pointer-events: none;
  z-index: 0;
}

.lrnprog .proginner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
  align-items: start;
}

.lrnprog .progleft {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lrnprog .progsechead {
  font-size: 38px;
  line-height: 1.2;
  color: #022251;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}

.lrnprog .progcontent {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lrnprog .progcontent p {
  font-size: 16px;
  line-height: 1.65;
  color: #2a2a2a;
  margin: 0;
}

.lrnprog .progcontent h2 {
  font-size: 28px;
  line-height: 1.2;
  color: #022251;
  font-weight: 700;
  margin: 12px 0 0;
}

.lrnprog .progcontent small {
  font-size: 13px;
  color: #555;
  line-height: 1.45;
  display: block;
}

.lrnprog .progcontent ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
  counter-reset: progctr;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lrnprog .progcontent ol li {
  counter-increment: progctr;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  background: #F6F6F6;
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 1.65;
  color: #2a2a2a;
  box-shadow: 0 3px 2px 0 rgba(17, 155, 253, 0.06);
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lrnprog .progcontent ol li:hover {
  box-shadow: 0 7px 20px 0 rgba(17, 155, 253, 0.11);
  transform: translateY(-2px);
}

.lrnprog .progcontent ol li::before {
  content: counter(progctr, decimal-leading-zero);
  font-size: 21px;
  font-weight: 800;
  color: #119BFD;
  line-height: 1.2;
  flex-shrink: 0;
  min-width: 36px;
}

.lrnprog .progcontent blockquote {
  margin: 0;
  padding: 24px;
  background: #022251;
  border-radius: 8px;
  color: #fff;
}

.lrnprog .progcontent blockquote p {
  color: #fff;
  font-size: 16px;
  line-height: 1.65;
}

.lrnprog .progcontent cite {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  margin-top: 6px;
  display: block;
}

.lrnprog .progright {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lrnprog .pricepanel {
  background: #022251;
  border-radius: 16px;
  padding: 52px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 10px 60px 0 rgba(2, 34, 81, 0.11);
  position: relative;
  overflow: hidden;
}

.lrnprog .pricepanel::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: conic-gradient(from 0deg at 50% 50%, rgba(17, 155, 253, 0.18) 0deg, transparent 180deg);
  border-radius: 50%;
  pointer-events: none;
}

.lrnprog .panellabel {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.lrnprog .panelprice {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.lrnprog .panelprice span {
  font-size: 21px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  vertical-align: super;
}

.lrnprog .enrollbtn {
  display: block;
  width: 100%;
  background: #119BFD;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 21px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  transition: background 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 7px 20px 0 rgba(17, 155, 253, 0.11);
  text-decoration: none;
}

.lrnprog .enrollbtn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.lrnprog .enrollbtn:hover::after {
  left: 130%;
}

.lrnprog .enrollbtn:hover {
  background: #0282d8;
  box-shadow: 0 10px 60px 0 rgba(17, 155, 253, 0.22);
}

.lrnprog .enrollbtn:focus {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.lrnprog .paneldetails {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lrnprog .panelrow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.lrnprog .panelrow:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lrnprog .panelrowlabel {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.lrnprog .panelrowval {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.lrnprog .ratingbox {
  background: #F6F6F6;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 3px 2px 0 rgba(17, 155, 253, 0.06);
}

.lrnprog .ratingtop {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.lrnprog .ratingnum {
  font-size: 38px;
  font-weight: 800;
  color: #022251;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.lrnprog .stars {
  display: flex;
  flex-direction: row;
  gap: 3px;
}

.lrnprog .star {
  width: 16px;
  height: 16px;
}

.lrnprog .ratingcount {
  font-size: 13px;
  color: #555;
}

@media (max-width: 1024px) {
  .lrnprog .titlegrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .lrnprog .progright {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .lrnprog .descinner {
    grid-template-columns: 140px 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .lrnprog .maintitle {
    font-size: 38px;
  }

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

  .lrnprog .sidenote {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

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

  .lrnprog .titlesec {
    padding: 52px 0;
  }

  .lrnprog .descsec,
  .lrnprog .progsec {
    padding: 52px 0;
  }
}

@media (max-width: 480px) {
  .lrnprog .maintitle {
    font-size: 28px;
  }

  .lrnprog .titledesc {
    font-size: 16px;
  }

  .lrnprog .panelprice {
    font-size: 38px;
  }

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

  .lrnprog .metarow {
    gap: 6px;
  }
}

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

.philntr .phlwrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.philntr .titstrip {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 52px;
  padding: 96px 0 52px;
  align-items: start;
  position: relative;
}

.philntr .titstrip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: conic-gradient(from 180deg at 30% 60%, #f0f8ff 0deg, #e8f4fd 60deg, #f6f6f6 120deg, #eef7ff 180deg, #f6f6f6 240deg, #e8f4fd 300deg, #f0f8ff 360deg);
  opacity: 0.55;
  z-index: 0;
  border-radius: 0 0 16px 16px;
}

.philntr .titstrip::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(1, 34, 81, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 20%, rgba(17, 155, 253, 0.06) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.philntr .imgstrip {
  position: relative;
  z-index: 1;
  height: 340px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 7px 20px 0 rgba(17, 155, 253, 0.11);
}

.philntr .imgstrip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88);
  transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.philntr .imgstrip img:hover {
  filter: brightness(1.05);
}

.philntr .imgstrip .imgblur {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(2, 34, 81, 0.35), transparent);
  pointer-events: none;
}

.philntr .decotri {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 48px 48px;
  border-color: transparent transparent rgba(17, 155, 253, 0.18) transparent;
  pointer-events: none;
  z-index: 2;
}

.philntr .tittext {
  position: relative;
  z-index: 1;
  padding: 12px 0;
}

.philntr .titlabel {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #119BFD;
  margin-bottom: 12px;
  font-weight: 600;
}

.philntr .titlabel::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #119BFD;
  vertical-align: middle;
  margin-right: 12px;
  border-radius: 3px;
}

.philntr .tith1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #022251;
  margin: 0 0 24px;
}

.philntr .tith1 .capword {
  text-transform: uppercase;
  color: #119BFD;
}

.philntr .titdesc {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4a5c;
  max-width: 560px;
}

.philntr .titdeco {
  position: absolute;
  top: 24px;
  right: 52px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(17, 155, 253, 0.07);
  pointer-events: none;
  z-index: 0;
}

.philntr .titdeco2 {
  position: absolute;
  bottom: 52px;
  right: 120px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(2, 34, 81, 0.06);
  pointer-events: none;
  z-index: 0;
}

.philntr .brushdiv {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}

.philntr .brushdiv svg {
  display: block;
  width: 100%;
}

.philntr .actgrid {
  background: #022251;
  padding: 96px 0;
  position: relative;
}

.philntr .actgrid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(17, 155, 253, 0.13) 0%, transparent 65%);
  pointer-events: none;
  animation: glowpulse 5s ease-in-out infinite;
}

@keyframes glowpulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.philntr .actgrid .decotricorner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 64px 64px 0 0;
  border-color: rgba(17, 155, 253, 0.15) transparent transparent transparent;
  pointer-events: none;
}

.philntr .actgrid .decotricornerr {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 56px 56px;
  border-color: transparent transparent rgba(17, 155, 253, 0.1) transparent;
  pointer-events: none;
}

.philntr .acttop {
  margin-bottom: 52px;
}

.philntr .acttop .overlabel {
  display: block;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #119BFD;
  margin-bottom: 12px;
  font-weight: 600;
}

.philntr .acttop .overlabel::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #119BFD;
  vertical-align: middle;
  margin-right: 12px;
  border-radius: 3px;
}

.philntr .acttop h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #F6F6F6;
  margin: 0 0 24px;
  max-width: 680px;
}

.philntr .acttop h2 .capword {
  text-transform: uppercase;
  color: #119BFD !important;
}

.philntr .acttop .actsub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(246, 246, 246, 0.72);
  max-width: 560px;
}

.philntr .cardsgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.philntr .actcard {
  background: rgba(246, 246, 246, 0.05);
  border: 1px solid rgba(17, 155, 253, 0.18);
  border-radius: 16px;
  padding: 52px 24px 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s ease;
  box-shadow: 0 3px 2px 0 rgba(17, 155, 253, 0.06);
}

.philntr .actcard:hover {
  background: rgba(17, 155, 253, 0.1);
  border-color: rgba(17, 155, 253, 0.4);
  box-shadow: 0 7px 20px 0 rgba(17, 155, 253, 0.11);
}

.philntr .actcard .cardico {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
}

.philntr .actcard h3 {
  font-size: 21px;
  line-height: 1.45;
  color: #F6F6F6;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.philntr .actcard .cardtxt {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(246, 246, 246, 0.68);
}

.philntr .actcard .cardtxt p {
  margin: 0 0 12px;
}

.philntr .actcard .cardtxt p:last-child {
  margin-bottom: 0;
}

.philntr .actcard .cardnum {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 52px;
  line-height: 1.2;
  color: rgba(17, 155, 253, 0.12);
  font-weight: 700;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.philntr .actcard .cardtag {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #119BFD;
  border: 1px solid rgba(17, 155, 253, 0.35);
  border-radius: 3px;
  padding: 6px 12px;
}

.philntr .wavesect {
  background: #F6F6F6;
  padding: 96px 0;
  position: relative;
}

.philntr .wavesect::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg,
      transparent,
      transparent 28px,
      rgba(17, 155, 253, 0.04) 28px,
      rgba(17, 155, 253, 0.04) 29px),
    repeating-linear-gradient(90deg,
      transparent,
      transparent 60px,
      rgba(2, 34, 81, 0.025) 60px,
      rgba(2, 34, 81, 0.025) 61px);
  pointer-events: none;
}

.philntr .wavesect::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(246, 246, 246, 0) 30%, rgba(2, 34, 81, 0.06) 100%);
  pointer-events: none;
}

.philntr .waveinner {
  position: relative;
  z-index: 1;
}

.philntr .wavegrid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 96px;
  align-items: start;
}

.philntr .waveleft .overlabel {
  display: block;
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #119BFD;
  margin-bottom: 12px;
  font-weight: 600;
}

.philntr .waveleft .overlabel::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: #119BFD;
  vertical-align: middle;
  margin-right: 12px;
  border-radius: 3px;
}

.philntr .waveleft h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #022251;
  margin: 0 0 24px;
  letter-spacing: -0.015em;
}

.philntr .waveleft h2 .capword {
  text-transform: uppercase;
}

.philntr .wavetextblock {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  margin-bottom: 52px;
}

.philntr .wavenote {
  font-size: 13px;
  line-height: 1.65;
  color: #119BFD;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-top: 6px;
  text-align: right;
  border-right: 2px solid rgba(17, 155, 253, 0.25);
  padding-right: 24px;
}

.philntr .wavemain {
  font-size: 16px;
  line-height: 1.65;
  color: #2c3e52;
}

.philntr .wavemain p {
  margin: 0 0 12px;
}

.philntr .wavemain p:last-child {
  margin-bottom: 0;
}

.philntr .waveright {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.philntr .statbox {
  background: #022251;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 60px 0 rgba(2, 34, 81, 0.11);
  transition: box-shadow 0.7s ease;
}

.philntr .statbox:hover {
  box-shadow: 0 10px 60px 0 rgba(17, 155, 253, 0.11);
}

.philntr .statbox .statval {
  font-size: 38px;
  line-height: 1.2;
  color: #119BFD;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.philntr .statbox .statlbl {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(246, 246, 246, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.philntr .statbox .statdesc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(246, 246, 246, 0.55);
  margin-top: 12px;
}

.philntr .brushdiv2 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.philntr .brushdiv2 svg {
  display: block;
  width: 100%;
}

@media (max-width: 1024px) {
  .philntr .titstrip {
    grid-template-columns: 160px 1fr;
    gap: 24px;
    padding: 52px 0 52px;
  }

  .philntr .imgstrip {
    height: 260px;
  }

  .philntr .tith1 {
    font-size: 38px;
  }

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

  .philntr .wavegrid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .philntr .waveright {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .philntr .statbox {
    flex: 1 1 200px;
  }
}

@media (max-width: 768px) {
  .philntr .titstrip {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 52px 0 24px;
  }

  .philntr .imgstrip {
    height: 220px;
    order: -1;
  }

  .philntr .tith1 {
    font-size: 28px;
  }

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

  .philntr .acttop h2 {
    font-size: 28px;
  }

  .philntr .wavetextblock {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .philntr .wavenote {
    text-align: left;
    border-right: none;
    border-bottom: 2px solid rgba(17, 155, 253, 0.25);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .philntr .waveleft h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .philntr .tith1 {
    font-size: 21px;
  }

  .philntr .actgrid {
    padding: 52px 0;
  }

  .philntr .wavesect {
    padding: 52px 0;
  }

  .philntr .statval {
    font-size: 28px;
  }
}

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

.rthome .rtinner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.rthome .spot {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(17, 155, 253, 0.06), rgba(2, 34, 81, 0.04), rgba(17, 155, 253, 0.03), transparent 60%);
  pointer-events: none;
  animation: spotdrift 9s ease-in-out infinite alternate;
}

@keyframes spotdrift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, 30px) scale(1.08);
  }
}

.rthome .zigdiv {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.rthome .zigdiv svg {
  display: block;
  width: 100%;
}

.rthome .overln {
  display: block;
  width: 36px;
  height: 2px;
  background: #119BFD;
  margin-bottom: 12px;
}

.rthome .pctring {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
}

.rthome .pctring svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 88px;
  height: 88px;
  transform: rotate(-90deg);
}

.rthome .pctring .ringnum {
  font-size: 16px;
  font-weight: 700;
  color: #022251;
  position: relative;
  z-index: 1;
}

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

.rthome .diagline::after {
  content: '';
  position: absolute;
  top: -30%;
  left: 10%;
  width: 1px;
  height: 160%;
  background: linear-gradient(to bottom, transparent, rgba(17, 155, 253, 0.13), transparent);
  transform: rotate(18deg);
  transform-origin: top center;
}

.rthome .geoshape {
  position: absolute;
  pointer-events: none;
}

.rthome .titblock {
  position: relative;
  padding: 52px 0 96px;
  background: #fff;
}

.rthome .titblock .tbgrid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 52px;
  align-items: start;
}

.rthome .tbimgcol {
  position: relative;
}

.rthome .tbimgcol img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  filter: sepia(18%) saturate(1.2) brightness(0.97);
  box-shadow: 0 7px 20px 0 rgba(17, 155, 253, 0.11);
}

.rthome .tbright {
  padding-top: 24px;
}

.rthome .tbright .tblabel {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #119BFD;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.rthome .tbright h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #022251;
  font-weight: 800;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.rthome .tbright h1 .capword {
  text-transform: uppercase;
  font-size: 52px;
}

.rthome .tbright .tbdesc {
  font-size: 21px;
  line-height: 1.45;
  color: #3a4a62;
  max-width: 540px;
  margin: 0 0 24px;
}

.rthome .tbright .tbsub {
  font-size: 16px;
  line-height: 1.65;
  color: #4a5568;
  max-width: 480px;
}

.rthome .tbright .tbcta {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #022251;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 7px 20px 0 rgba(2, 34, 81, 0.11);
}

.rthome .tbright .tbcta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 60%;
  height: 200%;
  background: #119BFD;
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.rthome .tbright .tbcta:hover::before {
  left: 120%;
}

.rthome .tbright .tbcta span {
  position: relative;
  z-index: 1;
}

.rthome .geoshape.gsq {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(17, 155, 253, 0.15);
  border-radius: 3px;
  top: 12px;
  right: -12px;
  transform: rotate(22deg);
}

.rthome .geoshape.gcirc {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: conic-gradient(from 45deg, rgba(2, 34, 81, 0.07), transparent 55%);
  bottom: 24px;
  left: -24px;
}

.rthome .aprsec {
  position: relative;
  background: #F6F6F6;
  padding: 96px 0 52px;
}

.rthome .aprsec .aprgrid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0 24px;
  align-items: start;
}

.rthome .aprsec .aprleft {
  padding-right: 24px;
}

.rthome .aprsec .aprleft h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #022251;
  font-weight: 700;
  margin: 12px 0 24px;
  letter-spacing: -0.01em;
}

.rthome .aprsec .aprleft h2 .capword {
  text-transform: uppercase;
}

.rthome .aprsec .aprleft .aprtxt {
  font-size: 16px;
  line-height: 1.65;
  color: #2d3a4a;
}

.rthome .aprsec .aprleft .aprtxt p {
  margin: 0 0 12px;
}

.rthome .aprsec .apraside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 6px;
}

.rthome .aprsec .apraside .asidnote {
  font-size: 13px;
  line-height: 1.65;
  color: #5a6a80;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  border-right: 1px solid rgba(17, 155, 253, 0.2);
  padding-right: 6px;
  letter-spacing: 0.04em;
}

.rthome .aprsec .aprright {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rthome .aprsec .aprcard {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 3px 2px 0 rgba(17, 155, 253, 0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.6s ease;
}

.rthome .aprsec .aprcard:hover {
  box-shadow: 0 10px 60px 0 rgba(17, 155, 253, 0.11);
}

.rthome .aprsec .aprcard .crdtop {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rthome .aprsec .aprcard .crdico {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #022251;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rthome .aprsec .aprcard .crdico svg {
  width: 20px;
  height: 20px;
}

.rthome .aprsec .aprcard h4 {
  font-size: 16px;
  font-weight: 700;
  color: #022251;
  margin: 0;
}

.rthome .aprsec .aprcard p {
  font-size: 13px;
  line-height: 1.65;
  color: #4a5568;
  margin: 0;
}

.rthome .aprsec .aprcard .crdaccent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48px;
  height: 3px;
  background: #119BFD;
  border-radius: 3px 0 0 0;
}

.rthome .aprsec .aprimgwrap {
  margin-top: 52px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 7px 20px 0 rgba(17, 155, 253, 0.11);
}

.rthome .aprsec .aprimgwrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: sepia(10%) saturate(1.1);
}

.rthome .whosec {
  position: relative;
  background: #022251;
  padding: 96px 0;
}

.rthome .whosec .whotxt h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700;
  margin: 12px 0 24px;
  letter-spacing: -0.01em;
}

.rthome .whosec .whotxt h2 .capword {
  text-transform: uppercase;
  color: #119BFD;
}

.rthome .whosec .whogrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
}

.rthome .whosec .whocard {
  border-radius: 16px;
  padding: 24px;
  position: relative;
}

.rthome .whosec .whocard.fits {
  background: rgba(17, 155, 253, 0.12);
  border: 1px solid rgba(17, 155, 253, 0.3);
}

.rthome .whosec .whocard.nofits {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rthome .whosec .whocard h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
}

.rthome .whosec .whocard.fits h4 {
  color: #119BFD;
}

.rthome .whosec .whocard.nofits h4 {
  color: rgba(255, 255, 255, 0.5);
}

.rthome .whosec .whocard ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rthome .whosec .whocard ul li {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 16px;
  position: relative;
}

.rthome .whosec .whocard ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.rthome .whosec .whocard.fits ul li::before {
  background: #119BFD;
}

.rthome .whosec .whocard.nofits ul li::before {
  background: rgba(255, 255, 255, 0.25);
}

.rthome .whosec .whoimgrow {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: center;
}

.rthome .whosec .whoimgwrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 60px 0 rgba(2, 34, 81, 0.11);
}

.rthome .whosec .whoimgwrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: sepia(15%) saturate(0.9) brightness(0.92);
}

.rthome .whosec .whostat {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rthome .whosec .whostatrow {
  display: flex;
  align-items: center;
  gap: 24px;
}

.rthome .whosec .whostatrow .statlab {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  flex: 1;
}

.rthome .respsec {
  position: relative;
  background: #fff;
  padding: 96px 0 52px;
}

.rthome .respsec h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #022251;
  font-weight: 700;
  margin: 12px 0 52px;
  letter-spacing: -0.01em;
}

.rthome .respsec h2 .capword {
  text-transform: uppercase;
}

.rthome .respsec .respgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rthome .respsec .respcard {
  border-radius: 16px;
  background: #F6F6F6;
  padding: 24px;
  position: relative;
  box-shadow: 0 3px 2px 0 rgba(2, 34, 81, 0.06);
  transition: box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rthome .respsec .respcard:hover {
  box-shadow: 0 10px 60px 0 rgba(2, 34, 81, 0.11);
}

.rthome .respsec .respcard .respquote {
  font-size: 16px;
  line-height: 1.65;
  color: #2d3a4a;
  margin: 0 0 24px;
  font-style: italic;
}

.rthome .respsec .respcard .respbefore {
  font-size: 13px;
  line-height: 1.45;
  color: #5a6a80;
  margin: 0 0 6px;
}

.rthome .respsec .respcard .respafter {
  font-size: 13px;
  line-height: 1.45;
  color: #022251;
  font-weight: 600;
  margin: 0 0 12px;
}

.rthome .respsec .respcard .respname {
  font-size: 13px;
  color: #119BFD;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.rthome .respsec .respcard .respbar {
  position: absolute;
  top: 0;
  left: 24px;
  width: 40px;
  height: 3px;
  background: #119BFD;
  border-radius: 0 0 3px 3px;
}

.rthome .respsec .respimgfull {
  margin-top: 52px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 7px 20px 0 rgba(17, 155, 253, 0.11);
}

.rthome .respsec .respimgfull img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: sepia(8%) saturate(1.15);
}

@media (max-width: 1024px) {
  .rthome .titblock .tbgrid {
    grid-template-columns: 200px 1fr;
    gap: 24px;
  }

  .rthome .tbright h1 {
    font-size: 38px;
  }

  .rthome .tbright h1 .capword {
    font-size: 38px;
  }

  .rthome .aprsec .aprgrid {
    grid-template-columns: 1fr 40px 1fr;
  }

  .rthome .whosec .whoimgrow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .rthome .titblock .tbgrid {
    grid-template-columns: 1fr;
  }

  .rthome .tbimgcol img {
    height: 240px;
  }

  .rthome .tbright h1 {
    font-size: 28px;
  }

  .rthome .tbright h1 .capword {
    font-size: 28px;
  }

  .rthome .tbright .tbdesc {
    font-size: 16px;
  }

  .rthome .aprsec .aprgrid {
    grid-template-columns: 1fr;
  }

  .rthome .aprsec .apraside {
    display: none;
  }

  .rthome .whosec .whogrid {
    grid-template-columns: 1fr;
  }

  .rthome .respsec .respgrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .rthome .titblock {
    padding: 24px 0 52px;
  }

  .rthome .aprsec {
    padding: 52px 0 24px;
  }

  .rthome .whosec {
    padding: 52px 0;
  }

  .rthome .respsec {
    padding: 52px 0 24px;
  }

  .rthome .tbright h1 {
    font-size: 21px;
  }

  .rthome .tbright h1 .capword {
    font-size: 21px;
  }

  .rthome .aprsec .aprleft h2,
  .rthome .whosec .whotxt h2,
  .rthome .respsec h2 {
    font-size: 28px;
  }
}

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

.pdcast .eplist {
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 52px;
}

.pdcast .titlesec {
  max-width: 1400px;
  margin: 0 auto;
  padding: 96px 52px 52px;
  text-align: center;
  position: relative;
}

.pdcast .titlesec .overline {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #119BFD;
  margin-bottom: 24px;
  font-weight: 600;
}

.pdcast .titlesec .maintxt h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #022251;
  margin: 0 0 24px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.pdcast .titlesec .maintxt h1 .cap {
  text-transform: uppercase;
}

.pdcast .titlesec .maintxt p {
  font-size: 21px;
  line-height: 1.65;
  color: #3a4a6b;
  max-width: 600px;
  margin: 0 auto 52px;
}

.pdcast .titlesec .imgwrap {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 60px 0 rgba(1, 34, 81, 0.11);
}

.pdcast .titlesec .imgwrap img {
  width: 100%;
  max-width: 860px;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  filter: sepia(0.18) contrast(1.08) brightness(0.97) saturate(0.9);
}

.pdcast .titlesec .imgwrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 180deg at 50% 50%, rgba(17, 155, 253, 0.04), rgba(2, 34, 81, 0.09), rgba(246, 246, 246, 0.02), rgba(17, 155, 253, 0.04));
  border-radius: 16px;
  pointer-events: none;
}

.pdcast .titlesec .deco {
  position: absolute;
  top: 80px;
  right: 52px;
  width: 48px;
  height: 48px;
  background: #119BFD;
  transform: rotate(45deg);
  border-radius: 3px;
  opacity: 0.13;
  pointer-events: none;
}

.pdcast .titlesec .decosmall {
  position: absolute;
  top: 108px;
  left: 52px;
  width: 14px;
  height: 14px;
  border-radius: 28px;
  background: #022251;
  opacity: 0.18;
  pointer-events: none;
}

.pdcast .titlesec .arrowguide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  opacity: 0.38;
}

.pdcast .titlesec .arrowguide span {
  display: block;
  width: 2px;
  height: 10px;
  background: #022251;
  border-radius: 3px;
}

.pdcast .titlesec .arrowguide .arrowhead {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #022251;
}

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

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

.pdcast .titlesec .imgwrap {
  animation: zoomSettle 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.pdcast .eplistbg {
  background: #F6F6F6;
  position: relative;
}

.pdcast .eplistbg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 60%, rgba(2, 34, 81, 0.05) 100%);
  pointer-events: none;
}

.pdcast .eplist .sechead {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 52px;
  margin-bottom: 52px;
}

.pdcast .eplist .sechead .aside {
  flex: 0 0 180px;
  padding-top: 6px;
}

.pdcast .eplist .sechead .aside .sidelabel {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #119BFD;
  font-weight: 600;
  line-height: 1.45;
}

.pdcast .eplist .sechead .aside .sideline {
  width: 32px;
  height: 2px;
  background: #119BFD;
  margin-top: 12px;
  border-radius: 3px;
}

.pdcast .eplist .sechead .headtxt h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #022251;
  margin: 0 0 12px;
}

.pdcast .eplist .sechead .headtxt h2 .cap {
  text-transform: uppercase;
}

.pdcast .eplist .sechead .headtxt p {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4a6b;
  max-width: 520px;
  margin: 0;
}

.pdcast .epgrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.pdcast .epcard {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 7px 20px 0 rgba(17, 155, 253, 0.11);
  transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdcast .epcard:hover {
  box-shadow: 0 10px 60px 0 rgba(17, 155, 253, 0.11);
  transform: translateY(-3px);
}

.pdcast .epcard.featured {
  grid-row: span 2;
  padding: 52px 24px;
  background: #022251;
}

.pdcast .epcard.featured .epnum {
  color: rgba(17, 155, 253, 0.7);
}

.pdcast .epcard.featured .eptitle {
  font-size: 28px;
  color: #fff;
}

.pdcast .epcard.featured .epdesc {
  color: rgba(246, 246, 246, 0.8);
}

.pdcast .epcard.featured .epmeta {
  color: rgba(246, 246, 246, 0.55);
}

.pdcast .epcard.featured .epbtn {
  background: #119BFD;
  color: #fff;
  border: none;
}

.pdcast .epcard.featured .epbtn:hover {
  background: #0d7fd4;
}

.pdcast .epnum {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #119BFD;
  font-weight: 600;
}

.pdcast .eptitle {
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #022251;
  font-weight: 700;
  margin: 0;
}

.pdcast .epdesc {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4a6b;
  margin: 0;
}

.pdcast .epmeta {
  font-size: 13px;
  color: #7a8aaa;
  letter-spacing: 0.04em;
}

.pdcast .epbtn {
  display: inline-block;
  align-self: flex-start;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #119BFD;
  color: #022251;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.55s ease, border-color 0.55s ease;
  z-index: 1;
}

.pdcast .epbtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #119BFD 0%, #022251 100%);
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.pdcast .epbtn:hover::before {
  left: 0;
}

.pdcast .epbtn:hover {
  color: #fff;
  border-color: #022251;
}

.pdcast .epbtn:focus-visible {
  outline: 3px solid #119BFD !important;
  outline-offset: 3px !important;
}

.pdcast .epcard.small .eptitle {
  font-size: 16px;
}

.pdcast .epcard.small .epdesc {
  font-size: 13px;
}

.pdcast .epcard.small .epbtn {
  font-size: 13px;
  padding: 6px 12px;
}

.pdcast .epcard .diacorner {
  align-self: flex-end;
  width: 18px;
  height: 18px;
  background: #119BFD;
  transform: rotate(45deg);
  border-radius: 3px;
  opacity: 0.22;
  margin-top: auto;
}

.pdcast .epcard.featured .diacorner {
  background: #fff;
  opacity: 0.14;
}

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

  .pdcast .epcard.featured {
    grid-column: span 2;
    grid-row: span 1;
    padding: 24px;
  }

  .pdcast .epcard.featured .eptitle {
    font-size: 21px;
  }

  .pdcast .titlesec .maintxt h1 {
    font-size: 38px;
  }

  .pdcast .titlesec .imgwrap img {
    height: 360px;
  }
}

@media (max-width: 768px) {

  .pdcast .titlesec,
  .pdcast .eplist {
    padding: 52px 24px;
  }

  .pdcast .titlesec .maintxt h1 {
    font-size: 28px;
  }

  .pdcast .titlesec .maintxt p {
    font-size: 16px;
  }

  .pdcast .titlesec .imgwrap img {
    height: 240px;
  }

  .pdcast .epgrid {
    grid-template-columns: 1fr;
  }

  .pdcast .epcard.featured {
    grid-column: span 1;
  }

  .pdcast .eplist .sechead {
    flex-direction: column;
    gap: 12px;
  }

  .pdcast .eplist .sechead .aside {
    flex: none;
  }

  .pdcast .eplist .sechead .headtxt h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {

  .pdcast .titlesec,
  .pdcast .eplist {
    padding: 52px 12px;
  }

  .pdcast .titlesec .maintxt h1 {
    font-size: 21px;
  }

  .pdcast .titlesec .deco,
  .pdcast .titlesec .decosmall {
    display: none;
  }
}

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

.abus .pg-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.abus .underline-draw {
  display: inline-block;
  position: relative;
}

.abus .underline-draw::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: #119BFD;
  border-radius: 3px;
  animation: drawline 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

@keyframes drawline {
  to {
    width: 100%;
  }
}

.abus .fade-img {
  opacity: 0;
  animation: fadeimg 0.7s ease 0.2s forwards;
}

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

.abus .ab-top {
  background: #F6F6F6;
  padding: 96px 24px 52px;
  position: relative;
}

.abus .ab-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg at 30% 60%, hsla(210, 8%, 94%, 0.9), hsla(215, 12%, 90%, 0.6), hsla(210, 8%, 94%, 0.9), hsla(218, 10%, 88%, 0.7), hsla(210, 8%, 94%, 0.9));
  pointer-events: none;
}

.abus .ab-top-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 52px;
  position: relative;
}

.abus .ab-top-text {
  flex: 1 1 55%;
}

.abus .ab-overline {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #119BFD;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}

.abus .ab-top-text .ab-h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #022251;
  margin: 0 0 24px;
}

.abus .ab-top-text .ab-h1 .word-cap {
  text-transform: uppercase;
  font-size: 52px;
}

.abus .ab-num-accent {
  font-size: 66px;
  line-height: 1.2;
  color: #119BFD;
  font-weight: 700;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 6px;
}

.abus .ab-brief {
  font-size: 16px;
  line-height: 1.65;
  color: #022251;
  max-width: 520px;
}

.abus .ab-top-img {
  flex: 0 0 38%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 60px 0 rgba(1, 34, 81, 0.11);
}

.abus .ab-top-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.abus .ab-story {
  background: #fff;
  padding: 96px 24px;
}

.abus .ab-story-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.abus .ab-story-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 52px;
}

.abus .ab-aside {
  font-size: 13px;
  line-height: 1.65;
  color: #119BFD;
  letter-spacing: 0.04em;
  padding-top: 6px;
  border-top: 3px solid #119BFD;
}

.abus .ab-story-body .ab-overline {
  margin-bottom: 12px;
}

.abus .ab-story-body .ab-h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #022251;
  margin: 0 0 24px;
}

.abus .ab-story-body .ab-h2 .word-cap {
  text-transform: uppercase;
}

.abus .ab-para {
  font-size: 16px;
  line-height: 1.65;
  color: #333a4d;
  margin: 0 0 12px;
}

.abus .ab-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 52px 0;
}

.abus .ab-divider-line {
  flex: 1;
  height: 1px;
  background: #dde3ef;
}

.abus .ab-divider-shape {
  width: 10px;
  height: 10px;
  background: #119BFD;
  border-radius: 3px;
  transform: rotate(45deg);
}

.abus .ab-people-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.abus .ab-person {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 7px 20px 0 rgba(17, 155, 253, 0.11);
  background: #F6F6F6;
  transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s ease;
}

.abus .ab-person:hover {
  box-shadow: 0 10px 60px 0 rgba(17, 155, 253, 0.18);
  transform: translateY(-4px);
}

.abus .ab-person img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.abus .ab-person-info {
  padding: 24px;
}

.abus .ab-person-name {
  font-size: 21px;
  line-height: 1.2;
  color: #022251;
  margin: 0 0 6px;
  font-weight: 700;
}

.abus .ab-person-role {
  font-size: 13px;
  color: #119BFD;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.abus .ab-person-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #4a5268;
}

.abus .ab-steps {
  padding: 96px 24px;
  position: relative;
}

.abus .ab-steps-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
}

.abus .ab-steps-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.abus .ab-steps-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 34, 81, 0.82);
}

.abus .ab-steps-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.abus .ab-steps-head {
  margin-bottom: 52px;
}

.abus .ab-steps-head .ab-overline {
  color: #119BFD;
}

.abus .ab-steps-head .ab-h2 {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 12px;
}

.abus .ab-steps-head .ab-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
}

.abus .ab-steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abus .ab-step {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(17, 155, 253, 0.35);
  transition: background 0.6s ease, border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abus .ab-step:hover {
  background: rgba(17, 155, 253, 0.12);
  border-color: rgba(17, 155, 253, 0.7);
}

.abus .ab-step-num {
  font-size: 38px;
  line-height: 1.2;
  color: #119BFD;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.abus .ab-step-body .ab-step-label {
  font-size: 21px;
  line-height: 1.45;
  color: #fff;
  margin: 0 0 6px;
  font-weight: 600;
}

.abus .ab-step-body .ab-step-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.abus .ab-step-time {
  font-size: 13px;
  color: #119BFD;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-top: 4px;
  text-align: right;
}

.abus .ab-step-time span {
  display: block;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.abus .ab-step .ab-band {
  display: block;
  height: 3px;
  width: 0;
  background: #119BFD;
  border-radius: 3px;
  margin-top: 12px;
  grid-column: 1 / -1;
  transition: width 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abus .ab-step:hover .ab-band {
  width: 100%;
}

.abus .ab-featured {
  border: 2px dashed #119BFD !important;
  background: rgba(17, 155, 253, 0.09) !important;
}

@media (max-width: 1024px) {
  .abus .ab-top-inner {
    flex-direction: column;
  }

  .abus .ab-top-img {
    flex: 0 0 auto;
    width: 100%;
  }

  .abus .ab-people-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .abus .ab-story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .abus .ab-top-text .ab-h1 {
    font-size: 38px;
  }

  .abus .ab-num-accent {
    font-size: 52px;
  }

  .abus .ab-people-row {
    grid-template-columns: 1fr;
  }

  .abus .ab-step {
    grid-template-columns: 52px 1fr;
  }

  .abus .ab-step-time {
    grid-column: 2;
    text-align: left;
  }

  .abus .ab-steps-head .ab-h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .abus .ab-top {
    padding: 52px 24px 52px;
  }

  .abus .ab-top-text .ab-h1 {
    font-size: 28px;
  }

  .abus .ab-num-accent {
    font-size: 38px;
  }

  .abus .ab-story {
    padding: 52px 24px;
  }

  .abus .ab-steps {
    padding: 52px 24px;
  }

  .abus .ab-step {
    grid-template-columns: 1fr;
  }

  .abus .ab-step-num {
    font-size: 28px;
  }
}

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

.ctus .scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(to bottom,
      transparent,
      transparent 3px,
      rgba(1, 34, 81, 0.018) 3px,
      rgba(1, 34, 81, 0.018) 4px);
  animation: scanDrift 12s linear infinite;
}

@keyframes scanDrift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 80px;
  }
}

.ctus .pg-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.ctus .block-reach {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
}

.ctus .reach-left {
  background: #022251;
  padding: 96px 52px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ctus .reach-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./media_directory/temp-old-resource-12.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.13;
}

.ctus .reach-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #022251 55%, rgba(2, 34, 81, 0.7) 100%);
}

.ctus .reach-dotgrid {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  z-index: 1;
  pointer-events: none;
}

.ctus .reach-dotgrid span {
  display: block;
  border-radius: 28px;
  background: rgba(17, 155, 253, 0.22);
}

.ctus .reach-dotgrid span:nth-child(1) {
  width: 5px;
  height: 5px;
}

.ctus .reach-dotgrid span:nth-child(2) {
  width: 8px;
  height: 8px;
  background: rgba(17, 155, 253, 0.35);
}

.ctus .reach-dotgrid span:nth-child(3) {
  width: 4px;
  height: 4px;
}

.ctus .reach-dotgrid span:nth-child(4) {
  width: 9px;
  height: 9px;
  background: rgba(17, 155, 253, 0.28);
}

.ctus .reach-dotgrid span:nth-child(5) {
  width: 5px;
  height: 5px;
}

.ctus .reach-dotgrid span:nth-child(6) {
  width: 6px;
  height: 6px;
  background: rgba(17, 155, 253, 0.4);
}

.ctus .reach-dotgrid span:nth-child(7) {
  width: 7px;
  height: 7px;
}

.ctus .reach-dotgrid span:nth-child(8) {
  width: 4px;
  height: 4px;
}

.ctus .reach-dotgrid span:nth-child(9) {
  width: 10px;
  height: 10px;
  background: rgba(17, 155, 253, 0.18);
}

.ctus .reach-dotgrid span:nth-child(10) {
  width: 5px;
  height: 5px;
}

.ctus .reach-dotgrid span:nth-child(11) {
  width: 7px;
  height: 7px;
  background: rgba(17, 155, 253, 0.3);
}

.ctus .reach-dotgrid span:nth-child(12) {
  width: 4px;
  height: 4px;
}

.ctus .reach-inner {
  position: relative;
  z-index: 2;
}

.ctus .reach-overline {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #119BFD;
  margin-bottom: 12px;
  font-weight: 600;
}

.ctus .reach-h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
}

.ctus .reach-h1 em {
  font-style: normal;
  text-transform: uppercase;
  color: #119BFD;
}

.ctus .reach-tagline {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(246, 246, 246, 0.78);
  max-width: 380px;
  margin: 0 0 52px 0;
}

.ctus .reach-contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.ctus .rcontact-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(17, 155, 253, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(17, 155, 253, 0.25);
  box-shadow: inset 0 1px 2px rgba(17, 155, 253, 0.08);
  transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ctus .rcontact-item:hover .rcontact-ico {
  background: rgba(17, 155, 253, 0.28);
}

.ctus .rcontact-ico svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #119BFD;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ctus .rcontact-label {
  font-size: 13px;
  color: rgba(246, 246, 246, 0.5);
  display: block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ctus .rcontact-val {
  font-size: 16px;
  color: #F6F6F6;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.55s ease;
}

.ctus .rcontact-val:hover {
  color: #119BFD;
}

.ctus .reach-right {
  background: #F6F6F6;
  padding: 96px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.ctus .reach-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg at 80% 20%, rgba(17, 155, 253, 0.04) 0deg, rgba(2, 34, 81, 0.03) 120deg, rgba(17, 155, 253, 0.02) 240deg, rgba(2, 34, 81, 0.04) 360deg);
  pointer-events: none;
}

.ctus .form-overline {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #022251;
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
}

.ctus .form-heading {
  font-size: 28px;
  line-height: 1.2;
  color: #022251;
  letter-spacing: -0.01em;
  margin: 0 0 24px 0;
  position: relative;
}

.ctus .ctform {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.ctus .frow {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ctus .frow-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ctus .flabel {
  font-size: 13px;
  color: #022251;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.ctus .finput {
  padding: 12px 16px;
  border: 1.5px solid rgba(2, 34, 81, 0.18);
  border-radius: 8px;
  font-size: 16px;
  color: #022251;
  background: #ffffff;
  outline: none;
  transition: border-color 0.55s ease, box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 3px 2px 0 rgba(17, 155, 253, 0.06);
  width: 100%;
  box-sizing: border-box;
}

.ctus .finput::placeholder {
  font-size: 13px;
  color: rgba(2, 34, 81, 0.38);
}

.ctus .finput:focus {
  border-color: #119BFD;
  box-shadow: 0 7px 20px 0 rgba(17, 155, 253, 0.11);
}

.ctus .fcheck-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ctus .fcheck-grouplabel {
  font-size: 13px;
  color: #022251;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.ctus .fcheck-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.ctus .fcheck-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #119BFD;
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
}

.ctus .fcheck-item span {
  font-size: 16px;
  color: #022251;
  line-height: 1.45;
}

.ctus .fprivacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(17, 155, 253, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(17, 155, 253, 0.14);
}

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

.ctus .fprivacy-text {
  font-size: 13px;
  color: #022251;
  line-height: 1.65;
}

.ctus .fprivacy-text a {
  color: #119BFD;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.5s ease;
}

.ctus .fprivacy-text a:hover {
  color: #022251;
}

.ctus .fsubmit {
  padding: 16px 52px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: #022251;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
  box-shadow: 0 7px 20px 0 rgba(2, 34, 81, 0.11);
  align-self: flex-start;
}

.ctus .fsubmit::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(135deg, rgba(17, 155, 253, 0.0) 0%, rgba(17, 155, 253, 0.9) 50%, rgba(17, 155, 253, 0.0) 100%);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ctus .fsubmit:hover::before {
  left: 130%;
}

.ctus .fsubmit:hover {
  box-shadow: 0 10px 60px 0 rgba(17, 155, 253, 0.11);
}

.ctus .fsubmit:focus {
  outline: 2px solid #119BFD;
  outline-offset: 3px;
}

.ctus .divider-curves {
  position: relative;
  height: 52px;
  background: #F6F6F6;
  overflow: hidden;
}

.ctus .divider-curves svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.ctus .block-detail {
  background: #ffffff;
  padding: 96px 0;
  position: relative;
}

.ctus .block-detail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 180deg at 15% 85%, rgba(17, 155, 253, 0.03) 0deg, rgba(2, 34, 81, 0.02) 90deg, rgba(17, 155, 253, 0.04) 200deg, rgba(2, 34, 81, 0.02) 360deg);
  pointer-events: none;
}

.ctus .detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 52px;
  align-items: start;
  position: relative;
}

.ctus .detail-main {
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.ctus .detail-overline {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #119BFD;
  margin-bottom: 12px;
  font-weight: 600;
}

.ctus .detail-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #022251;
  letter-spacing: -0.015em;
  margin: 0 0 24px 0;
}

.ctus .detail-h2 em {
  font-style: normal;
  text-transform: uppercase;
}

.ctus .detail-body {
  display: flex;
  flex-direction: row;
  gap: 52px;
  align-items: flex-start;
}

.ctus .detail-aside {
  width: 120px;
  flex-shrink: 0;
}

.ctus .aside-note {
  font-size: 13px;
  color: rgba(2, 34, 81, 0.5);
  line-height: 1.65;
  letter-spacing: 0.03em;
  padding-top: 6px;
  border-top: 2px solid #119BFD;
}

.ctus .detail-paras {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ctus .detail-p {
  font-size: 16px;
  line-height: 1.65;
  color: #022251;
}

.ctus .pullquote-block {
  padding: 24px;
  background: #022251;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 60px 0 rgba(2, 34, 81, 0.11);
}

.ctus .pullquote-mark {
  width: 32px;
  height: 24px;
  margin-bottom: 12px;
}

.ctus .pullquote-mark svg {
  width: 32px;
  height: 24px;
  fill: rgba(17, 155, 253, 0.5);
}

.ctus .pullquote-text {
  font-size: 21px;
  line-height: 1.45;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0 0 12px 0;
}

.ctus .pullquote-attr {
  font-size: 13px;
  color: rgba(17, 155, 253, 0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ctus .channels-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1.5px solid rgba(2, 34, 81, 0.1);
}

.ctus .channels-label {
  font-size: 13px;
  color: rgba(2, 34, 81, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.ctus .channel-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  border: 1.5px solid rgba(2, 34, 81, 0.1);
  background: #F6F6F6;
  transition: border-color 0.55s ease, background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
  box-shadow: 0 3px 2px 0 rgba(2, 34, 81, 0.06);
}

.ctus .channel-link:hover {
  border-color: #119BFD;
  background: #ffffff;
  box-shadow: 0 7px 20px 0 rgba(17, 155, 253, 0.11);
}

.ctus .channel-link:focus {
  outline: 2px solid #119BFD;
  outline-offset: 2px;
}

.ctus .channel-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #022251;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ctus .channel-ico svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #119BFD;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ctus .channel-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ctus .channel-name {
  font-size: 16px;
  color: #022251;
  font-weight: 600;
  line-height: 1.2;
}

.ctus .channel-desc {
  font-size: 13px;
  color: rgba(2, 34, 81, 0.55);
  line-height: 1.45;
}

.ctus .detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px;
}

.ctus .sidebar-card {
  background: #F6F6F6;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 7px 20px 0 rgba(2, 34, 81, 0.11);
}

.ctus .sidebar-card-label {
  font-size: 13px;
  color: rgba(2, 34, 81, 0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.ctus .sidebar-addr {
  font-size: 16px;
  line-height: 1.65;
  color: #022251;
}

.ctus .sidebar-dots {
  display: flex;
  flex-direction: row;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.ctus .sidebar-dots span {
  border-radius: 28px;
  background: rgba(17, 155, 253, 0.2);
}

.ctus .sidebar-dots span:nth-child(1) {
  width: 8px;
  height: 8px;
}

.ctus .sidebar-dots span:nth-child(2) {
  width: 12px;
  height: 12px;
  background: rgba(17, 155, 253, 0.35);
}

.ctus .sidebar-dots span:nth-child(3) {
  width: 6px;
  height: 6px;
}

.ctus .sidebar-dots span:nth-child(4) {
  width: 10px;
  height: 10px;
  background: rgba(17, 155, 253, 0.25);
}

.ctus .sidebar-dots span:nth-child(5) {
  width: 7px;
  height: 7px;
}

.ctus .sidebar-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(2, 34, 81, 0.08);
}

.ctus .sidebar-stat:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.ctus .sidebar-stat-num {
  font-size: 38px;
  line-height: 1.2;
  color: #119BFD;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ctus .sidebar-stat-desc {
  font-size: 13px;
  color: rgba(2, 34, 81, 0.6);
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .ctus .block-reach {
    grid-template-columns: 1fr;
  }

  .ctus .reach-left {
    padding: 52px 24px;
    min-height: 400px;
  }

  .ctus .reach-right {
    padding: 52px 24px;
  }

  .ctus .detail-grid {
    grid-template-columns: 1fr;
  }

  .ctus .detail-sidebar {
    position: static;
  }

  .ctus .frow-duo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ctus .reach-h1 {
    font-size: 38px;
  }

  .ctus .detail-h2 {
    font-size: 28px;
  }

  .ctus .detail-body {
    flex-direction: column;
    gap: 24px;
  }

  .ctus .detail-aside {
    width: 100%;
  }

  .ctus .reach-left {
    padding: 52px 24px;
  }

  .ctus .reach-right {
    padding: 52px 24px;
  }

  .ctus .block-detail {
    padding: 52px 0;
  }

  .ctus .fsubmit {
    padding: 16px 24px;
    align-self: stretch;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ctus .reach-h1 {
    font-size: 28px;
  }

  .ctus .pullquote-text {
    font-size: 16px;
  }

  .ctus .sidebar-stat-num {
    font-size: 28px;
  }
}

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

.lrnprog .lpinner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

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

.lrnprog .risef {
  animation: riseUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.lrnprog .risef2 {
  animation: riseUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
}

.lrnprog .risef3 {
  animation: riseUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.28s both;
}

.lrnprog .titband {
  padding: 52px 0 52px;
  position: relative;
}

.lrnprog .titband-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 52px;
  position: relative;
}

.lrnprog .titband-imgcard {
  flex: 0 0 320px;
  width: 320px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.lrnprog .titband-imgcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  display: block;
}

.lrnprog .titband-corner {
  position: absolute;
  pointer-events: none;
}

.lrnprog .titband-corner.tl {
  top: -6px;
  left: -6px;
  width: 40px;
  height: 40px;
}

.lrnprog .titband-corner.br {
  bottom: -6px;
  right: -6px;
  width: 40px;
  height: 40px;
}

.lrnprog .titband-text {
  flex: 1;
  min-width: 0;
}

.lrnprog .titband-over {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #119BFD;
  margin-bottom: 12px;
  font-weight: 600;
}

.lrnprog .titband-h1 {
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #022251;
  margin: 0 0 12px;
  font-weight: 800;
}

.lrnprog .titband-h1 span {
  text-transform: uppercase;
}

.lrnprog .titband-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4a6b;
  margin: 0 0 24px;
  max-width: 520px;
}

.lrnprog .titband-link {
  display: inline-block;
  background: #022251;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lrnprog .titband-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #119BFD 0%, #022251 100%);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lrnprog .titband-link:hover::before {
  opacity: 1;
}

.lrnprog .titband-link span {
  position: relative;
  z-index: 1;
}

.lrnprog .cardsgrid-sec {
  padding: 52px 0 96px;
  background: #F6F6F6;
}

.lrnprog .cardsgrid-head {
  margin-bottom: 52px;
}

.lrnprog .cardsgrid-over {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #119BFD;
  margin-bottom: 6px;
  font-weight: 600;
}

.lrnprog .cardsgrid-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #022251;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lrnprog .pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lrnprog .pcard {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 2px 0 rgba(1, 34, 81, 0.06), 0 7px 20px 0 rgba(1, 34, 81, 0.11);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lrnprog .pcard:hover {
  box-shadow: 0 10px 60px 0 rgba(1, 34, 81, 0.11);
  transform: translateY(-4px);
}

.lrnprog .pcard-imgbox {
  width: 100%;
  height: 180px;
  background: #022251;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.lrnprog .pcard-imgbox svg {
  opacity: 0.18;
}

.lrnprog .pcard-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #119BFD;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.04em;
}

.lrnprog .pcard-lvl {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(2, 34, 81, 0.82);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
}

.lrnprog .pcard-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lrnprog .pcard-h3 {
  font-size: 21px;
  line-height: 1.2;
  color: #022251;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lrnprog .pcard-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4a6b;
  margin: 0;
  flex: 1;
}

.lrnprog .pcard-foot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px 24px;
  gap: 12px;
}

.lrnprog .pcard-price {
  font-size: 21px;
  font-weight: 800;
  color: #022251;
  letter-spacing: -0.01em;
}

.lrnprog .pcard-btn {
  display: inline-block;
  background: #119BFD;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.55s ease;
}

.lrnprog .pcard-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #022251 0%, #119BFD 100%);
  opacity: 0;
  transition: opacity 0.55s ease;
}

.lrnprog .pcard-btn:hover::before {
  opacity: 1;
}

.lrnprog .pcard-btn span {
  position: relative;
  z-index: 1;
}

.lrnprog .metband {
  background: linear-gradient(0deg, #F6F6F6 0%, #022251 100%);
  padding: 96px 0 52px;
}

.lrnprog .metband-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 52px;
  align-items: start;
}

.lrnprog .metband-left {}

.lrnprog .metband-over {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #119BFD;
  margin-bottom: 12px;
  font-weight: 600;
}

.lrnprog .metband-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lrnprog .metband-p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(246, 246, 246, 0.82);
  margin: 0;
}

.lrnprog .metband-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lrnprog .metitem {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 3px 2px 0 rgba(17, 155, 253, 0.06);
  border: 1px solid rgba(17, 155, 253, 0.18);
  transition: background 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lrnprog .metitem:hover {
  background: rgba(17, 155, 253, 0.12);
}

.lrnprog .metitem-num {
  font-size: 52px;
  font-weight: 800;
  color: #119BFD;
  line-height: 1.2;
  letter-spacing: -0.03em;
  display: block;
}

.lrnprog .metitem-label {
  font-size: 16px;
  color: #F6F6F6;
  line-height: 1.45;
  margin-top: 6px;
  display: block;
}

.lrnprog .pullsec {
  padding: 96px 0 52px;
  background: #fff;
}

.lrnprog .pullsec-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 52px;
  align-items: start;
}

.lrnprog .pullsec-aside {
  padding-top: 6px;
}

.lrnprog .pullsec-aside-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #119BFD;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.lrnprog .pullsec-aside-note {
  font-size: 13px;
  line-height: 1.65;
  color: #6a7a9b;
}

.lrnprog .pullsec-main {}

.lrnprog .pullquote {
  font-size: 38px;
  line-height: 1.45;
  color: #022251;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  padding: 24px 0 24px 24px;
  border-top: 3px solid #119BFD;
}

.lrnprog .pullsec-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lrnprog .pullsec-p {
  font-size: 16px;
  line-height: 1.65;
  color: #3a4a6b;
  margin: 0;
}

.lrnprog .faqsec {
  padding: 52px 0 96px;
  background: #F6F6F6;
  position: relative;
}

.lrnprog .faqsec-polytex {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lrnprog .faqsec-polytex svg {
  width: 100%;
  height: 100%;
  opacity: 0.035;
}

.lrnprog .faqsec-head {
  margin-bottom: 52px;
  position: relative;
}

.lrnprog .faqsec-over {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #119BFD;
  margin-bottom: 6px;
  font-weight: 600;
}

.lrnprog .faqsec-h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #022251;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lrnprog .faqlist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.lrnprog .faqitem {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 2px 0 rgba(1, 34, 81, 0.06);
  overflow: hidden;
}

.lrnprog .faqitem input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.lrnprog .faqitem-lbl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #022251;
  line-height: 1.45;
  gap: 24px;
  transition: color 0.5s ease;
}

.lrnprog .faqitem-lbl:hover {
  color: #119BFD;
}

.lrnprog .faqitem-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lrnprog .faqitem-icon::before,
.lrnprog .faqitem-icon::after {
  content: '';
  position: absolute;
  background: #119BFD;
  border-radius: 3px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
}

.lrnprog .faqitem-icon::before {
  width: 14px;
  height: 2px;
  top: 11px;
  left: 5px;
}

.lrnprog .faqitem-icon::after {
  width: 2px;
  height: 14px;
  top: 5px;
  left: 11px;
}

.lrnprog .faqitem-chk:checked~.faqitem-lbl .faqitem-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.lrnprog .faqitem-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lrnprog .faqitem-chk:checked~.faqitem-ans {
  max-height: 300px;
}

.lrnprog .faqitem-ansin {
  padding: 0 24px 24px;
  font-size: 16px;
  line-height: 1.65;
  color: #3a4a6b;
}

.lrnprog .aboutstrip {
  padding: 52px 0;
  background: #022251;
}

.lrnprog .aboutstrip-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 52px;
}

.lrnprog .aboutstrip-txt {
  flex: 1;
}

.lrnprog .aboutstrip-over {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #119BFD;
  margin-bottom: 12px;
  font-weight: 600;
}

.lrnprog .aboutstrip-h2 {
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lrnprog .aboutstrip-p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(246, 246, 246, 0.8);
  margin: 0;
  max-width: 560px;
}

.lrnprog .aboutstrip-cta {
  flex: 0 0 auto;
}

.lrnprog .aboutstrip-btn {
  display: inline-block;
  background: #119BFD;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lrnprog .aboutstrip-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff 0%, #119BFD 100%);
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lrnprog .aboutstrip-btn:hover::before {
  opacity: 1;
}

.lrnprog .aboutstrip-btn:hover {
  color: #022251;
}

.lrnprog .aboutstrip-btn span {
  position: relative;
  z-index: 1;
}

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

  .lrnprog .metband-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lrnprog .pullsec-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lrnprog .titband-h1 {
    font-size: 38px;
  }

  .lrnprog .titband-imgcard {
    flex: 0 0 240px;
    width: 240px;
  }
}

@media (max-width: 768px) {
  .lrnprog .titband-strip {
    flex-direction: column;
    gap: 24px;
  }

  .lrnprog .titband-imgcard {
    width: 100%;
    flex: none;
    height: 180px;
  }

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

  .lrnprog .metband-right {
    grid-template-columns: 1fr 1fr;
  }

  .lrnprog .pullsec-body {
    grid-template-columns: 1fr;
  }

  .lrnprog .aboutstrip-flex {
    flex-direction: column;
    gap: 24px;
  }

  .lrnprog .titband-h1 {
    font-size: 28px;
  }

  .lrnprog .pullquote {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .lrnprog .metband-right {
    grid-template-columns: 1fr;
  }

  .lrnprog .metitem-num {
    font-size: 38px;
  }

  .lrnprog .cardsgrid-h2,
  .lrnprog .faqsec-h2 {
    font-size: 28px;
  }
}

.successPage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  background: #F6F6F6;
}

.successPage .successCard {
  background: #ffffff;
  border-radius: 16px;
  padding: 52px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 10px 60px 0 rgba(1, 34, 81, 0.11);
  text-align: center;
}

.successPage .iconWrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #119BFD;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 7px 20px 0 rgba(17, 155, 253, 0.11);
}

.successPage .iconWrap svg {
  display: block;
}

.successPage .successHeading {
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #022251;
  margin: 0 0 12px;
}

.successPage .successSub {
  font-size: 16px;
  line-height: 1.65;
  color: #022251;
  opacity: 0.72;
  margin: 0 0 52px;
}

.successPage .backBtn {
  display: inline-block;
  padding: 12px 52px;
  background: #119BFD;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.5s ease;
  box-shadow: 0 3px 2px 0 rgba(17, 155, 253, 0.06);
}

.successPage .backBtn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.successPage .backBtn:hover::before {
  left: 130%;
}

.successPage .backBtn:hover {
  box-shadow: 0 7px 20px 0 rgba(17, 155, 253, 0.11);
}

.successPage .backBtn:focus {
  outline: 3px solid #022251;
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .successPage .successCard {
    padding: 24px;
  }

  .successPage .successHeading {
    font-size: 28px;
  }
}