html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Work Sans', sans-serif;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
}

*:focus-visible {
  outline: 2px solid #4C80BB;
  outline-offset: 3px;
}

.pghead {
  position: relative;
  background: linear-gradient(135deg, #f0f5fb 0%, #e4edf7 55%, #d6e5f3 100%);
  border-bottom: 2px solid #AFC3DB;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
}

.pghead__frame {
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px 32px 0 32px;
  display: flex;
  align-items: stretch;
  gap: 32px;
}

.pghead__brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 16px 16px 32px 16px;
  gap: 8px;
}

.pghead__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 80px;
  border: 2px dashed #4C80BB;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 2px 1px 5px 1px rgba(76,128,187,0.06), 2px 5px 18px 1px rgba(76,128,187,0.11);
  padding: 8px;
}

.pghead__logo-wrap img {
  width: 50px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.pghead__monogram {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #4C80BB;
  text-transform: uppercase;
}

.pghead__nav-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0;
}

.pghead__contact-strip {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  padding: 8px 0 16px 0;
}

.pghead__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #2a4a6b;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.5s cubic-bezier(0.22,1,0.36,1);
}

.pghead__contact-item:hover {
  color: #4C80BB;
}

.pghead__contact-item .oi {
  font-size: 14px;
  color: #4C80BB;
  flex-shrink: 0;
}

.pghead__menu-bar {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  background: linear-gradient(90deg, #4C80BB 0%, #3a6ba0 100%);
  border-radius: 8px 8px 0 0;
  box-shadow: 2px 1px 5px 1px rgba(76,128,187,0.06);
  padding: 0 8px;
  flex-wrap: wrap;
}

.pghead__menu-item {
  position: relative;
}

.pghead__menu-link {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
  border-radius: 8px;
  transition: background-color 0.45s cubic-bezier(0.22,1,0.36,1), color 0.45s cubic-bezier(0.22,1,0.36,1);
  min-height: 44px;
}

.pghead__menu-link:hover,
.pghead__menu-link:focus-visible {
  background-color: rgba(255,255,255,0.15);
  color: #ffffff;
}

.pghead__menu-link .oi {
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.pghead__menu-item:hover .pghead__menu-link .oi,
.pghead__menu-item:focus-within .pghead__menu-link .oi {
  transform: rotate(180deg);
}

.pghead__submenu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
  border: 1px solid #AFC3DB;
  border-top: none;
  z-index: 200;
  padding: 8px 0;
}

.pghead__menu-item:hover .pghead__submenu,
.pghead__menu-item:focus-within .pghead__submenu {
  display: block;
}

.pghead__submenu-link {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #2a4a6b;
  text-decoration: none;
  letter-spacing: 0.03em;
  line-height: 1.4;
  transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.pghead__submenu-link:hover,
.pghead__submenu-link:focus-visible {
  background-color: #e4edf7;
  color: #4C80BB;
}

.pgfoot {
  background: linear-gradient(180deg, #f0f5fb 0%, #e8f0f8 100%);
  box-shadow: 0 -2px 18px 1px rgba(175,195,219,0.18);
  border-top: 2px solid #AFC3DB;
}

.pgfoot__frame {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 32px 32px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

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

.pgfoot__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 72px;
  border: 2px dashed #4C80BB;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 2px 1px 5px 1px rgba(76,128,187,0.06);
  padding: 8px;
  align-self: flex-end;
}

.pgfoot__logo-wrap img {
  width: 44px;
  height: 52px;
  object-fit: contain;
  display: block;
}

.pgfoot__tagline {
  font-size: 14px;
  color: #3a5a7a;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

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

.pgfoot__group-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #4C80BB;
  text-transform: uppercase;
}

.pgfoot__link {
  font-size: 14px;
  color: #2a4a6b;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.4;
  transition: color 0.55s cubic-bezier(0.22,1,0.36,1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.pgfoot__link:hover,
.pgfoot__link:focus-visible {
  color: #4C80BB;
}

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

.pgfoot__contact-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #4C80BB;
  text-transform: uppercase;
}

.pgfoot__contact-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #2a4a6b;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.pgfoot__contact-line .oi {
  font-size: 14px;
  color: #4C80BB;
  flex-shrink: 0;
  margin-top: 2px;
}

.pgfoot__contact-line a {
  color: #2a4a6b;
  text-decoration: none;
  transition: color 0.55s cubic-bezier(0.22,1,0.36,1);
}

.pgfoot__contact-line a:hover {
  color: #4C80BB;
}

.pgfoot__bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 32px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #AFC3DB;
  flex-wrap: wrap;
  gap: 16px;
}

.pgfoot__copy {
  font-size: 14px;
  color: #5a7a9a;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.pgfoot__legal-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.pgfoot__legal-link {
  font-size: 14px;
  color: #5a7a9a;
  text-decoration: none;
  letter-spacing: 0.03em;
  line-height: 1.4;
  transition: color 0.5s ease-in-out;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.pgfoot__legal-link:hover,
.pgfoot__legal-link:focus-visible {
  color: #4C80BB;
}

.consent-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background: #ffffff;
  border-bottom: 2px solid #4C80BB;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
  transform: translateY(-100%);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1);
}

.consent-bar.shown {
  transform: translateY(0);
}

.consent-bar__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.consent-bar__text-area {
  flex: 1;
  min-width: 240px;
}

.consent-bar__headline {
  font-size: 17px;
  font-weight: 700;
  color: #2a4a6b;
  line-height: 1.4;
  margin-bottom: 8px;
}

.consent-bar__desc {
  font-size: 14px;
  color: #3a5a7a;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.consent-bar__desc ul {
  margin: 8px 0 0 0;
  padding-left: 16px;
}

.consent-bar__desc ul li {
  margin-bottom: 4px;
}

.consent-bar__prefs-panel {
  padding: 16px 0 8px 0;
}

.consent-bar__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-top: 1px solid #AFC3DB;
}

.consent-bar__toggle-label {
  font-size: 14px;
  color: #2a4a6b;
  line-height: 1.4;
}

.consent-bar__toggle-label strong {
  font-weight: 700;
}

.consent-bar__switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.consent-bar__switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent-bar__switch-track {
  position: absolute;
  inset: 0;
  background: #AFC3DB;
  border-radius: 32px;
  cursor: pointer;
  transition: background-color 0.45s cubic-bezier(0.22,1,0.36,1);
}

.consent-bar__switch input:checked + .consent-bar__switch-track {
  background: #4C80BB;
}

.consent-bar__switch-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 48px;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 2px 1px 5px 1px rgba(76,128,187,0.06);
}

.consent-bar__switch input:checked + .consent-bar__switch-track::after {
  transform: translateX(18px);
}

.consent-bar__switch input:focus-visible + .consent-bar__switch-track {
  outline: 2px solid #4C80BB;
  outline-offset: 2px;
}

.consent-bar__always-on {
  font-size: 14px;
  color: #4C80BB;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.consent-bar__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 8px;
}

.consent-bar__btn {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 8px;
  min-height: 44px;
  padding: 8px 16px;
  transition: background-color 0.5s cubic-bezier(0.22,1,0.36,1), color 0.5s cubic-bezier(0.22,1,0.36,1), border-color 0.5s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
}

