@import "https://cdn.jsdelivr.net/npm/@fontsource/archivo@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/archivo@latest/700.css";

html {
  box-sizing: border-box
}

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

body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  font-family: 'Archivo', sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%
}

.hd-bar {
  width: 100%;
  background: linear-gradient(135deg, #0E72A7 0%, #0a5a87 60%, #084a70 100%);
  box-shadow: 0 5px 20px -1px #0e72a724;
  position: relative;
  overflow: hidden
}

.hd-bar::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, #ff982214 100%);
  pointer-events: none
}

.hd-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px
}

.hd-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #ffffff1f;
  gap: 16px
}

.hd-logo-mount {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0
}

.hd-logo-ring {
  width: 72px;
  height: 72px;
  border-radius: 11px;
  background: #fffffff2;
  box-shadow: 0 0 0 2px #ffffff4d 0 5px 20px -1px #0e72a72e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0
}

.hd-logo-ring img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block
}

.hd-tagline {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffffb3;
  letter-spacing: .02em;
  font-weight: 400
}

.hd-contact-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0
}

.hd-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffffd9;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 4px 8px;
  border-radius: 6px
}

.hd-contact-item:hover {
  color: #FF9822;
  background: #ffffff0f
}

.hd-contact-item .codicon {
  font-size: 15px;
  color: #FF9822;
  flex-shrink: 0
}

.hd-nav-row {
  display: flex;
  align-items: center;
  padding: 8px 0;
  gap: 4px;
  flex-wrap: wrap
}

.hd-nav-link {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .01em;
  color: #ffffffe0;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1), background .45s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  white-space: nowrap
}

.hd-nav-link:hover {
  color: #fff;
  background: #ffffff1a
}

.hd-nav-link.active {
  color: #FF9822;
  background: #ff98221f
}

.hd-nav-link:focus-visible {
  outline: 2px solid #FF9822;
  outline-offset: 3px
}

.hd-nav-accent {
  margin-left: auto;
  background: linear-gradient(135deg, #FF9822 0%, #e8820a 100%);
  color: #fff;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 5px -1px #ff982217 0 5px 20px -1px #ff982224;
  white-space: nowrap
}

.hd-nav-accent:hover {
  box-shadow: 0 5px 20px -1px #ff98222e 0 12px 60px -1px #ff982224
}

.hd-nav-accent:active {
  transform: scale(0.97);
  box-shadow: inset 0 2px 6px #00000026
}

.hd-nav-accent:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px
}

@media (max-width: 768px) {
  .hd-inner {
    padding: 0 16px
  }

  .hd-contact-strip {
    display: none
  }

  .hd-tagline {
    display: none
  }

  .hd-nav-accent {
    margin-left: 0
  }
}

@media (max-width: 480px) {
  .hd-logo-ring {
    width: 56px;
    height: 56px;
    padding: 4px
  }

  .hd-logo-ring img {
    width: 44px;
    height: 44px
  }

  .hd-nav-link {
    font-size: 14px;
    padding: 8px
  }
}

.ft-wrap {
  background: linear-gradient(160deg, #0a5a87 0%, #0E72A7 40%, #084a70 100%);
  color: #ffffffd9;
  font-family: 'Archivo', sans-serif
}

.ft-upper {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px
}

.ft-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ft-logo-mount {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  width: fit-content
}

.ft-logo-ring {
  width: 65px;
  height: 65px;
  border-radius: 11px;
  background: #fffffff2;
  box-shadow: 0 0 0 2px #ffffff40 0 5px 20px -1px #0e72a72e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0
}

.ft-logo-ring img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block
}

.ft-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffffa6;
  letter-spacing: .01em;
  max-width: 260px
}

.ft-col-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #FF9822;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block
}

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

