html {
  box-sizing: border-box
}

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

body {
  margin: 0;
  padding: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
  background: #fff;
  color: #1F1F38;
  font-size: 16px;
  line-height: 1.7
}

.top-bar {
  background: linear-gradient(135deg, #03f99214 0%, #edeff31f 100%);
  border-bottom: 1px solid #03f99226;
  padding: 12px 0
}

.top-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.trust-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #1F1F38;
  font-weight: 400
}

.trust-icon {
  width: 20px;
  height: 20px;
  background: #03F992;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #1F1F38
}

.quick-contact {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap
}

.quick-contact a {
  font-size: 14px;
  color: #1F1F38;
  text-decoration: none;
  transition: color .18s ease-out;
  display: flex;
  align-items: center;
  gap: 8px
}

.quick-contact a:hover {
  color: #03F992
}

.quick-contact a:focus {
  outline: 3px solid #03F992;
  outline-offset: 4px
}

.contact-icon-svg {
  width: 16px;
  height: 16px;
  fill: currentColor
}

.primary-header {
  background: #fff;
  padding: 40px 0 20px;
  position: relative
}

.header-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  background: #edeff359;
  border-radius: 34px;
  box-shadow: -1px 5px 25px 0 #1f1f3814;
  border: 1px solid #03f9921f;
  overflow: hidden
}

.logo-area {
  padding: 40px 40px 20px;
  border-bottom: 2px solid #03f99233;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative
}

.logo-container {
  background: #ffffffd9;
  padding: 20px;
  border-radius: 20px;
  box-shadow: -1px 2px 2px 0 #1f1f380d 0 0 0 1px #03f9922e;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center
}

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

.nav-area {
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-link {
  font-size: 16px;
  color: #1F1F38;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 11px;
  transition: background-color .2s ease-out, color .2s ease-out, box-shadow .22s ease-out;
  font-weight: 400;
  display: inline-block;
  background: #fff9;
  border: 1px solid transparent
}

.nav-link:hover {
  background: #03f99226;
  color: #1F1F38;
  box-shadow: -1px 2px 2px 0 #03f9920d;
  border-color: #03f9924d
}

.nav-link:focus {
  outline: 3px solid #03F992;
  outline-offset: 4px
}

.nav-link.active-page {
  background: #03F992;
  color: #1F1F38;
  font-weight: 700;
  box-shadow: -1px 5px 25px 0 #03f99214
}

@media (max-width: 960px) {
  .top-bar-inner {
    flex-direction: column;
    text-align: center
  }

  .quick-contact {
    justify-content: center
  }

  .header-container {
    border-radius: 20px
  }

  .logo-area {
    padding: 20px 20px 12px
  }

  .nav-area {
    padding: 12px 20px 20px
  }

  .primary-nav {
    gap: 8px 12px
  }

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

@media (max-width: 480px) {
  .top-bar {
    padding: 8px 0
  }

  .trust-indicator {
    font-size: 12px
  }

  .quick-contact {
    gap: 12px
  }

  .quick-contact a {
    font-size: 12px
  }

  .primary-header {
    padding: 20px 0 12px
  }

  .header-container {
    border-radius: 11px
  }

  .logo-area {
    padding: 12px 12px 8px
  }

  .logo-container {
    padding: 12px;
    border-radius: 11px
  }

  .logo-img {
    width: 50px;
    height: 50px
  }

  .nav-area {
    padding: 8px 12px 12px
  }

  .primary-nav {
    flex-direction: column;
    width: 100%
  }

  .nav-link {
    width: 100%;
    text-align: center
  }
}

.primary-footer {
  background: linear-gradient(180deg, #fff 0%, #edeff380 100%);
  border-top: 2px solid #03f99233;
  padding: 80px 0 40px;
  margin-top: 80px
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px 80px;
  margin-bottom: 80px
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.footer-logo-box {
  background: #ffffffe6;
  padding: 20px;
  border-radius: 20px;
  box-shadow: -1px 2px 2px 0 #1f1f380d 0 0 0 1px #03f99226;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start
}

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

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: #1F1F38;
  margin: 0;
  max-width: 360px
}

.footer-address {
  font-size: 14px;
  line-height: 1.7;
  color: #1F1F38;
  font-style: normal
}

.footer-address-line {
  display: block;
  margin-bottom: 4px
}

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

.footer-contact-link {
  font-size: 14px;
  color: #1F1F38;
  text-decoration: none;
  transition: color .19s ease-out, transform .19s ease-out;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.footer-contact-link:hover {
  color: #03F992;
  transform: translateX(4px)
}

.footer-contact-link:focus {
  outline: 3px solid #03F992;
  outline-offset: 4px
}

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

.footer-nav-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #1F1F38;
  margin: 0 0 12px
}

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

.footer-nav-link {
  font-size: 14px;
  color: #1F1F38;
  text-decoration: none;
  transition: color .21s ease-out, padding-left .21s ease-out;
  display: inline-block;
  padding-left: 0
}

.footer-nav-link:hover {
  color: #03F992;
  padding-left: 8px
}

.footer-nav-link:focus {
  outline: 3px solid #03F992;
  outline-offset: 4px
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #03f9924d 50%, transparent 100%);
  border: none;
  margin: 40px 0
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px
}

.footer-copyright {
  font-size: 14px;
  color: #1F1F38;
  margin: 0
}

.footer-legal-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0
}

.footer-legal-link {
  font-size: 14px;
  color: #1F1F38;
  text-decoration: none;
  transition: color .17s ease-out;
  position: relative
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #03F992;
  transition: width .25s ease-out
}

.footer-legal-link:hover {
  color: #03F992
}

.footer-legal-link:hover::after {
  width: 100%
}

.footer-legal-link:focus {
  outline: 3px solid #03F992;
  outline-offset: 4px
}

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

  .footer-brand-col {
    grid-column: 1 / -1
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .footer-legal-nav {
    justify-content: center
  }
}

@media (max-width: 480px) {
  .primary-footer {
    padding: 40px 0 20px;
    margin-top: 40px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px
  }

  .footer-logo-box {
    padding: 12px;
    border-radius: 11px
  }

  .footer-logo {
    width: 50px;
    height: 50px
  }

  .footer-tagline {
    font-size: 12px
  }

  .footer-address {
    font-size: 12px
  }

  .footer-contact-link {
    font-size: 12px
  }

  .footer-nav-heading {
    font-size: 12px
  }

  .footer-nav-link {
    font-size: 12px
  }

  .footer-divider {
    margin: 20px 0
  }

  .footer-copyright {
    font-size: 12px
  }

  .footer-legal-link {
    font-size: 12px
  }
}

.consent-bar {
  position: fixed;
  top: 20px;
  right: 20px;
  max-width: 420px;
  background: #fff;
  border-radius: 20px;
  box-shadow: -1px 9px 44px 0 #1f1f381a 0 0 0 1px #03f99226;
  padding: 40px;
  z-index: 1500;
  display: none;
  transform: translateX(500px);
  transition: transform .42s ease-out
}

.consent-bar.reveal {
  transform: translateX(0)
}

.consent-text {
  font-size: 14px;
  line-height: 1.7;
  color: #1F1F38;
  margin: 0 0 20px
}

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

.consent-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  border-radius: 11px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease-out, box-shadow .24s ease-out, border-color .18s ease-out, transform .18s ease-out
}

.accept-all-btn {
  background: #03F992;
  color: #1F1F38;
  border-color: #03F992
}

.accept-all-btn:hover {
  background: #03f992d9;
  box-shadow: -1px 5px 25px 0 #03f99214;
  transform: translateY(-2px)
}

.accept-all-btn:focus {
  outline: 3px solid #03F992;
  outline-offset: 4px
}

.decline-all-btn {
  background: #edeff3cc;
  color: #1F1F38;
  border-color: #1f1f3826
}

.decline-all-btn:hover {
  background: #edeff3ff;
  border-color: #1f1f384d;
  box-shadow: -1px 2px 2px 0 #1f1f380d;
  transform: translateY(-2px)
}

.decline-all-btn:focus {
  outline: 3px solid #03F992;
  outline-offset: 4px
}

@media (max-width: 480px) {
  .consent-bar {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    transform: translateY(500px)
  }

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

  .consent-text {
    font-size: 12px;
    margin: 0 0 12px
  }

  .consent-actions {
    flex-direction: column
  }

  .consent-btn {
    width: 100%;
    min-width: auto
  }
}

.xw-content-legal {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 20px;
  background: #fff
}

.xw-content-legal h1 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 40px;
  color: #1F1F38
}

