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

html {
  box-sizing: border-box
}

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

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Cormorant', Georgia, serif
}

.site-header {
  position: relative;
  background: #fff;
  overflow: hidden
}

.header-bg-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  background: linear-gradient(135deg, #00a9b512 0%, #fcda121a 60%, #2a051a0a 100%);
  border-radius: 0 0 0 44px;
  pointer-events: none
}

.header-bg-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2A051A 0%, #00A9B5 50%, #FCDA12 100%);
  pointer-events: none
}

.header-plate {
  max-width: 1024px;
  margin: 0 auto;
  padding: 32px 32px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: stretch;
  position: relative;
  z-index: 2
}

.brand-pod {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 32px
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 16px
}

.logo-cell {
  width: 44px;
  height: 44px;
  border-top: 2px solid #2A051A;
  border-bottom: 2px solid #2A051A;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 1px 1px 5px -2px #2a051a0f;
  flex-shrink: 0
}

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

.brand-name {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: #2A051A;
  letter-spacing: .01em
}

.brand-tagline {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #2A051A;
  opacity: .65;
  max-width: 220px
}

.header-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 32px
}

.header-contact-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  margin-bottom: 16px
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #2A051A;
  text-decoration: none;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-item:hover {
  color: #00A9B5
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.primary-nav {
  display: flex;
  justify-content: flex-end
}

.nav-deck {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-deck li {
  display: flex
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #2A051A;
  text-decoration: none;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  transition: color .45s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
  border: 1px solid transparent
}

.nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #2A051A;
  border-radius: 6px;
  transition: height .55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0
}

.nav-link:hover::before {
  height: 100%
}

.nav-link:hover {
  color: #FCDA12
}

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

.nav-link:focus-visible {
  outline: 3px solid;
  outline-color: #00A9B5;
  outline-offset: 2px
}

.nav-link.active {
  background: #2a051a0f;
  border-color: #2a051a1f
}

@media (max-width: 768px) {
  .header-plate {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 16px 0
  }

  .header-contact-bar {
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap
  }

  .primary-nav {
    justify-content: flex-start
  }

  .nav-deck {
    justify-content: flex-start
  }

  .header-bg-accent {
    width: 100%;
    border-radius: 0
  }

  .brand-pod {
    padding-bottom: 0
  }

  .header-right {
    padding-bottom: 16px
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .header-plate {
    padding: 32px 32px 0
  }
}

.site-footer {
  background: linear-gradient(160deg, #2a051af5 0%, #2a051aff 100%);
  position: relative;
  overflow: hidden
}

.footer-top-line {
  height: 4px;
  background: linear-gradient(90deg, #FCDA12 0%, #00A9B5 50%, #2A051A 100%)
}

.footer-plate {
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px
}

.footer-brand-pod {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.footer-logo-cell {
  width: 44px;
  height: 44px;
  border-top: 2px solid #fcda1280;
  border-bottom: 2px solid #fcda1280;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff14;
  box-shadow: 1px 6px 22px -2px #2a051a14 0 0 0 1px #fcda1226
}

.footer-logo-cell img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block
}

.footer-brand-name {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  color: #FCDA12;
  text-align: center
}

.footer-brand-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  color: #ffffff8c;
  text-align: center
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-col-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #00A9B5;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 8px
}

.footer-nav-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #ffffffa6;
  text-decoration: none;
  border-radius: 6px;
  padding: 8px 0;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-block
}

.footer-nav-link:hover {
  color: #FCDA12
}

.footer-nav-link:focus-visible {
  outline: 2px solid #00A9B5;
  outline-offset: 2px
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #00A9B5;
  text-transform: uppercase;
  letter-spacing: .1em
}

.contact-val {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  color: #ffffffb3;
  text-decoration: none;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.contact-val:hover {
  color: #FCDA12
}

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

.footer-copy {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  color: #ffffff59
}

@media (max-width: 768px) {
  .footer-plate {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px 16px
  }

  .footer-brand-pod {
    align-items: flex-start
  }

  .footer-brand-name {
    text-align: left
  }

  .footer-brand-desc {
    text-align: left
  }

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

@media (min-width: 769px) and (max-width: 1280px) {
  .footer-plate {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .footer-brand-pod {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start
  }
}

.consent-bar {
  position: fixed;
  top: 16px;
  left: 16px;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 1px 9px 36px -2px #2a051a1c;
  border: 1px solid #2a051a1a;
  padding: 16px;
  z-index: 1500;
  display: none
}

.consent-text {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: #2A051A;
  margin-bottom: 16px
}

.consent-actions {
  display: flex;
  gap: 8px
}

.consent-btn {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #2A051A;
  background: transparent;
  color: #2A051A;
  cursor: pointer;
  min-height: 44px;
  transition: background .45s cubic-bezier(0.22, 1, 0.36, 1), color .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.consent-btn:hover {
  background: #2A051A;
  color: #FCDA12
}

.consent-btn:focus-visible {
  outline: 2px solid #00A9B5;
  outline-offset: 2px
}

.policy-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 32px;
  color: #2A051A
}

.policy-container h1 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #2A051A
}

.policy-container h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-top: 64px;
  margin-bottom: 16px;
  color: #2A051A
}

.policy-container h3 {
  font-size: 19px;
  line-height: 1.3;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2A051A
}

.policy-container h4 {
  font-size: 19px;
  line-height: 1.55;
  margin-top: 32px;
  margin-bottom: 8px;
  color: #2A051A
}

.policy-container h5 {
  font-size: 16px;
  line-height: 1.55;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #2A051A;
  text-transform: uppercase;
  letter-spacing: .08em
}

.policy-container h6 {
  font-size: 16px;
  line-height: 1.55;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #2A051A;
  opacity: .75
}

.policy-container p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  color: #2A051A
}

.policy-container ul {
  margin-bottom: 16px;
  padding-left: 32px;
  list-style: none
}

.policy-container ol {
  margin-bottom: 16px;
  padding-left: 32px;
  list-style: decimal
}

.policy-container ul li {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 8px;
  color: #2A051A;
  position: relative;
  padding-left: 16px
}

.policy-container ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 44px;
  background: #00A9B5;
  position: absolute;
  left: 0;
  top: .65em
}

.policy-container ol li {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 8px;
  color: #2A051A;
  padding-left: 8px
}

.policy-container strong,
.policy-container b {
  font-weight: 700;
  color: #2A051A
}

.policy-container em,
.policy-container i {
  font-style: italic;
  color: #2A051A
}

.policy-container hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2a051a1f, transparent);
  margin: 64px 0
}

