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

body {
  margin: 0;
}

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

.hd-root {
  background: linear-gradient(135deg, #EEF3F5 0%, #ffffff 55%, #e8eef6 100%);
  font-family: 'Figtree', sans-serif;
  position: relative;
  overflow: hidden;
}

.hd-root::before {
  background: linear-gradient(160deg, rgba(72, 127, 193, 0.13) 0%, rgba(160, 170, 221, 0.07) 60%, transparent 100%);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.hd-root::after {
  border: 2px solid rgba(72, 127, 193, 0.09);
  border-radius: 42px;
  bottom: -60px;
  content: '';
  display: block;
  height: 260px;
  pointer-events: none;
  position: absolute;
  right: -60px;
  width: 260px;
  z-index: 0;
}

.hd-inner {
  align-items: stretch;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1366px;
  padding: 40px 40px 40px 40px;
  position: relative;
  z-index: 1;
}

.hd-brand {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 16px;
  justify-content: center;
  max-width: 420px;
}

.hd-logo-pill {
  align-items: center;
  background: #ffffff;
  border: 1.5px solid rgba(72, 127, 193, 0.22);
  border-radius: 26px;
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07), 0 4px 25px -2px rgba(72, 127, 193, 0.09);
  display: flex;
  justify-content: center;
  padding: 16px 40px;
}

.hd-logo-pill img {
  display: block;
  height: 80px;
  object-fit: contain;
  object-position: center;
  width: 90px;
}

.hd-tagline {
  color: #1e3a5c;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hd-tagline em {
  color: #487FC1;
  font-style: normal;
}

.hd-sub {
  color: #3a4a5c;
  font-size: 15px;
  line-height: 1.8;
  max-width: 340px;
}

.hd-nav-col {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 16px;
  justify-content: center;
}

.hd-contact-strip {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.hd-contact-item {
  align-items: center;
  background: rgba(72, 127, 193, 0.06);
  border: 1px solid rgba(72, 127, 193, 0.14);
  border-radius: 9px;
  color: #2a3d55;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.5;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.42s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.42s cubic-bezier(0.34, 1.2, 0.64, 1), color 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.hd-contact-item:hover,
.hd-contact-item:focus {
  background: rgba(72, 127, 193, 0.13);
  border-color: rgba(72, 127, 193, 0.35);
  color: #1e3a5c;
  outline: none;
}

.hd-contact-item svg {
  flex-shrink: 0;
}

.hd-nav-links {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(72, 127, 193, 0.12);
  border-radius: 26px;
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07), 0 4px 25px -2px rgba(72, 127, 193, 0.09);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 8px 16px;
}

.hd-nav-links li {
  display: flex;
}

.hd-nav-link {
  border-radius: 9px;
  color: #2a3d55;
  display: block;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  min-height: 44px;
  overflow: hidden;
  padding: 8px 16px;
  position: relative;
  text-decoration: none;
  transition: color 0.38s ease-in-out;
  align-items: center;
  display: flex;
}

.hd-nav-link::before {
  background: linear-gradient(180deg, rgba(72, 127, 193, 0.0) 0%, rgba(72, 127, 193, 0.14) 100%);
  bottom: 0;
  content: '';
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
  width: 100%;
  z-index: 0;
}

.hd-nav-link:hover::before,
.hd-nav-link:focus::before {
  transform: translateY(0);
}

.hd-nav-link:hover,
.hd-nav-link:focus {
  color: #1e3a5c;
  outline: none;
}

.hd-nav-link span {
  position: relative;
  z-index: 1;
}

.hd-nav-link.active-pg {
  background: rgba(72, 127, 193, 0.1);
  color: #1e3a5c;
}

@media (max-width: 900px) {
  .hd-inner {
    flex-direction: column;
    gap: 16px;
    padding: 40px 16px 40px 16px;
  }

  .hd-brand {
    max-width: 100%;
  }

  .hd-nav-col {
    align-items: flex-start;
  }

  .hd-contact-strip {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hd-nav-links {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .hd-tagline {
    font-size: 24px;
  }

  .hd-contact-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.ft-root {
  background: linear-gradient(170deg, #1e3a5c 0%, #2a4d73 55%, #1a3050 100%);
  font-family: 'Figtree', sans-serif;
  overflow: hidden;
  position: relative;
}

.ft-wave {
  display: block;
  line-height: 0;
  overflow: hidden;
  width: 100%;
}

.ft-wave svg {
  display: block;
  width: 100%;
}

.ft-body {
  margin: 0 auto;
  max-width: 1366px;
  padding: 40px 40px 16px 40px;
  position: relative;
  z-index: 1;
}

.ft-grid {
  align-items: flex-start;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.ft-brand-col {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 16px;
  max-width: 280px;
}

.ft-logo-wrap {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(160, 170, 221, 0.25);
  border-radius: 26px;
  box-shadow: 0 3px 3px -2px rgba(160, 170, 221, 0.07), 0 4px 25px -2px rgba(160, 170, 221, 0.09);
  display: flex;
  justify-content: center;
  padding: 16px 40px;
}

.ft-logo-wrap img {
  background: #ffffff;
  border-radius: 4px;
  display: block;
  height: 56px;
  object-fit: contain;
  object-position: center;
  padding: 8px;
  width: 64px;
}

.ft-brand-name {
  color: #EEF3F5;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.ft-brand-desc {
  color: rgba(238, 243, 245, 0.65);
  font-size: 15px;
  line-height: 1.8;
}

.ft-links-col {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
}

.ft-links-label {
  color: rgba(160, 170, 221, 0.8);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

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

.ft-link-list a {
  border-radius: 4px;
  color: rgba(238, 243, 245, 0.8);
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  min-height: 44px;
  padding: 8px 8px;
  text-decoration: none;
  transition: color 0.40s ease-in-out, background-color 0.40s ease-in-out;
  display: flex;
  align-items: center;
}

.ft-link-list a:hover,
.ft-link-list a:focus {
  background: rgba(72, 127, 193, 0.18);
  color: #EEF3F5;
  outline: none;
}

.ft-contact-col {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 16px;
  max-width: 260px;
}

.ft-contact-item {
  color: rgba(238, 243, 245, 0.75);
  font-size: 15px;
  line-height: 1.8;
}

.ft-contact-item a {
  color: rgba(160, 170, 221, 0.95);
  text-decoration: none;
  transition: color 0.38s ease-in-out;
}

.ft-contact-item a:hover,
.ft-contact-item a:focus {
  color: #EEF3F5;
  outline: none;
}

.ft-contact-label {
  color: rgba(160, 170, 221, 0.7);
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.ft-bottom {
  border-top: 1px solid rgba(160, 170, 221, 0.15);
  margin: 40px auto 0 auto;
  max-width: 1366px;
  padding: 16px 40px 40px 40px;
}

.ft-bottom-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.ft-copy {
  color: rgba(238, 243, 245, 0.45);
  font-size: 15px;
  line-height: 1.5;
}

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

.ft-policy-links a {
  color: rgba(160, 170, 221, 0.7);
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.38s ease-in-out;
}

.ft-policy-links a:hover,
.ft-policy-links a:focus {
  color: #EEF3F5;
  outline: none;
}

@media (max-width: 900px) {
  .ft-grid {
    flex-direction: column;
    gap: 40px;
  }

  .ft-brand-col {
    max-width: 100%;
  }

  .ft-contact-col {
    max-width: 100%;
  }

  .ft-body {
    padding: 40px 16px 16px 16px;
  }

  .ft-bottom {
    padding: 16px 16px 40px 16px;
  }
}

@media (max-width: 600px) {
  .ft-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .ft-policy-links {
    flex-direction: column;
    gap: 8px;
  }
}

.ck-popup {
  background: #ffffff;
  border: 1px solid rgba(72, 127, 193, 0.18);
  border-radius: 9px;
  box-shadow: 0 10px 36px -2px rgba(72, 127, 193, 0.11);
  display: none;
  font-family: 'Figtree', sans-serif;
  left: 0;
  margin: 0 auto;
  max-width: 480px;
  padding: 40px;
  position: fixed;
  right: 0;
  top: 40px;
  transform: translateX(120%);
  transition: transform 320ms ease-in-out;
  width: calc(100% - 80px);
  z-index: 1200;
}

.ck-popup.ck-visible {
  transform: translateX(0);
}

.ck-popup-title {
  color: #1e3a5c;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 16px 0;
}

.ck-popup-desc {
  color: #3a4a5c;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.ck-policy-ref {
  color: rgba(72, 127, 193, 0.85);
  display: block;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
  text-decoration: underline;
  transition: color 0.38s ease-in-out;
}

.ck-policy-ref:hover,
.ck-policy-ref:focus {
  color: #1e3a5c;
  outline: none;
}

.ck-settings-panel {
  border-top: 1px solid rgba(72, 127, 193, 0.12);
  display: none;
  margin-bottom: 16px;
  padding-top: 16px;
}

.ck-settings-panel.ck-open {
  display: block;
}

.ck-toggle-row {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ck-toggle-label {
  color: #2a3d55;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.ck-toggle {
  appearance: none;
  background: rgba(72, 127, 193, 0.15);
  border: 1.5px solid rgba(72, 127, 193, 0.3);
  border-radius: 26px;
  cursor: pointer;
  height: 26px;
  position: relative;
  transition: background-color 0.42s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
  width: 48px;
  flex-shrink: 0;
}

.ck-toggle::after {
  background: #487FC1;
  border-radius: 26px;
  content: '';
  height: 18px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
  width: 18px;
}

.ck-toggle:checked {
  background: rgba(72, 127, 193, 0.3);
  border-color: #487FC1;
}

.ck-toggle:checked::after {
  transform: translateX(22px);
}

.ck-toggle:focus {
  border-color: #1e3a5c;
  background: rgba(72, 127, 193, 0.2);
  outline: none;
}

.ck-btns {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.ck-btn-accept {
  background: #487FC1;
  border: none;
  border-radius: 9px;
  color: #ffffff;
  cursor: pointer;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  min-height: 44px;
  overflow: hidden;
  padding: 8px 40px;
  position: relative;
  transition: background-color 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), color 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.ck-btn-accept::before {
  background: #1e3a5c;
  bottom: 0;
  content: '';
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
  width: 100%;
  z-index: 0;
}

.ck-btn-accept:hover::before,
.ck-btn-accept:focus::before {
  transform: translateY(0);
}

.ck-btn-accept:focus {
  outline: none;
  border: 2px solid #1e3a5c;
}

.ck-btn-accept span {
  position: relative;
  z-index: 1;
}

.ck-btn-settings {
  background: none;
  border: none;
  color: #487FC1;
  cursor: pointer;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  min-height: 44px;
  padding: 8px;
  text-decoration: underline;
  transition: color 0.38s ease-in-out;
}

.ck-btn-settings:hover,
.ck-btn-settings:focus {
  color: #1e3a5c;
  outline: none;
}

.ck-btn-deny {
  background: none;
  border: none;
  color: rgba(58, 74, 92, 0.7);
  cursor: pointer;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  min-height: 44px;
  padding: 8px;
  text-decoration: underline;
  transition: color 0.38s ease-in-out;
}

.ck-btn-deny:hover,
.ck-btn-deny:focus {
  color: #1e3a5c;
  outline: none;
}

.terms-box {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
}

.terms-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #2a2f3d;
  margin-bottom: 16px;
}

.terms-box ul,
.terms-box ol {
  font-size: 15px;
  line-height: 1.8;
  color: #2a2f3d;
  padding-left: 40px;
  margin-bottom: 16px;
}

.terms-box ul {
  list-style-type: disc;
}

.terms-box ol {
  list-style-type: decimal;
}

.terms-box li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.terms-box li:last-child {
  margin-bottom: 0;
}

.terms-box ul ul,
.terms-box ol ol,
.terms-box ul ol,
.terms-box ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.terms-box strong,
.terms-box b {
  font-weight: 700;
  color: #1e2535;
}

.terms-box em,
.terms-box i {
  font-style: italic;
  color: #2a2f3d;
}

.terms-box a {
  color: #487FC1;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), text-decoration-color 0.4s ease-in-out;
}

.terms-box a:hover {
  color: #A0AADD;
  text-decoration-color: #A0AADD;
}

.terms-box hr {
  border: none;
  border-top: 1px solid #EEF3F5;
  margin: 40px 0;
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07);
}

.terms-box div {
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .terms-box {
    padding: 80px 40px;
  }
}

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

  .terms-box ul,
  .terms-box ol {
    padding-left: 16px;
  }
}

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

.rt .pg-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 40px;
}

.rt .pg-wrap-sm {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 80px;
}

.rt .divider-num {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 40px 80px;
  max-width: 1366px;
  margin: 0 auto;
}

.rt .divider-num span.line {
  flex: 1;
  height: 1px;
  background: #A0AADD;
  opacity: 0.4;
}

.rt .divider-num span.num {
  font-size: 15px;
  color: #A0AADD;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rt .title-blk {
  position: relative;
  background: #EEF3F5;
  background-image: linear-gradient(135deg, #EEF3F5 0%, #ffffff 60%, #EEF3F5 100%);
}

.rt .title-blk::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 0% 0%, rgba(72, 127, 193, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.rt .title-blk-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 560px;
}

.rt .title-txt {
  flex: 0 0 52%;
  padding: 80px 40px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

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

.rt .title-pattern svg {
  width: 100%;
  height: 100%;
}

.rt .title-tag {
  display: inline-block;
  font-size: 15px;
  color: #487FC1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  font-weight: 600;
}

.rt .title-h1 {
  font-size: 70px;
  line-height: 1.1;
  color: #1b2d45;
  margin-bottom: 16px;
  font-weight: 800;
}

.rt .title-h1 em {
  font-style: normal;
  color: #487FC1;
}

.rt .title-sub {
  font-size: 24px;
  line-height: 1.5;
  color: #3a4a5c;
  margin-bottom: 40px;
  max-width: 480px;
}

.rt .title-sub span {
  color: #A0AADD;
  font-weight: 600;
}

.rt .title-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.rt .btn-prim {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  background: #487FC1;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9px;
  text-decoration: none;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: color 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07), 0 4px 25px -2px rgba(72, 127, 193, 0.09);
}

.rt .btn-prim::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #1b2d45;
  transition: height 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0;
}

.rt .btn-prim:hover::after {
  height: 100%;
}

.rt .btn-prim:hover {
  box-shadow: 0 10px 36px -2px rgba(72, 127, 193, 0.11);
}

.rt .btn-prim-text {
  position: relative;
  z-index: 1;
}

.rt .btn-sec {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: #487FC1;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9px;
  text-decoration: none;
  border: 2px solid #487FC1;
  cursor: pointer;
  transition: background 0.4s ease-in-out, color 0.4s ease-in-out;
}

.rt .btn-sec:hover {
  background: #EEF3F5;
  color: #1b2d45;
}

.rt .title-img {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
}

.rt .title-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.5s ease-in-out;
}

.rt .title-img:hover img {
  filter: brightness(1);
}

.rt .title-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(72, 127, 193, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.rt .title-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 56px 56px 0;
  border-color: transparent #487FC1 transparent transparent;
}

.rt .exp-blk {
  background: #ffffff;
  padding: 80px 0;
}

.rt .exp-shape {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.rt .exp-left {
  flex: 0 0 38%;
}

.rt .exp-img-wrap {
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 4px 25px -2px rgba(72, 127, 193, 0.09);
}

.rt .exp-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.5s ease-in-out;
}

.rt .exp-img-wrap:hover img {
  filter: brightness(1);
}

.rt .exp-img-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 48px 0 0 48px;
  border-color: transparent transparent transparent #A0AADD;
}

.rt .exp-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.rt .exp-head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.rt .exp-shape-mark {
  width: 8px;
  height: 8px;
  background: #487FC1;
  border-radius: 4px;
  margin-top: 8px;
  flex-shrink: 0;
}

.rt .exp-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b2d45;
  font-weight: 700;
}

.rt .exp-h2 span {
  color: #A0AADD;
}

.rt .exp-phases {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rt .phase-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 9px;
  background: #EEF3F5;
  border: 1px solid rgba(160, 170, 221, 0.2);
  transition: background 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.rt .phase-item:hover {
  background: #ffffff;
  box-shadow: 0 4px 25px -2px rgba(72, 127, 193, 0.09);
}

.rt .phase-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: #A0AADD;
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
}

.rt .phase-dot.active {
  background: #487FC1;
}

.rt .phase-dot::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  width: 2px;
  height: 32px;
  background: rgba(160, 170, 221, 0.35);
}

.rt .phase-item:last-child .phase-dot::after {
  display: none;
}

.rt .phase-txt h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1b2d45;
  margin-bottom: 8px;
}

.rt .phase-txt p {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a5c;
}

.rt .rep-blk {
  background: #EEF3F5;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.rt .rep-geo {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 42px;
  background: rgba(72, 127, 193, 0.06);
  pointer-events: none;
}

.rt .rep-geo2 {
  position: absolute;
  bottom: -24px;
  left: 40px;
  width: 120px;
  height: 120px;
  border-radius: 26px;
  background: rgba(160, 170, 221, 0.1);
  pointer-events: none;
}

.rt .rep-inner {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.rt .rep-text {
  flex: 0 0 44%;
}

.rt .rep-anchor {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.rt .rep-sq {
  width: 10px;
  height: 10px;
  background: #487FC1;
  border-radius: 4px;
}

.rt .rep-label {
  font-size: 15px;
  color: #487FC1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.rt .rep-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b2d45;
  font-weight: 700;
  margin-bottom: 16px;
}

.rt .rep-body {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a5c;
  margin-bottom: 16px;
}

.rt .rep-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rt .rep-card {
  background: #ffffff;
  border-radius: 9px;
  padding: 16px 40px 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07);
  transition: box-shadow 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
  border-top: 3px solid transparent;
  border-left: 3px solid transparent;
}

.rt .rep-card:hover {
  box-shadow: 0 10px 36px -2px rgba(72, 127, 193, 0.11);
  transform: translateY(-3px);
  border-top-color: #487FC1;
  border-left-color: #A0AADD;
}

.rt .rep-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: #EEF3F5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rt .rep-icon svg {
  width: 20px;
  height: 20px;
}

.rt .rep-card-txt h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1b2d45;
  margin-bottom: 8px;
}

.rt .rep-card-txt p {
  font-size: 15px;
  line-height: 1.5;
  color: #3a4a5c;
}

.rt .peer-blk {
  background: #ffffff;
  padding: 80px 0;
}

.rt .peer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.rt .peer-img-col {
  position: relative;
  border-radius: 9px;
  overflow: hidden;
}

.rt .peer-img-col img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.82);
  transition: filter 0.5s ease-in-out;
}