.xw-content-legal h2 {
  font-size: 26px;
  line-height: 1.4;
  margin: 80px 0 20px;
  color: #1F1F38
}

.xw-content-legal h3 {
  font-size: 20px;
  line-height: 1.4;
  margin: 40px 0 12px;
  color: #1F1F38
}

.xw-content-legal h4 {
  font-size: 16px;
  line-height: 1.4;
  margin: 20px 0 12px;
  color: #1F1F38;
  font-weight: 600
}

.xw-content-legal h5 {
  font-size: 16px;
  line-height: 1.4;
  margin: 20px 0 8px;
  color: #1F1F38
}

.xw-content-legal h6 {
  font-size: 14px;
  line-height: 1.4;
  margin: 20px 0 8px;
  color: #1F1F38;
  text-transform: uppercase;
  letter-spacing: .05em
}

.xw-content-legal p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  color: #1F1F38
}

.xw-content-legal em,
.xw-content-legal i {
  font-style: italic
}

.xw-content-legal a {
  color: #1F1F38;
  text-decoration: underline;
  text-decoration-color: #03f99266;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: text-decoration-color .18s ease-out
}

.xw-content-legal a:hover {
  text-decoration-color: #03F992
}

.xw-content-legal table {
  width: 100%;
  margin: 40px 0;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: -1px 2px 2px 0 #1f1f380d;
  border-radius: 11px;
  overflow: hidden
}

.xw-content-legal thead {
  background: #03f99214
}

.xw-content-legal thead tr {
  border-bottom: 2px solid #03f99233
}

.xw-content-legal th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  color: #1F1F38
}

.xw-content-legal tbody tr {
  border-bottom: 1px solid #1f1f3814;
  transition: background .2s ease-out
}

.xw-content-legal tbody tr:last-child {
  border-bottom: none
}

.xw-content-legal tbody tr:hover {
  background: #edeff34d
}

.xw-content-legal td {
  padding: 20px;
  color: #1F1F38
}

.xw-content-legal div {
  margin: 20px 0
}

@media (max-width: 960px) {
  .xw-content-legal {
    padding: 40px 20px
  }

  .xw-content-legal h1 {
    font-size: 26px;
    margin: 0 0 20px
  }

  .xw-content-legal h2 {
    font-size: 20px;
    margin: 40px 0 12px
  }

  .xw-content-legal h3 {
    font-size: 16px;
    margin: 20px 0 12px
  }

  .xw-content-legal table {
    font-size: 14px;
    margin: 20px 0
  }

  .xw-content-legal th,
  .xw-content-legal td {
    padding: 12px
  }
}

@media (max-width: 480px) {
  .xw-content-legal {
    padding: 20px 12px
  }

  .xw-content-legal table {
    display: block;
    overflow-x: auto;
    border-radius: 11px
  }

  .xw-content-legal thead {
    display: none
  }

  .xw-content-legal tbody,
  .xw-content-legal tr,
  .xw-content-legal td {
    display: block
  }

  .xw-content-legal tr {
    margin: 0 0 20px;
    padding: 12px;
    background: #edeff333;
    border-radius: 11px;
    border-bottom: none
  }

  .xw-content-legal td {
    padding: 8px 0;
    border-bottom: 1px solid #1f1f380f
  }

  .xw-content-legal td:last-child {
    border-bottom: none
  }

  .xw-content-legal td:before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin: 0 0 4px;
    font-size: 14px
  }
}

.reach-out {
  background: #FFF;
  color: #1F1F38;
  max-width: 100%;
  overflow-x: clip
}