.ft-nav-list li a {
  font-size: 15px;
  line-height: 1.5;
  color: #ffffffc7;
  text-decoration: none;
  letter-spacing: .01em;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.ft-nav-list li a:hover {
  color: #FF9822
}

.ft-nav-list li a:focus-visible {
  outline: 2px solid #FF9822;
  outline-offset: 3px;
  border-radius: 6px
}

.ft-contact-col {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ft-contact-entry {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #ffffffbf;
  letter-spacing: .01em
}

.ft-contact-entry a {
  color: #ffffffbf;
  text-decoration: none;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.ft-contact-entry a:hover {
  color: #FF9822
}

.ft-contact-entry .codicon {
  font-size: 15px;
  color: #FF9822;
  flex-shrink: 0;
  margin-top: 4px
}

.ft-divider {
  max-width: 1024px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid #ffffff1a
}

.ft-copy-strip {
  max-width: 1024px;
  margin: 0 auto;
  padding: 16px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.ft-copy-text {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff80;
  letter-spacing: .01em
}

.ft-copy-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.ft-copy-links a {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff80;
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.ft-copy-links a:hover {
  color: #ffffffd9
}

.ft-copy-links a:focus-visible {
  outline: 2px solid #FF9822;
  outline-offset: 3px;
  border-radius: 6px
}

@media (max-width: 1280px) {
  .ft-upper {
    grid-template-columns: 1.2fr 1fr 1fr 1.1fr
  }
}

@media (max-width: 768px) {
  .ft-upper {
    grid-template-columns: 1fr 1fr;
    padding: 40px 16px;
    gap: 40px
  }

  .ft-copy-strip {
    padding: 16px 16px 40px;
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 480px) {
  .ft-upper {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

.doc-section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #2a2e35;
  line-height: 1.7;
  font-size: 17px
}

.doc-section ul,
.doc-section ol {
  margin: 16px 0 40px;
  padding-left: 40px
}

.doc-section ul {
  list-style-type: disc
}

.doc-section ol {
  list-style-type: decimal
}

.doc-section li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 17px;
  color: #2a2e35
}

.doc-section li::marker {
  color: #0E72A7
}

.doc-section strong,
.doc-section b {
  font-weight: 700;
  color: #1b2330
}

.doc-section em,
.doc-section i {
  font-style: italic;
  color: #3a4150
}

.doc-section a {
  color: #0E72A7;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color .45s ease-in-out;
  text-decoration-color: #0e72a766
}

.doc-section a:hover {
  color: #FF9822;
  text-decoration-color: #ff982299
}

.doc-section a:active {
  color: #c97510
}

.doc-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 15px;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 5px 20px -1px #0e72a717
}

.doc-section thead {
  background: linear-gradient(135deg, #0E72A7 0%, #0a5a87 100%)
}

.doc-section thead th {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 16px;
  text-align: left;
  line-height: 1.5
}

.doc-section tbody tr {
  border-bottom: 1px solid #e8ecf0;
  transition: background-color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

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

.doc-section tbody tr:nth-child(even) {
  background-color: #F2F2F2
}

.doc-section tbody tr:hover {
  background-color: #0e72a70f
}

.doc-section td {
  padding: 16px;
  color: #2a2e35;
  line-height: 1.5;
  font-size: 15px;
  vertical-align: top
}

.doc-section th {
  padding: 16px;
  line-height: 1.5;
  vertical-align: middle
}

.doc-section div {
  margin-bottom: 16px
}

@media (max-width: 768px) {
  .doc-section {
    padding: 40px 16px;
    font-size: 15px
  }

  .doc-section ul,
  .doc-section ol {
    padding-left: 16px;
    margin-bottom: 16px
  }

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

  .doc-section td,
  .doc-section th {
    padding: 8px;
    font-size: 14px
  }
}

@media (max-width: 480px) {
  .doc-section {
    padding: 40px 8px
  }

  .doc-section li {
    font-size: 15px
  }
}

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

.innov-pg ::selection {
  background: #0E72A7;
  color: #fff
}

.innov-pg .i-wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px
}

@keyframes innov-appear {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes shadow-breathe {

  0%,
  100% {
    box-shadow: 0 1px 5px -1px #0e72a70d 0 5px 20px -1px #0e72a717
  }

  50% {
    box-shadow: 0 5px 20px -1px #0e72a724 0 12px 60px -1px #0e72a738
  }
}

.innov-pg .t-blk {
  position: relative;
  padding: 80px 0 40px;
  background: #fff;
  animation: innov-appear .6s cubic-bezier(0.22, 1, 0.36, 1) both
}

.innov-pg .t-blk .dot-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  background-image: radial-gradient(circle, #0e72a71f 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  z-index: 0
}

.innov-pg .t-blk .t-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px
}

.innov-pg .t-blk .t-text {
  max-width: 620px
}

.innov-pg .t-blk .t-label {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .02em;
  color: #fff;
  background: #0E72A7;
  padding: 4px 16px;
  border-radius: 6px;
  margin-bottom: 16px
}

.innov-pg .t-blk h1 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #111;
  margin: 0 0 16px
}

.innov-pg .t-blk h1 .accent-word {
  color: #0E72A7
}

.innov-pg .t-blk .t-quote {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: .01em;
  color: #444;
  border-left: none;
  padding: 0;
  margin: 0;
  font-style: italic
}

.innov-pg .t-blk .t-img-strip {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  box-shadow: 0 5px 20px -1px #0e72a717 0 12px 60px -1px #0e72a724
}

.innov-pg .t-blk .t-img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.innov-pg .t-blk .t-img-strip .img-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to bottom, #ffffffb8 0%, transparent 100%);
  pointer-events: none
}

.innov-pg .t-blk .t-img-strip .dia-accent {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: #FF9822;
  border-radius: 11px;
  transform: rotate(45deg);
  opacity: .88;
  pointer-events: none
}

.innov-pg .grad-div {
  height: 3px;
  background: linear-gradient(293deg, #0E72A7, #FF9822);
  border: none;
  margin: 0
}

.innov-pg .strat-blk {
  padding: 80px 0;
  background: linear-gradient(293deg, #F2F2F2 70%, transparent 100%);
  position: relative
}

.innov-pg .strat-blk .circ-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #fff0 30%, #0e72a70a 55%, #0e72a717 75%, #0e72a721 100%);
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.innov-pg .strat-blk .circ-bg::before {
  content: "";
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid #0e72a714
}

.innov-pg .strat-blk .circ-bg::after {
  content: "";
  position: absolute;
  inset: 120px;
  border-radius: 50%;
  border: 1px solid #0e72a70f
}

.innov-pg .strat-blk .s-inner {
  position: relative;
  z-index: 1
}

.innov-pg .strat-blk .s-top {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px
}

.innov-pg .strat-blk .s-head {
  flex: 0 0 340px
}

.innov-pg .strat-blk .s-head-strip {
  display: inline-block;
  background: #FF9822;
  padding: 4px 16px;
  border-radius: 6px;
  margin-bottom: 16px
}

.innov-pg .strat-blk .s-head-strip h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  margin: 0
}

.innov-pg .strat-blk .s-desc {
  flex: 1
}

.innov-pg .strat-blk .s-desc p {
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #333;
  margin: 0 0 16px
}

.innov-pg .strat-blk .s-desc p:last-child {
  margin-bottom: 0
}

.innov-pg .strat-blk .cols-3 {
  display: grid;
  grid-template-columns: 1fr 1.28fr 1fr;
  gap: 16px;
  align-items: start
}

.innov-pg .strat-blk .s-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 5px -1px #0e72a70d 0 5px 20px -1px #0e72a717;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.innov-pg .strat-blk .s-card:hover {
  box-shadow: 0 5px 20px -1px #0e72a724 0 12px 60px -1px #0e72a72e;
  transform: translateY(-4px)
}

.innov-pg .strat-blk .s-card.mid {
  padding: 40px 16px 80px;
  animation: shadow-breathe 3.2s ease-in-out infinite
}

.innov-pg .strat-blk .s-card.mid:hover {
  animation: none
}

.innov-pg .strat-blk .card-ico {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(293deg, #0E72A7, #0e72a7b3);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.innov-pg .strat-blk .card-ico svg {
  width: 20px;
  height: 20px;
  fill: #fff
}

.innov-pg .strat-blk .s-card.mid .card-ico {
  background: linear-gradient(293deg, #FF9822, #ff9822b3)
}

.innov-pg .strat-blk .s-card h4 {
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: .01em;
  color: #111;
  margin: 0
}

.innov-pg .strat-blk .s-card p {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #555;
  margin: 0
}

.innov-pg .strat-blk .s-card .tag-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0
}

.innov-pg .strat-blk .s-card .tag-list li {
  font-size: 14px;
  line-height: 1.5;
  color: #0E72A7;
  background: #0e72a714;
  border-radius: 30px;
  padding: 4px 16px;
  letter-spacing: .01em
}

.innov-pg .strat-blk .s-card.mid .tag-list li {
  color: #c47000;
  background: #ff98221f
}

.innov-pg .strat-blk .s-cta-row {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.innov-pg .strat-blk .btn-pri {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .02em;
  color: #fff;
  background: #0E72A7;
  border: none;
  border-radius: 11px;
  padding: 16px 40px;
  cursor: pointer;
  text-decoration: none;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .45s cubic-bezier(0.22, 1, 0.36, 1), transform .45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 5px -1px #0e72a70d 0 5px 20px -1px #0e72a717
}

.innov-pg .strat-blk .btn-pri:hover {
  background: linear-gradient(293deg, #0E72A7, #0a5a87);
  box-shadow: 0 5px 20px -1px #0e72a724 0 12px 60px -1px #0e72a72e
}

.innov-pg .strat-blk .btn-pri:active {
  transform: scale(0.97);
  box-shadow: inset 0 2px 8px #0e72a72e
}

.innov-pg .strat-blk .btn-sec {
  display: inline-block;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .02em;
  color: #0E72A7;
  background: transparent;
  border: 1.5px solid #0E72A7;
  border-radius: 11px;
  padding: 16px 40px;
  cursor: pointer;
  text-decoration: none;
  transition: background .55s cubic-bezier(0.22, 1, 0.36, 1), color .45s cubic-bezier(0.22, 1, 0.36, 1), transform .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.innov-pg .strat-blk .btn-sec:hover {
  background: linear-gradient(293deg, #0e72a714, #0e72a708)
}

.innov-pg .strat-blk .btn-sec:active {
  transform: scale(0.97)
}

@media (max-width: 1280px) {
  .innov-pg .strat-blk .s-top {
    gap: 40px
  }

  .innov-pg .strat-blk .s-head {
    flex: 0 0 260px
  }
}

@media (max-width: 768px) {
  .innov-pg .t-blk h1 {
    font-size: 36px
  }

  .innov-pg .t-blk .t-quote {
    font-size: 17px
  }

  .innov-pg .strat-blk .s-top {
    flex-direction: column;
    gap: 16px
  }

  .innov-pg .strat-blk .s-head {
    flex: none
  }

  .innov-pg .strat-blk .s-head-strip h2 {
    font-size: 26px
  }

  .innov-pg .strat-blk .cols-3 {
    grid-template-columns: 1fr
  }

  .innov-pg .strat-blk .s-card.mid {
    padding: 40px 16px
  }

  .innov-pg .strat-blk .circ-bg {
    width: 400px;
    height: 400px
  }
}

@media (max-width: 480px) {
  .innov-pg .t-blk {
    padding: 40px 0
  }

  .innov-pg .t-blk h1 {
    font-size: 26px
  }

  .innov-pg .strat-blk {
    padding: 40px 0
  }

  .innov-pg .strat-blk .s-cta-row {
    flex-direction: column;
    align-items: flex-start
  }

  .innov-pg .strat-blk .btn-pri,
  .innov-pg .strat-blk .btn-sec {
    width: 100%;
    text-align: center
  }
}

.ct-us {
  background-color: #fff;
  overflow-x: clip
}

.ct-us .reveal-mask {
  animation: maskReveal .65s cubic-bezier(0.22, 1, 0.36, 1) both
}

@keyframes maskReveal {
  from {
    clip-path: inset(0 50% 0 50%);
    opacity: 0
  }

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

.ct-us .fade-up {
  animation: fadeUp .55s cubic-bezier(0.22, 1, 0.36, 1) both
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

.ct-us .fade-up-2 {
  animation-delay: .12s
}

.ct-us .fade-up-3 {
  animation-delay: .22s
}

.ct-us .fade-up-4 {
  animation-delay: .32s
}

.ct-us .top-row {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px
}

.ct-us .top-visual {
  flex: 0 0 340px;
  border-radius: 18px;
  background: linear-gradient(293deg, #F2F2F2 0%, transparent 100%), #0E72A7;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px
}

.ct-us .top-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, #0e72a773 0%, transparent 70%);
  pointer-events: none
}

.ct-us .dot-path {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: repeat(5, 8px);
  gap: 8px;
  pointer-events: none
}

.ct-us .dot-path span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 46px;
  background: #ffffff59
}

.ct-us .dot-path span:nth-child(3n) {
  background: #ff982299
}

.ct-us .visual-label {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .02em;
  color: #ffffffbf;
  text-transform: uppercase;
  margin-bottom: 8px
}

.ct-us .visual-heading {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  margin: 0
}

.ct-us .visual-heading em {
  font-style: normal;
  color: #FF9822
}

.ct-us .top-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0
}

.ct-us .eyebrow {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .02em;
  color: #0E72A7;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 16px;
  background: #0e72a714;
  border-radius: 6px;
  align-self: flex-start
}

.ct-us .pg-h1 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1b2a35;
  margin: 0 0 16px
}

.ct-us .pg-h1 .hl-strip {
  background: linear-gradient(293deg, #FF9822 0%, #ff98222e 100%);
  border-radius: 6px;
  padding: 0 8px
}

.ct-us .top-desc {
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2e4553;
  margin: 0 0 16px;
  max-width: 480px
}

.ct-us .contact-quick {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px
}

.ct-us .q-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .01em;
  color: #1b2a35
}

.ct-us .q-icon {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: #0e72a71a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .q-item:hover .q-icon {
  background: linear-gradient(293deg, #0e72a738 0%, #ff982226 100%)
}

.ct-us .q-icon svg {
  display: block
}

.ct-us .q-link {
  color: #0E72A7;
  text-decoration: none;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .q-link:hover {
  color: #FF9822
}

.ct-us .div-diag {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px;
  height: 2px;
  position: relative
}

.ct-us .div-diag::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(293deg, #0E72A7 0%, #FF9822 50%, transparent 100%);
  border-radius: 6px;
  transform: skewX(-8deg)
}

.ct-us .form-band {
  background: linear-gradient(293deg, #F2F2F2 0%, transparent 60%);
  padding: 80px 40px;
  position: relative
}

.ct-us .form-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(293deg, transparent 0%, #0E72A7 60%, #FF9822 100%);
  pointer-events: none
}

.ct-us .form-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start
}

.ct-us .form-aside {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ct-us .aside-h2 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #1b2a35;
  margin: 0 0 8px
}

.ct-us .aside-strip {
  display: inline-block;
  background: #0e72a71f;
  border-radius: 6px;
  padding: 0 8px
}

.ct-us .aside-p {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2e4553;
  margin: 0
}

.ct-us .aside-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px
}

.ct-us .meta-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #2e4553;
  letter-spacing: .01em
}

.ct-us .meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 46px;
  background: #FF9822;
  flex-shrink: 0;
  margin-top: 5px
}

.ct-us .form-col {
  flex: 1 1 0
}

.ct-us .form-box {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 5px 20px -1px #0e72a717;
  border: 2px solid #0e72a714;
  outline: 1px solid #0e72a70a;
  outline-offset: 4px
}

.ct-us .f-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 16px
}

.ct-us .f-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
  margin-bottom: 16px
}

.ct-us .f-group.full {
  margin-bottom: 16px
}

.ct-us .f-label {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .01em;
  color: #1b2a35;
  font-weight: 600
}

.ct-us .f-input,
.ct-us .f-select,
.ct-us .f-textarea {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .01em;
  color: #1b2a35;
  background: #fff;
  border: 1.5px solid #0e72a738;
  border-radius: 11px;
  box-sizing: border-box;
  transition: border-color .45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .45s cubic-bezier(0.22, 1, 0.36, 1);
  appearance: none;
  -webkit-appearance: none
}

.ct-us .f-input::placeholder,
.ct-us .f-textarea::placeholder {
  color: #1b2a3566
}

.ct-us .f-input:focus,
.ct-us .f-select:focus,
.ct-us .f-textarea:focus {
  outline: none;
  border-color: #0E72A7;
  box-shadow: 0 1px 5px -1px #0e72a70d 0 5px 20px -1px #0e72a717
}

.ct-us .f-select {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%230E72A7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer
}

.ct-us .f-textarea {
  resize: vertical;
  min-height: 120px
}

.ct-us .time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px
}

.ct-us .time-opt {
  position: relative
}

.ct-us .time-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.ct-us .time-lbl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  border-radius: 11px;
  border: 1.5px solid #0e72a733;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .01em;
  color: #2e4553;
  text-align: center;
  transition: border-color .5s cubic-bezier(0.22, 1, 0.36, 1), background .5s cubic-bezier(0.22, 1, 0.36, 1), color .5s cubic-bezier(0.22, 1, 0.36, 1);
  gap: 4px
}

.ct-us .time-lbl strong {
  font-size: 15px;
  color: #1b2a35;
  display: block;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .time-lbl:hover {
  border-color: #0E72A7;
  background: #0e72a70d
}

.ct-us .time-opt input[type="radio"]:focus+.time-lbl {
  outline: 2px solid #0E72A7;
  outline-offset: 2px
}

.ct-us .time-opt input[type="radio"]:checked+.time-lbl {
  border-color: #0E72A7;
  background: linear-gradient(293deg, #0e72a71f 0%, #ff982214 100%);
  color: #0E72A7;
  box-shadow: inset 0 1px 4px #0e72a71f
}

.ct-us .time-opt input[type="radio"]:checked+.time-lbl strong {
  color: #0E72A7
}

.ct-us .time-section-label {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .01em;
  color: #1b2a35;
  font-weight: 600;
  margin-bottom: 8px;
  display: block
}

.ct-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  background: #f2f2f2b3;
  border-radius: 11px
}

.ct-us .priv-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #0E72A7;
  cursor: pointer
}

.ct-us .priv-check:focus {
  outline: 2px solid #0E72A7;
  outline-offset: 2px
}

.ct-us .priv-text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2e4553
}

.ct-us .priv-text a {
  color: #0E72A7;
  text-decoration: underline;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .priv-text a:hover {
  color: #FF9822
}

.ct-us .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  background: #0E72A7;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 5px 20px -1px #0e72a717
}

.ct-us .btn-submit:hover {
  background: linear-gradient(293deg, #0E72A7 0%, #0a5a87 100%);
  box-shadow: 0 12px 60px -1px #0e72a724
}

.ct-us .btn-submit:active {
  transform: scale(0.97);
  box-shadow: inset 0 2px 6px #0e72a72e
}

.ct-us .btn-submit:focus {
  outline: 2px solid #FF9822;
  outline-offset: 3px
}

.ct-us .zz-div {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 24px
}

.ct-us .zz-div svg {
  display: block;
  width: 100%;
  height: 24px
}

.ct-us .info-band {
  background: #1b2a35;
  padding: 80px 40px;
  position: relative;
  overflow: hidden
}

.ct-us .info-band::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
  border-radius: 46px;
  background: #0e72a71f;
  transform: rotate(18deg);
  pointer-events: none
}

.ct-us .info-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  z-index: 1
}

.ct-us .info-lead {
  flex: 0 0 340px
}

.ct-us .info-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  margin: 0 0 16px
}