.rt .peer-img-col:hover img {
  filter: brightness(1);
}

.rt .peer-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(27, 45, 69, 0.85) 0%, transparent 100%);
}

.rt .peer-quote-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.rt .peer-quote-role {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.rt .peer-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.rt .peer-head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.rt .peer-tri {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 18px 10px;
  border-color: transparent transparent #487FC1 transparent;
  flex-shrink: 0;
  margin-top: 6px;
}

.rt .peer-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b2d45;
  font-weight: 700;
}

.rt .peer-h2 span {
  color: #A0AADD;
}

.rt .peer-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rt .peer-card {
  padding: 16px;
  border-radius: 9px;
  background: #EEF3F5;
  border: 1px solid rgba(160, 170, 221, 0.25);
  transition: background 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.rt .peer-card:hover {
  background: #ffffff;
  box-shadow: 0 4px 25px -2px rgba(72, 127, 193, 0.09);
}

.rt .peer-card-quote {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a5c;
  margin-bottom: 16px;
}

.rt .peer-card-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.rt .peer-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #A0AADD;
  flex-shrink: 0;
}

.rt .peer-name {
  font-size: 15px;
  font-weight: 600;
  color: #1b2d45;
}

.rt .gap-blk {
  background: #1b2d45;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.rt .gap-geo {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  border-radius: 0 0 0 42px;
  background: rgba(72, 127, 193, 0.12);
  pointer-events: none;
}