.reach-out .intro-stage {
  position: relative;
  padding: 80px 20px;
  background: radial-gradient(circle at 85% 15%, #03f9921f 0%, #fff0 55%);
  overflow: hidden
}

.reach-out .intro-stage::before {
  content: '';
  position: absolute;
  top: 12%;
  right: 8%;
  width: 8px;
  height: 8px;
  background: #03f99266;
  border-radius: 34px
}

.reach-out .intro-stage::after {
  content: '';
  position: absolute;
  top: 18%;
  right: 12%;
  width: 4px;
  height: 4px;
  background: #03f99240;
  border-radius: 34px
}

.reach-out .intro-contain {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center
}

.reach-out .intro-visual {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -1px 9px 44px 0 #1f1f381a
}

.reach-out .intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.reach-out .intro-visual::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, #1f1f38b3 0%, transparent 100%);
  z-index: 1
}

.reach-out .intro-text h1 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #1F1F38
}

.reach-out .intro-text h1 span {
  color: #03F992;
  font-style: italic
}

.reach-out .intro-text p {
  font-size: 20px;
  line-height: 1.7;
  margin: 0;
  color: #1f1f38d9;
  max-width: 580px
}

.reach-out .intro-dots {
  position: absolute;
  bottom: 15%;
  left: 6%;
  display: flex;
  gap: 8px;
  align-items: center
}

.reach-out .intro-dots span {
  width: 6px;
  height: 6px;
  background: #03f9924d;
  border-radius: 34px;
  display: block
}

.reach-out .intro-dots span:nth-child(2) {
  width: 10px;
  height: 10px;
  background: #03f99280
}

.reach-out .details-zone {
  padding: 80px 20px;
  background: linear-gradient(343deg, #03f99214 0%, #edeff34d 45%, #fff0 100%);
  position: relative
}

.reach-out .details-zone::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(circle, #1f1f3808 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none
}

.reach-out .details-hold {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px
}

.reach-out .details-left {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.reach-out .detail-card {
  background: #FFF;
  padding: 40px;
  border-radius: 11px;
  box-shadow: -1px 5px 25px 0 #1f1f3814;
  transition: box-shadow .22s ease-out, transform .19s ease-out
}

.reach-out .detail-card:hover {
  box-shadow: -1px 9px 44px 0 #1f1f381a;
  transform: translateY(-2px)
}

.reach-out .detail-card h2 {
  font-size: 26px;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #1F1F38;
  font-style: italic
}

.reach-out .detail-card p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  color: #1f1f38cc
}

.reach-out .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.reach-out .info-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #1F1F38
}

.reach-out .info-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #03F992;
  border-radius: 34px;
  margin-top: 10px;
  flex-shrink: 0
}

.reach-out .info-list a {
  color: #1F1F38;
  text-decoration: none;
  transition: color .18s ease-out
}

.reach-out .info-list a:hover {
  color: #03F992
}

.reach-out .quote-aside {
  background: #edeff366;
  padding: 40px;
  border-radius: 11px;
  border-left: 4px solid #03F992
}

.reach-out .quote-aside p {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  color: #1F1F38;
  font-style: italic
}

.reach-out .form-stage {
  padding: 80px 20px;
  background: #FFF
}

.reach-out .form-wrap {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px
}

.reach-out .form-intro h2 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #1F1F38
}

.reach-out .form-intro h2 span {
  color: #03F992
}

.reach-out .form-intro p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: #1f1f38cc;
  max-width: 520px
}

.reach-out .form-container {
  background: #FFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: -1px 5px 25px 0 #1f1f3814
}

.reach-out .form-container form {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.reach-out .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px
}

.reach-out .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.reach-out .field-group label {
  font-size: 14px;
  line-height: 1.4;
  color: #1F1F38;
  font-weight: 600
}

.reach-out .field-group input[type="text"],
.reach-out .field-group input[type="email"],
.reach-out .field-group input[type="tel"] {
  padding: 12px 20px;
  font-size: 16px;
  line-height: 1.4;
  border: 1px solid #1f1f3833;
  border-radius: 11px;
  background: #FFF;
  color: #1F1F38;
  transition: border-color .17s ease-out, box-shadow .17s ease-out
}

.reach-out .field-group input[type="text"]:focus,
.reach-out .field-group input[type="email"]:focus,
.reach-out .field-group input[type="tel"]:focus {
  outline: none;
  border-color: #03F992;
  box-shadow: 0 0 0 3px #03f9921a
}

.reach-out .budget-select {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.reach-out .budget-select legend {
  font-size: 14px;
  line-height: 1.4;
  color: #1F1F38;
  font-weight: 600;
  margin-bottom: 4px
}

.reach-out .budget-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px
}

.reach-out .budget-option {
  position: relative
}

.reach-out .budget-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.reach-out .budget-option label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #edeff34d;
  border: 2px solid #1f1f381a;
  border-radius: 11px;
  cursor: pointer;
  transition: background .16s ease-out, border-color .16s ease-out, box-shadow .16s ease-out;
  font-size: 16px;
  line-height: 1.4;
  color: #1F1F38
}

.reach-out .budget-option label::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid #1f1f384d;
  border-radius: 34px;
  flex-shrink: 0;
  transition: border-color .16s ease-out, background .16s ease-out
}

.reach-out .budget-option input[type="radio"]:checked+label {
  background: #03f99214;
  border-color: #03F992;
  box-shadow: -1px 2px 2px 0 #03f9920d
}

.reach-out .budget-option input[type="radio"]:checked+label::before {
  border-color: #03F992;
  background: #03F992;
  box-shadow: inset 0 0 0 4px #FFF
}

.reach-out .budget-option label:hover {
  background: #edeff380;
  border-color: #1f1f3833
}

.reach-out .privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: #edeff333;
  border-radius: 11px
}

.reach-out .privacy-consent input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #03F992
}

.reach-out .privacy-consent label {
  font-size: 14px;
  line-height: 1.7;
  color: #1f1f38cc;
  cursor: pointer
}