.ct-us .info-h2 .hl2 {
  background: #ff982240;
  border-radius: 6px;
  padding: 0 8px;
  color: #FF9822
}

.ct-us .info-p {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #ffffffb8;
  margin: 0
}

.ct-us .info-cards {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.ct-us .i-card {
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .55s cubic-bezier(0.22, 1, 0.36, 1), border-color .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .i-card:hover {
  background: linear-gradient(293deg, #0e72a72e 0%, #ff982214 100%);
  border-color: #0e72a766
}

.ct-us .i-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #0e72a740;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: background .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .i-card:hover .i-card-icon {
  background: #ff98224d
}

.ct-us .i-card-title {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .01em;
  color: #ffffff8c;
  text-transform: uppercase;
  font-weight: 600
}

.ct-us .i-card-val {
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: .01em;
  color: #fff
}

.ct-us .i-card-val a {
  color: #fff;
  text-decoration: none;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.ct-us .i-card-val a:hover {
  color: #FF9822
}

.ct-us .i-card.full-w {
  grid-column: 1 / -1
}

@media (max-width: 768px) {
  .ct-us .top-row {
    flex-direction: column;
    padding: 40px 16px
  }

  .ct-us .top-visual {
    flex: none;
    min-height: 200px
  }

  .ct-us .pg-h1 {
    font-size: 36px
  }

  .ct-us .form-band {
    padding: 40px 16px
  }

  .ct-us .form-inner {
    flex-direction: column;
    gap: 40px
  }

  .ct-us .form-aside {
    flex: none
  }

  .ct-us .f-row {
    flex-direction: column;
    gap: 0
  }

  .ct-us .time-grid {
    grid-template-columns: 1fr 1fr
  }

  .ct-us .info-band {
    padding: 40px 16px
  }

  .ct-us .info-inner {
    flex-direction: column
  }

  .ct-us .info-lead {
    flex: none
  }

  .ct-us .info-cards {
    grid-template-columns: 1fr
  }

  .ct-us .i-card.full-w {
    grid-column: auto
  }

  .ct-us .div-diag {
    padding: 0 16px
  }
}

@media (max-width: 480px) {
  .ct-us .pg-h1 {
    font-size: 26px
  }

  .ct-us .time-grid {
    grid-template-columns: 1fr
  }

  .ct-us .form-box {
    padding: 16px
  }

  .ct-us .info-h2 {
    font-size: 26px
  }
}

@media (min-width: 1280px) {
  .ct-us .top-row {
    padding: 80px 0 40px
  }

  .ct-us .form-band {
    padding: 80px 0
  }

  .ct-us .form-inner {
    max-width: 1024px;
    margin: 0 auto
  }

  .ct-us .info-band {
    padding: 80px 0
  }

  .ct-us .info-inner {
    max-width: 1024px;
    margin: 0 auto
  }

  .ct-us .div-diag {
    padding: 0
  }
}

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

.dbt-pg .dbt-wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px
}

.dbt-pg ::selection {
  background: #0E72A7;
  color: #fff
}

.dbt-pg .dbt-strip {
  position: relative;
  padding: 80px 16px;
  background: linear-gradient(293deg, #F2F2F2 0%, transparent 100%);
  overflow: hidden
}

.dbt-pg .dbt-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0E72A7, #FF9822);
  animation: bdr-glow .65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transform-origin: left
}

@keyframes bdr-glow {
  from {
    opacity: 0;
    transform: scaleX(0)
  }

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

.dbt-pg .dbt-strip .dbt-bg-pat {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(293deg, #0e72a70a 0px, #0e72a70a 1px, transparent 1px, transparent 40px);
  pointer-events: none
}

.dbt-pg .dbt-strip .dbt-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px
}

.dbt-pg .dbt-strip .dbt-text-col {
  flex: 1 1 0;
  min-width: 0
}

.dbt-pg .dbt-strip .dbt-img-col {
  flex: 0 0 420px;
  position: relative
}

.dbt-pg .dbt-h1 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #111;
  margin: 0 0 16px
}

.dbt-pg .dbt-h1 span {
  display: inline;
  background: linear-gradient(293deg, #FF9822 0%, #ff98222e 100%);
  border-radius: 6px;
  padding: 0 8px
}

.dbt-pg .dbt-lead {
  font-size: 17px;
  line-height: 1.7;
  color: #2a2a2a;
  margin: 0 0 40px;
  max-width: 480px
}

.dbt-pg .dbt-btn-pri {
  display: inline-block;
  background: #0E72A7;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  padding: 16px 40px;
  border-radius: 11px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), transform .45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 5px 20px -1px #0e72a717
}

.dbt-pg .dbt-btn-pri:hover {
  background: linear-gradient(293deg, #0E72A7, #0a5a87);
  box-shadow: 0 12px 60px -1px #0e72a724;
  transform: translateY(-2px)
}

.dbt-pg .dbt-btn-pri:active {
  transform: scale(0.97);
  box-shadow: inset 0 2px 8px #0e72a72e 0 1px 5px -1px #0e72a70d
}

.dbt-pg .dbt-img-frame {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  box-shadow: 0 12px 60px -1px #0e72a724
}

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

.dbt-pg .dbt-img-frame .dbt-diag-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e72a773 0%, transparent 60%);
  pointer-events: none
}

.dbt-pg .dbt-img-col .dbt-edge-line {
  position: absolute;
  bottom: -16px;
  right: -8px;
  width: 3px;
  height: 80px;
  background: linear-gradient(180deg, #FF9822, transparent);
  border-radius: 6px;
  pointer-events: none
}

.dbt-pg .dbt-support {
  background: #fff;
  padding: 80px 16px;
  position: relative
}

.dbt-pg .dbt-support::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: #F2F2F2;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  pointer-events: none
}

.dbt-pg .dbt-support .dbt-s2-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start
}