.rt .gap-geo2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: 180px;
  border-radius: 0 42px 0 0;
  background: rgba(160, 170, 221, 0.07);
  pointer-events: none;
}

.rt .gap-inner {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
}

.rt .gap-left {
  flex: 0 0 50%;
}

.rt .gap-label {
  font-size: 15px;
  color: #A0AADD;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 16px;
}

.rt .gap-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
}

.rt .gap-h2 em {
  font-style: normal;
  color: #A0AADD;
}

.rt .gap-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.rt .gap-compare {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.rt .gap-col-before {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 9px;
  padding: 16px;
  border-top: 3px solid rgba(160, 170, 221, 0.3);
}

.rt .gap-col-after {
  flex: 1;
  background: rgba(72, 127, 193, 0.15);
  border-radius: 9px;
  padding: 16px;
  border-top: 3px solid #487FC1;
}

.rt .gap-col-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.rt .gap-col-before .gap-col-label {
  color: rgba(255, 255, 255, 0.5);
}

.rt .gap-col-after .gap-col-label {
  color: #A0AADD;
}

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

.rt .gap-list li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.rt .gap-col-before .gap-list li {
  color: rgba(255, 255, 255, 0.5);
}

.rt .gap-col-before .gap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 4px;
  background: rgba(160, 170, 221, 0.35);
}