.reach-out .privacy-consent a {
  color: #03F992;
  text-decoration: none;
  transition: color .18s ease-out
}

.reach-out .privacy-consent a:hover {
  color: #1F1F38
}

.reach-out .submit-action {
  display: flex;
  justify-content: flex-start
}

.reach-out .submit-action button {
  padding: 20px 40px;
  font-size: 16px;
  line-height: 1.4;
  background: #03F992;
  color: #1F1F38;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  font-weight: 600;
  transition: box-shadow .21s ease-out, transform .18s ease-out;
  box-shadow: -1px 2px 2px 0 #03f9920d
}

.reach-out .submit-action button:hover {
  box-shadow: -1px 9px 44px 0 #03f9921a;
  transform: translateY(-2px)
}

.reach-out .submit-action button:active {
  transform: translateY(0);
  box-shadow: -1px 2px 2px 0 #03f9920d
}

@media (min-width: 960px) {
  .reach-out .intro-contain {
    grid-template-columns: 1.2fr 1fr
  }

  .reach-out .intro-visual {
    height: 480px
  }

  .reach-out .details-hold {
    grid-template-columns: 1.3fr 1fr
  }

  .reach-out .form-wrap {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: flex-start
  }

  .reach-out .form-row {
    grid-template-columns: 1fr 1fr
  }

  .reach-out .budget-options {
    grid-template-columns: 1fr 1fr
  }
}

@media (min-width: 1440px) {
  .reach-out .intro-stage {
    padding: 80px 40px
  }

  .reach-out .details-zone {
    padding: 80px 40px
  }

  .reach-out .form-stage {
    padding: 80px 40px
  }
}

.prtl {
  background: #FFF;
  color: #1F1F38;
  overflow-x: clip
}

.prtl ::selection {
  background: #03f9922e;
  color: #1F1F38
}

.prtl .lead-grad {
  background: linear-gradient(343deg, #03f9921f 0%, #1f1f3814 28%, #edeff326 62%, #03f99217 100%);
  padding: 120px 20px 80px;
  position: relative
}

.prtl .lead-grad::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 80px;
  background: linear-gradient(343deg, #03f99266 0%, #1f1f3833 100%)
}

.prtl .lead-grad::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(343deg, #1f1f3833 0%, #03f99266 100%)
}

.prtl .lead-container {
  max-width: 1140px;
  margin: 0 auto
}

.prtl .lead-heading {
  font-size: 66px;
  line-height: 1.1;
  margin: 0 0 40px;
  font-style: italic;
  max-width: 920px
}

.prtl .lead-heading .accent-word {
  background: linear-gradient(343deg, #03F992 0%, #03f992b3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.prtl .lead-subtext {
  font-size: 20px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
  color: #1f1f38d9
}

.prtl .environ-wrap {
  background: #FFF;
  padding: 80px 20px;
  position: relative
}

.prtl .environ-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.prtl .environ-text {
  padding: 40px 0
}

.prtl .environ-label {
  font-size: 26px;
  line-height: 1.4;
  margin: 0 0 20px;
  color: #1F1F38;
  font-style: italic
}

.prtl .environ-desc {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  color: #1f1f38cc
}

.prtl .environ-desc:last-child {
  margin: 0
}

.prtl .environ-visual {
  position: relative
}

.prtl .environ-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow .22s ease-out
}

.prtl .environ-img-frame:hover {
  box-shadow: -1px 9px 44px 0 #03f9921a
}

.prtl .environ-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border: 0 solid transparent;
  transition: border-color .19s ease-out
}

.prtl .environ-img-frame:hover .environ-img {
  border: 4px solid #03f9924d
}

.prtl .environ-dashed {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 2px dashed #03f9924d;
  border-radius: 34px;
  pointer-events: none;
  z-index: 1
}

.prtl .longterm-section {
  background: #edeff380;
  padding: 80px 20px;
  position: relative
}

.prtl .longterm-inner {
  max-width: 1140px;
  margin: 0 auto
}

.prtl .longterm-top {
  max-width: 780px;
  margin: 0 auto 80px;
  text-align: center
}

.prtl .longterm-question {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #1F1F38
}

.prtl .longterm-intro {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: #1f1f38bf
}

.prtl .longterm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.prtl .longterm-card {
  background: #FFF;
  border-radius: 11px;
  padding: 40px;
  box-shadow: -1px 2px 2px 0 #1f1f380d;
  transition: transform .24s ease-out, box-shadow .24s ease-out;
  position: relative
}

.prtl .longterm-card:hover {
  transform: scale(1.03);
  box-shadow: -1px 9px 44px 0 #1f1f381a
}

.prtl .longterm-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(343deg, #03f99226 0%, #1f1f3814 100%);
  border-radius: 11px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center
}

.prtl .longterm-card-icon svg {
  width: 28px;
  height: 28px;
  fill: #03F992
}

.prtl .longterm-card-title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #1F1F38;
  font-style: italic
}

.prtl .longterm-card-text {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #1f1f38bf
}

.prtl .invest-area {
  background: #FFF;
  padding: 80px 20px;
  position: relative
}

.prtl .invest-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: center
}

.prtl .invest-image-side {
  flex: 0 0 480px;
  position: relative
}

.prtl .invest-img-holder {
  position: relative;
  border-radius: 34px;
  overflow: hidden
}

.prtl .invest-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border: 0 solid transparent;
  transition: border-color .21s ease-out
}

.prtl .invest-img-holder:hover .invest-img {
  border: 4px solid #1f1f3826
}

.prtl .invest-dashed-path {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  border: 2px dashed #1f1f3833;
  border-radius: 1px;
  pointer-events: none;
  z-index: 2
}

.prtl .invest-content-side {
  flex: 1
}

.prtl .invest-header {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 40px;
  color: #1F1F38
}

.prtl .invest-para {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  color: #1f1f38cc
}

.prtl .invest-para:last-child {
  margin: 0
}