.policy-container div {
  margin-bottom: 16px
}

.policy-container div.notice {
  background: linear-gradient(135deg, #fcda1214, #00a9b50f);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 1px 6px 22px -2px #2a051a14
}

@media (max-width: 768px) {
  .policy-container {
    padding: 32px 16px
  }

  .policy-container h1 {
    font-size: 32px
  }

  .policy-container h2 {
    font-size: 19px;
    margin-top: 32px
  }

  .policy-container h3 {
    font-size: 16px
  }
}

@media (min-width: 769px) and (max-width: 1280px) {
  .policy-container {
    padding: 64px 32px
  }
}

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

.gds .db-title-block {
  padding: 64px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, #00a9b521 0%, #fcda1212 40%, #fff 75%)
}

.gds .db-title-block .dot-path {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px
}

.gds .db-title-block .dot-path span {
  width: 8px;
  height: 8px;
  border-radius: 44px;
  background: #00A9B5;
  opacity: .35;
  display: block
}

.gds .db-title-block .dot-path span.active {
  background: #FCDA12;
  opacity: 1;
  width: 16px
}

.gds .db-title-block .dot-path span.mid {
  opacity: .6
}

.gds .img-wrap {
  width: 220px;
  height: 280px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 1px 9px 36px -2px #2a051a1c;
  position: relative;
  margin-bottom: 32px
}

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

.gds .img-wrap:hover img {
  transform: scale(1.05)
}

.gds .img-wrap .img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #2a051a8c 0%, transparent 60%);
  border-radius: 28px;
  pointer-events: none
}

.gds .title-text {
  text-align: center;
  max-width: 640px
}

.gds .title-text .label-sm {
  font-size: 16px;
  line-height: 1.55;
  color: #00A9B5;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px
}

.gds .title-text h1 {
  font-size: 70px;
  line-height: 1.1;
  color: #2A051A;
  margin: 0 0 8px
}

.gds .title-text h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #2A051A;
  margin: 0 0 16px;
  opacity: .7
}

.gds .title-text p {
  font-size: 19px;
  line-height: 1.55;
  color: #3a1828;
  margin: 0
}

.gds .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2A051A;
  color: #FCDA12;
  font-size: 16px;
  line-height: 1.3;
  padding: 8px 16px;
  border-radius: 44px;
  margin-top: 32px
}

.gds .badge .count {
  background: #FCDA12;
  color: #2A051A;
  font-size: 16px;
  line-height: 1.3;
  border-radius: 44px;
  padding: 0 8px;
  font-weight: 700
}

.gds .guide-list-block {
  padding: 64px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center
}

.gds .guide-list-block .inner-col {
  width: 100%;
  max-width: 1024px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px
}

.gds .guide-list-block .block-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px
}

.gds .guide-list-block .block-head h3 {
  font-size: 32px;
  line-height: 1.3;
  color: #2A051A;
  margin: 0;
  position: relative;
  display: inline-block
}

.gds .guide-list-block .block-head h3::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #FCDA12;
  border-radius: 6px;
  margin-top: 8px;
  transition: width .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.gds .guide-list-block .block-head h3:hover::after {
  width: 100%
}

.gds .guide-list-block .block-head p {
  font-size: 16px;
  line-height: 1.55;
  color: #5a3048;
  max-width: 340px;
  text-align: right;
  margin: 0
}

.gds .guide-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 1px 6px 22px -2px #2a051a14;
  transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.gds .guide-card:hover {
  box-shadow: 1px 9px 36px -2px #2a051a1c;
  transform: translateY(-3px)
}

.gds .guide-card .card-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2A051A 60%, #00A9B5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FCDA12;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  flex-shrink: 0
}

.gds .guide-card .card-body h4 {
  font-size: 19px;
  line-height: 1.3;
  color: #2A051A;
  margin: 0 0 8px
}

.gds .guide-card .card-body p {
  font-size: 16px;
  line-height: 1.55;
  color: #4a2535;
  margin: 0 0 16px
}

.gds .guide-card .card-body .tag-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px
}

.gds .guide-card .card-body .tag {
  font-size: 16px;
  line-height: 1.3;
  color: #00A9B5;
  background: #00a9b517;
  border-radius: 6px;
  padding: 4px 8px
}

.gds .depth-block {
  padding: 64px 16px;
  background: linear-gradient(180deg, #2a051a0f 0%, #fff 100%);
  display: flex;
  flex-direction: column;
  align-items: center
}

.gds .depth-block .depth-inner {
  width: 100%;
  max-width: 1024px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start
}

.gds .depth-block .depth-text h3 {
  font-size: 32px;
  line-height: 1.3;
  color: #2A051A;
  margin: 0 0 16px;
  position: relative;
  display: inline-block
}

.gds .depth-block .depth-text h3::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #00A9B5;
  border-radius: 6px;
  margin-top: 8px;
  transition: width .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.gds .depth-block .depth-text h3:hover::after {
  width: 100%
}

.gds .depth-block .depth-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a1828;
  margin: 0 0 16px
}

.gds .depth-block .depth-text em {
  font-size: 19px;
  line-height: 1.55;
  font-style: italic;
  color: #2A051A
}

.gds .depth-block .depth-aside {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.gds .depth-block .aside-note {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 1px 1px 5px -2px #2a051a0f
}

.gds .depth-block .aside-note .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #fcda122e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.gds .depth-block .aside-note .icon-box svg {
  width: 22px;
  height: 22px
}

.gds .depth-block .aside-note h5 {
  font-size: 16px;
  line-height: 1.3;
  color: #2A051A;
  margin: 0 0 4px
}

.gds .depth-block .aside-note p {
  font-size: 16px;
  line-height: 1.55;
  color: #5a3048;
  margin: 0
}

.gds .path-block {
  padding: 64px 16px;
  background: #2A051A;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden
}

.gds .path-block .curve-deco {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 44px;
  border: 2px solid #fcda121f;
  pointer-events: none;
  transform: rotate(18deg)
}

.gds .path-block .curve-deco2 {
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 44px;
  border: 2px solid #00a9b51a;
  pointer-events: none;
  transform: rotate(-12deg)
}

.gds .path-block .path-inner {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px
}

.gds .path-block .path-head {
  text-align: center
}