.rt .gap-col-after .gap-list li {
  color: #ffffff;
}

.rt .gap-col-after .gap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 4px;
  background: #487FC1;
}

.rt .gap-right {
  flex: 1;
}

.rt .gap-img-wrap {
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 36px -2px rgba(72, 127, 193, 0.11);
}

.rt .gap-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.8);
  transition: filter 0.5s ease-in-out;
}

.rt .gap-img-wrap:hover img {
  filter: brightness(1);
}

.rt .gap-img-corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 48px 48px 0 0;
  border-color: #1b2d45 transparent transparent transparent;
}

.rt .appr-blk {
  background: #EEF3F5;
  padding: 80px 0;
}

.rt .appr-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.rt .appr-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 40px;
}

.rt .appr-side-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.rt .appr-dia {
  width: 10px;
  height: 10px;
  background: #487FC1;
  transform: rotate(45deg);
  border-radius: 4px;
  flex-shrink: 0;
}

.rt .appr-side-tag {
  font-size: 15px;
  color: #487FC1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.rt .appr-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b2d45;
  font-weight: 700;
  margin-bottom: 16px;
}

.rt .appr-side-body {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a5c;
}

.rt .appr-side-img {
  border-radius: 9px;
  overflow: hidden;
  margin-top: 16px;
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07);
}