.prtl .invest-highlight {
  background: linear-gradient(343deg, #03f9921f 0%, #edeff34d 100%);
  border-radius: 11px;
  padding: 20px;
  margin: 40px 0 0;
  border-left: 4px solid #03F992
}

.prtl .invest-highlight-text {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: #1f1f38d9;
  font-style: italic
}

.prtl .scale-zone {
  background: linear-gradient(343deg, #1f1f380a 0%, #edeff399 52%, #03f9920f 100%);
  padding: 80px 20px;
  position: relative
}

.prtl .scale-inner {
  max-width: 1140px;
  margin: 0 auto
}

.prtl .scale-title {
  font-size: 26px;
  line-height: 1.4;
  margin: 0 0 80px;
  text-align: center;
  color: #1F1F38;
  font-style: italic
}

.prtl .scale-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px
}

.prtl .scale-metric {
  text-align: center;
  position: relative;
  padding: 40px 20px;
  background: #fff9;
  border-radius: 20px;
  box-shadow: -1px 5px 25px 0 #1f1f3814;
  transition: transform .27s ease-out, box-shadow .27s ease-out
}

.prtl .scale-metric:hover {
  transform: translateY(-8px);
  box-shadow: -1px 9px 44px 0 #03f9921a
}

.prtl .scale-number {
  font-size: 66px;
  line-height: 1.1;
  margin: 0 0 12px;
  background: linear-gradient(343deg, #03F992 0%, #03f99299 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  display: block
}

.prtl .scale-label {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  color: #1f1f38bf;
  text-transform: uppercase;
  letter-spacing: .08em
}

.prtl .scale-divider {
  margin: 80px auto;
  max-width: 1140px;
  text-align: center;
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #1f1f3826 50%, transparent 100%)
}

.prtl .scale-divider svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #edeff399;
  padding: 8px;
  border-radius: 1px
}

.prtl .hesit-block {
  background: #FFF;
  padding: 80px 20px;
  position: relative
}

.prtl .hesit-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start
}

.prtl .hesit-left {
  padding: 20px 0
}

.prtl .hesit-statement {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 40px;
  color: #1F1F38
}

.prtl .hesit-body {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  color: #1f1f38cc
}

.prtl .hesit-body:last-child {
  margin: 0
}

.prtl .hesit-pullquote {
  float: right;
  width: 280px;
  margin: 0 0 20px 40px;
  padding: 20px;
  background: #edeff366;
  border-radius: 11px;
  border-left: 4px solid #03f99299
}

.prtl .hesit-pullquote-text {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  color: #1f1f38e6;
  font-style: italic
}

.prtl .hesit-right {
  position: relative;
  padding: 40px 0
}

.prtl .hesit-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden
}

.prtl .hesit-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border: 0 solid transparent;
  transition: border-color .18s ease-out
}

.prtl .hesit-img-wrap:hover .hesit-img {
  border: 4px solid #03f99240
}

.prtl .hesit-tooltip {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: #fffffff2;
  padding: 12px 20px;
  border-radius: 11px;
  box-shadow: -1px 5px 25px 0 #1f1f3814;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .23s ease-out, transform .23s ease-out;
  pointer-events: none;
  z-index: 3
}

.prtl .hesit-img-wrap:hover .hesit-tooltip,
.prtl .hesit-img-wrap:focus-within .hesit-tooltip {
  opacity: 1;
  transform: translateY(0)
}

.prtl .hesit-tooltip-text {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  color: #1F1F38;
  white-space: nowrap
}

@media (max-width: 960px) {
  .prtl .lead-grad {
    padding: 80px 20px 60px
  }

  .prtl .lead-heading {
    font-size: 50px;
    margin: 0 0 20px
  }

  .prtl .lead-subtext {
    font-size: 16px
  }

  .prtl .environ-container {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .prtl .environ-dashed {
    display: none
  }

  .prtl .longterm-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .prtl .longterm-top {
    margin: 0 auto 40px
  }

  .prtl .longterm-question {
    font-size: 26px
  }

  .prtl .invest-container {
    flex-direction: column;
    gap: 40px
  }

  .prtl .invest-image-side {
    flex: 0 0 auto;
    width: 100%
  }

  .prtl .invest-img {
    height: 360px
  }

  .prtl .invest-dashed-path {
    display: none
  }

  .prtl .invest-header {
    font-size: 26px;
    margin: 0 0 20px
  }

  .prtl .scale-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
  }

  .prtl .scale-number {
    font-size: 50px
  }

  .prtl .hesit-container {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .prtl .hesit-statement {
    font-size: 26px;
    margin: 0 0 20px
  }

  .prtl .hesit-pullquote {
    float: none;
    width: 100%;
    margin: 0 0 20px
  }

  .prtl .hesit-img {
    height: 320px
  }
}

@media (max-width: 480px) {
  .prtl .lead-grad {
    padding: 60px 12px 40px
  }

  .prtl .lead-heading {
    font-size: 26px
  }

  .prtl .lead-subtext {
    font-size: 14px
  }

  .prtl .environ-wrap,
  .prtl .longterm-section,
  .prtl .invest-area,
  .prtl .scale-zone,
  .prtl .hesit-block {
    padding: 40px 12px
  }

  .prtl .environ-img {
    height: 280px
  }

  .prtl .longterm-card {
    padding: 20px
  }

  .prtl .scale-metrics {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .prtl .scale-metric {
    padding: 20px 12px
  }

  .prtl .scale-number {
    font-size: 26px
  }

  .prtl .hesit-img {
    height: 240px
  }

  .prtl .hesit-tooltip {
    left: 12px;
    bottom: 12px;
    padding: 8px 12px
  }
}

.lp-root {
  background: #FFF;
  color: #1F1F38
}

.lp-root ::selection {
  background: #03f9922e;
  color: #1F1F38
}

.lp-opener {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  background: #1F1F38
}

.lp-opener::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, #03f9921f, transparent 70%);
  filter: blur(60px);
  pointer-events: none
}

.lp-opener::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #edeff314, transparent 70%);
  filter: blur(50px);
  pointer-events: none
}

.lp-opener-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.lp-opener h1 {
  font-size: 66px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #FFF;
  letter-spacing: -.02em
}