.gds .path-block .path-head h3 {
  font-size: 44px;
  line-height: 1.1;
  color: #FCDA12;
  margin: 0 0 16px
}

.gds .path-block .path-head p {
  font-size: 19px;
  line-height: 1.55;
  color: #fffc;
  margin: 0;
  max-width: 560px
}

.gds .path-block .steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%
}

.gds .path-block .step-item {
  padding: 32px 16px;
  border-radius: 16px;
  background: #ffffff0d;
  border: 1px solid #fcda121f;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .45s cubic-bezier(0.22, 1, 0.36, 1), border-color .45s cubic-bezier(0.22, 1, 0.36, 1);
  clip-path: inset(0 0 100% 0);
  animation: reveal-down .6s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.gds .path-block .step-item:nth-child(1) {
  animation-delay: .05s
}

.gds .path-block .step-item:nth-child(2) {
  animation-delay: .15s
}

.gds .path-block .step-item:nth-child(3) {
  animation-delay: .25s
}

.gds .path-block .step-item:nth-child(4) {
  animation-delay: .35s
}

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

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

.gds .path-block .step-item:hover {
  background: #fcda1212;
  border-color: #fcda124d
}

.gds .path-block .step-item .step-num {
  font-size: 44px;
  line-height: 1.1;
  color: #fcda1240;
  font-weight: 700
}

.gds .path-block .step-item h5 {
  font-size: 16px;
  line-height: 1.3;
  color: #fff;
  margin: 0
}

.gds .path-block .step-item p {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffa6;
  margin: 0
}

.gds .path-block .cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.gds .path-block .cta-area p {
  font-size: 16px;
  line-height: 1.55;
  color: #fff9;
  margin: 0;
  text-align: center
}

.gds .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FCDA12;
  color: #2A051A;
  font-size: 16px;
  line-height: 1.3;
  padding: 16px 32px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none
}

.gds .btn-primary::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #00A9B5;
  border-radius: 28px;
  transition: bottom .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.gds .btn-primary:hover::before {
  bottom: 0
}

.gds .btn-primary:hover {
  color: #fff;
  box-shadow: 1px 9px 36px -2px #2a051a1c
}

.gds .btn-primary span {
  position: relative;
  z-index: 1
}

@media (max-width: 768px) {
  .gds .title-text h1 {
    font-size: 44px
  }

  .gds .depth-block .depth-inner {
    grid-template-columns: 1fr
  }

  .gds .path-block .steps-row {
    grid-template-columns: 1fr 1fr
  }

  .gds .guide-list-block .block-head {
    flex-direction: column;
    align-items: flex-start
  }

  .gds .guide-list-block .block-head p {
    text-align: left
  }
}

@media (max-width: 480px) {
  .gds .path-block .steps-row {
    grid-template-columns: 1fr
  }

  .gds .title-text h1 {
    font-size: 32px
  }
}

@media (min-width: 1280px) {
  .gds .guide-list-block .inner-col {
    grid-template-columns: 1fr
  }
}

.opn {
  background: #fff;
  overflow-x: clip;
  position: relative
}

.opn .bg-diag {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(128deg, #00a9b508 0px, #00a9b508 1px, transparent 1px, transparent 48px), repeating-linear-gradient(218deg, #fcda1206 0px, #fcda1206 1px, transparent 1px, transparent 72px);
  animation: diagdrift 18s linear infinite
}

@keyframes diagdrift {
  0% {
    background-position: 0 0, 0 0
  }

  100% {
    background-position: 96px 96px, -144px 144px
  }
}

.opn .pg-wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1
}

.opn .fade-div {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #2a051a1f 30%, #2a051a1f 70%, transparent 100%);
  margin: 0 auto;
  max-width: 1024px
}

.opn .title-band {
  padding: 64px 0 32px;
  position: relative;
  z-index: 1
}

.opn .title-band .pg-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px
}

.opn .title-atmo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0
}

.opn .title-atmo::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 44px;
  background: #00a9b512;
  filter: blur(48px)
}

.opn .title-atmo::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: 10%;
  width: 240px;
  height: 240px;
  border-radius: 44px;
  background: #fcda1214;
  filter: blur(40px)
}

.opn .title-img-frame {
  flex: 0 0 auto;
  position: relative;
  width: 320px;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 9px 36px -2px #2a051a1c
}

.opn .title-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2a051a73 0%, #00a9b540 100%);
  border-radius: 16px
}

.opn .title-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .title-img-frame:hover img {
  transform: scale(1.05)
}

.opn .title-deco-border {
  position: absolute;
  inset: -8px;
  border: 1.5px dashed #00a9b559;
  border-radius: 28px;
  pointer-events: none
}

.opn .title-text {
  flex: 1 1 auto
}

.opn .title-eyebrow {
  font-size: 16px;
  line-height: 1.3;
  color: #00A9B5;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.opn .title-h1 {
  font-size: 44px;
  line-height: 1.1;
  color: #2A051A;
  margin-bottom: 16px;
  font-weight: 800
}

.opn .title-h1 em {
  font-style: italic;
  font-size: 50px;
  color: #00A9B5
}

.opn .title-desc {
  font-size: 19px;
  line-height: 1.55;
  color: #3d1228;
  max-width: 440px;
  text-align: right
}

.opn .approach {
  padding: 64px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(170deg, #00a9b50a 0%, #fff0 60%)
}

.opn .approach .pg-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start
}

.opn .approach-h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #2A051A;
  margin-bottom: 32px;
  position: relative;
  display: inline-block
}

.opn .approach-h2::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #FCDA12;
  border-radius: 6px;
  margin-top: 8px;
  transition: width .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .approach-h2:hover::after,
.opn .approach:hover .approach-h2::after {
  width: 100%
}

.opn .approach-body {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start
}

.opn .approach-aside {
  flex: 0 0 120px;
  font-size: 16px;
  line-height: 1.55;
  color: #00A9B5;
  padding-top: 4px;
  font-style: italic
}

.opn .approach-paras {
  flex: 1 1 auto
}

.opn .approach-p {
  font-size: 16px;
  line-height: 1.75;
  color: #2A051A;
  margin-bottom: 16px
}

.opn .approach-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px
}

.opn .step-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 1px 6px 22px -2px #2a051a14;
  transition: box-shadow .5s ease-in-out, transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .step-item:hover {
  box-shadow: 1px 9px 36px -2px #2a051a1c;
  transform: translateY(-2px)
}