.consent-bar__btn-accept {
  background: linear-gradient(135deg, #4C80BB 0%, #3a6ba0 100%);
  color: #ffffff;
  border: 2px solid #4C80BB;
}

.consent-bar__btn-accept:hover,
.consent-bar__btn-accept:focus-visible {
  background: linear-gradient(225deg, #4C80BB 0%, #3a6ba0 100%);
  border-color: #3a6ba0;
}

.consent-bar__btn-reject {
  background: transparent;
  color: #4C80BB;
  border: 2px solid #4C80BB;
}

.consent-bar__btn-reject:hover,
.consent-bar__btn-reject:focus-visible {
  background: #e4edf7;
  color: #2a4a6b;
  border-color: #2a4a6b;
}

.consent-bar__btn-prefs {
  background: transparent;
  color: #3a5a7a;
  border: none;
  padding: 0;
  font-weight: 400;
  text-decoration: underline;
  min-height: 44px;
  border-radius: 0;
  font-size: 14px;
}

.consent-bar__btn-prefs:hover,
.consent-bar__btn-prefs:focus-visible {
  color: #4C80BB;
}

@media (max-width: 768px) {
  .pghead__frame {
    flex-direction: column;
    padding: 16px 16px 0 16px;
    gap: 16px;
  }

  .pghead__brand-col {
    flex-direction: row;
    justify-content: flex-start;
    padding: 8px 0 8px 0;
  }

  .pghead__contact-strip {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .pghead__menu-bar {
    justify-content: flex-start;
  }

  .pghead__menu-link {
    padding: 12px 12px;
    font-size: 14px;
  }

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

  .pgfoot__brand {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .pgfoot__logo-wrap {
    align-self: auto;
  }

  .pgfoot__bottom {
    padding: 16px 16px 32px 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .pgfoot__legal-links {
    gap: 16px;
  }

  .consent-bar__inner {
    padding: 16px;
    flex-direction: column;
    gap: 16px;
  }

  .consent-bar__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 390px) {
  .pghead__contact-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pghead__menu-bar {
    flex-wrap: wrap;
  }

  .pghead__menu-link {
    padding: 10px 10px;
  }

  .pgfoot__frame {
    padding: 32px 8px 16px 8px;
  }

  .pgfoot__bottom {
    padding: 16px 8px 32px 8px;
  }

  .consent-bar__inner {
    padding: 8px;
  }

  .consent-bar__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (min-width: 1280px) {
  .pghead__frame {
    padding: 32px 64px 0 64px;
  }

  .pgfoot__frame {
    padding: 64px 64px 32px 64px;
  }

  .pgfoot__bottom {
    padding: 16px 64px 32px 64px;
  }
}.legal-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 64px 32px;
    color: #2a3a4f;
}

.legal-section h1 {
    font-size: 55px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #2a3a4f;
    margin-bottom: 32px;
    margin-top: 0;
}

.legal-section h2 {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #2a3a4f;
    margin-top: 64px;
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 29px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #3a5a8a;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-section h4 {
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: -0.005em;
    color: #3a5a8a;
    margin-top: 32px;
    margin-bottom: 8px;
}

.legal-section h5 {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: #4C80BB;
    margin-top: 32px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.legal-section h6 {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #4C80BB;
    margin-top: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.legal-section p {
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.005em;
    color: #2a3a4f;
    margin-top: 0;
    margin-bottom: 16px;
    max-width: 72ch;
}

.legal-section ul,
.legal-section ol {
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.005em;
    color: #2a3a4f;
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px;
    max-width: 72ch;
}

.legal-section ul {
    list-style: none;
    padding-left: 16px;
}

.legal-section ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}

.legal-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #4C80BB;
}

.legal-section ol {
    list-style: decimal;
}

.legal-section ol li {
    padding-left: 8px;
    margin-bottom: 8px;
}

.legal-section ol li::marker {
    color: #4C80BB;
    font-size: 17px;
}

.legal-section li ul,
.legal-section li ol {
    margin-top: 8px;
    margin-bottom: 0;
}

.legal-section strong,
.legal-section b {
    font-weight: 700;
    color: #2a3a4f;
}

.legal-section a {
    color: #4C80BB;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.5s cubic-bezier(0.22,1,0.36,1), text-decoration-color 0.5s cubic-bezier(0.22,1,0.36,1);
}

.legal-section a:hover {
    color: #3a6aa0;
    text-decoration-color: #AFC3DB;
}

.legal-section a:focus-visible {
    outline: 2px solid #4C80BB;
    outline-offset: 2px;
    border-radius: 8px;
}

.legal-section table {
    width: 100%;
    border-collapse: collapse;
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 32px;
    box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
    border-radius: 8px;
    overflow: hidden;
}

.legal-section thead {
    background: linear-gradient(135deg, #4C80BB 0%, #AFC3DB 100%);
}

.legal-section thead th {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 16px;
    text-align: left;
}

.legal-section tbody tr {
    border-bottom: 1px solid rgba(175,195,219,0.35);
    transition: background-color 0.45s ease-in-out;
}

.legal-section tbody tr:last-child {
    border-bottom: none;
}

.legal-section tbody tr:nth-child(even) {
    background-color: rgba(175,195,219,0.1);
}

.legal-section tbody tr:hover {
    background-color: rgba(76,128,187,0.07);
}

.legal-section td {
    padding: 16px;
    color: #2a3a4f;
    font-size: 17px;
    line-height: 1.6;
    vertical-align: top;
}

.legal-section th {
    padding: 16px;
    vertical-align: middle;
}

.legal-section div {
    margin-bottom: 16px;
}

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

    .legal-section h1 {
        font-size: 40px;
    }

    .legal-section h2 {
        font-size: 29px;
        margin-top: 32px;
    }

    .legal-section h3 {
        font-size: 22px;
    }

    .legal-section h4 {
        font-size: 17px;
    }

    .legal-section h5,
    .legal-section h6 {
        font-size: 14px;
    }

    .legal-section p,
    .legal-section ul,
    .legal-section ol,
    .legal-section td {
        font-size: 17px;
    }

    .legal-section table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 390px) {
    .legal-section {
        padding: 32px 16px;
    }

    .legal-section h1 {
        font-size: 29px;
    }

    .legal-section h2 {
        font-size: 22px;
    }

    .legal-section h3 {
        font-size: 17px;
    }

    .legal-section h4,
    .legal-section h5,
    .legal-section h6 {
        font-size: 14px;
    }

    .legal-section p,
    .legal-section ul,
    .legal-section ol {
        font-size: 14px;
    }

    .legal-section td,
    .legal-section thead th {
        font-size: 14px;
        padding: 8px;
    }
}
.cdet {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

.cdet .pg-strip {
  width: 100%;
  background: linear-gradient(135deg, #e8f0f8 0%, #f5f8fc 60%, #dde9f5 100%);
  position: relative;
  overflow: hidden;
}

.cdet .pg-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #4C80BB 0%, #AFC3DB 100%);
}

.cdet .pg-strip-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.cdet .pg-strip-left {
  flex: 1 1 0;
  min-width: 0;
}

.cdet .pg-strip-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.cdet .pg-tag {
  display: inline-block;
  background: #4C80BB;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.cdet .pg-user-fmt {
  display: inline-block;
  background: rgba(76,128,187,0.10);
  color: #4C80BB;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(76,128,187,0.22);
}

.cdet .pg-readtime {
  font-size: 14px;
  color: #5a7a9a;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.cdet .pg-strip-h1 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b3a5c;
  margin: 0 0 16px 0;
  font-weight: 800;
}

.cdet .pg-strip-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #3d5a78;
  margin: 0;
}

.cdet .pg-strip-right {
  flex: 0 0 320px;
  max-width: 320px;
  position: relative;
}

.cdet .pg-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
  opacity: 0;
  animation: fadeInImg 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
}

@keyframes fadeInImg {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.cdet .pg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cdet .pg-deco-stripe {
  position: absolute;
  bottom: -8px;
  left: 16px;
  right: 16px;
  height: 4px;
  background: linear-gradient(90deg, #4C80BB 0%, #AFC3DB 100%);
  border-radius: 8px;
  opacity: 0.5;
}

.cdet .diamond-div {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  gap: 8px;
  overflow: hidden;
}

.cdet .diamond-div-item {
  width: 6px;
  height: 6px;
  background: #AFC3DB;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.cdet .diamond-div-item.accent {
  background: #4C80BB;
  width: 8px;
  height: 8px;
}

.cdet .body-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 64px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.cdet .body-left {
  position: sticky;
  top: 32px;
}

.cdet .price-card {
  background: linear-gradient(160deg, #1b3a5c 0%, #4C80BB 100%);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
  color: #ffffff;
  margin-bottom: 32px;
}

.cdet .price-card-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #AFC3DB;
  font-weight: 600;
  margin-bottom: 8px;
}

.cdet .price-card-amount {
  font-size: 55px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.cdet .price-card-terms {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.cdet .price-card-note {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.60);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
  font-style: italic;
}

.cdet .price-card-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.cdet .price-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.cdet .price-stat-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.8;
}

.cdet .btn-primary {
  display: block;
  width: 100%;
  background: #ffffff;
  color: #1b3a5c;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-top: 16px;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
  transition: background 0.5s cubic-bezier(0.22,1,0.36,1), color 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.6s ease-in-out;
  background-image: linear-gradient(120deg, #ffffff 0%, #e8f0f8 100%);
  background-size: 200% 100%;
}

.cdet .btn-primary:hover {
  background-image: linear-gradient(240deg, #ffffff 0%, #dde9f5 100%);
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
  color: #4C80BB;
}

.cdet .btn-primary:focus {
  outline: 3px solid #4C80BB;
  outline-offset: 2px;
}

.cdet .btn-secondary {
  display: block;
  width: 100%;
  background: transparent;
  color: #4C80BB;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  border: 2px solid #4C80BB;
  border-radius: 8px;
  padding: 16px 32px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.55s cubic-bezier(0.22,1,0.36,1), color 0.55s cubic-bezier(0.22,1,0.36,1);
}

.cdet .btn-secondary:hover {
  background: #4C80BB;
  color: #ffffff;
}

.cdet .btn-secondary:focus {
  outline: 3px solid #4C80BB;
  outline-offset: 2px;
}

.cdet .trust-cluster {
  background: #f5f8fc;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 2px 1px 5px 1px rgba(175,195,219,0.06);
}

.cdet .trust-cluster-head {
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #4C80BB;
  font-weight: 700;
  margin-bottom: 16px;
}

.cdet .trust-rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.cdet .trust-stars {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.cdet .star-shape {
  width: 16px;
  height: 16px;
  fill: #4C80BB;
}

.cdet .trust-score {
  font-size: 22px;
  font-weight: 800;
  color: #1b3a5c;
  line-height: 1.1;
}

.cdet .trust-reviews {
  font-size: 14px;
  color: #5a7a9a;
  line-height: 1.4;
}

.cdet .trust-quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cdet .trust-quote-item {
  border-bottom: 1px solid rgba(76,128,187,0.12);
  padding-bottom: 16px;
}

.cdet .trust-quote-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cdet .trust-quote-text {
  font-size: 14px;
  line-height: 1.6;
  color: #3d5a78;
  font-style: italic;
  margin: 0 0 8px 0;
}

.cdet .trust-quote-author {
  font-size: 14px;
  font-weight: 700;
  color: #1b3a5c;
  letter-spacing: 0.04em;
}

.cdet .body-right {
  min-width: 0;
}

.cdet .desc-prose {
  margin-bottom: 32px;
}

.cdet .desc-prose-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4C80BB;
  font-weight: 700;
  margin-bottom: 16px;
}

.cdet .desc-prose-body {
  font-size: 17px;
  line-height: 1.6;
  color: #2c4a6a;
}

.cdet .desc-prose-body p {
  margin: 0 0 16px 0;
}

.cdet .desc-prose-body h2 {
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #1b3a5c;
  font-weight: 800;
  text-transform: uppercase;
  margin: 32px 0 16px 0;
}

.cdet .desc-prose-body h3 {
  font-size: 22px;
  line-height: 1.4;
  color: #1b3a5c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 32px 0 8px 0;
}

.cdet .desc-prose-body strong {
  color: #4C80BB;
  font-weight: 700;
}

.cdet .desc-prose-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.cdet .desc-prose-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(76,128,187,0.13);
  font-size: 17px;
  line-height: 1.6;
  color: #2c4a6a;
}

.cdet .desc-prose-body ul li:last-child {
  border-bottom: none;
}

.cdet .desc-prose-body ol {
  padding-left: 32px;
  margin: 0 0 16px 0;
}

.cdet .desc-prose-body ol li {
  font-size: 17px;
  line-height: 1.6;
  color: #2c4a6a;
  margin-bottom: 8px;
}

.cdet .desc-prose-body blockquote {
  border-left: 4px solid #4C80BB;
  border-right: 1px solid rgba(175,195,219,0.3);
  background: rgba(76,128,187,0.05);
  border-radius: 8px;
  padding: 16px 32px;
  margin: 32px 0;
  font-style: italic;
  color: #3d5a78;
  font-size: 17px;
  line-height: 1.6;
}

.cdet .desc-prose-body dl {
  margin: 0 0 16px 0;
}

.cdet .desc-prose-body dt {
  font-weight: 700;
  color: #1b3a5c;
  font-size: 17px;
  margin-top: 16px;
}

.cdet .desc-prose-body dd {
  color: #2c4a6a;
  font-size: 17px;
  line-height: 1.6;
  margin-left: 32px;
}

.cdet .diamond-div2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  gap: 8px;
  overflow: hidden;
}

.cdet .diamond-div2-item {
  width: 5px;
  height: 5px;
  background: #AFC3DB;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.cdet .diamond-div2-item.accent {
  background: #4C80BB;
  width: 7px;
  height: 7px;
}

.cdet .prog-section {
  background: radial-gradient(ellipse at 50% 30%, #f0f5fb 0%, #d6e4f3 100%);
  width: 100%;
}

.cdet .prog-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 64px;
}

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

.cdet .prog-heading-text {
  flex: 1 1 0;
}

.cdet .prog-heading-label {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4C80BB;
  font-weight: 700;
  margin-bottom: 8px;
}

.cdet .prog-heading-h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b3a5c;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

.cdet .prog-heading-aside {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cdet .prog-aside-stat {
  font-size: 14px;
  color: #5a7a9a;
  line-height: 1.4;
  text-align: right;
}

.cdet .prog-aside-stat strong {
  color: #4C80BB;
  font-weight: 700;
}

.cdet .prog-cluster {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  position: relative;
}

.cdet .prog-dashed-path {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  border-top: 2px dashed rgba(76,128,187,0.25);
  z-index: 0;
  pointer-events: none;
}

.cdet .prog-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.cdet .prog-card:hover {
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
  transform: translateY(-4px);
}

.cdet .prog-card-body {
  font-size: 17px;
  line-height: 1.6;
  color: #2c4a6a;
}

.cdet .prog-card-body p {
  margin: 0 0 8px 0;
}

.cdet .prog-card-body h2 {
  font-size: 22px;
  line-height: 1.4;
  color: #1b3a5c;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
}

.cdet .prog-card-body strong {
  color: #4C80BB;
  font-weight: 700;
}

.cdet .prog-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cdet .prog-card-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(76,128,187,0.10);
  font-size: 14px;
  line-height: 1.6;
  color: #3d5a78;
}

.cdet .prog-card-body ul li:last-child {
  border-bottom: none;
}

.cdet .prog-card-body blockquote {
  font-style: italic;
  color: #4C80BB;
  font-size: 17px;
  line-height: 1.6;
  border-left: 3px solid #AFC3DB;
  padding-left: 16px;
  margin: 16px 0 0 0;
}

.cdet .prog-card-body cite {
  font-size: 14px;
  color: #5a7a9a;
  font-style: normal;
  display: block;
  margin-top: 8px;
}

.cdet .prog-card-num {
  font-size: 55px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: rgba(76,128,187,0.10);
  position: absolute;
  top: 16px;
  right: 24px;
  pointer-events: none;
  user-select: none;
}

.cdet .prog-card-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.cdet .prog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: zoomCycle 12s ease-in-out infinite alternate;
}

@keyframes zoomCycle {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.cdet .prog-section-cta {
  margin-top: 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cdet .btn-prog-primary {
  display: inline-block;
  background: #4C80BB;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
  background-image: linear-gradient(120deg, #4C80BB 0%, #3a6da8 100%);
  background-size: 200% 100%;
  transition: background-image 0.6s cubic-bezier(0.22,1,0.36,1), box-shadow 0.55s ease-in-out;
}

.cdet .btn-prog-primary:hover {
  background-image: linear-gradient(240deg, #4C80BB 0%, #2d5a8e 100%);
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
}

.cdet .btn-prog-primary:focus {
  outline: 3px solid #1b3a5c;
  outline-offset: 2px;
}

.cdet .btn-prog-secondary {
  display: inline-block;
  background: transparent;
  color: #4C80BB;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  border: 2px solid #4C80BB;
  border-radius: 8px;
  padding: 16px 32px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.5s cubic-bezier(0.22,1,0.36,1), color 0.5s cubic-bezier(0.22,1,0.36,1);
}

.cdet .btn-prog-secondary:hover {
  background: #4C80BB;
  color: #ffffff;
}

.cdet .btn-prog-secondary:focus {
  outline: 3px solid #1b3a5c;
  outline-offset: 2px;
}

@media (max-width: 1280px) {
  .cdet .pg-strip-inner {
    padding: 32px 32px;
    gap: 32px;
  }
  .cdet .body-grid {
    padding: 64px 32px;
    gap: 32px;
  }
  .cdet .prog-inner {
    padding: 64px 32px;
  }
  .cdet .pg-strip-h1 {
    font-size: 29px;
  }
  .cdet .prog-cluster {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .cdet .pg-strip-inner {
    flex-direction: column;
    padding: 32px 16px;
    gap: 32px;
  }
  .cdet .pg-strip-right {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
  .cdet .pg-strip-h1 {
    font-size: 29px;
  }
  .cdet .body-grid {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 32px;
  }
  .cdet .body-left {
    position: static;
  }
  .cdet .prog-inner {
    padding: 32px 16px;
  }
  .cdet .prog-heading-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }
  .cdet .prog-cluster {
    grid-template-columns: 1fr;
  }
  .cdet .prog-dashed-path {
    display: none;
  }
  .cdet .prog-heading-h2 {
    font-size: 29px;
  }
  .cdet .prog-section-cta {
    flex-direction: column;
    align-items: stretch;
    margin-top: 32px;
  }
  .cdet .btn-prog-primary,
  .cdet .btn-prog-secondary {
    text-align: center;
  }
}

@media (max-width: 390px) {
  .cdet .pg-strip-h1 {
    font-size: 22px;
  }
  .cdet .price-card-amount {
    font-size: 40px;
  }
  .cdet .prog-heading-h2 {
    font-size: 22px;
  }
  .cdet .pg-strip-inner {
    padding: 32px 8px;
  }
  .cdet .body-grid {
    padding: 32px 8px;
  }
  .cdet .prog-inner {
    padding: 32px 8px;
  }
}

.cch-pg {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

.cch-pg .pg-diamond-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  overflow: hidden;
}

.cch-pg .pg-diamond-div .dmnd {
  width: 7px;
  height: 7px;
  background: #AFC3DB;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.cch-pg .pg-diamond-div .dmnd.accent {
  background: #4C80BB;
  width: 9px;
  height: 9px;
}

.cch-pg .hero-band {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  max-width: 100%;
}

.cch-pg .hero-band .hero-img-col {
  position: relative;
  overflow: hidden;
}

.cch-pg .hero-band .hero-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
}

.cch-pg .hero-band .hero-img-col .img-grad {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(76,128,187,0.72) 0%, transparent 100%);
  pointer-events: none;
}

.cch-pg .hero-band .hero-txt-col {
  position: relative;
  background: linear-gradient(155deg, #f0f5fb 0%, #dce9f5 100%);
  padding: 64px 64px 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.cch-pg .hero-band .hero-txt-col .blob-a {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 48px;
  background: rgba(76,128,187,0.10);
  filter: blur(38px);
  top: -40px;
  right: -40px;
  pointer-events: none;
}

.cch-pg .hero-band .hero-txt-col .blob-b {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 48px;
  background: rgba(175,195,219,0.18);
  filter: blur(28px);
  bottom: 16px;
  left: 32px;
  pointer-events: none;
}

.cch-pg .hero-band .hero-txt-col .hero-tag {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4C80BB;
  font-weight: 700;
  background: rgba(76,128,187,0.10);
  border-radius: 8px;
  padding: 8px 16px;
  width: fit-content;
}

.cch-pg .hero-band .hero-txt-col .hero-h1 {
  font-size: 55px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b3a5c;
  font-weight: 800;
  margin: 0;
}

.cch-pg .hero-band .hero-txt-col .hero-h1 em {
  font-style: italic;
  color: #4C80BB;
}

.cch-pg .hero-band .hero-txt-col .hero-tagline {
  font-size: 17px;
  line-height: 1.6;
  color: #2d4f72;
  margin: 0;
  max-width: 420px;
}

.cch-pg .hero-band .hero-txt-col .hero-acts {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cch-pg .hero-band .hero-txt-col .btn-prim {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(120deg, #4C80BB 0%, #2d5f9a 100%);
  border-radius: 8px;
  padding: 16px 32px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
  transition: background 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease-in-out;
}

.cch-pg .hero-band .hero-txt-col .btn-prim:hover {
  background: linear-gradient(220deg, #2d5f9a 0%, #4C80BB 100%);
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
}

.cch-pg .hero-band .hero-txt-col .btn-sec {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: #4C80BB;
  background: transparent;
  border-radius: 8px;
  padding: 16px 32px;
  text-decoration: none !important;
  border: 2px solid #4C80BB;
  cursor: pointer;
  transition: background 0.55s cubic-bezier(0.22,1,0.36,1), color 0.45s ease-in-out;
}

.cch-pg .hero-band .hero-txt-col .btn-sec:hover {
  background: #4C80BB;
  color: #ffffff;
}

.cch-pg .hero-band .tri-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 48px 48px 0 0;
  border-color: rgba(76,128,187,0.18) transparent transparent transparent;
  pointer-events: none;
  z-index: 1;
}

.cch-pg .hero-band .tri-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 48px 48px;
  border-color: transparent transparent rgba(175,195,219,0.22) transparent;
  pointer-events: none;
  z-index: 1;
}

.cch-pg .why-band {
  background: linear-gradient(170deg, #f7fafd 0%, #e8f0f9 100%);
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}

.cch-pg .why-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(255,255,255,0.85) 0%, rgba(175,195,219,0.22) 100%);
  pointer-events: none;
}

.cch-pg .why-band .tri-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 48px 48px 0;
  border-color: transparent rgba(76,128,187,0.13) transparent transparent;
  pointer-events: none;
}

.cch-pg .why-band .why-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.cch-pg .why-band .why-hdr {
  text-align: center;
  margin-bottom: 64px;
}

.cch-pg .why-band .why-hdr h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1b3a5c;
  margin: 0 0 16px;
}

.cch-pg .why-band .why-hdr p {
  font-size: 17px;
  line-height: 1.6;
  color: #2d4f72;
  max-width: 560px;
  margin: 0 auto;
}

.cch-pg .why-band .why-cols {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.cch-pg .why-band .why-stat-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cch-pg .why-band .stat-item {
  background: #ffffff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.cch-pg .why-band .stat-item .stat-num-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cch-pg .why-band .stat-item .num-circle {
  width: 44px;
  height: 44px;
  border-radius: 48px;
  background: linear-gradient(135deg, #4C80BB 0%, #AFC3DB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
}

.cch-pg .why-band .stat-item .stat-val {
  font-size: 29px;
  font-weight: 800;
  color: #4C80BB;
  line-height: 1.1;
}

.cch-pg .why-band .stat-item .stat-lbl {
  font-size: 14px;
  color: #2d4f72;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.cch-pg .why-band .stat-item .usage-bar-wrap {
  margin-top: 8px;
}

.cch-pg .why-band .stat-item .usage-bar-lbl {
  font-size: 14px;
  color: #4C80BB;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.cch-pg .why-band .stat-item .usage-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(175,195,219,0.35);
  border-radius: 8px;
  overflow: hidden;
}

.cch-pg .why-band .stat-item .usage-bar-fill {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #4C80BB 0%, #AFC3DB 100%);
  animation: bar-grow 1.2s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes bar-grow {
  from { width: 0; }
}

.cch-pg .why-band .why-txt-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cch-pg .why-band .why-pt {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(175,195,219,0.4);
}

.cch-pg .why-band .why-pt:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cch-pg .why-band .why-pt h4 {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1b3a5c;
  margin: 0;
}

.cch-pg .why-band .why-pt p {
  font-size: 17px;
  line-height: 1.6;
  color: #2d4f72;
  margin: 0;
}

.cch-pg .cards-band {
  padding: 96px 32px;
  background: #ffffff;
  position: relative;
}

.cch-pg .cards-band .tri-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 48px 0 0 48px;
  border-color: transparent transparent transparent rgba(175,195,219,0.18);
  pointer-events: none;
}

.cch-pg .cards-band .cards-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.cch-pg .cards-band .cards-hdr {
  text-align: center;
  margin-bottom: 64px;
}

.cch-pg .cards-band .cards-hdr h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1b3a5c;
  margin: 0 0 16px;
}

.cch-pg .cards-band .cards-hdr p {
  font-size: 17px;
  line-height: 1.6;
  color: #2d4f72;
  max-width: 540px;
  margin: 0 auto;
}

.cch-pg .cards-band .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.cch-pg .cards-band .prog-card {
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
  animation: card-reveal 0.65s cubic-bezier(0.22,1,0.36,1) both;
}

.cch-pg .cards-band .prog-card:hover {
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
  transform: translateY(-4px);
}

@keyframes card-reveal {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(-1.2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.cch-pg .cards-band .prog-card .card-top {
  padding: 32px 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.cch-pg .cards-band .prog-card .card-meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cch-pg .cards-band .prog-card .card-tag {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4C80BB;
  background: rgba(76,128,187,0.09);
  border-radius: 8px;
  padding: 4px 8px;
  font-weight: 700;
}

.cch-pg .cards-band .prog-card .card-fmt {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #2d4f72;
  background: rgba(175,195,219,0.22);
  border-radius: 8px;
  padding: 4px 8px;
}

.cch-pg .cards-band .prog-card .card-num-circle {
  width: 30px;
  height: 30px;
  border-radius: 48px;
  background: linear-gradient(135deg, #4C80BB 0%, #AFC3DB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  margin-left: auto;
}

.cch-pg .cards-band .prog-card .card-h {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.01em;
  font-weight: 800;
  color: #1b3a5c;
  margin: 0;
}

.cch-pg .cards-band .prog-card .card-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #2d4f72;
  margin: 0;
}

.cch-pg .cards-band .prog-card .card-attrs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.cch-pg .cards-band .prog-card .card-attr {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(175,195,219,0.3);
  font-size: 14px;
  color: #2d4f72;
  line-height: 1.4;
}

.cch-pg .cards-band .prog-card .card-attr:last-child {
  border-bottom: none;
}

.cch-pg .cards-band .prog-card .card-attr svg {
  flex-shrink: 0;
}

.cch-pg .cards-band .prog-card .card-attr strong {
  color: #1b3a5c;
}

.cch-pg .cards-band .prog-card .card-seats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 32px;
  background: rgba(76,128,187,0.05);
}

.cch-pg .cards-band .prog-card .card-seats .seat-lbl {
  font-size: 14px;
  color: #4C80BB;
  letter-spacing: 0.04em;
}

.cch-pg .cards-band .prog-card .card-seats .seat-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(175,195,219,0.35);
  border-radius: 8px;
  overflow: hidden;
}

.cch-pg .cards-band .prog-card .card-seats .seat-bar-fill {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #4C80BB 0%, #AFC3DB 100%);
}

.cch-pg .cards-band .prog-card .card-foot {
  padding: 16px 32px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cch-pg .cards-band .prog-card .card-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cch-pg .cards-band .prog-card .card-price {
  font-size: 29px;
  font-weight: 800;
  color: #4C80BB;
  line-height: 1.1;
}

.cch-pg .cards-band .prog-card .card-pricedes {
  font-size: 14px;
  color: #2d4f72;
  line-height: 1.4;
}

.cch-pg .cards-band .prog-card .card-priценote {
  font-size: 14px;
  color: #AFC3DB;
  line-height: 1.4;
}

.cch-pg .cards-band .prog-card .card-link {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(120deg, #4C80BB 0%, #2d5f9a 100%);
  border-radius: 8px;
  padding: 16px 32px;
  text-decoration: none !important;
  box-shadow: 2px 1px 5px 1px rgba(76,128,187,0.06);
  transition: background 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease-in-out;
}

.cch-pg .cards-band .prog-card .card-link:hover {
  background: linear-gradient(220deg, #2d5f9a 0%, #4C80BB 100%);
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
}

.cch-pg .dense-band {
  background: linear-gradient(155deg, #1b3a5c 0%, #4C80BB 100%);
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}

.cch-pg .dense-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 60% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 100%);
  pointer-events: none;
}

.cch-pg .dense-band .tri-tl-d {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 48px 48px 0 0;
  border-color: rgba(175,195,219,0.15) transparent transparent transparent;
  pointer-events: none;
}

.cch-pg .dense-band .tri-br-d {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 48px 48px;
  border-color: transparent transparent rgba(175,195,219,0.12) transparent;
  pointer-events: none;
}

.cch-pg .dense-band .dense-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.cch-pg .dense-band .dense-hdr {
  text-align: center;
  margin-bottom: 64px;
}

.cch-pg .dense-band .dense-hdr h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
}

.cch-pg .dense-band .dense-hdr p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto;
}

.cch-pg .dense-band .dense-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.cch-pg .dense-band .dense-item {
  background: rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 32px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.55s cubic-bezier(0.22,1,0.36,1);
}

.cch-pg .dense-band .dense-item:hover {
  background: rgba(255,255,255,0.15);
}

.cch-pg .dense-band .dense-item.accent-left {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.22);
  padding: 32px 24px;
}

.cch-pg .dense-band .dense-item .d-num {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(255,255,255,0.28) 0%, rgba(175,195,219,0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
}

.cch-pg .dense-band .dense-item h5 {
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.cch-pg .dense-band .dense-item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

.cch-pg .highlight-cycle-band {
  background: #f0f5fb;
  padding: 96px 32px;
  position: relative;
}

.cch-pg .highlight-cycle-band .tri-tr-h {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 48px 48px 0;
  border-color: transparent rgba(76,128,187,0.12) transparent transparent;
  pointer-events: none;
}

.cch-pg .highlight-cycle-band .cycle-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.cch-pg .highlight-cycle-band .cycle-hdr {
  text-align: center;
  margin-bottom: 64px;
}

.cch-pg .highlight-cycle-band .cycle-hdr h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1b3a5c;
  margin: 0 0 16px;
}

.cch-pg .highlight-cycle-band .cycle-hdr p {
  font-size: 17px;
  line-height: 1.6;
  color: #2d4f72;
  max-width: 520px;
  margin: 0 auto;
}

.cch-pg .highlight-cycle-band .cycle-txt {
  font-size: 29px;
  line-height: 1.4;
  color: #1b3a5c;
  font-weight: 700;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.cch-pg .highlight-cycle-band .cycle-txt .hw {
  color: #AFC3DB;
  transition: color 0.6s ease-in-out;
  padding: 0 2px;
}

.cch-pg .highlight-cycle-band .cycle-txt .hw.lit {
  color: #4C80BB;
  text-decoration: underline;
  text-decoration-color: rgba(76,128,187,0.4);
}

.cch-pg .cta-band {
  background: #ffffff;
  padding: 96px 32px;
  position: relative;
}

.cch-pg .cta-band .tri-bl-c {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 48px 0 0 48px;
  border-color: transparent transparent transparent rgba(76,128,187,0.10);
  pointer-events: none;
}

.cch-pg .cta-band .cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  background: linear-gradient(140deg, #e8f0f9 0%, #dce9f5 100%);
  border-radius: 48px;
  padding: 64px;
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
  position: relative;
  overflow: hidden;
}

.cch-pg .cta-band .cta-inner .blob-cta {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 48px;
  background: rgba(76,128,187,0.09);
  filter: blur(44px);
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.cch-pg .cta-band .cta-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cch-pg .cta-band .cta-txt h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1b3a5c;
  margin: 0;
}

.cch-pg .cta-band .cta-txt p {
  font-size: 17px;
  line-height: 1.6;
  color: #2d4f72;
  margin: 0;
  max-width: 440px;
}

.cch-pg .cta-band .cta-acts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.cch-pg .cta-band .cta-acts .btn-prim-cta {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(120deg, #4C80BB 0%, #2d5f9a 100%);
  border-radius: 8px;
  padding: 16px 32px;
  text-decoration: none !important;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
  transition: background 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s ease-in-out;
  text-align: center;
}

.cch-pg .cta-band .cta-acts .btn-prim-cta:hover {
  background: linear-gradient(220deg, #2d5f9a 0%, #4C80BB 100%);
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
}

.cch-pg .cta-band .cta-acts .btn-sec-cta {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: #4C80BB;
  background: transparent;
  border-radius: 8px;
  padding: 16px 32px;
  text-decoration: none !important;
  border: 2px solid #4C80BB;
  text-align: center;
  transition: background 0.55s cubic-bezier(0.22,1,0.36,1), color 0.45s ease-in-out;
}

.cch-pg .cta-band .cta-acts .btn-sec-cta:hover {
  background: #4C80BB;
  color: #ffffff;
}

@media (max-width: 1280px) {
  .cch-pg .hero-band .hero-txt-col {
    padding: 64px 32px;
  }
  .cch-pg .hero-band .hero-txt-col .hero-h1 {
    font-size: 40px;
  }
  .cch-pg .dense-band .dense-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cch-pg .hero-band {
    grid-template-columns: 1fr;
  }
  .cch-pg .hero-band .hero-img-col {
    max-height: 260px;
  }
  .cch-pg .hero-band .hero-txt-col {
    padding: 64px 32px;
  }
  .cch-pg .hero-band .hero-txt-col .hero-h1 {
    font-size: 40px;
  }
  .cch-pg .why-band .why-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cch-pg .cards-band .card-grid {
    grid-template-columns: 1fr;
  }
  .cch-pg .dense-band .dense-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cch-pg .cta-band .cta-inner {
    flex-direction: column;
    padding: 32px;
    gap: 32px;
  }
  .cch-pg .highlight-cycle-band .cycle-txt {
    font-size: 22px;
  }
}

@media (max-width: 390px) {
  .cch-pg .hero-band .hero-txt-col .hero-h1 {
    font-size: 29px;
  }
  .cch-pg .hero-band .hero-txt-col {
    padding: 32px 16px;
  }
  .cch-pg .why-band {
    padding: 64px 16px;
  }
  .cch-pg .cards-band {
    padding: 64px 16px;
  }
  .cch-pg .dense-band {
    padding: 64px 16px;
  }
  .cch-pg .dense-band .dense-grid {
    grid-template-columns: 1fr;
  }
  .cch-pg .highlight-cycle-band {
    padding: 64px 16px;
  }
  .cch-pg .cta-band {
    padding: 64px 16px;
  }
  .cch-pg .cta-band .cta-inner {
    padding: 32px 16px;
    border-radius: 32px;
  }
  .cch-pg .cards-band .prog-card .card-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

.wbnr-pg {
  background: #ffffff;
  overflow-x: clip;
  position: relative;
}

.wbnr-pg .schema-block {
  display: none;
}

.wbnr-pg .divider-seg {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.wbnr-pg .divider-seg .seg-line {
  flex: 1;
  height: 1px;
  background: #AFC3DB;
  opacity: 0.45;
}

.wbnr-pg .divider-seg .seg-accent {
  width: 48px;
  height: 3px;
  background: #4C80BB;
  border-radius: 8px;
  margin: 0 8px;
}

.wbnr-pg .drop-bounce {
  animation: dropBounce 0.65s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes dropBounce {
  0% { opacity: 0; transform: translateY(-32px); }
  70% { opacity: 1; transform: translateY(6px); }
  85% { transform: translateY(-3px); }
  100% { opacity: 1; transform: translateY(0); }
}

.wbnr-pg .drop-bounce-delay {
  animation: dropBounce 0.65s cubic-bezier(0.22,1,0.36,1) 0.18s both;
}

.wbnr-pg .drop-bounce-delay-2 {
  animation: dropBounce 0.65s cubic-bezier(0.22,1,0.36,1) 0.32s both;
}



.wbnr-pg .title-blk {
  background: #1e2d42;
  padding: 64px 32px 96px;
  position: relative;
  overflow: hidden;
}

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

.wbnr-pg .title-blk .bg-circle-a {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 48px;
  background: rgba(76, 128, 187, 0.06);
  top: -120px;
  right: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.wbnr-pg .title-blk .bg-circle-b {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(175, 195, 219, 0.05);
  bottom: -60px;
  left: 40px;
  pointer-events: none;
}

.wbnr-pg .title-blk__inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: center;
}

.wbnr-pg .title-blk__text {
  flex: 1 1 0;
}

.wbnr-pg .title-blk__eyebrow {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #AFC3DB;
  margin-bottom: 16px;
  font-weight: 600;
}

.wbnr-pg .title-blk__h1 {
  font-size: 55px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 16px;
}

.wbnr-pg .title-blk__h2 {
  font-size: 29px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #AFC3DB;
  font-weight: 400;
  margin-bottom: 32px;
}

.wbnr-pg .title-blk__desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
}

.wbnr-pg .title-blk__img-col {
  flex: 0 0 420px;
  position: relative;
}

.wbnr-pg .title-blk__img-wrap {
  width: 420px;
  aspect-ratio: 16/9;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
}

.wbnr-pg .title-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wbnr-pg .title-blk__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(30,45,66,0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(30,45,66,0.55) 0%, transparent 55%);
  pointer-events: none;
}



.wbnr-pg .div-row {
  padding: 32px 32px;
}



.wbnr-pg .wbn-list {
  padding: 64px 32px;
  background: linear-gradient(158deg, #f0f5fb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.wbnr-pg .wbn-list .bg-geo-a {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(175,195,219,0.18);
  top: -80px;
  left: -100px;
  pointer-events: none;
}

.wbnr-pg .wbn-list .bg-geo-b {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(76,128,187,0.09);
  bottom: 32px;
  right: 64px;
  pointer-events: none;
}

.wbnr-pg .wbn-list__inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wbnr-pg .wbn-list__hd {
  text-align: center;
  margin-bottom: 64px;
}

.wbnr-pg .wbn-list__hd .lbl {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4C80BB;
  font-weight: 700;
  margin-bottom: 8px;
}

.wbnr-pg .wbn-list__hd h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #1e2d42;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wbnr-pg .wbn-list__hd p {
  font-size: 17px;
  line-height: 1.6;
  color: #3a4f66;
  max-width: 560px;
  margin: 0 auto;
}

.wbnr-pg .wbn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.wbnr-pg .wbn-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
  cursor: default;
}

.wbnr-pg .wbn-card:hover {
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
  transform: translateY(-4px);
}

.wbnr-pg .wbn-card.offset-row {
  margin-top: 32px;
}

.wbnr-pg .wbn-card__icon-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #4C80BB;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(76,128,187,0.18);
  flex-shrink: 0;
}

.wbnr-pg .wbn-card__icon-ring svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.wbnr-pg .wbn-card__top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.wbnr-pg .wbn-card__meta {
  flex: 1;
}

.wbnr-pg .wbn-card__tag {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4C80BB;
  font-weight: 700;
  margin-bottom: 8px;
}

.wbnr-pg .wbn-card h3 {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #1e2d42;
  font-weight: 800;
  text-transform: uppercase;
}

.wbnr-pg .wbn-card__body {
  font-size: 17px;
  line-height: 1.6;
  color: #3a4f66;
}

.wbnr-pg .wbn-card__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wbnr-pg .wbn-card__items li {
  font-size: 17px;
  line-height: 1.6;
  color: #3a4f66;
  padding: 8px 0;
  border-bottom: 1px solid rgba(175,195,219,0.45);
}

.wbnr-pg .wbn-card__items li:last-child {
  border-bottom: none;
}

.wbnr-pg .wbn-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 12px 32px;
  border-radius: 8px;
  border: 2px solid #4C80BB;
  background: transparent;
  color: #4C80BB;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.5s cubic-bezier(0.22,1,0.36,1), color 0.5s cubic-bezier(0.22,1,0.36,1);
  align-self: flex-start;
}

.wbnr-pg .wbn-card__cta:hover {
  background: #4C80BB;
  color: #ffffff;
}

.wbnr-pg .wbn-card__cta:focus {
  outline: 3px solid #4C80BB;
  outline-offset: 3px;
}

.wbnr-pg .wbn-card.featured {
  background: linear-gradient(158deg, #1e2d42 0%, #2e4a6e 100%);
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

.wbnr-pg .wbn-card.featured .wbn-card__icon-ring {
  background: #AFC3DB;
  box-shadow: 0 0 0 4px rgba(175,195,219,0.25);
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.wbnr-pg .wbn-card.featured .wbn-card__icon-ring svg {
  fill: #1e2d42;
  width: 28px;
  height: 28px;
}

.wbnr-pg .wbn-card.featured .wbn-card__tag {
  color: #AFC3DB;
}

.wbnr-pg .wbn-card.featured h3 {
  color: #ffffff;
  font-size: 29px;
}

.wbnr-pg .wbn-card.featured .wbn-card__body {
  color: rgba(255,255,255,0.78);
}

.wbnr-pg .wbn-card.featured .wbn-card__items li {
  color: rgba(255,255,255,0.78);
  border-bottom-color: rgba(175,195,219,0.25);
}

.wbnr-pg .wbn-card.featured .wbn-card__cta {
  border-color: #AFC3DB;
  color: #AFC3DB;
}

.wbnr-pg .wbn-card.featured .wbn-card__cta:hover {
  background: #AFC3DB;
  color: #1e2d42;
}

.wbnr-pg .wbn-card.featured .feat-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
}

.wbnr-pg .wbn-card.featured .feat-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}



.wbnr-pg .div-row-2 {
  padding: 32px 32px;
  background: #ffffff;
}



.wbnr-pg .insights-blk {
  padding: 96px 32px 64px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.wbnr-pg .insights-blk .bg-geo-c {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(175,195,219,0.13);
  top: -160px;
  right: -140px;
  pointer-events: none;
}

.wbnr-pg .insights-blk .bg-geo-d {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(175,195,219,0.08);
  bottom: 64px;
  left: -40px;
  pointer-events: none;
}

.wbnr-pg .insights-blk__inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wbnr-pg .insights-blk__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.wbnr-pg .insights-blk__left h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #1e2d42;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wbnr-pg .insights-blk__left p {
  font-size: 17px;
  line-height: 1.6;
  color: #3a4f66;
}

.wbnr-pg .insights-blk__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wbnr-pg .quote-bubble {
  background: linear-gradient(135deg, #edf3f9 0%, #f7fafd 100%);
  border-radius: 32px;
  padding: 32px;
  position: relative;
  box-shadow: 2px 1px 5px 1px rgba(76,128,187,0.06);
  transition: box-shadow 0.6s cubic-bezier(0.22,1,0.36,1);
}

.wbnr-pg .quote-bubble:hover {
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
}

.wbnr-pg .quote-bubble:hover .quote-bubble__text {
  text-shadow: 0 2px 12px rgba(76,128,187,0.22);
}

.wbnr-pg .quote-bubble::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 48px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 8px solid transparent;
  border-top: 18px solid #edf3f9;
  pointer-events: none;
}

.wbnr-pg .quote-bubble__mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #4C80BB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.wbnr-pg .quote-bubble__mark svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.wbnr-pg .quote-bubble__text {
  font-size: 22px;
  line-height: 1.4;
  color: #1e2d42;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 16px;
  transition: text-shadow 0.6s cubic-bezier(0.22,1,0.36,1);
}

.wbnr-pg .quote-bubble__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.wbnr-pg .quote-bubble__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4C80BB 0%, #AFC3DB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(76,128,187,0.18);
}

.wbnr-pg .quote-bubble__avatar svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.wbnr-pg .quote-bubble__name {
  font-size: 17px;
  line-height: 1.4;
  color: #1e2d42;
  font-weight: 700;
}

.wbnr-pg .quote-bubble__role {
  font-size: 14px;
  line-height: 1.4;
  color: #4C80BB;
  letter-spacing: 0.06em;
}

.wbnr-pg .metrics-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 16px;
}

.wbnr-pg .metric-item {
  flex: 1;
  background: linear-gradient(158deg, #1e2d42 0%, #2e4a6e 100%);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
  transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.5s ease-in-out;
}

.wbnr-pg .metric-item:hover {
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
  transform: translateY(-3px);
}

.wbnr-pg .metric-item__val {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #AFC3DB;
  font-weight: 800;
}

.wbnr-pg .metric-item__val em {
  font-size: 22px;
  font-style: normal;
  color: #4C80BB !important;
  font-weight: 700;
}

.wbnr-pg .metric-item__label {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1280px) {
  .wbnr-pg .title-blk__h1 {
    font-size: 40px;
  }
  .wbnr-pg .title-blk__img-col {
    flex: 0 0 340px;
  }
  .wbnr-pg .title-blk__img-wrap {
    width: 340px;
  }
}

@media (max-width: 768px) {
  .wbnr-pg .title-blk__inner {
    flex-direction: column;
    gap: 32px;
  }
  .wbnr-pg .title-blk__img-col {
    flex: 0 0 auto;
    width: 100%;
  }
  .wbnr-pg .title-blk__img-wrap {
    width: 100%;
  }
  .wbnr-pg .title-blk__h1 {
    font-size: 40px;
  }
  .wbnr-pg .title-blk__h2 {
    font-size: 22px;
  }
  .wbnr-pg .wbn-grid {
    grid-template-columns: 1fr;
  }
  .wbnr-pg .wbn-card.featured {
    flex-direction: column;
    gap: 32px;
  }
  .wbnr-pg .wbn-card.offset-row {
    margin-top: 0;
  }
  .wbnr-pg .insights-blk__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wbnr-pg .metrics-row {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 390px) {
  .wbnr-pg .title-blk {
    padding: 32px 16px 64px;
  }
  .wbnr-pg .title-blk__h1 {
    font-size: 29px;
  }
  .wbnr-pg .title-blk__h2 {
    font-size: 17px;
  }
  .wbnr-pg .wbn-list {
    padding: 32px 16px;
  }
  .wbnr-pg .wbn-card {
    padding: 16px;
  }
  .wbnr-pg .wbn-list__hd h2 {
    font-size: 29px;
  }
  .wbnr-pg .insights-blk {
    padding: 64px 16px 32px;
  }
  .wbnr-pg .insights-blk__left h2 {
    font-size: 29px;
  }
  .wbnr-pg .quote-bubble__text {
    font-size: 17px;
  }
  .wbnr-pg .metric-item__val {
    font-size: 29px;
  }
}

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

.ctus-pg .pg-schema {
  display: none;
}


.ctus-pg .reach-panel {
  position: relative;
  padding: 96px 16px 64px;
  background: linear-gradient(168deg, #e8eef6 0%, #c9d8eb 100%);
  border-top: 3px solid #4C80BB;
  border-bottom: 3px solid #AFC3DB;
  overflow: hidden;
}

.ctus-pg .reach-panel__bg-stripes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    -34deg,
    transparent,
    transparent 28px,
    rgba(76, 128, 187, 0.06) 28px,
    rgba(76, 128, 187, 0.06) 30px
  );
}

.ctus-pg .reach-panel__inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
}

.ctus-pg .reach-panel__left {
  flex: 0 0 340px;
}

.ctus-pg .reach-panel__label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #4C80BB;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.ctus-pg .reach-panel__heading {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b2e47;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
}

.ctus-pg .reach-panel__heading em {
  font-style: normal;
  color: #4C80BB;
  font-family: Georgia, serif;
}

.ctus-pg .reach-panel__desc {
  font-size: 17px;
  line-height: 1.6;
  color: #2d4460;
  max-width: 300px;
}

.ctus-pg .reach-panel__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 16px;
}

.ctus-pg .contact-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 2px 5px 18px 1px rgba(76, 128, 187, 0.11);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
  border-left: 4px solid #4C80BB;
  border-bottom: 4px solid #AFC3DB;
}

.ctus-pg .contact-card:hover {
  box-shadow: 2px 12px 60px 1px rgba(76, 128, 187, 0.14);
  transform: translateY(-3px);
}

.ctus-pg .contact-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4C80BB 0%, #AFC3DB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctus-pg .contact-card__icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.ctus-pg .contact-card__body {
  flex: 1;
}

.ctus-pg .contact-card__type {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4C80BB;
  font-weight: 700;
  margin-bottom: 8px;
}

.ctus-pg .contact-card__val {
  font-size: 17px;
  line-height: 1.4;
  color: #1b2e47;
  font-weight: 600;
  text-decoration: none;
  display: block;
}

.ctus-pg .contact-card__val:hover {
  color: #4C80BB;
  transition: color 0.45s ease-in-out;
}

.ctus-pg .contact-card__sub {
  font-size: 14px;
  color: #5a7a9e;
  margin-top: 8px;
  line-height: 1.4;
}


.ctus-pg .form-panel {
  padding: 96px 16px;
  background: #ffffff;
  position: relative;
  border-right: 6px solid #4C80BB;
}

.ctus-pg .form-panel__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start;
}

.ctus-pg .form-panel__aside {
  flex: 0 0 280px;
  position: sticky;
  top: 32px;
}

.ctus-pg .form-panel__aside-num {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background: #4C80BB;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 2px 5px 18px 1px rgba(76, 128, 187, 0.11);
}

.ctus-pg .form-panel__aside-head {
  font-size: 29px;
  line-height: 1.1;
  font-weight: 800;
  color: #1b2e47;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.ctus-pg .form-panel__aside-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4a6680;
}

.ctus-pg .form-panel__aside-steps {
  margin-top: 32px;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ctus-pg .form-panel__aside-steps li {
  font-size: 14px;
  color: #2d4460;
  line-height: 1.4;
  padding-bottom: 16px;
  border-bottom: 1px solid #AFC3DB;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.ctus-pg .form-panel__aside-steps li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ctus-pg .step-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #4C80BB;
  margin-top: 5px;
}

.ctus-pg .form-panel__form-wrap {
  flex: 1;
}

.ctus-pg .req-form {
  background: #f4f7fb;
  border-radius: 32px;
  padding: 64px;
  box-shadow: 2px 1px 5px 1px rgba(76, 128, 187, 0.06);
}

.ctus-pg .req-form__category-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ctus-pg .req-form__cat-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1b2e47;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: 100%;
}

.ctus-pg .cat-opt {
  position: relative;
}

.ctus-pg .cat-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ctus-pg .cat-opt__btn {
  display: block;
  padding: 8px 16px;
  border-radius: 8px;
  border: 2px solid #AFC3DB;
  font-size: 14px;
  font-weight: 600;
  color: #2d4460;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.5s cubic-bezier(0.22,1,0.36,1), border-color 0.5s cubic-bezier(0.22,1,0.36,1), color 0.45s ease-in-out;
  letter-spacing: 0.04em;
}

.ctus-pg .cat-opt input[type="radio"]:checked + .cat-opt__btn {
  background: #4C80BB;
  border-color: #4C80BB;
  color: #ffffff;
  box-shadow: 2px 5px 18px 1px rgba(76, 128, 187, 0.11);
}

.ctus-pg .cat-opt__btn:hover {
  border-color: #4C80BB;
  color: #4C80BB;
}

.ctus-pg .req-form__fields {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ctus-pg .field-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.ctus-pg .field-grp {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ctus-pg .field-grp label {
  font-size: 14px;
  font-weight: 700;
  color: #1b2e47;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ctus-pg .field-grp input,
.ctus-pg .field-grp textarea,
.ctus-pg .field-grp select {
  background: #ffffff;
  border: 2px solid #AFC3DB;
  border-radius: 8px;
  padding: 16px;
  font-size: 17px;
  color: #1b2e47;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.55s cubic-bezier(0.22,1,0.36,1);
  appearance: none;
}

.ctus-pg .field-grp input::placeholder,
.ctus-pg .field-grp textarea::placeholder {
  font-family: Georgia, serif;
  color: #7a9ab8;
  font-size: 14px;
}

.ctus-pg .field-grp input:focus,
.ctus-pg .field-grp textarea:focus,
.ctus-pg .field-grp select:focus {
  border-color: #4C80BB;
  box-shadow: 2px 5px 18px 1px rgba(76, 128, 187, 0.11);
}

.ctus-pg .field-grp textarea {
  resize: vertical;
  min-height: 120px;
}

.ctus-pg .field-grp select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234C80BB' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.ctus-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #e8eef6;
  border-radius: 8px;
}

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

.ctus-pg .privacy-row__text {
  font-size: 14px;
  line-height: 1.6;
  color: #2d4460;
}

.ctus-pg .privacy-row__text a {
  color: #4C80BB;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.ctus-pg .btn-submit {
  padding: 16px 64px;
  border-radius: 8px;
  border: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(118deg, #1b2e47 0%, #4C80BB 100%);
  color: #ffffff;
  box-shadow: 2px 5px 18px 1px rgba(76, 128, 187, 0.11);
  transition: background 0.6s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.45s ease-in-out;
  position: relative;
  overflow: hidden;
}

.ctus-pg .btn-submit:hover {
  background: linear-gradient(298deg, #1b2e47 0%, #4C80BB 100%);
  box-shadow: 2px 12px 60px 1px rgba(76, 128, 187, 0.14);
  transform: translateY(-2px);
}

.ctus-pg .btn-submit:active {
  background: linear-gradient(118deg, #4C80BB 0%, #1b2e47 100%);
  transform: translateY(0);
}

.ctus-pg .btn-submit:focus-visible {
  outline: 3px solid #4C80BB;
  outline-offset: 3px;
}


.ctus-pg .timeline-panel {
  padding: 96px 16px 64px;
  background: linear-gradient(158deg, #1b2e47 0%, #2d4a72 60%, #4C80BB 100%);
  position: relative;
  border-top: 3px solid #AFC3DB;
  border-bottom: 3px solid #4C80BB;
  overflow: hidden;
}

.ctus-pg .timeline-panel__bg-stripe {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #AFC3DB 0%, #4C80BB 100%);
  pointer-events: none;
}

.ctus-pg .timeline-panel__bg-stripes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -34deg,
    transparent,
    transparent 28px,
    rgba(255,255,255, 0.03) 28px,
    rgba(255,255,255, 0.03) 30px
  );
}

.ctus-pg .timeline-panel__inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ctus-pg .timeline-panel__head {
  text-align: center;
  margin-bottom: 64px;
}

.ctus-pg .timeline-panel__label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #AFC3DB;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.ctus-pg .timeline-panel__heading {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.ctus-pg .timeline-panel__heading em {
  font-style: normal;
  color: #AFC3DB;
  font-family: Georgia, serif;
}

.ctus-pg .h-timeline {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-bottom: 64px;
  overflow: hidden;
}

.ctus-pg .h-timeline__track {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(175, 195, 219, 0.35);
}

.ctus-pg .h-timeline__track-fill {
  height: 100%;
  background: linear-gradient(90deg, #4C80BB 0%, #AFC3DB 100%);
  width: 100%;
}

.ctus-pg .h-timeline__pt {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 0;
}

.ctus-pg .h-timeline__dot {
  width: 40px;
  height: 40px;
  border-radius: 48px;
  background: #4C80BB;
  border: 3px solid #AFC3DB;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
  box-shadow: 2px 5px 18px 1px rgba(76, 128, 187, 0.11);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), background 0.55s cubic-bezier(0.22,1,0.36,1);
}

.ctus-pg .h-timeline__dot:hover {
  transform: scale(1.15);
  background: #AFC3DB;
}

.ctus-pg .h-timeline__dot-num {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.ctus-pg .h-timeline__body {
  margin-top: 16px;
  text-align: center;
  padding: 0 8px;
}

.ctus-pg .h-timeline__step-label {
  font-size: 14px;
  font-weight: 700;
  color: #AFC3DB;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ctus-pg .h-timeline__step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.ctus-pg .metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ctus-pg .metric-card {
  background: rgba(255,255,255,0.07);
  border-radius: 32px;
  padding: 32px;
  border: 1px solid rgba(175, 195, 219, 0.2);
  box-shadow: 2px 1px 5px 1px rgba(76, 128, 187, 0.06);
  transition: background 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}

.ctus-pg .metric-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.ctus-pg .metric-card:active {
  background: rgba(76, 128, 187, 0.35);
}

.ctus-pg .metric-card__num-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.ctus-pg .metric-card__circle {
  width: 40px;
  height: 40px;
  border-radius: 48px;
  background: linear-gradient(135deg, #4C80BB 0%, #AFC3DB 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ctus-pg .metric-card__circle svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.ctus-pg .metric-card__figure {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.ctus-pg .metric-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #AFC3DB;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ctus-pg .metric-card__narrative {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}


@keyframes col-reveal {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

.ctus-pg .contact-card:nth-child(1) { animation: col-reveal 0.65s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.ctus-pg .contact-card:nth-child(2) { animation: col-reveal 0.65s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
.ctus-pg .contact-card:nth-child(3) { animation: col-reveal 0.65s cubic-bezier(0.22,1,0.36,1) 0.4s both; }

.ctus-pg .metric-card:nth-child(1) { animation: col-reveal 0.65s cubic-bezier(0.22,1,0.36,1) 0.1s both; }
.ctus-pg .metric-card:nth-child(2) { animation: col-reveal 0.65s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
.ctus-pg .metric-card:nth-child(3) { animation: col-reveal 0.65s cubic-bezier(0.22,1,0.36,1) 0.4s both; }
.ctus-pg .metric-card:nth-child(4) { animation: col-reveal 0.65s cubic-bezier(0.22,1,0.36,1) 0.55s both; }


@media (max-width: 1280px) {
  .ctus-pg .reach-panel__inner { gap: 32px; }
  .ctus-pg .reach-panel__left { flex: 0 0 280px; }
  .ctus-pg .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .ctus-pg .form-panel__inner { gap: 32px; }
  .ctus-pg .form-panel__aside { flex: 0 0 220px; }
  .ctus-pg .req-form { padding: 32px; }
}

@media (max-width: 768px) {
  .ctus-pg .reach-panel { padding: 64px 16px 32px; }
  .ctus-pg .reach-panel__inner { flex-direction: column; gap: 32px; }
  .ctus-pg .reach-panel__left { flex: none; }
  .ctus-pg .reach-panel__heading { font-size: 40px; }
  .ctus-pg .reach-panel__desc { max-width: 100%; }

  .ctus-pg .form-panel { padding: 64px 16px; border-right: none; border-top: 6px solid #4C80BB; }
  .ctus-pg .form-panel__inner { flex-direction: column; gap: 32px; }
  .ctus-pg .form-panel__aside { flex: none; position: static; }
  .ctus-pg .req-form { padding: 32px 16px; }
  .ctus-pg .field-row { flex-direction: column; }

  .ctus-pg .timeline-panel { padding: 64px 16px; }
  .ctus-pg .h-timeline { flex-direction: column; gap: 32px; }
  .ctus-pg .h-timeline__track { display: none; }
  .ctus-pg .h-timeline__pt { align-items: flex-start; flex-direction: row; gap: 16px; }
  .ctus-pg .h-timeline__body { text-align: left; margin-top: 0; }
  .ctus-pg .metrics-grid { grid-template-columns: 1fr; }
  .ctus-pg .timeline-panel__heading { font-size: 29px; }
}

@media (max-width: 390px) {
  .ctus-pg .reach-panel__heading { font-size: 29px; }
  .ctus-pg .req-form__category-row { gap: 8px; }
  .ctus-pg .btn-submit { width: 100%; padding: 16px; }
  .ctus-pg .submit-row { flex-direction: column; align-items: stretch; }
  .ctus-pg .metric-card__figure { font-size: 29px; }
}

.abt-us {
    overflow-x: clip;
    position: relative;
}

.abt-us .prim-strip {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1140px;
    margin: 0 auto;
    padding: 96px 32px 64px 32px;
    gap: 64px;
    position: relative;
}

.abt-us .prim-strip__text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.abt-us .prim-strip__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: 0.12em;
    color: #4C80BB;
    text-transform: uppercase;
    font-weight: 600;
}

.abt-us .prim-strip__label-diamond {
    width: 8px;
    height: 8px;
    background: #4C80BB;
    transform: rotate(45deg);
    display: inline-block;
    flex-shrink: 0;
}

.abt-us .prim-strip__h1 {
    font-size: 55px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1b2d45;
    font-weight: 800;
    margin: 0;
}

.abt-us .prim-strip__h1 em {
    font-style: italic;
    color: #4C80BB;
    font-weight: 800;
}

.abt-us .prim-strip__quote {
    font-size: 22px;
    line-height: 1.4;
    color: #3a5070;
    font-style: italic;
    border-left: 3px solid #AFC3DB;
    padding-left: 16px;
    margin: 0;
    max-width: 480px;
}

.abt-us .prim-strip__meta {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.abt-us .prim-strip__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-us .prim-strip__stat-num {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    color: #4C80BB;
    letter-spacing: -0.02em;
}

.abt-us .prim-strip__stat-desc {
    font-size: 14px;
    line-height: 1.4;
    color: #3a5070;
    letter-spacing: 0.04em;
}

.abt-us .prim-strip__divider-v {
    width: 1px;
    height: 40px;
    background: #AFC3DB;
    align-self: center;
}

.abt-us .prim-strip__img-col {
    flex: 0 0 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.abt-us .prim-strip__img-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
    flex-shrink: 0;
}

.abt-us .prim-strip__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abt-us .prim-strip__img-tint {
    position: absolute;
    inset: 0;
    background: rgba(76,128,187,0.18);
    border-radius: 8px;
    pointer-events: none;
}

.abt-us .prim-strip__img-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.abt-us .prim-strip__img-sm {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
}

.abt-us .prim-strip__img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abt-us .prim-strip__curve-bg {
    position: absolute;
    top: 0;
    left: -64px;
    width: 420px;
    height: 420px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.13;
}

.abt-us .prim-strip__connector {
    position: absolute;
    left: 0;
    top: 80px;
    width: 2px;
    height: 120px;
    pointer-events: none;
}

.abt-us .prim-strip__connector-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #4C80BB 0%, transparent 100%);
    border-radius: 8px;
}

.abt-us .sec-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 32px;
}

.abt-us .sec-divider__thick {
    width: 100%;
    max-width: 1140px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4C80BB 40%, #AFC3DB 70%, transparent);
    border-radius: 8px;
}

.abt-us .sec-divider__thin {
    width: 100%;
    max-width: 1140px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #AFC3DB 50%, transparent);
    border-radius: 8px;
    margin-top: 4px;
}

.abt-us .depth-sec {
    position: relative;
    background: linear-gradient(158deg, #f4f8fd 0%, #e8f0f9 100%);
    overflow: hidden;
}

.abt-us .depth-sec__edge {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, #4C80BB 0%, #AFC3DB 100%);
    border-radius: 0 8px 8px 0;
    pointer-events: none;
}

.abt-us .depth-sec__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 96px 32px 96px 56px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.abt-us .depth-sec__aside {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 32px;
}

.abt-us .depth-sec__aside-label {
    font-size: 14px;
    letter-spacing: 0.14em;
    color: #4C80BB;
    text-transform: uppercase;
    font-weight: 700;
}

.abt-us .depth-sec__aside-h2 {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1b2d45;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.abt-us .depth-sec__aside-h2 span {
    font-style: italic;
    font-weight: 400;
    color: #4C80BB;
    text-transform: none;
    font-size: 29px;
    display: block;
    letter-spacing: 0.01em;
    margin-top: 8px;
}

.abt-us .depth-sec__aside-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
}

.abt-us .depth-sec__aside-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abt-us .depth-sec__aside-note {
    font-size: 14px;
    line-height: 1.6;
    color: #4a6080;
    border-top: 1px solid #AFC3DB;
    border-bottom: 2px solid #4C80BB;
    padding: 16px 0;
}

.abt-us .depth-sec__body {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.abt-us .depth-sec__level {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abt-us .depth-sec__level-h3 {
    font-size: 29px;
    line-height: 1.1;
    letter-spacing: 0.04em;
    color: #1b2d45;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.abt-us .depth-sec__level-h3::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #4C80BB;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.abt-us .depth-sec__level-h4 {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: 0.06em;
    color: #4C80BB;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.abt-us .depth-sec__level-p {
    font-size: 17px;
    line-height: 1.6;
    color: #2c3e52;
    margin: 0;
}

.abt-us .depth-sec__level-sub {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.abt-us .depth-sec__level-sub-h5 {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #3a5070;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.abt-us .depth-sec__level-sub-p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a6080;
    margin: 0;
}

.abt-us .depth-sec__icon-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.abt-us .depth-sec__icon-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 2px 1px 5px 1px rgba(76,128,187,0.06);
    border-top: 2px solid #AFC3DB;
    transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), border-top-color 0.5s ease-in-out;
}

.abt-us .depth-sec__icon-item:hover {
    box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
    border-top-color: #4C80BB;
}

.abt-us .depth-sec__icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #e8f0f9 0%, #d0e0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.abt-us .depth-sec__icon-wrap .oi {
    color: #4C80BB;
    font-size: 17px;
}

.abt-us .depth-sec__icon-desc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-us .depth-sec__icon-desc strong {
    font-size: 14px;
    letter-spacing: 0.06em;
    color: #1b2d45;
    font-weight: 700;
    display: block;
}

.abt-us .depth-sec__icon-desc span {
    font-size: 14px;
    line-height: 1.6;
    color: #4a6080;
}

.abt-us .depth-sec__img-wide {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
    margin-top: 8px;
}

.abt-us .depth-sec__img-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abt-us .depth-sec__fill-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.abt-us .depth-sec__fill-label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.abt-us .depth-sec__fill-label span {
    font-size: 14px;
    color: #3a5070;
    letter-spacing: 0.04em;
}

.abt-us .depth-sec__fill-label strong {
    font-size: 14px;
    font-weight: 700;
    color: #4C80BB;
}

.abt-us .depth-sec__fill-track {
    height: 6px;
    background: #d0e0f0;
    border-radius: 8px;
    overflow: hidden;
}

.abt-us .depth-sec__fill-progress {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, #4C80BB 0%, #AFC3DB 100%);
    animation: fill-left-right 1.2s cubic-bezier(0.22,1,0.36,1) both;
    animation-delay: 0.2s;
}

@keyframes fill-left-right {
    from { width: 0; }
    to { width: var(--bar-w); }
}

.abt-us .depth-sec__three-col {
    display: grid;
    grid-template-columns: 3fr 2fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.abt-us .depth-sec__col-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 2px 1px 5px 1px rgba(76,128,187,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-us .depth-sec__col-card h6 {
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #4C80BB;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.abt-us .depth-sec__col-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a6080;
    margin: 0;
}

.abt-us .depth-sec__person-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    margin-top: 8px;
    flex-wrap: wrap;
}

.abt-us .depth-sec__person {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-us .depth-sec__person-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
}

.abt-us .depth-sec__person-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.abt-us .depth-sec__person-name {
    font-size: 17px;
    font-weight: 700;
    color: #1b2d45;
    letter-spacing: 0.02em;
    margin: 0;
}

.abt-us .depth-sec__person-role {
    font-size: 14px;
    color: #4C80BB;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
}

.abt-us .depth-sec__person-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #4a6080;
    margin: 0;
}

.abt-us .depth-sec__underline-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
}

.abt-us .depth-sec__underline-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #d0e0f0;
    font-size: 17px;
    line-height: 1.4;
    color: #2c3e52;
    transition: color 0.45s ease-in-out, padding-left 0.5s cubic-bezier(0.22,1,0.36,1);
}

.abt-us .depth-sec__underline-item:first-child {
    border-top: 1px solid #d0e0f0;
}

.abt-us .depth-sec__underline-item:hover {
    color: #4C80BB;
    padding-left: 8px;
}

.abt-us .depth-sec__underline-item .oi {
    color: #AFC3DB;
    font-size: 17px;
    flex-shrink: 0;
    transition: color 0.45s ease-in-out;
}

.abt-us .depth-sec__underline-item:hover .oi {
    color: #4C80BB;
}

@media (max-width: 1280px) {
    .abt-us .prim-strip {
        gap: 32px;
        padding: 64px 32px 64px 32px;
    }
    .abt-us .prim-strip__img-col {
        flex: 0 0 260px;
    }
    .abt-us .prim-strip__h1 {
        font-size: 40px;
    }
    .abt-us .depth-sec__inner {
        gap: 32px;
        padding: 64px 32px 64px 48px;
    }
    .abt-us .depth-sec__three-col {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .abt-us .prim-strip {
        flex-direction: column;
        padding: 64px 16px 32px 16px;
        gap: 32px;
    }
    .abt-us .prim-strip__img-col {
        flex: 0 0 auto;
        width: 100%;
    }
    .abt-us .prim-strip__h1 {
        font-size: 40px;
    }
    .abt-us .prim-strip__quote {
        font-size: 17px;
    }
    .abt-us .depth-sec__inner {
        grid-template-columns: 1fr;
        padding: 64px 16px 64px 32px;
        gap: 32px;
    }
    .abt-us .depth-sec__aside {
        position: static;
    }
    .abt-us .depth-sec__icon-list {
        grid-template-columns: 1fr;
    }
    .abt-us .depth-sec__three-col {
        grid-template-columns: 1fr;
    }
    .abt-us .depth-sec__person-row {
        flex-direction: column;
    }
    .abt-us .depth-sec__aside-h2 {
        font-size: 29px;
    }
    .abt-us .depth-sec__level-h3 {
        font-size: 22px;
    }
}

@media (max-width: 390px) {
    .abt-us .prim-strip {
        padding: 32px 16px 32px 16px;
    }
    .abt-us .prim-strip__h1 {
        font-size: 29px;
    }
    .abt-us .prim-strip__stat-num {
        font-size: 29px;
    }
    .abt-us .depth-sec__inner {
        padding: 32px 16px 32px 24px;
    }
    .abt-us .depth-sec__aside-h2 {
        font-size: 22px;
    }
}

.srv-pg {
    position: relative;
    overflow-x: clip;
    background: #ffffff;
}

.srv-pg .title-band {
    background: linear-gradient(158deg, #2a4a72 0%, #4C80BB 100%);
    padding: 64px 32px;
    position: relative;
}

.srv-pg .title-band__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.srv-pg .title-band__num-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
}

.srv-pg .title-band__num {
    font-size: 70px;
    font-weight: 900;
    line-height: 1.1;
    color: rgba(255,255,255,0.13);
    letter-spacing: -2px;
    user-select: none;
    flex-shrink: 0;
}

.srv-pg .title-band__num sup {
    font-size: 22px;
    font-weight: 700;
    color: #AFC3DB;
    vertical-align: super;
    letter-spacing: 0;
}

.srv-pg .title-band__text-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.srv-pg .title-band__label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #AFC3DB;
    text-transform: uppercase;
}

.srv-pg .title-band__h1 {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
}

.srv-pg .title-band__desc {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    margin: 0;
}

.srv-pg .title-band__meta {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}

.srv-pg .title-band__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.srv-pg .title-band__stat-val {
    font-size: 29px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.srv-pg .title-band__stat-val sup {
    font-size: 17px;
    color: #AFC3DB;
    vertical-align: super;
}

.srv-pg .title-band__stat-lbl {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.06em;
}

.srv-pg .title-band__edge-motif {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: repeating-linear-gradient(
        180deg,
        #AFC3DB 0px,
        #AFC3DB 12px,
        transparent 12px,
        transparent 24px
    );
    opacity: 0.35;
    pointer-events: none;
}

.srv-pg .wave-div {
    position: relative;
    height: 48px;
    background: #ffffff;
    overflow: hidden;
}

.srv-pg .wave-div svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.srv-pg .detail-sec {
    background: #f4f7fb;
    padding: 96px 32px;
    position: relative;
    border-left: 6px solid #4C80BB;
}

.srv-pg .detail-sec__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.srv-pg .detail-sec__aside {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 32px;
}

.srv-pg .detail-sec__aside-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4C80BB;
}

.srv-pg .detail-sec__aside-h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #1b2d45;
    text-transform: uppercase;
    margin: 0;
}

.srv-pg .detail-sec__aside-body {
    font-size: 17px;
    line-height: 1.6;
    color: #3a4f66;
    margin: 0;
}

.srv-pg .detail-sec__aside-img-wrap {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
    aspect-ratio: 16/9;
    position: relative;
}

.srv-pg .detail-sec__aside-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(76,128,187,0.22) 100%);
    border-radius: 32px;
}

.srv-pg .detail-sec__aside-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 32px;
}

.srv-pg .detail-sec__main {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.srv-pg .svc-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
    position: relative;
    transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
    overflow: hidden;
}

.srv-pg .svc-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 18px,
        rgba(76,128,187,0.04) 18px,
        rgba(76,128,187,0.04) 20px
    );
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1);
    pointer-events: none;
    border-radius: 32px;
}

.srv-pg .svc-item:hover::before {
    opacity: 1;
}

.srv-pg .svc-item:hover {
    box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
    transform: translateY(-2px);
}

.srv-pg .svc-item__num {
    font-size: 55px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: rgba(76,128,187,0.12);
    user-select: none;
}

.srv-pg .svc-item__num sup {
    font-size: 22px;
    color: #4C80BB;
    vertical-align: super;
}

.srv-pg .svc-item__h3 {
    font-size: 29px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1b2d45;
    margin: 0;
}

.srv-pg .svc-item__body {
    font-size: 17px;
    line-height: 1.6;
    color: #3a4f66;
    margin: 0;
}

.srv-pg .svc-item__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
    position: relative;
}

.srv-pg .svc-item__steps::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #4C80BB 0%, #AFC3DB 100%);
    border-radius: 8px;
}

.srv-pg .step-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(175,195,219,0.35);
}

.srv-pg .step-row:last-child {
    border-bottom: none;
}

.srv-pg .step-row__dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4C80BB;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 2px 1px 5px 1px rgba(76,128,187,0.06);
    position: relative;
    z-index: 1;
}

.srv-pg .step-row__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.srv-pg .step-row__label {
    font-size: 17px;
    font-weight: 700;
    color: #1b2d45;
    line-height: 1.4;
}

.srv-pg .step-row__desc {
    font-size: 14px;
    line-height: 1.6;
    color: #3a4f66;
    margin: 0;
}

.srv-pg .svc-item__tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.srv-pg .tag-pill {
    font-size: 14px;
    font-weight: 600;
    color: #4C80BB;
    background: rgba(76,128,187,0.09);
    border-radius: 8px;
    padding: 8px 16px;
    letter-spacing: 0.04em;
    transition: background 0.45s cubic-bezier(0.22,1,0.36,1), color 0.45s cubic-bezier(0.22,1,0.36,1);
}

.srv-pg .tag-pill:hover {
    background: #4C80BB;
    color: #ffffff;
}

.srv-pg .svc-item__cta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.srv-pg .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(120deg, #4C80BB 0%, #2a4a72 100%);
    border-radius: 8px;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
    transition: background 0.55s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease-in-out, transform 0.45s cubic-bezier(0.22,1,0.36,1);
    letter-spacing: 0.02em;
}

.srv-pg .btn-primary:hover {
    background: linear-gradient(220deg, #4C80BB 0%, #2a4a72 100%);
    box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
    transform: translateY(-1px);
}

.srv-pg .btn-primary:focus {
    outline: 3px solid #4C80BB;
    outline-offset: 3px;
}

.srv-pg .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    color: #4C80BB;
    background: transparent;
    border-radius: 8px;
    padding: 16px 32px;
    border: 2px solid #4C80BB;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.6s cubic-bezier(0.22,1,0.36,1), color 0.5s ease-in-out;
    letter-spacing: 0.02em;
}

.srv-pg .btn-secondary:hover {
    background: rgba(76,128,187,0.08);
    color: #2a4a72;
}

.srv-pg .btn-secondary:focus {
    outline: 3px solid #4C80BB;
    outline-offset: 3px;
}

.srv-pg .wave-div-2 {
    position: relative;
    height: 48px;
    background: #f4f7fb;
    overflow: hidden;
}

.srv-pg .wave-div-2 svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes srv-color-shift {
    0% { color: rgba(255,255,255,0.13); }
    60% { color: rgba(175,195,219,0.35); }
    100% { color: rgba(255,255,255,0.13); }
}

.srv-pg .title-band__num {
    animation: srv-color-shift 2.2s cubic-bezier(0.22,1,0.36,1) 0.3s both;
}

@keyframes srv-fade-up {
    0% { opacity: 0; transform: translateY(28px); }
    100% { opacity: 1; transform: translateY(0); }
}

.srv-pg .title-band__label {
    animation: srv-fade-up 0.65s cubic-bezier(0.22,1,0.36,1) 0.1s both;
}

.srv-pg .title-band__h1 {
    animation: srv-fade-up 0.65s cubic-bezier(0.22,1,0.36,1) 0.22s both;
}

.srv-pg .title-band__desc {
    animation: srv-fade-up 0.65s cubic-bezier(0.22,1,0.36,1) 0.34s both;
}

.srv-pg .title-band__meta {
    animation: srv-fade-up 0.65s cubic-bezier(0.22,1,0.36,1) 0.46s both;
}

@media (max-width: 1280px) {
    .srv-pg .title-band__h1 { font-size: 40px; }
    .srv-pg .title-band__num { font-size: 55px; }
    .srv-pg .detail-sec__aside-h2 { font-size: 29px; }
}

@media (max-width: 768px) {
    .srv-pg .title-band { padding: 64px 16px; }
    .srv-pg .title-band__h1 { font-size: 29px; }
    .srv-pg .title-band__num { font-size: 40px; }
    .srv-pg .title-band__num-row { flex-direction: column; gap: 16px; }
    .srv-pg .detail-sec { padding: 64px 16px; border-left: none; border-top: 6px solid #4C80BB; }
    .srv-pg .detail-sec__inner { grid-template-columns: 1fr; gap: 32px; }
    .srv-pg .detail-sec__aside { position: static; }
    .srv-pg .detail-sec__aside-h2 { font-size: 22px; }
    .srv-pg .svc-item { padding: 16px; }
    .srv-pg .svc-item__h3 { font-size: 22px; }
    .srv-pg .svc-item__num { font-size: 40px; }
}

@media (max-width: 390px) {
    .srv-pg .title-band { padding: 32px 8px; }
    .srv-pg .title-band__h1 { font-size: 22px; }
    .srv-pg .title-band__desc { font-size: 14px; }
    .srv-pg .detail-sec { padding: 32px 8px; }
    .srv-pg .svc-item { padding: 16px 8px; }
    .srv-pg .btn-primary, .srv-pg .btn-secondary { font-size: 14px; padding: 16px; }
    .srv-pg .title-band__stat-val { font-size: 22px; }
}

.bse-pg {
  position: relative;
  overflow-x: clip;
}

.bse-pg .dot-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #4C80BB 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.bse-pg .ttl-blk {
  position: relative;
  background: linear-gradient(158deg, #eef3f9 0%, #f5f8fc 100%);
  padding: 96px 32px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.bse-pg .ttl-blk__dot-grid {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 180px;
  background-image: radial-gradient(circle, #4C80BB 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.11;
  pointer-events: none;
}

.bse-pg .ttl-blk__img-wrap {
  position: relative;
  width: 340px;
  max-width: 100%;
  aspect-ratio: 16/9;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
  margin-bottom: 32px;
  z-index: 1;
}

.bse-pg .ttl-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(2.5px) brightness(0.92);
  transform: scale(1.06);
}

.bse-pg .ttl-blk__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #AFC3DB;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  color: #4C80BB;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  z-index: 1;
}

.bse-pg .ttl-blk__tag .tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 48px;
  background: #4C80BB;
  display: inline-block;
  animation: dot-pulse 1.8s cubic-bezier(0.22,1,0.36,1) infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.7); }
}