.lp-opener h1 .accent {
  color: #03F992;
  font-style: italic
}

.lp-opener-desc {
  font-size: 20px;
  line-height: 1.7;
  color: #EDEFF3;
  max-width: 720px;
  margin: 0
}

.lp-program {
  padding: 80px 20px;
  background: linear-gradient(343deg, #FFF 0%, #edeff366 68%, #FFF 100%)
}

.lp-program-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start
}

.lp-program-side {
  flex: 0 0 280px;
  position: relative
}

.lp-program-img-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -1px 5px 25px 0 #1f1f3814;
  opacity: 0;
  transform: rotate(-3deg);
  animation: lp-reveal-rotate .42s ease-out .2s forwards
}

@keyframes lp-reveal-rotate {
  to {
    opacity: 1;
    transform: rotate(0deg)
  }
}

.lp-program-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85
}

.lp-program-main {
  flex: 1;
  min-width: 0
}

.lp-program h2 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #1F1F38;
  font-style: italic
}

.lp-program-text {
  font-size: 16px;
  line-height: 1.7;
  color: #1F1F38;
  margin: 0 0 40px
}

.lp-program-curve {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 80px;
  height: 200px;
  pointer-events: none
}

.lp-program-curve svg {
  width: 100%;
  height: 100%
}

.lp-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.lp-mod-card {
  background: #FFF;
  border-radius: 11px;
  padding: 20px;
  box-shadow: -1px 2px 2px 0 #1f1f380d;
  transition: box-shadow .18s ease-out, transform .18s ease-out
}

.lp-mod-card:hover {
  box-shadow: -1px 9px 44px 0 #1f1f381a;
  transform: translateY(-4px)
}

.lp-mod-num {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #03F992;
  background: #03f9921f;
  padding: 4px 12px;
  border-radius: 34px;
  margin: 0 0 12px;
  letter-spacing: .02em
}

.lp-mod-card h3 {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 8px;
  color: #1F1F38
}

.lp-mod-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #1f1f38bf;
  margin: 0
}

.lp-details {
  padding: 80px 20px;
  background: #FFF;
  position: relative
}

.lp-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./media_assets/thumb22025-06-28.jpg);
  background-size: cover;
  background-position: center;
  opacity: .08;
  pointer-events: none
}

.lp-details::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(343deg, #1f1f38eb 0%, #1f1f38e0 100%);
  pointer-events: none
}

.lp-details-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start
}

.lp-details-main {
  flex: 1;
  min-width: 0
}

.lp-details h2 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 40px;
  color: #FFF
}

.lp-details h2 .first {
  color: #EDEFF3
}

.lp-details h2 .second {
  color: #03F992
}

.lp-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px
}

.lp-info-block h4 {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #03F992;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600
}

.lp-info-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #EDEFF3;
  margin: 0
}

.lp-info-block ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.lp-info-block li {
  font-size: 16px;
  line-height: 1.7;
  color: #EDEFF3;
  padding: 8px 0 8px 28px;
  position: relative
}

.lp-info-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  background: #03F992;
  border-radius: 1px;
  transform: rotate(45deg)
}

.lp-details-side {
  flex: 0 0 340px
}

.lp-quote-box {
  background: #ffffff0f;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #03f99226;
  box-shadow: -1px 5px 25px 0 #03f99214
}

.lp-quote-mark {
  width: 40px;
  height: 32px;
  margin: 0 0 20px
}

.lp-quote-mark svg {
  width: 100%;
  height: 100%;
  fill: #03F992;
  opacity: .4
}

.lp-quote-text {
  font-size: 20px;
  line-height: 1.7;
  color: #FFF;
  margin: 0 0 20px;
  font-style: italic
}

.lp-quote-author {
  font-size: 14px;
  line-height: 1.4;
  color: #03F992;
  margin: 0;
  font-weight: 600
}

@media (max-width: 960px) {
  .lp-opener {
    padding: 40px 20px
  }

  .lp-opener h1 {
    font-size: 50px
  }

  .lp-opener-desc {
    font-size: 16px
  }

  .lp-program {
    padding: 40px 20px
  }

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

  .lp-program-side {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px
  }

  .lp-program-img-wrap {
    height: 300px
  }

  .lp-program-curve {
    display: none
  }

  .lp-program h2 {
    font-size: 26px
  }

  .lp-modules {
    grid-template-columns: 1fr
  }

  .lp-details {
    padding: 40px 20px
  }

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

  .lp-details h2 {
    font-size: 26px;
    margin: 0 0 20px
  }

  .lp-info-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .lp-details-side {
    flex: 0 0 auto;
    width: 100%
  }

  .lp-quote-box {
    padding: 20px
  }

  .lp-quote-text {
    font-size: 16px
  }
}

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

  .lp-opener-desc {
    font-size: 14px
  }

  .lp-program h2 {
    font-size: 20px
  }

  .lp-details h2 {
    font-size: 20px
  }

  .lp-mod-card {
    padding: 12px
  }

  .lp-mod-card h3 {
    font-size: 16px
  }
}

.abt-us {
  background: #FFF;
  color: #1F1F38;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0
}

.abt-us .tblock {
  position: relative;
  padding: 80px 20px;
  overflow: visible;
  background: linear-gradient(343deg, #03F992 0%, #FFF 48%, #EDEFF3 100%)
}

.abt-us .tblock-atmo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1
}

.abt-us .tblock-atmo-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .12
}

.abt-us .tblock-atmo-spot.one {
  width: 280px;
  height: 280px;
  background: #03F992;
  top: 12%;
  left: 8%
}

.abt-us .tblock-atmo-spot.two {
  width: 340px;
  height: 340px;
  background: #1F1F38;
  bottom: 18%;
  right: 15%
}

.abt-us .tblock-atmo-spot.three {
  width: 220px;
  height: 220px;
  background: #03F992;
  top: 50%;
  right: 25%
}

.abt-us .tblock-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.abt-us .tblock-txt h1 {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -.02em
}