.opn .step-num {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 44px;
  background: #2A051A;
  color: #FCDA12;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.opn .step-text {
  flex: 1 1 auto
}

.opn .step-label {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #2A051A;
  margin-bottom: 8px
}

.opn .step-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #3d1228
}

.opn .approach-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end
}

.opn .approach-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 6px 22px -2px #2a051a14
}

.opn .approach-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .approach-img-wrap:hover img {
  transform: scale(1.06)
}

.opn .float-card {
  width: 100%;
  border-radius: 16px;
  background: #2A051A;
  padding: 16px;
  box-shadow: 1px 9px 36px -2px #2a051a1c
}

.opn .float-card-status {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.opn .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 44px;
  background: #00A9B5;
  flex-shrink: 0
}

.opn .status-label {
  font-size: 16px;
  color: #FCDA12;
  font-weight: 600
}

.opn .float-card-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #fcda1226
}

.opn .float-card-row:last-child {
  border-bottom: none
}

.opn .frow-key {
  font-size: 16px;
  color: #ffffffa6
}

.opn .frow-val {
  font-size: 16px;
  color: #fff;
  font-weight: 600
}

.opn .audience {
  padding: 64px 0;
  position: relative;
  z-index: 1;
  background: #2A051A
}

.opn .audience .pg-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.opn .audience-top {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-end
}

.opn .audience-h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #FCDA12;
  flex: 1 1 auto;
  position: relative;
  display: inline-block
}

.opn .audience-h2::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #00A9B5;
  border-radius: 6px;
  margin-top: 8px;
  transition: width .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .audience:hover .audience-h2::after {
  width: 100%
}

.opn .audience-intro {
  flex: 0 0 280px;
  font-size: 16px;
  line-height: 1.75;
  color: #ffffffbf;
  text-align: right
}

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

.opn .aud-card {
  border-radius: 16px;
  padding: 32px 16px;
  background: #ffffff0a;
  border: 1px solid #fcda1226;
  transition: background .5s ease-in-out, border-color .5s ease-in-out;
  position: relative
}

.opn .aud-card:hover {
  background: #fcda1212;
  border-color: #fcda1266
}

.opn .aud-card:active {
  background: #fcda122e
}

.opn .aud-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px
}

.opn .aud-h4 {
  font-size: 19px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700
}

.opn .aud-p {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffa6
}

.opn .aud-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px
}

.opn .audience-img-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.opn .aud-img-wrap {
  height: 180px;
  border-radius: 16px;
  overflow: hidden
}

.opn .aud-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .aud-img-wrap:hover img {
  transform: scale(1.05)
}

.opn .team {
  padding: 64px 0;
  position: relative;
  z-index: 1;
  background: #fff
}

.opn .team .pg-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start
}

.opn .team-side {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.opn .team-h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #2A051A;
  position: relative;
  display: inline-block
}

.opn .team-h2::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #FCDA12;
  border-radius: 6px;
  margin-top: 8px;
  transition: width .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .team:hover .team-h2::after {
  width: 100%
}

.opn .team-side-note {
  font-size: 16px;
  line-height: 1.75;
  color: #00A9B5;
  font-style: italic
}

.opn .team-img-wrap {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 6px 22px -2px #2a051a14
}

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

.opn .team-img-wrap:hover img {
  transform: scale(1.05)
}

.opn .team-main {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.opn .team-intro-p {
  font-size: 19px;
  line-height: 1.55;
  color: #2A051A
}

.opn .team-members {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.opn .member-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 1px 1px 5px -2px #2a051a0f;
  transition: box-shadow .5s ease-in-out
}

.opn .member-row:hover {
  box-shadow: 1px 6px 22px -2px #2a051a14
}

.opn .member-avatar {
  width: 56px;
  height: 56px;
  border-radius: 44px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 1px 1px 5px -2px #2a051a0f
}

.opn .member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.opn .member-info {
  flex: 1 1 auto
}

.opn .member-name {
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  color: #2A051A;
  margin-bottom: 8px
}

.opn .member-role {
  font-size: 16px;
  color: #00A9B5;
  margin-bottom: 8px
}

.opn .member-bio {
  font-size: 16px;
  line-height: 1.55;
  color: #3d1228
}

.opn .qual-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.opn .qual-item {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.55;
  color: #2A051A
}

.opn .qual-icon {
  flex-shrink: 0;
  margin-top: 2px
}

.opn .situations {
  padding: 64px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(155deg, #fcda120f 0%, #00a9b50a 100%)
}

.opn .situations::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(./web_images/samples_1.jpg);
  background-size: cover;
  background-position: center;
  opacity: .04;
  pointer-events: none
}

.opn .situations .pg-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.opn .sit-header {
  display: flex;
  flex-direction: row;
  gap: 64px;
  align-items: flex-start
}

.opn .sit-h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #2A051A;
  flex: 0 0 auto;
  max-width: 380px;
  position: relative;
  display: inline-block
}

.opn .sit-h2::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #00A9B5;
  border-radius: 6px;
  margin-top: 8px;
  transition: width .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .situations:hover .sit-h2::after {
  width: 100%
}

.opn .sit-intro {
  flex: 1 1 auto;
  font-size: 16px;
  line-height: 1.75;
  color: #3d1228;
  text-align: right;
  padding-top: 8px
}

.opn .sit-diagram {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 32px;
  align-items: start
}

.opn .sit-items {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.opn .sit-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 1px 1px 5px -2px #2a051a0f;
  transition: box-shadow .55s ease-in-out, transform .5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default
}

.opn .sit-item:hover {
  box-shadow: 1px 6px 22px -2px #2a051a14;
  transform: translateX(4px)
}

.opn .sit-item:active {
  background: #00a9b50f
}

.opn .sit-marker {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #2A051A;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.opn .sit-marker svg {
  display: block
}

.opn .sit-label {
  font-size: 16px;
  font-weight: 700;
  color: #2A051A;
  margin-bottom: 4px
}

.opn .sit-sub {
  font-size: 16px;
  line-height: 1.55;
  color: #3d1228
}

.opn .sit-tag {
  font-size: 16px;
  padding: 4px 16px;
  border-radius: 44px;
  background: #00a9b51a;
  color: #00A9B5;
  white-space: nowrap;
  font-weight: 600
}