.rt .appr-side-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.5s ease-in-out;
}

.rt .appr-side-img:hover img {
  filter: brightness(1);
}

.rt .appr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rt .appr-card {
  background: #ffffff;
  border-radius: 9px;
  padding: 40px;
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07);
  transition: box-shadow 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.rt .appr-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(to bottom left, rgba(72, 127, 193, 0.1) 0%, transparent 70%);
}

.rt .appr-card:hover {
  box-shadow: 0 10px 36px -2px rgba(72, 127, 193, 0.11);
  transform: translateY(-4px);
}

.rt .appr-card-num {
  font-size: 41px;
  line-height: 1.1;
  font-weight: 800;
  color: rgba(72, 127, 193, 0.15);
  margin-bottom: 8px;
}

.rt .appr-card h5 {
  font-size: 15px;
  font-weight: 700;
  color: #1b2d45;
  margin-bottom: 8px;
}

.rt .appr-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a5c;
}

@keyframes elastic-in {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }

  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.01);
  }

  80% {
    transform: translateY(3px) scale(0.99);
  }

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

.rt .title-txt {
  animation: elastic-in 0.6s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

.rt .title-img {
  animation: elastic-in 0.7s cubic-bezier(0.34, 1.2, 0.64, 1) 0.1s both;
}

.rt .rep-card {
  animation: elastic-in 0.5s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

@media (max-width: 1200px) {
  .rt .title-h1 {
    font-size: 41px;
  }

  .rt .pg-wrap-sm {
    padding: 0 40px;
  }

  .rt .divider-num {
    padding: 40px;
  }

  .rt .appr-inner {
    grid-template-columns: 1fr;
  }

  .rt .appr-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .rt .title-blk-inner {
    flex-direction: column;
  }

  .rt .title-txt {
    flex: none;
    padding: 80px 40px 40px;
  }

  .rt .title-img {
    flex: none;
    min-height: 300px;
  }

  .rt .exp-shape {
    flex-direction: column;
  }

  .rt .exp-left {
    flex: none;
    width: 100%;
  }

  .rt .rep-inner {
    flex-direction: column;
    gap: 40px;
  }

  .rt .rep-text {
    flex: none;
  }

  .rt .peer-grid {
    grid-template-columns: 1fr;
  }

  .rt .peer-img-col img {
    height: 280px;
  }

  .rt .gap-inner {
    flex-direction: column;
    gap: 40px;
  }

  .rt .gap-left {
    flex: none;
  }

  .rt .appr-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .rt .title-h1 {
    font-size: 31px;
  }

  .rt .exp-h2,
  .rt .rep-h2,
  .rt .peer-h2,
  .rt .gap-h2,
  .rt .appr-h2 {
    font-size: 31px;
  }

  .rt .pg-wrap,
  .rt .pg-wrap-sm {
    padding: 0 16px;
  }

  .rt .divider-num {
    padding: 40px 16px;
  }

  .rt .title-txt {
    padding: 40px 16px;
  }

  .rt .title-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .rt .gap-compare {
    flex-direction: column;
  }

  .rt .appr-card {
    padding: 16px;
  }
}

.cu-pg {
  max-width: 1366px;
  margin: 0 auto;
  overflow: hidden;
}

.cu-pg .bg-pan-wrap {
  position: relative;
  background-image: url('./web_visuals/backdrop_08.jpg');
  background-size: 130% auto;
  background-repeat: no-repeat;
  background-position: left center;
  animation: pan-bg 18s linear infinite alternate;
}

@keyframes pan-bg {
  from {
    background-position: left center;
  }

  to {
    background-position: right center;
  }
}

.cu-pg .bg-pan-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(238, 243, 245, 0.88);
  pointer-events: none;
}

.cu-pg .reach-row {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 80px 40px;
  align-items: flex-start;
  max-width: 1366px;
  margin: 0 auto;
}

.cu-pg .reach-left {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cu-pg .reach-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 80px;
}

.cu-pg .reach-eyebrow {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #487FC1;
  font-weight: 600;
}

.cu-pg .reach-h1 {
  font-size: 70px;
  line-height: 1.1;
  color: #1b2a3b;
  margin: 0;
  padding: 0;
}

.cu-pg .reach-h1 .acc {
  color: #A0AADD;
}

.cu-pg .reach-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #2c3e50;
  margin: 0;
  max-width: 420px;
}

.cu-pg .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cu-pg .info-card {
  background: #fff;
  border: 1.5px solid #EEF3F5;
  border-radius: 9px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07), 0 4px 25px -2px rgba(72, 127, 193, 0.09);
  transition: box-shadow 0.42s ease-in-out, border-color 0.42s ease-in-out;
}

.cu-pg .info-card:hover {
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.09), 0 10px 36px -2px rgba(72, 127, 193, 0.11);
  border-color: #A0AADD;
}

.cu-pg .info-card-label {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #487FC1;
  font-weight: 600;
}

.cu-pg .info-card-val {
  font-size: 15px;
  line-height: 1.5;
  color: #1b2a3b;
  font-weight: 500;
  word-break: break-word;
}

.cu-pg .info-card-val a {
  color: #1b2a3b;
  text-decoration: none;
  transition: color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.cu-pg .info-card-val a:hover {
  color: #487FC1;
}

.cu-pg .reach-img-wrap {
  border-radius: 9px;
  overflow: hidden;
  width: 100%;
  height: 220px;
  box-shadow: 0 4px 25px -2px rgba(72, 127, 193, 0.09);
}

.cu-pg .reach-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(0px);
  transition: filter 0.5s ease-in-out;
}