.abt-us .tblock-txt h1 .accent {
  color: #1F1F38;
  font-style: italic
}

.abt-us .tblock-txt h1 .base {
  color: #1F1F38
}

.abt-us .tblock-txt .sub {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 20px;
  color: #1f1f38d1
}

.abt-us .tblock-txt .link-act {
  display: inline-block;
  font-size: 16px;
  color: #1F1F38;
  text-decoration: none;
  padding: 12px 20px;
  background: #03f992e0;
  border-radius: 11px;
  transition: background .22s ease-out, box-shadow .19s ease-out;
  box-shadow: -1px 2px 2px 0 #03f9920d
}

.abt-us .tblock-txt .link-act:hover {
  background: #03F992;
  box-shadow: -1px 5px 25px 0 #03f99214 -1px 9px 44px 0 #03f9921a
}

.abt-us .tblock-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: -1px 5px 25px 0 #1f1f3814
}

@media (max-width: 960px) {
  .abt-us .tblock {
    padding: 40px 20px
  }

  .abt-us .tblock-inner {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .abt-us .tblock-txt h1 {
    font-size: 26px
  }

  .abt-us .tblock-txt .sub {
    font-size: 16px
  }

  .abt-us .tblock-img img {
    height: 280px
  }
}

.abt-us .story {
  padding: 80px 20px;
  background: #FFF;
  position: relative
}

.abt-us .story-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px
}

.abt-us .story-main {
  position: relative
}

.abt-us .story-main .quote-mark {
  position: absolute;
  top: -20px;
  left: -40px;
  font-size: 180px;
  line-height: 1;
  color: #03f99226;
  font-weight: 700;
  pointer-events: none;
  user-select: none
}

.abt-us .story-main h2 {
  font-size: 26px;
  line-height: 1.4;
  margin: 0 0 20px;
  color: #1F1F38;
  font-style: italic
}

.abt-us .story-main .txt-block {
  margin-bottom: 40px
}

.abt-us .story-main .txt-block p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 20px;
  color: #1f1f38e0
}

.abt-us .story-main .txt-block p:last-child {
  margin-bottom: 0
}

.abt-us .story-side {
  position: relative
}

.abt-us .story-side .pullquote {
  position: sticky;
  top: 80px;
  font-size: 20px;
  line-height: 1.4;
  color: #1F1F38;
  font-style: italic;
  padding: 20px;
  background: #edeff399;
  border-radius: 11px;
  border-left: 4px solid #03F992;
  box-shadow: -1px 2px 2px 0 #1f1f380d
}

@media (max-width: 960px) {
  .abt-us .story {
    padding: 40px 20px
  }

  .abt-us .story-wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .abt-us .story-main .quote-mark {
    font-size: 100px;
    left: -20px;
    top: -10px
  }

  .abt-us .story-main h2 {
    font-size: 20px
  }

  .abt-us .story-main .txt-block p {
    font-size: 14px
  }

  .abt-us .story-side .pullquote {
    position: static;
    font-size: 16px
  }
}

.abt-us .crew {
  padding: 80px 20px;
  background: radial-gradient(ellipse at center, #03f99214 0%, #edeff340 50%, #FFF 100%)
}

.abt-us .crew-wrap {
  max-width: 1100px;
  margin: 0 auto
}

.abt-us .crew-header {
  margin-bottom: 40px
}

.abt-us .crew-header h2 {
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #1F1F38;
  font-style: italic
}

.abt-us .crew-header .intro {
  font-size: 16px;
  line-height: 1.7;
  color: #1f1f38d1;
  max-width: 680px
}

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

.abt-us .crew-card {
  position: relative;
  background: #FFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: -1px 2px 2px 0 #1f1f380d;
  transition: transform .24s ease-out, box-shadow .28s ease-out
}

.abt-us .crew-card:hover {
  transform: translateY(-4px);
  box-shadow: -1px 5px 25px 0 #1f1f3814 -1px 9px 44px 0 #1f1f381a
}

.abt-us .crew-card .stripe {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #03F992 0%, #03f99299 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  pointer-events: none;
  z-index: 3
}

.abt-us .crew-card .img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative
}

.abt-us .crew-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease-out
}

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

.abt-us .crew-card .info {
  padding: 20px
}

.abt-us .crew-card .info .name {
  font-size: 20px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: #1F1F38;
  font-weight: 600
}

.abt-us .crew-card .info .role {
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #03f992f2;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500
}

.abt-us .crew-card .info .bio {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #1f1f38bf
}

@media (max-width: 960px) {
  .abt-us .crew {
    padding: 40px 20px
  }

  .abt-us .crew-header h2 {
    font-size: 20px
  }

  .abt-us .crew-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .abt-us .crew-card .img-wrap {
    height: 220px
  }
}

.abt-us .metrics {
  padding: 80px 20px;
  background: #1F1F38;
  position: relative;
  overflow: hidden
}

.abt-us .metrics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(343deg, #03f9921f 0%, #1f1f3800 65%);
  pointer-events: none
}

.abt-us .metrics-wrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.abt-us .metrics-header {
  margin-bottom: 40px;
  text-align: center
}

.abt-us .metrics-header h2 {
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #FFF;
  font-style: italic
}

.abt-us .metrics-header .desc {
  font-size: 16px;
  line-height: 1.4;
  color: #ffffffc7;
  max-width: 640px;
  margin: 0 auto
}

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

.abt-us .metric-item {
  position: relative;
  text-align: center
}

.abt-us .metric-item .pulse-dot {
  width: 12px;
  height: 12px;
  background: #03F992;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  animation: pulse-grow 2.8s ease-in-out infinite
}

@keyframes pulse-grow {

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

  50% {
    transform: scale(1.4);
    opacity: .7
  }
}

.abt-us .metric-item .pulse-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid #03f99266;
  border-radius: 50%;
  animation: pulse-ring 2.8s ease-in-out infinite
}

@keyframes pulse-ring {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .6
  }

  50% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0
  }
}

.abt-us .metric-item .number {
  font-size: 50px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: #03F992;
  font-weight: 700
}