.opn .sit-legend {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.opn .legend-card {
  border-radius: 16px;
  padding: 16px;
  background: #2A051A;
  box-shadow: 1px 9px 36px -2px #2a051a1c
}

.opn .legend-title {
  font-size: 16px;
  color: #FCDA12;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.opn .legend-items {
  display: flex;
  flex-direction: column;
  gap: 8px
}

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

.opn .legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 44px;
  flex-shrink: 0
}

.opn .legend-lbl {
  font-size: 16px;
  color: #fffc;
  line-height: 1.3
}

.opn .sit-img-wrap {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 8px
}

.opn .sit-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .sit-img-wrap:hover img {
  transform: scale(1.06)
}

.opn .patterns {
  padding: 64px 0;
  position: relative;
  z-index: 1;
  background: #fff
}

.opn .patterns .pg-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.opn .pat-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end
}

.opn .pat-h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #2A051A;
  position: relative;
  display: inline-block
}

.opn .pat-h2::after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #FCDA12;
  border-radius: 6px;
  margin-top: 8px;
  transition: width .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .patterns:hover .pat-h2::after {
  width: 100%
}

.opn .pat-intro {
  font-size: 16px;
  line-height: 1.75;
  color: #3d1228;
  text-align: right
}

.opn .pat-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start
}

.opn .pat-quotes {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.opn .pat-quote {
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 1px 6px 22px -2px #2a051a14;
  position: relative;
  transition: box-shadow .5s ease-in-out
}

.opn .pat-quote:hover {
  box-shadow: 1px 9px 36px -2px #2a051a1c
}

.opn .pat-quote:active {
  background: #00a9b50a
}

.opn .pat-q-mark {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #FCDA12;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.opn .pat-q-text {
  font-size: 16px;
  line-height: 1.75;
  color: #2A051A;
  padding-top: 8px
}

.opn .pat-q-text em {
  font-style: italic;
  font-size: 19px;
  color: #2A051A
}

.opn .pat-q-attr {
  margin-top: 16px;
  font-size: 16px;
  color: #00A9B5;
  font-weight: 600
}

.opn .pat-q-check {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 20px;
  height: 20px
}

.opn .pat-aside {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.opn .pat-stat-card {
  border-radius: 16px;
  padding: 32px 16px;
  background: linear-gradient(155deg, #2A051A 0%, #4a0a30 100%);
  box-shadow: 1px 9px 36px -2px #2a051a1c;
  text-align: center
}

.opn .pat-stat-num {
  font-size: 44px;
  line-height: 1.1;
  color: #FCDA12;
  font-weight: 800;
  display: block
}

.opn .pat-stat-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffbf;
  margin-top: 8px
}

.opn .pat-img-wrap {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 6px 22px -2px #2a051a14
}

.opn .pat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.opn .pat-img-wrap:hover img {
  transform: scale(1.05)
}

.opn .pat-pattern-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.opn .pat-pl-item {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.55;
  color: #2A051A
}

@media (max-width: 1280px) {
  .opn .title-band .pg-wrap {
    gap: 32px
  }

  .opn .title-img-frame {
    width: 260px;
    height: 200px
  }

  .opn .approach .pg-wrap {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .opn .approach-side {
    flex-direction: row;
    align-items: flex-start
  }

  .opn .approach-img-wrap {
    flex: 1 1 auto;
    height: 180px
  }

  .opn .float-card {
    flex: 0 0 240px
  }
}

@media (max-width: 768px) {
  .opn .title-band .pg-wrap {
    flex-direction: column;
    gap: 32px
  }

  .opn .title-img-frame {
    width: 100%;
    height: 200px
  }

  .opn .title-h1 {
    font-size: 32px
  }

  .opn .title-h1 em {
    font-size: 36px
  }

  .opn .title-desc {
    text-align: left
  }

  .opn .approach-body {
    flex-direction: column;
    gap: 16px
  }

  .opn .approach-aside {
    flex: 0 0 auto
  }

  .opn .approach-side {
    flex-direction: column
  }

  .opn .float-card {
    flex: 0 0 auto;
    width: 100%
  }

  .opn .audience-top {
    flex-direction: column;
    gap: 16px
  }

  .opn .audience-intro {
    flex: 0 0 auto;
    text-align: left
  }

  .opn .audience-grid {
    grid-template-columns: 1fr
  }

  .opn .audience-img-strip {
    grid-template-columns: 1fr
  }

  .opn .team .pg-wrap {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .opn .team-img-wrap {
    height: 200px
  }

  .opn .qual-list {
    grid-template-columns: 1fr
  }

  .opn .sit-header {
    flex-direction: column;
    gap: 16px
  }

  .opn .sit-intro {
    text-align: left
  }

  .opn .sit-diagram {
    grid-template-columns: 1fr
  }

  .opn .sit-item {
    grid-template-columns: 28px 1fr
  }

  .opn .sit-tag {
    display: none
  }

  .opn .pat-header {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .opn .pat-intro {
    text-align: left
  }

  .opn .pat-body {
    grid-template-columns: 1fr
  }

  .opn .pat-aside {
    flex-direction: row;
    flex-wrap: wrap
  }

  .opn .pat-stat-card {
    flex: 1 1 140px
  }

  .opn .pat-img-wrap {
    flex: 1 1 200px;
    height: 160px
  }
}

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

.abt-us .drift-spot {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #fcda1221 0%, #fcda1200 70%);
  pointer-events: none;
  animation: spotDrift 18s ease-in-out infinite alternate;
  top: 0;
  left: -80px;
  z-index: 0
}

@keyframes spotDrift {
  0% {
    transform: translate(0, 0);
    opacity: .7
  }

  50% {
    transform: translate(60px, 120px);
    opacity: 1
  }

  100% {
    transform: translate(20px, 60px);
    opacity: .6
  }
}

.abt-us .title-strip {
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1
}

.abt-us .title-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#2a051a0f 1px, transparent 1px), linear-gradient(90deg, #2a051a0f 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  border-radius: 16px
}

.abt-us .img-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 9px 36px -2px #2a051a1c;
  padding: 0
}

.abt-us .img-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.15);
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1), filter .5s ease-in-out
}

.abt-us .img-card:hover img {
  transform: scale(1.04);
  filter: grayscale(80%) contrast(1.1)
}

.abt-us .img-card .img-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #2a051ad1;
  color: #FCDA12;
  font-size: 16px;
  line-height: 1.3;
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: .04em;
  text-transform: uppercase
}