.bse-pg .ttl-blk__h1 {
  font-size: 55px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1b2d45;
  font-weight: 800;
  max-width: 680px;
  margin: 0 0 16px;
  z-index: 1;
}

.bse-pg .ttl-blk__h1 em {
  font-style: italic;
  color: #4C80BB;
}

.bse-pg .ttl-blk__quote {
  font-size: 22px;
  line-height: 1.4;
  color: #3a5070;
  max-width: 500px;
  margin: 0;
  font-style: italic;
  z-index: 1;
  position: relative;
}

.bse-pg .ttl-blk__clip {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: #fff;
  clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

.bse-pg .team-sect {
  background: #fff;
  padding: 64px 32px 96px;
  position: relative;
}

.bse-pg .team-sect__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.bse-pg .team-sect__aside {
  position: relative;
}

.bse-pg .team-sect__img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
}

.bse-pg .team-sect__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.bse-pg .team-sect__img-wrap:hover img {
  transform: scale(1.03);
}

.bse-pg .team-sect__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  background: #eef3f9;
  border-radius: 8px;
  border-left: 3px solid #4C80BB;
  border-top: 1.5px solid #AFC3DB;
}

.bse-pg .team-sect__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #4C80BB;
  flex-shrink: 0;
}

.bse-pg .team-sect__badge-txt {
  font-size: 14px;
  color: #3a5070;
  letter-spacing: 0.04em;
}