.dbt-pg .dbt-support .dbt-s2-aside {
  flex: 0 0 320px
}

.dbt-pg .dbt-support .dbt-s2-body {
  flex: 1 1 0;
  min-width: 0
}

.dbt-pg .dbt-lbl {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #0E72A7;
  text-transform: uppercase;
  margin-bottom: 8px
}

.dbt-pg .dbt-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #111;
  margin: 0 0 16px
}

.dbt-pg .dbt-h2 .dbt-bg-word {
  background: #F2F2F2;
  border-radius: 6px;
  padding: 0 8px;
  transition: background .55s cubic-bezier(0.22, 1, 0.36, 1), padding .55s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default
}

.dbt-pg .dbt-h2:hover .dbt-bg-word {
  background: linear-gradient(293deg, #0e72a71f, #ff98221f);
  padding: 0 16px
}

.dbt-pg .dbt-para {
  font-size: 15px;
  line-height: 1.7;
  color: #2a2a2a;
  margin: 0 0 16px
}

.dbt-pg .dbt-para:last-child {
  margin-bottom: 0
}

.dbt-pg .dbt-s2-img {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 5px 20px -1px #0e72a717;
  margin-bottom: 16px
}

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

.dbt-pg .dbt-feat-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.dbt-pg .dbt-feat-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #2a2a2a
}