.abt-us .manifesto {
  padding: 32px 0 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.abt-us .manifesto-eyebrow {
  font-size: 16px;
  line-height: 1.3;
  color: #00A9B5;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0
}

.abt-us .manifesto-h1 {
  font-size: 70px;
  line-height: 1.1;
  color: #2A051A;
  margin: 0
}

.abt-us .manifesto-h1 .marked {
  background: linear-gradient(180deg, transparent 55%, #fcda12b3 55%);
  padding: 0 4px
}

.abt-us .manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt-us .manifesto-body p {
  font-size: 19px;
  line-height: 1.55;
  color: #2A051A;
  margin: 0
}

.abt-us .manifesto-body em {
  font-size: 19px;
  font-style: italic;
  color: #2A051A
}

.abt-us .manifesto-founded {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-top: 2px solid #00a9b540;
  padding-top: 16px
}

.abt-us .founded-year {
  font-size: 44px;
  line-height: 1.1;
  color: #00A9B5;
  font-weight: 700
}

.abt-us .founded-note {
  font-size: 16px;
  line-height: 1.55;
  color: #2A051A;
  max-width: 180px
}

.abt-us .story-band {
  background: #2A051A;
  width: 100%;
  position: relative
}

.abt-us .story-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.abt-us .story-left {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.abt-us .story-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #FCDA12;
  margin: 0;
  position: relative;
  display: inline-block
}

.abt-us .story-h2::after {
  content: "";
  display: block;
  height: 4px;
  width: 0;
  background: #00A9B5;
  border-radius: 6px;
  margin-top: 8px;
  animation: lineIn .7s cubic-bezier(0.22, 1, 0.36, 1) .4s forwards
}

@keyframes lineIn {
  to {
    width: 100%
  }
}

.abt-us .story-aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 2px solid #fcda1233;
  padding-right: 16px
}

.abt-us .aside-label {
  font-size: 16px;
  line-height: 1.3;
  color: #fcda1299;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0
}

.abt-us .aside-note {
  font-size: 16px;
  line-height: 1.55;
  color: #fcda12d9;
  margin: 0
}

.abt-us .story-para {
  font-size: 19px;
  line-height: 1.75;
  color: #ffffffe0;
  margin: 0
}

.abt-us .story-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px
}

.abt-us .metrics-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.abt-us .metric-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 16px;
  border-radius: 16px;
  background: #fcda1212;
  box-shadow: inset 0 4px 6px #2a051a2e;
  transition: background .5s ease-in-out
}

.abt-us .metric-item:hover {
  background: #fcda1224
}

.abt-us .metric-num {
  font-size: 44px;
  line-height: 1.1;
  color: #FCDA12;
  margin: 0
}

.abt-us .metric-lbl {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffffbf;
  margin: 0
}

.abt-us .story-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 1px 6px 22px -2px #2a051a14
}

.abt-us .story-img-wrap img {
  width: 100%;
  height: 240px;
  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-para-right {
  font-size: 19px;
  line-height: 1.55;
  color: #fffc;
  margin: 0;
  text-align: right
}

.abt-us .approach-strip {
  background: linear-gradient(160deg, #00a9b512 0%, #ffff 60%);
  width: 100%;
  position: relative
}

.abt-us .approach-strip .blueprint-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#00a9b517 1px, transparent 1px), linear-gradient(90deg, #00a9b517 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none
}

.abt-us .approach-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 32px;
  position: relative;
  z-index: 1
}

.abt-us .approach-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
  max-width: 600px
}

.abt-us .approach-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #2A051A;
  margin: 0
}

.abt-us .approach-h2 .marked {
  background: linear-gradient(180deg, transparent 55%, #fcda12bf 55%);
  padding: 0 4px
}

.abt-us .approach-sub {
  font-size: 19px;
  line-height: 1.55;
  color: #2A051A;
  margin: 0
}

.abt-us .approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.abt-us .appr-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 1px 6px 22px -2px #2a051a14;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), transform .55s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative
}

.abt-us .appr-card:hover {
  box-shadow: 1px 9px 36px -2px #2a051a1c;
  transform: translateY(-4px)
}

.abt-us .appr-card.active {
  background: #2A051A
}

.abt-us .appr-card.active .appr-title {
  color: #FCDA12
}

.abt-us .appr-card.active .appr-text {
  color: #ffffffd1
}

.abt-us .appr-card.active .appr-icon-wrap {
  background: #fcda1226
}

.abt-us .appr-card:not(.active) {
  filter: saturate(0.6)
}

.abt-us .appr-card:hover {
  filter: saturate(1)
}

.abt-us .appr-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #00a9b51a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.abt-us .appr-icon {
  width: 24px;
  height: 24px
}

.abt-us .appr-title {
  font-size: 19px;
  line-height: 1.3;
  color: #2A051A;
  margin: 0
}

.abt-us .appr-text {
  font-size: 16px;
  line-height: 1.75;
  color: #2A051A;
  margin: 0
}

.abt-us .team-strip {
  width: 100%;
  background: #fff;
  position: relative
}

.abt-us .team-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 32px
}

.abt-us .team-top {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px
}

.abt-us .team-h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #2A051A;
  margin: 0 0 16px;
  position: relative;
  display: inline-block
}

.abt-us .team-h2::after {
  content: "";
  display: block;
  height: 4px;
  width: 0;
  background: #FCDA12;
  border-radius: 6px;
  margin-top: 8px;
  animation: lineIn .7s cubic-bezier(0.22, 1, 0.36, 1) .6s forwards
}

.abt-us .team-desc {
  font-size: 19px;
  line-height: 1.55;
  color: #2A051A;
  margin: 0
}

.abt-us .team-img-side {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 1px 9px 36px -2px #2a051a1c
}

.abt-us .team-img-side img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt-us .team-img-side:hover img {
  transform: scale(1.04)
}

.abt-us .team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.abt-us .member-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 16px;
  background: linear-gradient(160deg, #00a9b50d 0%, #fcda120d 100%);
  box-shadow: 1px 1px 5px -2px #2a051a0f;
  transition: box-shadow .5s ease-in-out
}

.abt-us .member-card:hover {
  box-shadow: 1px 6px 22px -2px #2a051a14
}

.abt-us .member-photo {
  width: 80px;
  height: 80px;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 1px 6px 22px -2px #2a051a14;
  flex-shrink: 0
}

.abt-us .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.abt-us .member-card:hover .member-photo img {
  transform: scale(1.08)
}