.cu-pg .reach-img-wrap:hover img {
  filter: blur(0px);
}

.cu-pg .corner-tri-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 64px solid rgba(72, 127, 193, 0.13);
  border-right: 64px solid transparent;
  pointer-events: none;
}

.cu-pg .corner-tri-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 64px solid rgba(160, 170, 221, 0.13);
  border-left: 64px solid transparent;
  pointer-events: none;
}

.cu-pg .form-section {
  background: #fff;
  padding: 80px 40px;
  position: relative;
}

.cu-pg .form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #487FC1, #fff);
  pointer-events: none;
}

.cu-pg .form-wrap {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.cu-pg .form-meta {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 8px;
}

.cu-pg .form-meta-shape {
  width: 32px;
  height: 4px;
  background: #487FC1;
  border-radius: 4px;
}

.cu-pg .form-meta-h2 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b2a3b;
  margin: 0;
}

.cu-pg .form-meta-p {
  font-size: 15px;
  line-height: 1.8;
  color: #2c3e50;
  margin: 0;
}

.cu-pg .form-meta-note {
  font-size: 15px;
  line-height: 1.5;
  color: #487FC1;
  border-left: 3px solid #A0AADD;
  border-top: 1px solid #EEF3F5;
  border-bottom: 1px solid #EEF3F5;
  padding: 8px 16px;
  border-radius: 4px;
  background: #EEF3F5;
}

.cu-pg .form-body {
  flex: 1 1 0;
}

.cu-pg .cf {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cu-pg .cf-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.cu-pg .cf-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
}

.cu-pg .cf-group.full {
  flex: 1 1 100%;
}

.cu-pg .cf-label {
  font-size: 15px;
  line-height: 1.5;
  color: #1b2a3b;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cu-pg .cf-label .req {
  color: #487FC1;
  margin-left: 2px;
}

.cu-pg .cf-input,
.cu-pg .cf-select,
.cu-pg .cf-textarea {
  border: 1.5px solid #EEF3F5;
  border-radius: 4px;
  padding: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #1b2a3b;
  background: #EEF3F5;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), background 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: inset 0 1px 2px rgba(72, 127, 193, 0.06);
}

.cu-pg .cf-input::placeholder,
.cu-pg .cf-textarea::placeholder {
  color: #8899aa;
  transition: opacity 0.45s ease-in-out;
}

.cu-pg .cf-input:focus::placeholder,
.cu-pg .cf-textarea:focus::placeholder {
  opacity: 0;
}

.cu-pg .cf-input:focus,
.cu-pg .cf-select:focus,
.cu-pg .cf-textarea:focus {
  border-color: #487FC1;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(72, 127, 193, 0.09), inset 0 1px 2px rgba(72, 127, 193, 0.06);
}

.cu-pg .cf-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23487FC1' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cu-pg .cf-textarea {
  resize: vertical;
  min-height: 120px;
}

.cu-pg .cf-check-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
}

.cu-pg .cf-check {
  margin-top: 3px;
  accent-color: #487FC1;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.cu-pg .cf-check-text {
  font-size: 15px;
  line-height: 1.5;
  color: #2c3e50;
}

.cu-pg .cf-check-text a {
  color: #487FC1;
  text-decoration: underline;
  text-decoration-color: rgba(72, 127, 193, 0.4);
  transition: color 0.38s ease-in-out, text-decoration-color 0.38s ease-in-out;
}

.cu-pg .cf-check-text a:hover {
  color: #1b2a3b;
  text-decoration-color: #1b2a3b;
}

.cu-pg .cf-submit-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.cu-pg .cf-btn {
  position: relative;
  overflow: hidden;
  background: #487FC1;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 16px 40px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.42s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07), 0 4px 25px -2px rgba(72, 127, 193, 0.09);
}

.cu-pg .cf-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #1b2a3b;
  transition: height 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0;
}

.cu-pg .cf-btn:hover::before {
  height: 100%;
}

.cu-pg .cf-btn:hover {
  box-shadow: 0 10px 36px -2px rgba(72, 127, 193, 0.11);
}

.cu-pg .cf-btn span {
  position: relative;
  z-index: 1;
}

.cu-pg .cf-btn:focus {
  outline: 2px solid #487FC1;
  outline-offset: 3px;
}

.cu-pg .cf-hint {
  font-size: 15px;
  line-height: 1.5;
  color: #8899aa;
}

.cu-pg .form-corner-tl {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 48px solid rgba(160, 170, 221, 0.12);
  border-left: 48px solid transparent;
  pointer-events: none;
}

.cu-pg .char-hover-wrap {
  display: inline-block;
}