.dbt-pg .dbt-feat-list li .dbt-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 30px;
  background: #FF9822;
  margin-top: 7px
}

.dbt-pg .dbt-nums {
  background: #F2F2F2;
  padding: 80px 16px
}

.dbt-pg .dbt-nums .dbt-n-inner {
  max-width: 1024px;
  margin: 0 auto
}

.dbt-pg .dbt-n-head {
  text-align: center;
  margin-bottom: 40px
}

.dbt-pg .dbt-h3 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #111;
  margin: 0 0 8px
}

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

.dbt-pg .dbt-n-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 16px;
  text-align: center;
  box-shadow: 0 5px 20px -1px #0e72a717;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden
}

.dbt-pg .dbt-n-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0E72A7, #FF9822);
  border-radius: 18px 18px 0 0;
  opacity: 0;
  animation: bdr-glow .65s cubic-bezier(0.22, 1, 0.36, 1) .3s forwards
}

.dbt-pg .dbt-n-card:hover {
  box-shadow: 0 12px 60px -1px #0e72a724;
  transform: translateY(-4px)
}

.dbt-pg .dbt-n-val {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  color: #0E72A7;
  letter-spacing: .01em;
  display: block
}

.dbt-pg .dbt-n-unit {
  font-size: 20px;
  color: #FF9822;
  font-weight: 700
}

.dbt-pg .dbt-n-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin: 8px 0 0
}

.dbt-pg .dbt-n-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px
}

.dbt-pg .dbt-n-img-frame {
  border-radius: 11px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 1px 5px -1px #0e72a70d
}

.dbt-pg .dbt-n-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.dbt-pg .dbt-grad {
  background: linear-gradient(293deg, #0E72A7 0%, #0a5a87 100%);
  padding: 80px 16px;
  position: relative;
  overflow: hidden
}

.dbt-pg .dbt-grad .dbt-grad-pat {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(293deg, #ffffff0a 0px, #ffffff0a 1px, transparent 1px, transparent 60px);
  pointer-events: none
}

.dbt-pg .dbt-grad .dbt-g-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center;
  position: relative
}

.dbt-pg .dbt-grad .dbt-g-text {
  flex: 1 1 0;
  min-width: 0
}

.dbt-pg .dbt-grad .dbt-g-cards {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.dbt-pg .dbt-h2-inv {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #fff;
  margin: 0 0 16px
}

.dbt-pg .dbt-para-inv {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffffd9;
  margin: 0 0 16px
}

.dbt-pg .dbt-para-inv:last-child {
  margin-bottom: 0
}

.dbt-pg .dbt-out-card {
  background: #ffffff1a;
  border-radius: 11px;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.dbt-pg .dbt-out-card:hover {
  background: #ffffff2e
}

.dbt-pg .dbt-out-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #ff982240;
  display: flex;
  align-items: center;
  justify-content: center
}

.dbt-pg .dbt-out-icon svg {
  width: 20px;
  height: 20px;
  fill: #FF9822
}

.dbt-pg .dbt-out-card-txt h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.2
}

.dbt-pg .dbt-out-card-txt p {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffffbf;
  margin: 0
}

.dbt-pg .dbt-env {
  background: #fff;
  padding: 80px 16px
}

.dbt-pg .dbt-env .dbt-e-inner {
  max-width: 1024px;
  margin: 0 auto
}

.dbt-pg .dbt-env .dbt-e-head {
  max-width: 600px;
  margin: 0 0 40px
}

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

.dbt-pg .dbt-e-item {
  border-radius: 18px;
  background: #F2F2F2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1), background .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.dbt-pg .dbt-e-item:hover {
  background: linear-gradient(293deg, #0e72a70f, #ff98220a);
  box-shadow: 0 5px 20px -1px #0e72a717
}

.dbt-pg .dbt-e-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.2;
  letter-spacing: .01em
}

.dbt-pg .dbt-e-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #2a2a2a;
  margin: 0
}