.abt-us .member-name {
  font-size: 19px;
  line-height: 1.3;
  color: #2A051A;
  margin: 0
}

.abt-us .member-role {
  font-size: 16px;
  line-height: 1.3;
  color: #00A9B5;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0
}

.abt-us .member-bio {
  font-size: 16px;
  line-height: 1.75;
  color: #2A051A;
  margin: 0
}

@media (max-width: 1280px) {
  .abt-us .title-strip {
    grid-template-columns: 260px 1fr;
    gap: 32px
  }

  .abt-us .manifesto-h1 {
    font-size: 44px
  }

  .abt-us .story-inner {
    gap: 32px
  }

  .abt-us .team-top {
    grid-template-columns: 1fr 360px;
    gap: 32px
  }
}

@media (max-width: 768px) {
  .abt-us .title-strip {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px
  }

  .abt-us .manifesto {
    padding: 0
  }

  .abt-us .manifesto-h1 {
    font-size: 32px
  }

  .abt-us .story-inner {
    grid-template-columns: 1fr;
    padding: 32px 16px
  }

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

  .abt-us .approach-inner {
    padding: 32px 16px
  }

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

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

  .abt-us .team-inner {
    padding: 32px 16px
  }

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

.ctus {
  background: #fff;
  overflow-x: clip;
  padding: 0
}

.ctus .band-top {
  padding: 64px 32px 32px;
  max-width: 1024px;
  margin: 0 auto;
  position: relative
}

.ctus .frame-lines {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  bottom: 0;
  pointer-events: none
}

.ctus .frame-lines::before,
.ctus .frame-lines::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: #2A051A;
  border-style: solid
}

.ctus .frame-lines::before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px
}

.ctus .frame-lines::after {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0
}

.ctus .frame-btm::before,
.ctus .frame-btm::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: #2A051A;
  border-style: solid;
  position: absolute
}

.ctus .frame-btm {
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 40px;
  pointer-events: none
}

.ctus .frame-btm::before {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
  width: 40px;
  height: 40px
}

.ctus .frame-btm::after {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
  width: 40px;
  height: 40px
}

.ctus .top-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  padding: 32px 0
}

.ctus .strip-text {
  flex: 1
}

.ctus .strip-label {
  font-size: 16px;
  line-height: 1.55;
  color: #00A9B5;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.ctus .strip-h1 {
  font-size: 44px;
  line-height: 1.1;
  color: #2A051A;
  margin-bottom: 16px
}

.ctus .strip-desc {
  font-size: 19px;
  line-height: 1.55;
  color: #3d1a2e;
  max-width: 480px
}

.ctus .strip-img-wrap {
  width: 280px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 1px 6px 22px -2px #2a051a14
}

.ctus .strip-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1);
  filter: contrast(1.08) brightness(0.97)
}

.ctus .strip-img-wrap:hover img {
  transform: scale(1.06)
}

.ctus .svg-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.ctus .svg-divider svg {
  display: block;
  width: 100%
}

.ctus .contact-mid {
  background: radial-gradient(ellipse at 30% 60%, #2a051a12 0%, #fcda120f 55%, #fff0 100%);
  padding: 64px 32px
}

.ctus .mid-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start
}

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

.ctus .info-heading {
  font-size: 32px;
  line-height: 1.3;
  color: #2A051A;
  position: relative;
  padding-bottom: 16px
}

.ctus .info-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #FCDA12;
  transition: width .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.ctus .info-heading:hover::after {
  width: 100%
}

.ctus .info-note {
  font-size: 16px;
  line-height: 1.75;
  color: #5a2d48
}

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

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

.ctus .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #2A051A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ctus .ci-icon svg {
  width: 18px;
  height: 18px
}

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

.ctus .ci-label {
  font-size: 16px;
  line-height: 1.3;
  color: #2A051A;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase
}

.ctus .ci-val {
  font-size: 16px;
  line-height: 1.55;
  color: #3d1a2e
}

.ctus .ci-val a {
  color: #00A9B5;
  text-decoration: none;
  transition: color .45s ease-in-out
}

.ctus .ci-val a:hover {
  color: #2A051A
}

.ctus .guides-nudge {
  border-radius: 16px;
  background: #2A051A;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 1px 9px 36px -2px #2a051a1c
}

.ctus .nudge-lbl {
  font-size: 16px;
  line-height: 1.3;
  color: #FCDA12;
  letter-spacing: .1em;
  text-transform: uppercase
}

.ctus .nudge-text {
  font-size: 19px;
  line-height: 1.55;
  color: #f5e8ef
}

.ctus .nudge-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.3;
  color: #FCDA12;
  text-decoration: none;
  font-weight: 700;
  transition: gap .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.ctus .nudge-link:hover {
  gap: 16px
}

.ctus .nudge-link svg {
  width: 16px;
  height: 16px
}

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

.ctus .form-head {
  font-size: 32px;
  line-height: 1.3;
  color: #2A051A;
  position: relative;
  padding-bottom: 16px
}

.ctus .form-head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: #00A9B5
}

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

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

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

.ctus .fgrp label {
  font-size: 16px;
  line-height: 1.3;
  color: #2A051A;
  font-weight: 700
}

.ctus .fgrp input,
.ctus .fgrp select,
.ctus .fgrp textarea {
  width: 100%;
  padding: 16px;
  border-radius: 6px;
  border: 1.5px solid #2a051a33;
  background: #fff;
  font-size: 16px;
  line-height: 1.55;
  color: #2A051A;
  box-shadow: inset 2px 3px 6px #2a051a0a;
  transition: border-color .45s ease-in-out, box-shadow .45s ease-in-out;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none
}

.ctus .fgrp input::placeholder,
.ctus .fgrp textarea::placeholder {
  color: #2a051a59;
  font-size: 16px
}

.ctus .fgrp input:focus,
.ctus .fgrp select:focus,
.ctus .fgrp textarea:focus {
  outline: none;
  border-color: #00A9B5;
  box-shadow: inset 2px 3px 6px #2a051a0a 0 0 0 3px #00a9b526
}

.ctus .fgrp textarea {
  min-height: 100px;
  resize: vertical
}

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

.ctus .fgrp-full label {
  font-size: 16px;
  line-height: 1.3;
  color: #2A051A;
  font-weight: 700
}

.ctus .budget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.ctus .budget-opt {
  position: relative
}

.ctus .budget-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none
}