.bse-pg .team-sect__body {}

.bse-pg .team-sect__label {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #4C80BB;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.bse-pg .team-sect__h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2d45;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 32px;
}

.bse-pg .team-sect__h2 em {
  font-style: italic;
  color: #4C80BB;
}

.bse-pg .team-sect__para {
  font-size: 17px;
  line-height: 1.6;
  color: #2e4460;
  margin: 0 0 16px;
}

.bse-pg .team-sect__list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}

.bse-pg .team-sect__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #d6e4f0;
  font-size: 17px;
  line-height: 1.4;
  color: #2e4460;
}

.bse-pg .team-sect__list li:last-child {
  border-bottom: none;
}

.bse-pg .li-dot {
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #4C80BB;
  flex-shrink: 0;
  margin-top: 7px;
}

.bse-pg .team-sect__clip-btm {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: #eef3f9;
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
  pointer-events: none;
}

.bse-pg .diff-sect {
  background: linear-gradient(172deg, #eef3f9 0%, #dce8f5 100%);
  padding: 96px 32px 96px;
  position: relative;
  overflow: hidden;
}

.bse-pg .diff-sect__zigzag-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.bse-pg .diff-sect__zigzag-top svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bse-pg .diff-sect__zigzag-btm {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.bse-pg .diff-sect__zigzag-btm svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bse-pg .diff-sect__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.bse-pg .diff-sect__hd {
  text-align: center;
  margin-bottom: 64px;
}

.bse-pg .diff-sect__label {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #4C80BB;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.bse-pg .diff-sect__h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2d45;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.bse-pg .diff-sect__sub {
  font-size: 17px;
  line-height: 1.6;
  color: #3a5070;
  max-width: 560px;
  margin: 0 auto;
}

.bse-pg .diff-sect__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}

.bse-pg .diff-card {
  background: #fff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
  margin-bottom: 32px;
  position: relative;
  transition: box-shadow 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.bse-pg .diff-card:last-child {
  margin-bottom: 0;
}

.bse-pg .diff-card:hover {
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
  transform: translateY(-3px);
}

.bse-pg .diff-card__num {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 900;
  color: #AFC3DB;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.bse-pg .diff-card__h4 {
  font-size: 22px;
  line-height: 1.1;
  color: #1b2d45;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}

.bse-pg .diff-card__p {
  font-size: 17px;
  line-height: 1.6;
  color: #2e4460;
  margin: 0;
}

.bse-pg .diff-card__accent-dot {
  width: 10px;
  height: 10px;
  border-radius: 48px;
  background: #4C80BB;
  position: absolute;
  top: 32px;
  right: 32px;
}

.bse-pg .diff-sect__img-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 16px;
}

.bse-pg .diff-sect__img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
}

.bse-pg .diff-sect__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bse-pg .diff-sect__stat-box {
  background: #4C80BB;
  border-radius: 32px;
  padding: 32px;
  color: #fff;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
}

.bse-pg .diff-sect__stat-num {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  display: block;
}

.bse-pg .diff-sect__stat-lbl {
  font-size: 17px;
  line-height: 1.4;
  opacity: 0.88;
}

.bse-pg .evid-sect {
  background: #fff;
  padding: 96px 32px 96px;
  position: relative;
}

.bse-pg .evid-sect__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.bse-pg .evid-sect__hd {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.bse-pg .evid-sect__h2 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1b2d45;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

.bse-pg .evid-sect__h2 em {
  font-style: italic;
  color: #4C80BB;
}

.bse-pg .evid-sect__intro {
  font-size: 17px;
  line-height: 1.6;
  color: #2e4460;
  margin: 0;
}

.bse-pg .evid-sect__label {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #4C80BB;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.bse-pg .evid-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.bse-pg .met-card {
  background: linear-gradient(158deg, #eef3f9 0%, #dce8f5 100%);
  border-radius: 32px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 1px 5px 1px rgba(76,128,187,0.06);
  transition: box-shadow 0.55s ease-in-out, transform 0.55s ease-in-out;
}

.bse-pg .met-card:hover {
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
  transform: translateY(-4px);
}

.bse-pg .met-card__bg-anim {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 48px;
  background: linear-gradient(158deg, #4C80BB 0%, #AFC3DB 100%);
  opacity: 0.08;
  bottom: -32px;
  right: -32px;
  pointer-events: none;
  animation: bg-shift 4s ease-in-out infinite alternate;
}

@keyframes bg-shift {
  0% { opacity: 0.08; transform: translate(0,0); }
  100% { opacity: 0.14; transform: translate(-8px,-8px); }
}

.bse-pg .met-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 48px;
  background: #4C80BB;
  margin-bottom: 16px;
}

.bse-pg .met-card__val {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 900;
  color: #1b2d45;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  display: block;
}

.bse-pg .met-card__desc {
  font-size: 17px;
  line-height: 1.4;
  color: #3a5070;
}

.bse-pg .evid-reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.bse-pg .rev-card {
  background: #fff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
  border-top: 3px solid #4C80BB;
  border-left: 1.5px solid #dce8f5;
  transition: box-shadow 0.65s cubic-bezier(0.22,1,0.36,1);
}

.bse-pg .rev-card:hover {
  box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
}

.bse-pg .rev-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.bse-pg .rev-card__star {
  width: 14px;
  height: 14px;
}

.bse-pg .rev-card__text {
  font-size: 17px;
  line-height: 1.6;
  color: #2e4460;
  margin: 0 0 16px;
  font-style: italic;
}

.bse-pg .rev-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bse-pg .rev-card__author-dot {
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #4C80BB;
  flex-shrink: 0;
}

.bse-pg .rev-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #1b2d45;
  letter-spacing: 0.04em;
}

.bse-pg .rev-card__role {
  font-size: 14px;
  color: #6b90b8;
  margin-left: 4px;
}

.bse-pg .rating-bar-wrap {
  margin-top: 64px;
  background: linear-gradient(158deg, #1b2d45 0%, #4C80BB 100%);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.bse-pg .rating-bar-wrap__big {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.bse-pg .rating-bar-wrap__info {
  flex: 1;
  min-width: 180px;
}

.bse-pg .rating-bar-wrap__lbl {
  font-size: 22px;
  line-height: 1.4;
  color: #AFC3DB;
  margin-bottom: 8px;
}

.bse-pg .rating-bar-wrap__count {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}

.bse-pg .rating-bar-wrap__bars {
  flex: 2;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bse-pg .r-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bse-pg .r-bar-row__lbl {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  width: 40px;
  flex-shrink: 0;
}

.bse-pg .r-bar-row__track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  overflow: hidden;
}

.bse-pg .r-bar-row__fill {
  height: 100%;
  background: #AFC3DB;
  border-radius: 8px;
  transition: width 0.7s cubic-bezier(0.22,1,0.36,1);
}

@media (max-width: 1280px) {
  .bse-pg .ttl-blk__h1 { font-size: 40px; }
  .bse-pg .team-sect__inner { gap: 32px; }
  .bse-pg .diff-sect__grid { gap: 32px; }
  .bse-pg .evid-sect__hd { gap: 32px; }
}

@media (max-width: 768px) {
  .bse-pg .ttl-blk { padding: 64px 16px 48px; }
  .bse-pg .ttl-blk__h1 { font-size: 29px; }
  .bse-pg .ttl-blk__quote { font-size: 17px; }
  .bse-pg .ttl-blk__img-wrap { width: 100%; }
  .bse-pg .team-sect__inner { grid-template-columns: 1fr; gap: 32px; }
  .bse-pg .team-sect { padding: 64px 16px; }
  .bse-pg .diff-sect__grid { grid-template-columns: 1fr; }
  .bse-pg .diff-sect { padding: 64px 16px; }
  .bse-pg .diff-sect__img-col { display: none; }
  .bse-pg .evid-sect { padding: 64px 16px; }
  .bse-pg .evid-sect__hd { grid-template-columns: 1fr; gap: 16px; }
  .bse-pg .evid-metrics { grid-template-columns: 1fr 1fr; gap: 16px; }
  .bse-pg .evid-reviews { grid-template-columns: 1fr; gap: 16px; }
  .bse-pg .rating-bar-wrap { flex-direction: column; align-items: flex-start; gap: 16px; }
  .bse-pg .rating-bar-wrap__big { font-size: 55px; }
  .bse-pg .team-sect__h2 { font-size: 29px; }
  .bse-pg .diff-sect__h2 { font-size: 29px; }
  .bse-pg .evid-sect__h2 { font-size: 29px; }
}

@media (max-width: 390px) {
  .bse-pg .ttl-blk__h1 { font-size: 22px; }
  .bse-pg .evid-metrics { grid-template-columns: 1fr; }
  .bse-pg .met-card__val { font-size: 40px; }
  .bse-pg .rating-bar-wrap__big { font-size: 40px; }
  .bse-pg .diff-card__num { font-size: 40px; }
  .bse-pg .team-sect { padding: 64px 8px; }
  .bse-pg .evid-sect { padding: 64px 8px; }
  .bse-pg .diff-sect { padding: 64px 8px; }
}

.success-pg {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
    background: linear-gradient(158deg, #f0f5fb 0%, #e8f0f9 100%);
    position: relative;
    overflow: hidden;
}

.success-pg .success-pg__backdrop {
    position: absolute;
    top: -64px;
    right: -64px;
    width: 420px;
    height: 420px;
    border-radius: 48px;
    background: linear-gradient(135deg, rgba(76,128,187,0.07) 0%, rgba(175,195,219,0.12) 100%);
    transform: rotate(22deg);
    pointer-events: none;
}

.success-pg .success-pg__backdrop-two {
    position: absolute;
    bottom: -32px;
    left: -48px;
    width: 280px;
    height: 280px;
    border-radius: 48px;
    background: linear-gradient(200deg, rgba(175,195,219,0.09) 0%, rgba(76,128,187,0.05) 100%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.success-pg .success-card {
    max-width: 560px;
    width: 100%;
    background: #ffffff;
    border-radius: 32px;
    padding: 64px 64px;
    box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.success-pg .success-card__icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 32px;
    background: linear-gradient(145deg, #ddeaf7 0%, #c8d9ee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11), inset 1px 1px 2px rgba(255,255,255,0.8);
}

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

.success-pg .success-card__label {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4C80BB;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.success-pg .success-card__heading {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1e3a5c;
    font-weight: 700;
    margin-bottom: 16px;
}

.success-pg .success-card__body {
    font-size: 17px;
    line-height: 1.6;
    color: #3d5a7a;
    margin-bottom: 32px;
    max-width: 420px;
}

.success-pg .success-card__divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #4C80BB 0%, #AFC3DB 100%);
    border-radius: 8px;
    margin-bottom: 32px;
}

.success-pg .success-card__detail {
    font-size: 14px;
    line-height: 1.6;
    color: #5a7a9a;
    margin-bottom: 32px;
    letter-spacing: 0.01em;
}

.success-pg .success-card__detail strong {
    color: #2d4f72;
    font-weight: 600;
}

.success-pg .success-card__action {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(118deg, #4C80BB 0%, #3a6aa0 100%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 2px 5px 18px 1px rgba(76,128,187,0.11);
    transition: box-shadow 0.55s cubic-bezier(0.22,1,0.36,1), background 0.6s ease-in-out;
    line-height: 1.4;
}

.success-pg .success-card__action:hover {
    background: linear-gradient(200deg, #3a6aa0 0%, #4C80BB 100%);
    box-shadow: 2px 12px 60px 1px rgba(76,128,187,0.14);
}

.success-pg .success-card__action:focus {
    outline: 3px solid #4C80BB;
    outline-offset: 3px;
}

.success-pg .success-card__action:active {
    box-shadow: 2px 1px 5px 1px rgba(76,128,187,0.06);
}

.success-pg .success-card__meta {
    margin-top: 32px;
    font-size: 14px;
    color: #7a96b2;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.success-pg .success-card__meta a {
    color: #4C80BB;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.45s ease-in-out;
}

.success-pg .success-card__meta a:hover {
    color: #2d5a94;
}

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

    .success-pg .success-card {
        padding: 64px 32px;
    }

    .success-pg .success-card__heading {
        font-size: 29px;
    }
}

@media (max-width: 390px) {
    .success-pg .success-card {
        padding: 32px 16px;
        border-radius: 32px;
    }

    .success-pg .success-card__heading {
        font-size: 22px;
    }

    .success-pg .success-card__body {
        font-size: 14px;
    }
}