.dbt-pg .dbt-e-item .dbt-e-num {
  font-size: 26px;
  font-weight: 800;
  color: #0E72A7;
  line-height: 1.2
}

.dbt-pg .dbt-e-wide {
  grid-column: 1 / -1;
  background: linear-gradient(293deg, #F2F2F2, #0e72a714);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center
}

.dbt-pg .dbt-e-wide .dbt-e-wide-txt {
  flex: 1 1 0;
  min-width: 0
}

.dbt-pg .dbt-e-wide .dbt-e-wide-txt h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 0 0 8px;
  line-height: 1.2
}

.dbt-pg .dbt-e-wide .dbt-e-wide-txt p {
  font-size: 15px;
  line-height: 1.7;
  color: #2a2a2a;
  margin: 0
}

.dbt-pg .dbt-peer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 0 0 260px
}

.dbt-pg .dbt-peer {
  background: #fff;
  border-radius: 11px;
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  box-shadow: 0 1px 5px -1px #0e72a70d
}

.dbt-pg .dbt-peer-av {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 30px;
  background: linear-gradient(293deg, #0E72A7, #FF9822);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em
}

.dbt-pg .dbt-peer-info h6 {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
  line-height: 1.2
}

.dbt-pg .dbt-peer-info p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin: 0
}

@media (max-width: 1280px) {
  .dbt-pg .dbt-strip .dbt-inner {
    gap: 40px
  }

  .dbt-pg .dbt-strip .dbt-img-col {
    flex: 0 0 360px
  }

  .dbt-pg .dbt-grad .dbt-g-inner {
    gap: 40px
  }

  .dbt-pg .dbt-grad .dbt-g-cards {
    flex: 0 0 300px
  }
}

@media (max-width: 768px) {
  .dbt-pg .dbt-strip .dbt-inner {
    flex-direction: column;
    gap: 40px
  }

  .dbt-pg .dbt-strip .dbt-img-col {
    flex: none;
    width: 100%
  }

  .dbt-pg .dbt-support .dbt-s2-inner {
    flex-direction: column
  }

  .dbt-pg .dbt-support .dbt-s2-aside {
    flex: none;
    width: 100%
  }

  .dbt-pg .dbt-n-grid {
    grid-template-columns: 1fr
  }

  .dbt-pg .dbt-n-img-row {
    grid-template-columns: 1fr
  }

  .dbt-pg .dbt-grad .dbt-g-inner {
    flex-direction: column
  }

  .dbt-pg .dbt-grad .dbt-g-cards {
    flex: none;
    width: 100%
  }

  .dbt-pg .dbt-e-grid {
    grid-template-columns: 1fr
  }

  .dbt-pg .dbt-e-wide {
    flex-direction: column
  }

  .dbt-pg .dbt-peer-list {
    flex: none;
    width: 100%
  }

  .dbt-pg .dbt-h1 {
    font-size: 36px
  }

  .dbt-pg .dbt-h2,
  .dbt-pg .dbt-h2-inv {
    font-size: 26px
  }
}

@media (max-width: 480px) {

  .dbt-pg .dbt-strip,
  .dbt-pg .dbt-support,
  .dbt-pg .dbt-nums,
  .dbt-pg .dbt-grad,
  .dbt-pg .dbt-env {
    padding: 40px 16px
  }

  .dbt-pg .dbt-h1 {
    font-size: 26px
  }

  .dbt-pg .dbt-n-val {
    font-size: 36px
  }

  .dbt-pg .dbt-e-item,
  .dbt-pg .dbt-e-wide {
    padding: 16px
  }
}

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

.abt-us ::selection {
  background: #0E72A7;
  color: #fff
}

.abt-us a {
  text-decoration: none !important
}

.abt-us .top-strip {
  background: #fff;
  padding: 80px 0 40px
}

.abt-us .top-strip-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 40px
}

.abt-us .top-text {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}

.abt-us .top-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .02em;
  color: #0E72A7;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 16px;
  background: linear-gradient(293deg, #F2F2F2, transparent);
  border-radius: 6px;
  width: fit-content
}

.abt-us .top-h1 {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #111;
  margin: 0;
  font-weight: 800
}

.abt-us .top-h1 span {
  display: block;
  color: #0E72A7
}

.abt-us .top-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin: 0;
  max-width: 480px
}

.abt-us .top-img-col {
  flex: 0 0 40%;
  position: relative;
  border-radius: 18px;
  overflow: hidden
}

.abt-us .top-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt-us .top-img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, #0e72a773 100%);
  pointer-events: none;
  border-radius: 18px
}

.abt-us .top-img-col:hover img {
  transform: scale(1.04)
}

.abt-us .top-img-col .img-border {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid transparent;
  transition: border-color .55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 2
}

.abt-us .top-img-col:hover .img-border {
  border-color: #FF9822
}

.abt-us .top-arrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 8px
}

.abt-us .top-arrow svg {
  width: 20px;
  height: 20px;
  fill: #FF9822;
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt-us .top-arrow:hover svg {
  transform: translateX(6px)
}

.abt-us .top-arrow span {
  font-size: 15px;
  color: #0E72A7;
  font-weight: 600;
  letter-spacing: .01em
}

.abt-us .story-seg {
  background: linear-gradient(293deg, #F2F2F2 0%, #fff 70%);
  padding: 80px 0;
  position: relative
}

.abt-us .story-seg::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 0%);
  pointer-events: none
}

.abt-us .story-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 80px
}

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

.abt-us .story-text-col {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt-us .seg-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .02em;
  font-weight: 700;
  color: #fff;
  background: #0E72A7;
  padding: 4px 16px;
  border-radius: 6px;
  width: fit-content
}

.abt-us .story-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #111;
  margin: 0;
  font-weight: 700
}

.abt-us .story-p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin: 0
}

.abt-us .story-p-sm {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0
}

.abt-us .before-after {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px
}

.abt-us .ba-card {
  flex: 1 1 0;
  border-radius: 18px;
  padding: 40px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  box-shadow: 0 5px 20px -1px #0e72a717
}

.abt-us .ba-card.before {
  background: #fff
}

.abt-us .ba-card.after {
  background: #0E72A7
}

.abt-us .ba-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase
}

.abt-us .ba-card.before .ba-tag {
  color: #888
}

.abt-us .ba-card.after .ba-tag {
  color: #ffffffb3
}

.abt-us .ba-num {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .01em
}

.abt-us .ba-card.before .ba-num {
  color: #FF9822
}

.abt-us .ba-card.after .ba-num {
  color: #fff
}

.abt-us .ba-desc {
  font-size: 15px;
  line-height: 1.5
}

.abt-us .ba-card.before .ba-desc {
  color: #555
}

.abt-us .ba-card.after .ba-desc {
  color: #ffffffd9
}

.abt-us .story-img-col {
  flex: 0 0 40%;
  position: relative
}