.ctus .budget-opt label {
  display: block;
  padding: 16px;
  border-radius: 6px;
  border: 1.5px solid #2a051a2e;
  font-size: 16px;
  line-height: 1.3;
  color: #2A051A;
  cursor: pointer;
  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);
  text-align: center;
  background: #fff;
  font-weight: 400
}

.ctus .budget-opt input[type="radio"]:checked+label {
  border-color: #2A051A;
  background: #2A051A;
  color: #FCDA12;
  font-weight: 700
}

.ctus .budget-opt label:hover {
  border-color: #00A9B5;
  background: #00a9b50f
}

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

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

.ctus .privacy-row span {
  font-size: 16px;
  line-height: 1.55;
  color: #3d1a2e
}

.ctus .privacy-row a {
  color: #00A9B5;
  text-decoration: underline;
  transition: color .45s ease-in-out
}

.ctus .privacy-row a:hover {
  color: #2A051A
}

.ctus .submit-btn {
  position: relative;
  overflow: hidden;
  padding: 16px 32px;
  border-radius: 6px;
  background: #2A051A;
  color: #FCDA12;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: .04em;
  transition: color .5s cubic-bezier(0.22, 1, 0.36, 1);
  align-self: flex-start
}

.ctus .submit-btn::before {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: #00A9B5;
  transition: bottom .55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0
}

.ctus .submit-btn:hover::before {
  bottom: 0
}

.ctus .submit-btn:hover {
  color: #2A051A
}

.ctus .submit-btn span {
  position: relative;
  z-index: 1
}

.ctus .submit-btn:focus {
  outline: 3px solid #00A9B5;
  outline-offset: 3px
}

.ctus .svg-divider2 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: scaleY(-1)
}

.ctus .svg-divider2 svg {
  display: block;
  width: 100%
}

.ctus .addr-strip {
  background: #2A051A;
  padding: 64px 32px;
  position: relative;
  overflow: hidden
}

.ctus .addr-strip::before {
  content: '';
  position: absolute;
  top: -64px;
  right: -64px;
  width: 280px;
  height: 280px;
  border-radius: 44px;
  background: #fcda120f;
  pointer-events: none
}

.ctus .addr-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px
}

.ctus .addr-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ctus .addr-h2 {
  font-size: 32px;
  line-height: 1.3;
  color: #FCDA12
}

.ctus .addr-body {
  font-size: 19px;
  line-height: 1.75;
  color: #fcda12bf
}

.ctus .addr-aside {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ctus .aside-note {
  font-size: 16px;
  line-height: 1.55;
  color: #ffffff8c;
  font-style: italic
}

.ctus .aside-metric {
  border-radius: 16px;
  border: 1px solid #fcda1233;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ctus .metric-num {
  font-size: 44px;
  line-height: 1.1;
  color: #FCDA12;
  font-weight: 700
}

.ctus .metric-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #fff9
}

@keyframes fadeBlurIn {
  from {
    opacity: 0;
    filter: blur(8px)
  }

  to {
    opacity: 1;
    filter: blur(0)
  }
}

.ctus .band-top {
  animation: fadeBlurIn .7s cubic-bezier(0.22, 1, 0.36, 1) both
}

.ctus .contact-mid {
  animation: fadeBlurIn .65s cubic-bezier(0.22, 1, 0.36, 1) .15s both
}

.ctus .addr-strip {
  animation: fadeBlurIn .65s cubic-bezier(0.22, 1, 0.36, 1) .25s both
}

@media (max-width: 1280px) {
  .ctus .mid-inner {
    gap: 32px
  }

  .ctus .addr-inner {
    gap: 32px
  }
}

@media (max-width: 768px) {
  .ctus .top-strip {
    flex-direction: column;
    gap: 32px
  }

  .ctus .strip-img-wrap {
    width: 100%;
    height: 200px
  }

  .ctus .strip-h1 {
    font-size: 32px
  }

  .ctus .mid-inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

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

  .ctus .budget-grid {
    grid-template-columns: 1fr 1fr
  }

  .ctus .addr-inner {
    flex-direction: column;
    gap: 32px
  }

  .ctus .addr-aside {
    width: 100%
  }

  .ctus .band-top {
    padding: 32px 16px
  }

  .ctus .contact-mid {
    padding: 32px 16px
  }

  .ctus .addr-strip {
    padding: 32px 16px
  }

  .ctus .frame-lines {
    left: 16px;
    right: 16px
  }

  .ctus .frame-btm {
    left: 16px;
    right: 16px
  }
}

.success-pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  background: linear-gradient(160deg, #fff 60%, #00a9b512 100%)
}

.success-pg .card {
  max-width: 1024px;
  width: 100%;
  background: #fff;
  border-radius: 28px;
  padding: 64px;
  box-shadow: 1px 9px 36px -2px #2a051a1c;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.success-pg .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 44px;
  background: linear-gradient(135deg, #00a9b51f 0%, #fcda1226 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow: inset 0 3px 6px #2a051a0f
}

.success-pg .check-svg {
  width: 36px;
  height: 36px
}

.success-pg .headline {
  font-size: 44px;
  line-height: 1.1;
  color: #2A051A;
  margin-bottom: 16px;
  letter-spacing: -.5px
}

.success-pg .subtext {
  font-size: 19px;
  line-height: 1.55;
  color: #3a1a2e;
  max-width: 520px;
  margin-bottom: 32px
}

.success-pg .divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #FCDA12, #00A9B5);
  border-radius: 6px;
  margin-bottom: 32px
}

.success-pg .note {
  font-size: 16px;
  line-height: 1.75;
  color: #5a3a4e;
  max-width: 440px;
  margin-bottom: 32px
}

.success-pg .back-btn {
  display: inline-block;
  padding: 16px 32px;
  background: #2A051A;
  color: #FCDA12;
  font-size: 16px;
  line-height: 1.3;
  border-radius: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .55s cubic-bezier(0.22, 1, 0.36, 1), color .45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s ease-in-out;
  box-shadow: 1px 6px 22px -2px #2a051a14;
  position: relative;
  overflow: hidden
}

.success-pg .back-btn:hover {
  background: #00A9B5;
  color: #fff;
  box-shadow: 1px 9px 36px -2px #2a051a1c
}

.success-pg .back-btn:focus {
  outline: 2px solid #00A9B5;
  outline-offset: 3px
}

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

  .success-pg .headline {
    font-size: 32px
  }

  .success-pg .subtext {
    font-size: 16px
  }
}