.cu-pg .char-hover-wrap .ch {
  display: inline-block;
  transition: color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.cu-pg .char-hover-wrap:hover .ch:nth-child(1) {
  color: #487FC1;
  transition-delay: 0s;
}

.cu-pg .char-hover-wrap:hover .ch:nth-child(2) {
  color: #487FC1;
  transition-delay: 0.04s;
}

.cu-pg .char-hover-wrap:hover .ch:nth-child(3) {
  color: #487FC1;
  transition-delay: 0.08s;
}

.cu-pg .char-hover-wrap:hover .ch:nth-child(4) {
  color: #487FC1;
  transition-delay: 0.12s;
}

.cu-pg .char-hover-wrap:hover .ch:nth-child(5) {
  color: #487FC1;
  transition-delay: 0.16s;
}

.cu-pg .char-hover-wrap:hover .ch:nth-child(6) {
  color: #487FC1;
  transition-delay: 0.20s;
}

.cu-pg .char-hover-wrap:hover .ch:nth-child(7) {
  color: #487FC1;
  transition-delay: 0.24s;
}

.cu-pg .char-hover-wrap:hover .ch:nth-child(8) {
  color: #487FC1;
  transition-delay: 0.28s;
}

.cu-pg .char-hover-wrap:hover .ch:nth-child(9) {
  color: #487FC1;
  transition-delay: 0.32s;
}

.cu-pg .char-hover-wrap:hover .ch:nth-child(10) {
  color: #487FC1;
  transition-delay: 0.36s;
}

.cu-pg .char-hover-wrap:hover .ch:nth-child(11) {
  color: #487FC1;
  transition-delay: 0.40s;
}

.cu-pg .char-hover-wrap:hover .ch:nth-child(12) {
  color: #487FC1;
  transition-delay: 0.44s;
}

.cu-pg .reach-img-wrap img {
  filter: blur(3px);
}

.cu-pg .reach-img-wrap:hover img {
  filter: blur(0px);
}

@media (max-width: 900px) {
  .cu-pg .reach-row {
    flex-direction: column;
    gap: 40px;
    padding: 40px 16px;
  }

  .cu-pg .reach-right {
    padding-top: 0;
  }

  .cu-pg .reach-h1 {
    font-size: 41px;
  }

  .cu-pg .form-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .cu-pg .form-meta {
    flex: none;
    width: 100%;
  }

  .cu-pg .form-section {
    padding: 40px 16px;
  }

  .cu-pg .info-grid {
    grid-template-columns: 1fr;
  }

  .cu-pg .cf-row {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .cu-pg .reach-h1 {
    font-size: 31px;
  }

  .cu-pg .form-meta-h2 {
    font-size: 24px;
  }

  .cu-pg .cf-submit-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .cu-pg .reach-row {
    padding: 40px 8px;
  }

  .cu-pg .form-section {
    padding: 40px 8px;
  }
}

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

.ab-us .bento-grid {
  display: grid;
  grid-template-columns: 40% 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  padding: 80px 40px;
}

.ab-us .bento-img-cell {
  grid-row: 1 / 3;
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  min-height: 480px;
}

.ab-us .bento-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ab-us .bento-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(72, 127, 193, 0.72), rgba(72, 127, 193, 0.18));
}

.ab-us .bento-shape-a {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  transform: rotate(18deg);
  pointer-events: none;
}

.ab-us .bento-shape-b {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 32px;
  height: 32px;
  background: rgba(160, 170, 221, 0.55);
  border-radius: 42px;
  pointer-events: none;
}

.ab-us .bento-tag {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 15px;
  color: #487FC1;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07), 0 4px 25px -2px rgba(72, 127, 193, 0.09);
}

.ab-us .bento-head-cell {
  grid-column: 2 / 4;
  background: #EEF3F5;
  border-radius: 9px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.ab-us .bento-anchor {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #487FC1;
  border-radius: 4px;
  margin-bottom: 16px;
}

.ab-us .bento-head-cell h1 {
  font-size: 41px;
  line-height: 1.1;
  color: #1b2d45;
  margin: 0 0 8px;
}

.ab-us .bento-head-cell h1 .acc {
  color: #487FC1;
}

.ab-us .bento-sub {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a5c;
  margin: 0;
}

.ab-us .bento-stat-cell {
  background: #487FC1;
  border-radius: 9px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.ab-us .bento-stat-cell::before {
  content: "";
  position: absolute;
  top: -24px;
  right: -24px;
  width: 96px;
  height: 96px;
  border: 12px solid rgba(255, 255, 255, 0.12);
  border-radius: 42px;
  pointer-events: none;
}

.ab-us .bento-stat-num {
  font-size: 41px;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 700;
}

.ab-us .bento-stat-label {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 8px;
}

.ab-us .bento-text-cell {
  background: #ffffff;
  border: 1.5px solid #d0dce8;
  border-radius: 9px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.ab-us .bento-text-cell::after {
  content: "";
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border: 2px dashed #A0AADD;
  border-radius: 4px;
  pointer-events: none;
}

.ab-us .bento-text-cell h2 {
  font-size: 24px;
  line-height: 1.1;
  color: #1b2d45;
  margin: 0 0 8px;
}

.ab-us .bento-text-cell p {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a5c;
  margin: 0;
}

.ab-us .divider-double {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px;
}

.ab-us .divider-double span {
  display: block;
  height: 1px;
  background: #d0dce8;
}

.ab-us .team-strip {
  padding: 80px 40px;
  background: linear-gradient(to right, #EEF3F5, #ffffff);
  position: relative;
}

.ab-us .team-strip::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  width: 180px;
  height: 180px;
  border: 40px solid rgba(72, 127, 193, 0.05);
  border-radius: 42px;
  pointer-events: none;
}

.ab-us .strip-head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

.ab-us .strip-anchor {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #A0AADD;
  border-radius: 4px;
  margin-top: 8px;
  flex-shrink: 0;
}

.ab-us .strip-head-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
}

.ab-us .strip-head-text h2 {
  font-size: 31px;
  line-height: 1.1;
  color: #1b2d45;
  margin: 0;
}

.ab-us .strip-head-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a5c;
  margin: 0;
}

.ab-us .strip-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.ab-us .col-zone {
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07), 0 4px 25px -2px rgba(72, 127, 193, 0.09);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.ab-us .col-zone:hover {
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07), 0 4px 25px -2px rgba(72, 127, 193, 0.09), 0 10px 36px -2px rgba(72, 127, 193, 0.11);
}

.ab-us .col-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.ab-us .col-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease-in-out;
}

.ab-us .col-zone:hover .col-img-wrap img {
  transform: scale(1.04);
}