.abt-us .story-img-wrap {
  border-radius: 18px;
  overflow: hidden;
  position: relative
}

.abt-us .story-img-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt-us .story-img-wrap:hover img {
  transform: scale(1.05)
}

.abt-us .story-img-wrap .img-border {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid transparent;
  transition: border-color .6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 2
}

.abt-us .story-img-wrap:hover .img-border {
  border-color: #0E72A7
}

.abt-us .diamond-accent {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #FF9822;
  border-radius: 6px;
  transform: rotate(45deg);
  bottom: -16px;
  right: -16px;
  z-index: 1;
  box-shadow: 0 5px 20px -1px #ff982224
}

.abt-us .method-seg {
  background: #fff;
  padding: 80px 0;
  position: relative
}

.abt-us .method-seg::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(293deg, #F2F2F2 0%, #fff 70%);
  clip-path: ellipse(60% 100% at 48% 0%);
  pointer-events: none
}

.abt-us .method-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 40px
}

.abt-us .method-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px
}

.abt-us .method-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #111;
  margin: 0;
  font-weight: 700
}

.abt-us .method-sub {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin: 0
}

.abt-us .icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 16px;
  position: relative
}

.abt-us .icon-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 8px);
  right: calc(16.66% + 8px);
  height: 2px;
  background: linear-gradient(90deg, #0E72A7 0%, #FF9822 50%, #0E72A7 100%);
  pointer-events: none;
  border-radius: 2px
}

.abt-us .ic-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 40px 16px 16px;
  border-radius: 18px;
  background: #F2F2F2;
  position: relative;
  transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), background .5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default
}

.abt-us .ic-item:hover {
  background: linear-gradient(293deg, #F2F2F2, #fff);
  box-shadow: 0 12px 60px -1px #0e72a724
}

.abt-us .ic-circle {
  width: 56px;
  height: 56px;
  border-radius: 46px;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px -1px #0e72a717;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.abt-us .ic-circle svg {
  width: 28px;
  height: 28px
}

.abt-us .ic-name {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  letter-spacing: .01em
}

.abt-us .ic-body {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0
}

.abt-us .ic-item .ic-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 14px;
  font-weight: 800;
  color: #FF9822;
  letter-spacing: .02em
}

.abt-us .ic-item {
  animation: col-appear .6s cubic-bezier(0.22, 1, 0.36, 1) both
}

.abt-us .ic-item:nth-child(1) {
  animation-delay: .1s
}

.abt-us .ic-item:nth-child(2) {
  animation-delay: .25s
}

.abt-us .ic-item:nth-child(3) {
  animation-delay: .4s
}

@keyframes col-appear {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

.abt-us .innov-strip {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(293deg, #0E72A7 0%, #0a5a85 100%);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 12px 60px -1px #0e72a724
}

.abt-us .innov-text {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.abt-us .innov-h4 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  letter-spacing: .01em
}

.abt-us .innov-p {
  font-size: 15px;
  line-height: 1.5;
  color: #fffc;
  margin: 0
}

.abt-us .innov-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #FF9822;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none !important;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 5px 20px -1px #ff982217
}

.abt-us .innov-btn:hover {
  background: linear-gradient(293deg, #FF9822, #ffb455);
  box-shadow: 0 12px 60px -1px #ff982224
}

.abt-us .innov-btn:active {
  transform: scale(0.97);
  box-shadow: inset 0 2px 8px #ff98222e
}

.abt-us .innov-btn svg {
  width: 18px;
  height: 18px;
  fill: #111
}

.abt-us .method-seg-bottom {
  padding-bottom: 80px
}

@media (max-width: 768px) {
  .abt-us .top-strip-inner {
    flex-direction: column;
    padding: 0 16px
  }

  .abt-us .top-h1 {
    font-size: 36px
  }

  .abt-us .story-row {
    flex-direction: column
  }

  .abt-us .story-inner {
    padding: 0 16px;
    gap: 40px
  }

  .abt-us .icon-grid {
    grid-template-columns: 1fr
  }

  .abt-us .icon-grid::before {
    display: none
  }

  .abt-us .method-inner {
    padding: 0 16px
  }

  .abt-us .innov-strip {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 16px;
    padding: 40px 16px
  }

  .abt-us .before-after {
    flex-direction: column
  }

  .abt-us .top-strip {
    padding: 40px 0
  }

  .abt-us .story-seg {
    padding: 40px 0
  }

  .abt-us .method-seg {
    padding: 40px 0
  }
}

@media (max-width: 480px) {
  .abt-us .top-h1 {
    font-size: 26px
  }

  .abt-us .story-h2,
  .abt-us .method-h2 {
    font-size: 26px
  }

  .abt-us .ba-num {
    font-size: 36px
  }
}

@media (min-width: 1280px) {

  .abt-us .top-strip-inner,
  .abt-us .story-inner,
  .abt-us .method-inner {
    padding: 0 40px
  }
}

.pr-pg {
  background: #fff;
  overflow-x: clip
}

.pr-pg .pr-release {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px
}

.pr-pg .pr-head {
  background: #0d1f2d;
  padding: 40px 16px 80px;
  position: relative
}

.pr-pg .pr-head-inner {
  max-width: 1024px;
  margin: 0 auto
}

.pr-pg .pr-eyebrow {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .02em;
  color: #FF9822;
  border: 1px solid #ff982259;
  border-radius: 6px;
  padding: 4px 16px;
  margin-bottom: 16px;
  line-height: 1.5
}

.pr-pg .pr-tag-line {
  font-size: 17px;
  color: #b8cdd9;
  line-height: 1.7;
  margin-bottom: 16px;
  letter-spacing: .01em;
  max-width: 680px
}

.pr-pg .pr-h1 {
  font-size: 48px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: .01em;
  margin-bottom: 16px;
  max-width: 780px
}

.pr-pg .pr-h1 .pr-accent-word {
  color: #FF9822
}

.pr-pg .pr-sub {
  font-size: 17px;
  color: #8aafc4;
  line-height: 1.7;
  max-width: 620px;
  letter-spacing: .01em
}

.pr-pg .pr-dir-arrows {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 40px
}

.pr-pg .pr-arrow {
  width: 36px;
  height: 2px;
  background: linear-gradient(293deg, #FF9822, transparent);
  border-radius: 6px;
  position: relative
}

.pr-pg .pr-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #FF9822
}

.pr-pg .pr-arrow.sm {
  width: 20px;
  opacity: .45
}

.pr-pg .pr-arrow.lg {
  width: 56px
}

.pr-pg .pr-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin: 40px 0
}

.pr-pg .pr-divider .pr-line {
  flex: 1;
  height: 1px;
  background: #e4e8ec
}

.pr-pg .pr-divider .pr-dot {
  width: 32px;
  height: 3px;
  background: #0E72A7;
  border-radius: 6px;
  margin: 0 8px
}

.pr-pg .pr-body {
  padding: 80px 16px;
  background: #F2F2F2
}

.pr-pg .pr-body-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start
}