.abt-us .metric-item .label {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 12px;
  color: #ffffffeb;
  font-weight: 500
}

.abt-us .metric-item .narrative {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  color: #ffffffad
}

@media (max-width: 960px) {
  .abt-us .metrics {
    padding: 40px 20px
  }

  .abt-us .metrics-header h2 {
    font-size: 20px
  }

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

  .abt-us .metric-item .number {
    font-size: 26px
  }
}

.abt-us .funnel-vis {
  padding: 80px 20px;
  background: linear-gradient(180deg, #FFF 0%, #edeff366 100%)
}

.abt-us .funnel-vis-wrap {
  max-width: 1100px;
  margin: 0 auto
}

.abt-us .funnel-vis-header {
  margin-bottom: 40px
}

.abt-us .funnel-vis-header h2 {
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #1F1F38;
  font-style: italic
}

.abt-us .funnel-vis-header .intro {
  font-size: 16px;
  line-height: 1.7;
  color: #1f1f38d1;
  max-width: 720px
}

.abt-us .funnel-chart {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto
}

.abt-us .funnel-stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px
}

.abt-us .funnel-bar {
  position: relative;
  height: 60px;
  background: linear-gradient(90deg, #03F992 0%, #03f99299 100%);
  border-radius: 11px;
  transition: transform .32s ease-out, box-shadow .28s ease-out;
  box-shadow: -1px 2px 2px 0 #03f9920d;
  display: flex;
  align-items: center;
  padding: 0 20px
}

.abt-us .funnel-bar:hover {
  transform: translateX(8px);
  box-shadow: -1px 5px 25px 0 #03f99214
}

.abt-us .funnel-stage:nth-child(1) .funnel-bar {
  width: 100%
}

.abt-us .funnel-stage:nth-child(2) .funnel-bar {
  width: 78%;
  background: linear-gradient(90deg, #03f992d9 0%, #03f99280 100%)
}

.abt-us .funnel-stage:nth-child(3) .funnel-bar {
  width: 56%;
  background: linear-gradient(90deg, #03f992b3 0%, #03f99266 100%)
}

.abt-us .funnel-stage:nth-child(4) .funnel-bar {
  width: 34%;
  background: linear-gradient(90deg, #03f9928c 0%, #03f9924d 100%)
}

.abt-us .funnel-bar .stage-label {
  font-size: 16px;
  line-height: 1.1;
  color: #1F1F38;
  font-weight: 600
}

@media (max-width: 960px) {
  .abt-us .funnel-vis {
    padding: 40px 20px
  }

  .abt-us .funnel-vis-header h2 {
    font-size: 20px
  }

  .abt-us .funnel-bar {
    height: 50px;
    padding: 0 12px
  }

  .abt-us .funnel-bar .stage-label {
    font-size: 14px
  }
}

.success-view {
  background: linear-gradient(343deg, #EDEFF3 0%, #fff 42%, #fff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px
}

.success-view .confirm-wrapper {
  max-width: 580px;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: -1px 5px 25px 0 #03f99214
}

.success-view .status-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 40px;
  border-radius: 34px;
  background: linear-gradient(343deg, #03F992 0%, #03f992b3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.success-view .status-icon::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 18px;
  border-left: 4px solid #1F1F38;
  border-bottom: 4px solid #1F1F38;
  transform: rotate(-45deg) translateY(-3px)
}

.success-view .confirm-heading {
  font-size: 50px;
  line-height: 1.1;
  color: #1F1F38;
  margin: 0 0 20px;
  font-weight: 600
}

.success-view .confirm-message {
  font-size: 20px;
  line-height: 1.7;
  color: #1F1F38;
  margin: 0 0 40px;
  opacity: .8
}

.success-view .detail-box {
  background: #EDEFF3;
  border-radius: 11px;
  padding: 20px;
  margin: 0 0 40px;
  text-align: left
}

.success-view .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px
}

.success-view .detail-row:last-child {
  margin-bottom: 0
}

.success-view .detail-label {
  font-size: 14px;
  line-height: 1.4;
  color: #1F1F38;
  opacity: .6
}

.success-view .detail-value {
  font-size: 16px;
  line-height: 1.4;
  color: #1F1F38;
  font-weight: 600
}

.success-view .action-group {
  display: flex;
  gap: 12px;
  flex-direction: column
}

.success-view .btn-primary {
  background: #03F992;
  color: #1F1F38;
  font-size: 16px;
  line-height: 1.4;
  padding: 20px 40px;
  border: none;
  border-radius: 11px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: box-shadow .18s ease-out, transform .18s ease-out;
  box-shadow: -1px 2px 2px 0 #03f9920d
}

.success-view .btn-primary:hover {
  box-shadow: -1px 9px 44px 0 #03f9921a;
  transform: translateY(-1px)
}

.success-view .btn-secondary {
  background: transparent;
  color: #1F1F38;
  font-size: 14px;
  line-height: 1.4;
  padding: 12px 20px;
  border: 2px solid #EDEFF3;
  border-radius: 11px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .21s ease-out, background .21s ease-out
}

.success-view .btn-secondary:hover {
  border-color: #03F992;
  background: #03f9920d
}

.success-view .support-note {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #EDEFF3
}

.success-view .support-text {
  font-size: 14px;
  line-height: 1.7;
  color: #1F1F38;
  opacity: .6;
  margin: 0 0 12px
}

.success-view .support-link {
  color: #1F1F38;
  font-weight: 600;
  text-decoration: none;
  transition: color .19s ease-out
}

.success-view .support-link:hover {
  color: #03F992
}

@media (max-width: 480px) {
  .success-view .confirm-wrapper {
    padding: 40px 20px
  }

  .success-view .confirm-heading {
    font-size: 26px
  }

  .success-view .confirm-message {
    font-size: 16px
  }

  .success-view .status-icon {
    width: 66px;
    height: 66px
  }

  .success-view .status-icon::before {
    width: 24px;
    height: 14px;
    border-left: 3px solid #1F1F38;
    border-bottom: 3px solid #1F1F38
  }
}