.ab-us .col-color-bar {
  height: 4px;
  background: linear-gradient(to right, #487FC1, #A0AADD);
}

.ab-us .col-body {
  background: #ffffff;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ab-us .col-body h3 {
  font-size: 24px;
  line-height: 1.1;
  color: #1b2d45;
  margin: 0;
}

.ab-us .col-body .role-tag {
  font-size: 15px;
  color: #487FC1;
  font-weight: 600;
  line-height: 1.5;
}

.ab-us .col-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a5c;
  margin: 0;
}

.ab-us .col-body .detail-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

.ab-us .detail-dot {
  width: 8px;
  height: 8px;
  border-radius: 42px;
  background: #A0AADD;
  flex-shrink: 0;
}

.ab-us .detail-line {
  width: 40px;
  height: 1px;
  background: #d0dce8;
}

.ab-us .detail-val {
  font-size: 15px;
  color: #3a4a5c;
  line-height: 1.5;
}

.ab-us .expand-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.ab-us .expand-toggle .tog-label {
  font-size: 15px;
  color: #487FC1;
  line-height: 1.5;
  transition: color 0.4s ease-in-out;
}

.ab-us .expand-toggle:hover .tog-label {
  color: #1b2d45;
}

.ab-us .tog-icon {
  width: 18px;
  height: 18px;
  border-radius: 42px;
  border: 1.5px solid #487FC1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.4s ease-in-out;
}

.ab-us .expand-toggle:hover .tog-icon {
  background: #487FC1;
}

.ab-us .tog-icon svg {
  width: 10px;
  height: 10px;
  display: block;
}

.ab-us .col-extra {
  display: none;
  font-size: 15px;
  line-height: 1.8;
  color: #3a4a5c;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid #EEF3F5;
}

.ab-us .col-extra.open {
  display: block;
}

.ab-us .col-body .expand-toggle:focus-visible .tog-icon {
  outline: 2px solid #487FC1;
  outline-offset: 2px;
}

@keyframes clip-reveal {
  from {
    clip-path: inset(0 0 100% 0);
  }

  to {
    clip-path: inset(0 0 0% 0);
  }
}

.ab-us .bento-grid {
  animation: clip-reveal 0.55s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

.ab-us .team-strip {
  animation: clip-reveal 0.6s cubic-bezier(0.34, 1.2, 0.64, 1) 0.15s both;
}

@media (max-width: 900px) {
  .ab-us .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    padding: 40px 16px;
  }

  .ab-us .bento-img-cell {
    grid-column: 1 / 3;
    grid-row: 1;
    min-height: 260px;
  }

  .ab-us .bento-head-cell {
    grid-column: 1 / 3;
  }

  .ab-us .bento-stat-cell,
  .ab-us .bento-text-cell {
    grid-column: span 1;
  }

  .ab-us .strip-cols {
    grid-template-columns: 1fr 1fr;
  }

  .ab-us .strip-head {
    flex-direction: column;
    gap: 16px;
  }

  .ab-us .team-strip {
    padding: 40px 16px;
  }

  .ab-us .divider-double {
    padding: 0 16px;
  }
}

@media (max-width: 600px) {
  .ab-us .bento-grid {
    grid-template-columns: 1fr;
    padding: 40px 16px;
  }

  .ab-us .bento-img-cell {
    grid-column: 1;
    min-height: 200px;
  }

  .ab-us .bento-head-cell {
    grid-column: 1;
  }

  .ab-us .bento-stat-cell,
  .ab-us .bento-text-cell {
    grid-column: 1;
  }

  .ab-us .strip-cols {
    grid-template-columns: 1fr;
  }

  .ab-us .bento-head-cell h1 {
    font-size: 31px;
  }
}

.success-pg {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 16px;
}

.success-pg .wrap {
  max-width: 1366px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-pg .card {
  background: #EEF3F5;
  border-radius: 26px;
  padding: 80px 80px;
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07), 0 4px 25px -2px rgba(72, 127, 193, 0.09), 0 10px 36px -2px rgba(72, 127, 193, 0.11);
  text-align: center;
}

.success-pg .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 42px;
  background: #487FC1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  box-shadow: 0 3px 3px -2px rgba(72, 127, 193, 0.07), 0 4px 25px -2px rgba(72, 127, 193, 0.09);
}

.success-pg .icon-wrap svg {
  display: block;
}

.success-pg .title {
  font-size: 41px;
  line-height: 1.1;
  color: #1b2a3b;
  margin: 0 0 16px;
  font-weight: 700;
}

.success-pg .title .accent {
  color: #A0AADD;
}

.success-pg .desc {
  font-size: 15px;
  line-height: 1.8;
  color: #374151;
  margin: 0 0 40px;
  max-width: 440px;
}

.success-pg .divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(to right, #487FC1, #ffffff);
  border-radius: 4px;
  margin-bottom: 40px;
}

.success-pg .meta {
  font-size: 15px;
  line-height: 1.5;
  color: #4b5a6e;
  margin: 0 0 40px;
}

.success-pg .meta strong {
  color: #487FC1;
  font-weight: 600;
}

.success-pg .btn-home {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: #487FC1;
  border: 2px solid #487FC1;
  border-radius: 9px;
  padding: 16px 40px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.42s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.success-pg .btn-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1b2a3b;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0;
}

.success-pg .btn-home:hover::before {
  transform: translateY(0);
}

.success-pg .btn-home:hover {
  border-color: #1b2a3b;
  color: #ffffff;
}

.success-pg .btn-home span {
  position: relative;
  z-index: 1;
}

.success-pg .contact-line {
  margin-top: 40px;
  font-size: 15px;
  line-height: 1.5;
  color: #4b5a6e;
}

.success-pg .contact-line a {
  color: #487FC1;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.38s ease-in-out;
}

.success-pg .contact-line a:hover {
  color: #1b2a3b;
}

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

  .success-pg .card {
    padding: 40px 16px;
  }

  .success-pg .title {
    font-size: 31px;
  }
}