.pr-pg .pr-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .02em;
  color: #fff;
  background: #0E72A7;
  border-radius: 6px;
  padding: 4px 16px;
  margin-bottom: 16px;
  line-height: 1.5
}

.pr-pg .pr-h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #0d1f2d;
  letter-spacing: .01em;
  margin-bottom: 16px
}

.pr-pg .pr-h2 .pr-strip {
  background: linear-gradient(293deg, #0e72a721, transparent);
  border-radius: 6px;
  padding: 0 8px;
  display: inline
}

.pr-pg .pr-para {
  font-size: 17px;
  line-height: 1.7;
  color: #243040;
  letter-spacing: .01em;
  margin-bottom: 16px
}

.pr-pg .pr-para.tight {
  margin-bottom: 8px
}

.pr-pg .pr-para strong {
  color: #0d1f2d
}

.pr-pg .pr-steps {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.pr-pg .pr-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 11px;
  padding: 16px;
  box-shadow: 0 1px 5px -1px #0e72a70d;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.pr-pg .pr-step:hover {
  box-shadow: 0 5px 20px -1px #0e72a717;
  transform: translateY(-2px)
}

.pr-pg .pr-step-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(293deg, #FF9822, #e07800);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center
}

.pr-pg .pr-step-arrow svg {
  width: 16px;
  height: 16px;
  fill: #fff
}

.pr-pg .pr-step-text {
  flex: 1
}

.pr-pg .pr-step-num {
  font-size: 14px;
  color: #0E72A7;
  letter-spacing: .02em;
  line-height: 1.5;
  margin-bottom: 4px;
  font-weight: 600
}

.pr-pg .pr-step-desc {
  font-size: 15px;
  color: #243040;
  line-height: 1.7;
  letter-spacing: .01em
}

.pr-pg .pr-img-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px -1px #0e72a717;
  margin-bottom: 16px;
  position: relative
}

.pr-pg .pr-img-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: blur(0px) saturate(1.1);
  transition: filter .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.pr-pg .pr-img-card:hover img {
  filter: blur(1.5px) saturate(1.3)
}

.pr-pg .pr-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(293deg, #0e72a72e, transparent);
  pointer-events: none
}

.pr-pg .pr-meta-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 1px 5px -1px #0e72a70d;
  margin-bottom: 16px
}

.pr-pg .pr-meta-card .pr-meta-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #e8edf1
}

.pr-pg .pr-meta-card .pr-meta-row:last-child {
  border-bottom: none
}

.pr-pg .pr-meta-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #0E72A7;
  display: flex;
  align-items: center;
  justify-content: center
}

.pr-pg .pr-meta-text {
  font-size: 14px;
  color: #243040;
  line-height: 1.5;
  letter-spacing: .01em
}

.pr-pg .pr-meta-text strong {
  color: #0d1f2d;
  display: block;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 2px
}

.pr-pg .pr-contact-card {
  background: #0E72A7;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 5px 20px -1px #0e72a724
}

.pr-pg .pr-contact-card .pr-c-label {
  font-size: 14px;
  color: #ffffffb3;
  letter-spacing: .02em;
  margin-bottom: 8px;
  line-height: 1.5
}

.pr-pg .pr-contact-card .pr-c-name {
  font-size: 17px;
  color: #fff;
  line-height: 1.5;
  letter-spacing: .01em;
  margin-bottom: 8px
}

.pr-pg .pr-contact-card a {
  display: block;
  font-size: 15px;
  color: #FFD080;
  text-decoration: none;
  line-height: 1.7;
  letter-spacing: .01em;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.pr-pg .pr-contact-card a:hover {
  color: #fff
}

.pr-pg .pr-cta-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 40px;
  background: #0E72A7;
  color: #fff;
  font-size: 17px;
  letter-spacing: .01em;
  line-height: 1.5;
  border-radius: 11px;
  text-decoration: none;
  box-shadow: 0 5px 20px -1px #0e72a717;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.pr-pg .pr-cta-btn:hover {
  background: linear-gradient(293deg, #0E72A7, #0a5a87);
  box-shadow: 0 12px 60px -1px #0e72a724;
  transform: translateY(-2px)
}

.pr-pg .pr-cta-btn:active {
  transform: scale(0.97);
  box-shadow: inset 0 2px 6px #0e72a72e
}

@keyframes pr-trace {
  from {
    stroke-dashoffset: 340
  }

  to {
    stroke-dashoffset: 0
  }
}

.pr-pg .pr-trace-svg {
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  pointer-events: none;
  border-radius: 11px
}

.pr-pg .pr-trace-rect {
  fill: none;
  stroke: #FF9822;
  stroke-width: 2;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: pr-trace .65s cubic-bezier(0.22, 1, 0.36, 1) .3s forwards;
  rx: 11;
  ry: 11
}

.pr-pg .pr-trace-wrap {
  position: relative;
  display: inline-block
}

@media (max-width: 768px) {
  .pr-pg .pr-h1 {
    font-size: 36px
  }

  .pr-pg .pr-body-inner {
    grid-template-columns: 1fr
  }

  .pr-pg .pr-side-col {
    order: -1
  }
}

@media (max-width: 480px) {
  .pr-pg .pr-h1 {
    font-size: 26px
  }

  .pr-pg .pr-h2 {
    font-size: 26px
  }

  .pr-pg .pr-head {
    padding: 40px 16px
  }
}

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

.success-pg .success-card {
  background: #fff;
  max-width: 520px;
  width: 100%;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 5px 20px -1px #0e72a717;
  text-align: center
}

.success-pg .success-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 46px;
  background: linear-gradient(293deg, #F2F2F2, transparent), #0E72A7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1)
}

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

.success-pg .success-card .success-title {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: .01em;
  color: #0E72A7;
  margin: 0 0 16px
}

.success-pg .success-card .success-msg {
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: .01em;
  color: #2a2a2a;
  margin: 0 0 40px
}

.success-pg .success-card .success-divider {
  width: 48px;
  height: 3px;
  border-radius: 6px;
  background: #FF9822;
  margin: 0 auto 40px
}

.success-pg .success-card .back-link {
  display: inline-block;
  font-size: 15px;
  letter-spacing: .02em;
  line-height: 1.5;
  color: #fff;
  background: #0E72A7;
  padding: 16px 40px;
  border-radius: 11px;
  text-decoration: none;
  box-shadow: 0 1px 5px -1px #0e72a70d;
  transition: background .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.success-pg .success-card .back-link:hover {
  background: linear-gradient(293deg, #0E72A7, #0a5a85);
  box-shadow: 0 12px 60px -1px #0e72a724
}

.success-pg .success-card .back-link:active {
  transform: scale(0.97);
  box-shadow: inset 0 2px 8px #0e72a72e
}

.success-pg .success-card .back-link:focus-visible {
  outline: 2px solid #FF9822;
  outline-offset: 3px
}

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

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