*:not(img),
*::before,
*::after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    touch-action: manipulation
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga";
    overflow-x: hidden;
    font-family:Helvetica, sans-serif !important;
}

html,
body,
pre {
    padding: 0;
    margin: 0;
}

a {
    background-color: rgba(0, 0, 0, 0);
    text-decoration: none !important;
}

a:active,
a:hover {
    outline: 0;
    text-decoration: none !important;

}

button,
select {
    text-transform: none;
    text-decoration: none !important;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

pre {
    overflow: auto;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

table th,
table td {
    padding: 0;
}

[hidden],
#template,
template {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-hyphens: none;
    -moz-hyphens: none;
    hyphens: none;
}

h1 code,
h2 code,
h3 code,
h4 code,
h5 code,
h6 code {
    text-transform: initial;
}

b,
.b,
strong,
.strong {
    font-weight: 700;
}

.i {
    font-style: italic;
}

.t-center {
    text-align: center;
}

.underline {
    text-decoration: underline;
}

.hint {
    font-size: .82rem;
}

mark {
    background: rgba(0, 0, 0, 0);
    color: #43b542;
}

a {
    color: inherit;
    text-decoration: none !important;
}

a.underline {
    text-decoration: underline;
}

a.link {
    color: #1993ff;
}

a:hover {
    text-decoration: none !important;
}

.btn {
    display: inline-block;
    padding: 0;
    margin: 0;
    border: none;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    color: inherit
}

.btn-default {
    font-size: 1.1rem !important;
    padding: 1.1rem 3.7rem;
    border-radius: 2.7rem;
    border: 2px solid hsla(0, 0%, 100%, .4);
    position: relative;
    transition: .3s ease
}

.btn-default:after {
    content: "";
    display: block;
    height: 2px;
    width: 5.27rem;
    background: linear-gradient(90deg, transparent -25.86%, #43B542 47.25%, transparent 115.09%);
    box-shadow: 0 0 6px 0 #43b542;
    backdrop-filter: blur(6px);
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    transition: width .4s ease
}

.btn-default:hover,
.btn-default:focus {
    border-color: #43b542;
    box-shadow: 0 0 10px 0 #1eea04
}

.btn-default:hover:after,
.btn-default:focus:after {
    width: calc(100% - 3.2rem)
}

.btn-colored {
    background: #43b542;
    transition: background .3s ease
}

.btn-colored:hover,
.btn-colored:focus {
    background: #1eea04
}

html,
body {
    font-size: 1.146vw
}

@media screen and (max-width: 1000px) {

    html,
    body {
        font-size: 3.2vw;
    }
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column
}

body {
    background-color: #0e0e0e;
    color: #fff;
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    position: relative;
    font-family: Helvetica, sans-serif;
    line-height: 1.5
}

picture {
    max-width: 100%;
    width: 100%;
    display: block
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%
}

.page {
    min-height: 100vh;
    overflow-y: visible;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: column
}

.wrapper {
    width: 90vw;
    margin: 0 auto
}

@media screen and (max-width: 1000px) {
    .wrapper {
        width: 90vw
    }
}

.flex {
    display: flex
}

.flex-column {
    flex-direction: column
}

.flex-center {
    justify-content: center
}

.flex-justify {
    justify-content: space-between
}

.flex-v-center {
    align-items: center
}

.flex-v-start {
    align-items: flex-start
}

.fit-max>:first-child {
    flex-basis: content
}

.fit-max>:not(:first-child) {
    flex-grow: 1
}

.grid {
    display: grid;
    gap: 1.8rem
}

.grid-double {
    grid-template-columns: 1fr 1fr
}

@media screen and (max-width: 1000px) {
    .grid-double {
        grid-template-columns: 1fr
    }
}

.grid-triple {
    grid-template-columns: 1fr 1fr 1fr
}

@media screen and (max-width: 1000px) {
    .grid-triple {
        grid-template-columns: 1fr
    }
}

.grid-quint {
    grid-template-columns: repeat(5, 1fr)
}

@keyframes gradientFlow {
    from {
        --gradient-offset: 0px
    }

    to {
        --gradient-offset: -1640px
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 1.36rem;
    width: 100vw
}

@media screen and (max-width: 1000px) {
    .header {
        padding-top: 1.5rem
    }
}

.header__bg {
    position: absolute;
    top: 1.36rem;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%
}

@media screen and (max-width: 1000px) {
    .header__bg {
        display: none
    }
}

.header__bg svg {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block
}

.header__bg svg .border {
    transition: stroke .3s ease
}

.header__content {
    background-size: 100% auto;
    padding: .25rem .4rem .5rem 2.5rem;
    align-items: flex-start;
    position: relative;
    z-index: 100
}

@media screen and (max-width: 1000px) {
    .header__content {
        align-items: center;
        background: rgba(0, 0, 0, 0);
        border-radius: 1rem;
        padding: .5rem .3rem;
        background: rgba(14, 14, 14, .05);
        backdrop-filter: blur(2rem)
    }
}

.header .nav__list {
    padding: 2.30rem 0 0;
    margin: 0;
    list-style-type: none
}

@media screen and (max-width: 1000px) {
    .header .nav__list {
        padding: 1.5rem;
        background: #0e0e0e;
        border: 1px solid hsla(0, 0%, 100%, .2);
        border-radius: 1rem;
        flex-direction: column
    }
}

.header .nav__item {
    margin: 0 1.14rem;
    line-height: 1;
    font-size: 1.1rem
}

.header .nav__item a:hover{
  text-decoration: none !important;
  color: #43b542 !important;
}

@media screen and (max-width: 1000px) {
    .header .nav__item {
        padding: 1rem;
        text-align: center
    }
}

.header__logo {
    width: 10rem;
    display: block
}

.header__right {
    padding-top: 1.9rem
}

@media screen and (max-width: 1000px) {
    .header__right {
        padding-top: 0;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 30px;
        padding: 0 1rem;
    }

    .header__right .header__menu {
        position: absolute;
        top: 100%;
        right: 0;
        display: none;
        z-index: 100;
        width: 270px;
    }
}

.header__right .btn.desktop {
    font-size: 1.1rem;
    line-height: 1;
    padding: .59rem;
    position: relative;
    z-index: 10
}

.header__right .btn.desktop img {
    width: 1.1rem;
    height: 1.1rem;
    margin-left: 1.1rem
}

.header__right .btn.desktop:before {
    content: "";
    display: block;
    width: 2.27rem;
    height: 2.27rem;
    background: #1eea04;
    border-radius: .18rem;
    box-shadow: 0 0 10px 0 #1eea04;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    transition: width .3s ease
}

.header__right .btn.desktop:hover:before,
.header__right .btn.desktop:focus:before {
    width: 100%
    
}

.header__right .btn-burger {
    background: #23cd0c;
    box-shadow: 0 0 10px 0 #23cd0c;
    padding: 1.17rem .92rem;
    width: 3.33rem;
    height: 3.33rem;
    justify-content: space-between;
    border-radius: .33rem
}

.header__right .btn-burger .line {
    display: block;
    background: #fff;
    width: 100%;
    height: 2px;
    border-radius: 2px
}

.header__right .btn-burger.active+.header__menu {
    display: block
}

.header.scrolling .header__bg svg .border {
    stroke: url("#paint_linear")
}

.header.scrolling .header__right .btn.desktop:before {
    width: 100%
}











/* =========================
   UI DROPDOWN BASE
========================= */

.ui-dropdown {
  position: relative;
}

.ui-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;

  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  line-height: 1;
  cursor: pointer;

  transition: color 0.2s ease;
}

.ui-toggle::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.ui-toggle:hover,
.ui-toggle:focus-visible {
  color: #43b542;
  outline: none;
}

.ui-dropdown.open .ui-toggle,
.ui-dropdown:hover .ui-toggle {
  color: #43b542;
}

.ui-dropdown.open .ui-toggle::after {
  transform: rotate(-135deg);
}

.ui-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 0;
  z-index: 40;

 text-align: center;
  padding: 0.45rem 0;

  border: 1px solid rgba(67, 181, 66, 0.28);
  border-radius: 0.8rem;

  background: rgba(12, 12, 12, 0.96);
  backdrop-filter: blur(1rem);

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(67, 181, 66, 0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
}

.ui-dropdown.open .ui-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.ui-item {
  display: block;
  padding: 0.8rem 1rem;

  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.35;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.ui-item:hover,
.ui-item:focus-visible {
  background: rgba(67, 181, 66, 0.08);
  color: #43b542;
  outline: none;
}

.mobile-drop{
    right: 0;
    z-index: 40;
width: 3.33rem;
    height: 3.33rem;
    justify-content: center;
    align-items: center;

    border-radius: .33rem;
     text-align: center !important;

    
    border: 1px solid rgba(67, 181, 66, 0.28);
    border-radius: 0.8rem;
    
    background: rgba(12, 12, 12, 0.96);
    backdrop-filter: blur(1rem);
    
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.28),
        0 0 18px rgba(67, 181, 66, 0.08);
  display: none;
}
@media screen and (max-width: 1000px) {
    .mobile-drop{
        display: flex;
    }
}
.mobile-drop .ui-toggle{
   
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;

    color: rgba(255, 255, 255, 0.9);
    font: inherit;
    line-height: 1;
    cursor: pointer;

    transition: color 0.2s ease;
}
.mobile-drop .ui-toggle::after{
    content: none !important;
}






/* popu */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1.5rem;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(67, 181, 66, 0.08), transparent 35%),
    rgba(2, 4, 3, 0.78);
  backdrop-filter: blur(8px);
}

.modal__window {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 28rem;
  max-height: calc(100vh - 3rem);

  overflow-y: auto;
  overflow-x: hidden;

  padding: 2rem;

  border: 1px solid rgba(67, 181, 66, 0.22);
  border-radius: 1rem;

  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.96) 0%,
    rgba(10, 10, 10, 0.98) 100%
  );

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(67, 181, 66, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);

  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;

  box-sizing: border-box;
}

.modal.is-open .modal__window {
  transform: translateY(0) scale(1);
}

/* красивый скролл внутри окна */
.modal__window::-webkit-scrollbar {
  width: 6px;
}

.modal__window::-webkit-scrollbar-track {
  background: transparent;
}

.modal__window::-webkit-scrollbar-thumb {
  background: rgba(67, 181, 66, 0.28);
  border-radius: 999px;
}

.modal__window::-webkit-scrollbar-thumb:hover {
  background: rgba(67, 181, 66, 0.48);
}

.modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;

  width: 2.2rem;
  height: 2.2rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.03);

  font-size: 1.25rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;

  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.modal__close:hover {
  border-color: rgba(67, 181, 66, 0.35);
  background: rgba(67, 181, 66, 0.08);
  color: #fff;
}

.modal__title {
  margin: 0 0 0.45rem;
  padding-right: 2.5rem;
  font-size: 1.6rem;
  line-height: 1.15;
  color: #fff;
}

.modal__subtitle {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.5;
}

.modal-form {
  display: grid;
  gap: 0.95rem;
  min-width: 0;
}

.modal-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.modal-form__field label {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.2;
}

.modal-form input,
.modal-form textarea,
.modal-form select {
  width: 100%;
  max-width: 100%;
  padding: 0.9rem 1rem;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.8rem;

  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  line-height: 1.4;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;

  box-sizing: border-box;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.modal-form textarea {
  min-height: 6rem;
  resize: vertical;
}

.modal-form select {
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.72) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.modal-form input:hover,
.modal-form textarea:hover,
.modal-form select:hover {
  border-color: rgba(67, 181, 66, 0.24);
  background-color: rgba(255, 255, 255, 0.045);
}

.modal-form input:focus,
.modal-form textarea:focus,
.modal-form select:focus {
  outline: none;
  border-color: #43b542;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 3px rgba(67, 181, 66, 0.12),
    0 0 16px rgba(67, 181, 66, 0.08);
}

.modal-form__submit {
  margin-top: 0.4rem;
  min-height: 3.15rem;
  padding: 0.9rem 1.1rem;

  border: 1px solid rgba(67, 181, 66, 0.35);
  border-radius: 0.85rem;

  background: linear-gradient(
    180deg,
    rgba(67, 181, 66, 0.2) 0%,
    rgba(67, 181, 66, 0.12) 100%
  );

  color: #fff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 14px rgba(67, 181, 66, 0.06);

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.modal-form__submit:hover {
  border-color: rgba(67, 181, 66, 0.55);
  background: linear-gradient(
    180deg,
    rgba(67, 181, 66, 0.26) 0%,
    rgba(67, 181, 66, 0.16) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 18px rgba(67, 181, 66, 0.12);
  transform: translateY(-1px);
}

.modal-form__submit:active {
  transform: translateY(0);
}

/* если используешь 3 поля связи в модалке */
.modal-contact-switch {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.modal-contact-switch__item {
  display: block;
  min-width: 0;
}

.modal-contact-switch__item label {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.2;
}

.modal-contact-switch__item input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.modal-contact-switch__item.is-current input {
  border-color: #43b542;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(67, 181, 66, 0.12);
}

.modal-contact-switch__item.is-hidden {
  display: none;
}

/* планшет */
@media (max-width: 900px) {
  .modal {
    padding: 1rem;
  }

  .modal__window {
    max-width: 30rem;
    max-height: calc(100vh - 2rem);
    padding: 1.6rem;
  }
}

/* мобильная версия */
@media (max-width: 640px) {
  .modal {
    align-items: flex-start;
    justify-content: center;
    padding: 0.75rem;
  }

  .modal__window {
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 1.5rem);

    margin-top: 0.5rem;
    padding: 1.15rem;
    padding-top: 2.8rem;
    border-radius: 0.95rem;
  }

  .modal__title {
    font-size: 1.35rem;
    line-height: 1.15;
    padding-right: 2.2rem;
  }

  .modal__subtitle {
    margin-bottom: 1.2rem;
    font-size: 0.92rem;
  }

  .modal-form {
    gap: 0.85rem;
  }

  .modal-form input,
  .modal-form textarea,
  .modal-form select,
  .modal-contact-switch__item input {
    padding: 0.85rem 0.9rem;
  }

  .modal-form textarea {
    min-height: 5.5rem;
  }

  .modal-form__submit {
    min-height: 3rem;
  }
}


































.vx-partners,
.vx-logic,
.vx-programs,
.vx-advantages,
.vx-path,
.vx-form-section,
.vx-cta {
  position: relative;
}

.vx-partners {
  padding: 11.5rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}

.vx-partners__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 15%, rgba(16, 223, 109, 0.14), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(16, 223, 109, 0.07), transparent 24%);
  pointer-events: none;
  z-index: 0;
}

.vx-partners__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.vx-partners__hero,
.vx-partners__strip,
.vx-logic .wrapper,
.vx-programs .wrapper,
.vx-advantages .wrapper,
.vx-path .wrapper,
.vx-form-section .wrapper,
.vx-cta .wrapper {
  position: relative;
  z-index: 1;
}

.vx-partners__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.vx-partners__eyebrow,
.vx-head__eyebrow,
.vx-cta__eyebrow,
.vx-side-card__label,
.vx-strip-card__num,
.vx-orbit__label {
  display: inline-flex;
  align-items: center;
  color: #8af387;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vx-partners__eyebrow {
  min-height: 2.25rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(67, 181, 66, 0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}

.vx-partners__title {
  margin: 1rem 0 0;
  color: #fff;
  font-size: 3rem;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.vx-partners__lead {
  max-width: 45rem;
  margin: 1.35rem 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 1.03rem;
  line-height: 1.8;
}

.vx-partners__actions,
.vx-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.vx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.45rem;
  border-radius: 0.95rem;
  text-decoration: none;
  font: inherit;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.vx-btn--primary {
  border: 1px solid rgba(67, 181, 66, 0.36);
  background: linear-gradient(
    180deg,
    rgba(67, 181, 66, 0.24) 0%,
    rgba(67, 181, 66, 0.14) 100%
  );
  color: #fff;
  box-shadow: 0 0 22px rgba(67, 181, 66, 0.08);
}

.vx-btn--ghost {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: #fff;
  cursor: pointer;
}

.vx-btn:hover {
  transform: translateY(-2px);
}


.vx-partners__strip {
  margin-top: 3.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.vx-strip-card,
.vx-logic-card,
.vx-program,
.vx-adv,
.vx-path-step,
.vx-form-box,
.vx-side-card,
.vx-cta__box {
  border: 1px solid rgba(67, 181, 66, 0.14);
  border-radius: 1.4rem;
  background: linear-gradient(
    180deg,
    rgba(14,14,14,0.8) 0%,
    rgba(8,8,8,0.94) 100%
  );
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 16px 34px rgba(0,0,0,0.24);
}

.vx-strip-card,
.vx-logic-card,
.vx-program,
.vx-adv,
.vx-path-step,
.vx-side-card {
  padding: 1.35rem;
}

.vx-strip-card__num {
  min-height: 2rem;
}

.vx-strip-card__title,
.vx-logic-card__title,
.vx-program__title,
.vx-adv__title,
.vx-path-step__title {
  margin: 0.9rem 0 0.5rem;
  color: #fff;
  font-size: 1.18rem;
}

.vx-strip-card__text,
.vx-logic-card__text,
.vx-program__text,
.vx-adv__text,
.vx-path-step__text,
.vx-side-card__text,
.vx-head__text,
.vx-cta__text {
  margin: 0;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.vx-logic,
.vx-programs,
.vx-advantages,
.vx-path,
.vx-form-section,
.vx-cta {
  padding: 1rem 0 4rem;
}

.vx-head {
  max-width: 52rem;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.vx-head--left {
  max-width: none;
  margin: 0 0 1.8rem;
  text-align: left;
}

.vx-head__title,
.vx-cta__title {
  margin: 0.85rem 0 0;
  color: #fff;
  font-size:3rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.vx-head__text {
  margin-top: 0.95rem;
}

.vx-logic__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.vx-programs__grid,
.vx-advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vx-program__top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.vx-program__badge,
.vx-adv__num,
.vx-path-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.7rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(67, 181, 66, 0.2);
  background: rgba(67, 181, 66, 0.08);
  color: #8af387;
  font-size: 0.95rem;
}

.vx-path {
  overflow: hidden;
}

.vx-path__line {
  position: relative;
  height: 1px;
  margin: 2.4rem 0 2rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(67, 181, 66, 0.28),
    transparent
  );
}

.vx-path__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.vx-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.vx-form-box {
  padding: 1.6rem;
}

.vx-form {
  display: grid;
  gap: 1rem;
}

.vx-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vx-form__field {
  display: grid;
  gap: 0.45rem;
}

.vx-form__field label {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
}

.vx-form__field input,
.vx-form__field select,
.vx-form__field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.95rem;
  background: rgba(255,255,255,0.03);
  color: #fff;
  font: inherit;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.vx-form__field textarea {
  min-height: 7rem;
  resize: vertical;
}

.vx-form__field input:focus,
.vx-form__field select:focus,
.vx-form__field textarea:focus {
  outline: none;
  border-color: rgba(67,181,66,0.55);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 3px rgba(67,181,66,0.1);
}

.vx-form__submit {
  min-height: 3.2rem;
  border: 1px solid rgba(67,181,66,0.32);
  border-radius: 0.95rem;
  background: linear-gradient(
    180deg,
    rgba(67,181,66,0.2) 0%,
    rgba(67,181,66,0.11) 100%
  );
  color: #fff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.vx-form__submit:hover {
  transform: translateY(-1px);
  border-color: rgba(67,181,66,0.52);
  box-shadow: 0 0 18px rgba(67,181,66,0.08);
}

.vx-side {
  display: grid;
  gap: 1rem;
}

.vx-side-card__label {
  margin-bottom: 0.65rem;
}

.vx-cta__box {
  padding: 2rem;
  text-align: center;
}

.vx-cta__text {
  max-width: 50rem;
  margin: 0.95rem auto 0;
}

/* animation */
.vx-fade {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  filter: blur(10px);
  transition:
    opacity 0.85s ease,
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.85s ease;
  will-change: opacity, transform, filter;
}

.vx-fade.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.vx-fade--hero {
  transform: translateY(44px) scale(0.97);
}

.vx-fade--visual {
  transform: translateY(30px) scale(0.95);
}

.vx-fade--step,
.vx-fade--card,
.vx-fade--block,
.vx-fade--form {
  transform: translateY(24px) scale(0.98);
}

@keyframes vxSpin {
  from { transform: scale(var(--vx-scale, 1)) rotate(0deg); }
  to { transform: scale(var(--vx-scale, 1)) rotate(360deg); }
}

@keyframes vxSpinReverse {
  from { transform: scale(var(--vx-scale, 1)) rotate(360deg); }
  to { transform: scale(var(--vx-scale, 1)) rotate(0deg); }
}

@keyframes vxPulseCore {
  0%, 100% {
    box-shadow:
      0 0 40px rgba(67,181,66,0.1),
      inset 0 0 30px rgba(67,181,66,0.06);
  }
  50% {
    box-shadow:
      0 0 60px rgba(67,181,66,0.16),
      inset 0 0 42px rgba(67,181,66,0.09);
  }
}


@media (max-width: 1100px) {
  .vx-partners__hero,
  .vx-form-layout {
    grid-template-columns: 1fr;
  }

  .vx-partners__strip,
  .vx-logic__grid,
  .vx-path__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .vx-partners {
    padding-top: 9rem;
  }

  .vx-partners__actions,
  .vx-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vx-partners__strip,
  .vx-logic__grid,
  .vx-programs__grid,
  .vx-advantages__grid,
  .vx-path__grid,
  .vx-form__row {
    grid-template-columns: 1fr;
  }

  .vx-partners__title {
    font-size: 2.7rem;
  }

  .vx-orbit {
    width: min(100%, 22rem);
    margin: 0 auto;
  }

  .vx-orbit__core {
    width: 9rem;
    height: 9rem;
  }

  .vx-cta__box {
    padding: 1.5rem;
  }
}

















.pn-vision,
.pn-models,
.pn-benefits,
.pn-roadmap {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.pn-vision::before,
.pn-models::before,
.pn-benefits::before,
.pn-roadmap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(67,181,66,0.09), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(67,181,66,0.06), transparent 24%);
  pointer-events: none;
}

.pn-head,
.pn-vision__layout,
.pn-models__list,
.pn-benefits__grid,
.pn-roadmap__list {
  position: relative;
  z-index: 2;
}

.pn-label {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(67,181,66,0.18);
  background: rgba(255,255,255,0.03);
  color: #8af387;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pn-title {
  margin: 1rem 0 0;
  color: #fff;
   font-size:3rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.pn-title--center,
.pn-text--center,
.pn-head {
  text-align: center;
}

.pn-text {
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.pn-vision__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.pn-vision__points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.pn-mini {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(67,181,66,0.12);
  border-radius: 1rem;
  background: rgba(10,10,10,0.42);
  backdrop-filter: blur(12px);
}

.pn-mini strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.pn-mini span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255,255,255,0.66);
  line-height: 1.6;
}

.pn-vision__visual {
  position: relative;
}

.pn-vision__frame {
  position: relative;
  min-height: 35rem;
  border: 1px solid rgba(67,181,66,0.16);
  border-radius: 1.8rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14,14,14,0.82), rgba(8,8,8,0.95));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 38px rgba(0,0,0,0.28);
}

.pn-vision__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
}

.pn-vision__glow {
  position: absolute;
  inset: auto;
  width: 18rem;
  height: 18rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(67,181,66,0.22), transparent 70%);
  filter: blur(70px);
  z-index: 1;
}

.pn-vision__badge {
  position: absolute;
  z-index: 2;
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(67,181,66,0.16);
  background: rgba(10,10,10,0.72);
  color: rgba(255,255,255,0.84);
  font-size: 0.88rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 18px rgba(67,181,66,0.05);
}

.pn-vision__badge--top {
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.pn-vision__badge--right {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.pn-vision__badge--bottom {
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
}

.pn-models__list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.pn-model {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) 14rem;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem;
  border: 1px solid rgba(67,181,66,0.14);
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(14,14,14,0.82), rgba(8,8,8,0.94));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 14px 28px rgba(0,0,0,0.22);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.pn-model:hover {
  transform: translateY(-4px);
  border-color: rgba(67,181,66,0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 18px 32px rgba(0,0,0,0.28),
    0 0 18px rgba(67,181,66,0.06);
}

.pn-model__index {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 4.2rem;
  min-height: 4.2rem;
  border-radius: 1rem;
  border: 1px solid rgba(67,181,66,0.18);
  background: rgba(67,181,66,0.08);
  color: #8af387;
  font-size: 1.15rem;
  font-weight: 700;
}

.pn-model__title {
  margin: 0;
  color: #fff;
  font-size: 1.28rem;
}

.pn-model__text {
  margin: 0.55rem 0 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.pn-model__media {
  height: 8.8rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(67,181,66,0.12);
  background: rgba(255,255,255,0.02);
}

.pn-model__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* benefits */

.pn-benefits__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  margin-top: 2.4rem;
}

.pn-benefit {
  padding: 1.35rem;
  border: 1px solid rgba(67,181,66,0.14);
  border-radius: 1.45rem;
  background: linear-gradient(180deg, rgba(14,14,14,0.82), rgba(8,8,8,0.94));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 14px 28px rgba(0,0,0,0.22);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.pn-benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(67,181,66,0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 18px 32px rgba(0,0,0,0.28),
    0 0 18px rgba(67,181,66,0.06);
}

.pn-benefit--wide {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
}

.pn-benefit--accent {
  background:
    linear-gradient(180deg, rgba(67,181,66,0.12), rgba(8,8,8,0.94));
}

.pn-benefit__top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.pn-benefit__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  min-height: 2.7rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(67,181,66,0.18);
  background: rgba(67,181,66,0.08);
  color: #8af387;
  font-size: 0.95rem;
  font-weight: 700;
}

.pn-benefit__title {
  margin: 1rem 0 0.6rem;
  color: #fff;
  font-size: 1.2rem;
}

.pn-benefit__text {
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.pn-benefit__image {
  width: 100%;
  height: 15rem;
  margin-top: 1.3rem;
  border-radius: 1rem;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(67,181,66,0.12);
}

/* roadmap */

.pn-roadmap {
  padding-bottom: 6rem;
}

.pn-roadmap__list {
  position: relative;
  max-width: 60rem;
  margin: 2.8rem auto 0;
}

.pn-roadmap__track {
  position: absolute;
  left: 50%;
  top: 13rem;
  bottom: 3rem;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(67,181,66,0.05),
    rgba(67,181,66,0.38),
    rgba(67,181,66,0.05)
  );
  box-shadow: 0 0 20px rgba(67,181,66,0.08);
}

.pn-step {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.pn-step--right {
  justify-content: flex-end;
}

.pn-step__node {
  position: absolute;
  left: 50%;
  top: 1.2rem;
  transform: translateX(-50%);
  z-index: 3;
  width: 3.4rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(67,181,66,0.24);
  background: rgba(10,10,10,0.95);
  color: #8af387;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(67,181,66,0.08);
}

.pn-step__card {
  width: calc(50% - 3rem);
  padding: 1.3rem;
  border: 1px solid rgba(67,181,66,0.14);
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(14,14,14,0.82), rgba(8,8,8,0.94));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 14px 28px rgba(0,0,0,0.22);
}

.pn-step__title {
  margin: 0;
  color: #fff;
  font-size: 1.14rem;
}

.pn-step__text {
  margin: 0.7rem 0 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* animations */

.pn-fade {
  opacity: 0;
  filter: blur(10px);
  transition:
    opacity 0.8s ease,
    transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.8s ease;
  will-change: opacity, transform, filter;
}

.pn-fade.is-show {
  opacity: 1;
  filter: blur(0);
}

.pn-fade--up {
  transform: translateY(34px);
}

.pn-fade--left {
  transform: translateX(-32px);
}

.pn-fade--right {
  transform: translateX(32px);
}

.pn-fade--scale {
  transform: translateY(26px) scale(0.96);
}

.pn-fade.is-show {
  transform: translate(0, 0) scale(1);
}

@media (max-width: 1100px) {
  .pn-vision__layout,
  .pn-benefits__grid {
    grid-template-columns: 1fr;
  }

  .pn-model {
    grid-template-columns: 4.5rem 1fr;
  }

  .pn-model__media {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .pn-vision,
  .pn-models,
  .pn-benefits,
  .pn-roadmap {
    padding: 4rem 0;
  }

  .pn-title {
    font-size: 2.1rem;
  }

  .pn-vision__frame {
    min-height: 24rem;
  }

  .pn-roadmap__track {
    left: 1rem;
    transform: none;
    top: 0;
    bottom: 0;
  }

  .pn-step,
  .pn-step--right {
    justify-content: flex-start;
    padding-left: 3rem;
  }

  .pn-step__node {
    left: 1rem;
    transform: translateX(-50%);
  }

  .pn-step__card {
    width: 100%;
  }
}


.vx-contact-switch {
  display: grid;
  gap: 0.9rem;
}

.vx-contact-switch__item {
  display: block;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.vx-contact-switch__item label {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.2;
}

.vx-contact-switch__item input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.vx-contact-switch__item input:focus {
  outline: none;
  border-color: rgba(67, 181, 66, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.vx-contact-switch__item.is-current input {
  border-color: #43b542;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(67, 181, 66, 0.12);
}

.vx-contact-switch__item.is-hidden {
  display: none;
}
































.footer {
    margin-top: auto;
    max-width: 100%
}

@media screen and (max-width: 1000px) {
    .footer .section__bg {
        padding-top: 2rem
    }
}

.footer .section__video {
    height: 45rem;
    width: auto
}

@media screen and (max-width: 1000px) {
    .footer .section__video {
        height: auto;
        width: 270%
    }
}

@media screen and (max-width: 1000px) {
    .footer__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 4rem;
        height: 100%
    }

    .footer__content .section__title {
        margin-bottom: 25rem
    }
}

.footer__content .btn {
    position: absolute;
    background: #0e0e0e
}

@media screen and (max-width: 1000px) {
    .footer__content .btn {
        position: relative;
        margin-bottom: 1rem;
        display: block;
        top: 0 !important;
        left: 0 !important
    }
}

.footer__content .btn:nth-of-type(1) {
    top: 17rem;
    left: 15rem
}

.footer__content .btn:nth-of-type(2) {
    top: 27rem;
    left: 17rem
}

.footer__content .btn:nth-of-type(3) {
    top: 22rem;
    left: 48rem
}

.footer__content .btn:nth-of-type(4) {
    top: 35rem;
    left: 40rem
}

.footer .list-container {
    height: 100%
}

.main {
    max-width: 100%
}

.section {
    position: relative;
    padding: 4rem 0
}

.section__content {
    position: relative
}

.section__bg+.section__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 4rem 0
}

.section__title {
    font-size:3rem;
    font-weight: 700;
    font-family: Helvetica, sans-serif;
    margin: 0 0 1.36rem;
    text-transform: uppercase
}

@media screen and (max-width: 1000px) {
    .section__title {
        font-size: 2rem;
        margin-bottom: 1.67rem
    }
}

.section__desc {
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.section__desc .desc__title {
    margin: 0 0 .18rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 10
}

@media screen and (max-width: 1000px) {
    .section__desc .desc__title {
        font-size: 1.17rem;
        margin-bottom: 1rem
    }
}

.section__desc .desc__text {
    margin: 0;
    position: relative;
    z-index: 10
}

.section__subtitle {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
}

@media screen and (min-width: 1001px) {
    .mobile {
        display: none
    }
}

@media screen and (max-width: 1000px) {
    .desktop {
        display: none
    }
}

.hero {
    padding-top: 7.5rem;
    height: 100vh;
    overflow: hidden
}

@media screen and (max-width: 1000px) {
   
 .hero {
        height: 100vh;
        padding-top: 10.5rem !important;
        display: flex;
        flex-direction: column-reverse;
    }
    .mission{
       height: auto !important;
        min-height: 100vh;
        padding-top: 10.5rem !important;
        display: flex;
        flex-direction: column-reverse;
    }
    }
    .pyshics .section__content {
    top: 0rem !important;
    padding-top: 0rem !important;
}


.hero .section__bg {
    display: flex;
    height: 100%
}

.hero .section__bg .section__video {
    margin-left:30.64rem !important;
    height: calc(70vh - 7.5rem);
    margin-top: auto
}

@media screen and (max-width: 1000px) {
    .hero .section__bg .section__video {
        height: auto;
        width: 100%
    }
}

.hero .section__content {
    top: 5.5rem;
    padding-top: 6.27rem
}

@media screen and (max-width: 1000px) {
    .hero .section__content {
        position: static;
        padding: 0;
            top: 0rem !important;
    padding-top: 0rem !important;
    }
}


@media screen and (max-width: 1000px) {
  .hero .section__bg .section__video {
    margin-left: 0 !important;
    margin-top: 0;
    width: 100%;
    height: auto;
    display: block;
  }

  .hero .section__content {
    position: relative;
    top: 0;
    z-index: 2;
  }
}

.hero .section__title {
    width: 65%;
    text-transform: none;
    line-height: 1
}

@media screen and (max-width: 1000px) {
    .hero .section__title {
        width: 100%
    }
}

.hero .section__desc {
    font-size: 1.1rem;
    width: 40.36rem;
    max-width: 100%;
    margin-bottom: 2.86rem
}

@media screen and (max-width: 1000px) {
    .hero .section__desc {
        font-size: 1.33rem
    }

    .hero .section__desc+.flex {
        flex-direction: column
    }

    .hero .section__desc+.flex .btn {
        width: 100%;
        display: block
    }
}

.hero--main {
    background-image: linear-gradient(180deg, transparent 0%, #0E0E0E 50%), url(/assets/img/main-bg.08d04816.png);
    background-repeat: no-repeat, repeat;
    background-size: 100% 5.8rem, 87.27rem auto;
    background-position: bottom center
}

.hero .button-box {
    margin-right: 1.1rem
}

@media screen and (max-width: 1000px) {
    .hero .button-box {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 100%
    }
}

.hero .button-box .hint {
    margin: .55rem 0 0;
    width: 300px;
    text-align: center;
}
@media screen and (min-width: 1000px) and (max-width: 1350px) {
    .hero .button-box .hint {
        width: 230px;
}
}

@media screen and (min-width: 1000px) and (max-width: 1250px) {
    .hero .button-box .hint {
        width: 200px;
}
}

@media screen and (max-width: 1000px) {
    .hero .button-box .hint {
    width: 100% ;
}
}
.who {
    background: url(/assets/img/hexagons-bg.7213804e.svg) repeat center;
    background-size: auto 44rem
}

.wm-about {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.wm-about__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(16, 223, 109, 0.14), transparent 24%),
    radial-gradient(circle at 80% 20%, rgba(16, 223, 109, 0.08), transparent 20%);
  pointer-events: none;
}

.wm-about__head {
  position: relative;
  z-index: 2;
  max-width: 46rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.wm-about__eyebrow {
  display: inline-block;
  color: #8af387;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wm-about__title {
  margin: 0.8rem 0 0;
  color: #fff;
  font-size:3rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.wm-about__desc {
  margin: 1rem auto 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.wm-about__orbit {
  position: relative;
  min-height: 42rem;
  max-width: 78rem;
  margin: 0 auto;
  transition: transform 0.25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.wm-about__core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 13rem;
  height: 13rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(67, 181, 66, 0.2);
  background:
    radial-gradient(circle at 50% 40%, rgba(67, 181, 66, 0.18), rgba(10, 10, 10, 0.94) 62%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 40px rgba(67, 181, 66, 0.1),
    inset 0 0 30px rgba(67, 181, 66, 0.05);
  animation: wmPulseCore 5s ease-in-out infinite;
}

.wm-about__core-label {
  color: #8af387;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wm-about__core-title {
  margin-top: 0.35rem;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.wm-about__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(67, 181, 66, 0.12);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transform-origin: center;
}

.wm-about__ring--one {
  width: 28rem;
  height: 28rem;
  animation: wmRingSpin 18s linear infinite;
}

.wm-about__ring--two {
  width: 38rem;
  height: 38rem;
  opacity: 0.7;
  animation: wmRingSpinReverse 26s linear infinite;
}

.wm-about__ring::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(67, 181, 66, 0.08);
  animation: wmRingPulse 4.5s ease-in-out infinite;
}

.wm-particles span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #43b542;
  box-shadow: 0 0 10px rgba(67, 181, 66, 0.8);
}

.wm-particles span:nth-child(1) {
  animation: wmParticleOrbitOne 12s linear infinite;
}

.wm-particles span:nth-child(2) {
  animation: wmParticleOrbitTwo 16s linear infinite;
}

.wm-particles span:nth-child(3) {
  animation: wmParticleOrbitThree 20s linear infinite;
}

.wm-about-card {
  position: absolute;
  width: min(100%, 20rem);
  padding: 1.4rem;
  border: 1px solid rgba(67, 181, 66, 0.14);
  border-radius: 1.35rem;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.84) 0%,
    rgba(8, 8, 8, 0.94) 100%
  );
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 36px rgba(0, 0, 0, 0.24);
 transition:
    transform 0.22s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.wm-about-card__inner {
  width: 100%;
  height: 100%;
  transition:
    transform 0.18s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.wm-about-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(67, 181, 66, 0.18),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.wm-about-card:hover::before {
  opacity: 1;
}

.wm-about-card:hover {
  border-color: rgba(67, 181, 66, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 42px rgba(0, 0, 0, 0.3),
    0 0 18px rgba(67, 181, 66, 0.08);
}

.wm-about-card--mission {
  top: 4%;
  left: 6%;
}

.wm-about-card--goal {
  top: 16%;
  right: 4%;
}

.wm-about-card--experience {
  bottom: 0;
  left: 37%;
  transform: translateX(-50%);
}

.wm-about-card__icon {
  width: 3.1rem;
  height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  border: 1px solid rgba(67, 181, 66, 0.2);
  background: rgba(67, 181, 66, 0.08);
  box-shadow: 0 0 16px rgba(67, 181, 66, 0.08);
  animation: wmIconPulse 3s ease-in-out infinite;
}

.wm-about-card__icon svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: #8af387;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wm-about-card__title {
  margin: 1rem 0 0.55rem;
  color: #fff;
  font-size: 1.5rem;
}

.wm-about-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 1.1rem;
}

/* reveal animation */
.wm-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  filter: blur(10px);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.8s ease;
  will-change: opacity, transform, filter;
}

.wm-reveal.is-show {
  opacity: 1;
  filter: blur(0);
}

.wm-reveal--head.is-show {
  transform: translateY(0) scale(1);
}

.wm-reveal--core {
  transform: translate(-50%, calc(-50% + 24px)) scale(0.96);
}

.wm-reveal--core.is-show {
  transform: translate(-50%, -50%) scale(1);
}

.wm-reveal--card {
  transform: translateY(28px) scale(0.97);
}

.wm-reveal--card.is-show {
  transform: translateY(0) scale(1);
}

.wm-about-card--experience.wm-reveal--card {
  transform: translateX(-50%) translateY(28px) scale(0.97);
}

.wm-about-card--experience.wm-reveal--card.is-show {
  transform: translateX(-50%) translateY(0) scale(1);
}

/* keyframes */
@keyframes wmSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes wmSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes wmPulseCore {
  0%, 100% {
    box-shadow:
      0 0 40px rgba(67, 181, 66, 0.1),
      inset 0 0 30px rgba(67, 181, 66, 0.05);
  }
  50% {
    box-shadow:
      0 0 60px rgba(67, 181, 66, 0.18),
      inset 0 0 40px rgba(67, 181, 66, 0.08);
  }
}

@keyframes wmRingSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes wmRingSpinReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes wmRingPulse {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.015);
  }
}

@keyframes wmIconPulse {
  0% {
    box-shadow: 0 0 10px rgba(67, 181, 66, 0.15);
  }
  50% {
    box-shadow: 0 0 22px rgba(67, 181, 66, 0.35);
  }
  100% {
    box-shadow: 0 0 10px rgba(67, 181, 66, 0.15);
  }
}

@keyframes wmParticleOrbitOne {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(150px) rotate(-360deg);
  }
}

@keyframes wmParticleOrbitTwo {
  from {
    transform: translate(-50%, -50%) rotate(360deg) translateX(200px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg) translateX(200px) rotate(-360deg);
  }
}

@keyframes wmParticleOrbitThree {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(240px) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(240px) rotate(-360deg);
  }
}

@media (max-width: 980px) {
  .wm-about__orbit {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .wm-about__core,
  .wm-about__ring,
  .wm-particles {
    display: none;
  }

  .wm-about-card {
    position: relative;
    inset: auto;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none !important;
  }

  .wm-about-card--experience,
  .wm-about-card--experience.wm-reveal--card,
  .wm-about-card--experience.wm-reveal--card.is-show {
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .wm-about {
    padding: 5rem 0 4rem;
  }

  .wm-about__title {
    font-size: 2rem;
  }
}

























.solutions .grid__col {
    padding: 2.27rem
}

.solutions .section__pic {
    z-index: 1;
    margin: 2rem auto;
    position: relative;
    width: 64%
}

.solutions .section__pic img {
    filter: drop-shadow(0 0 0.6rem #7CFF8F)
}

.solutions .section__pic:before {
    content: "";
    display: block;
    width: 30.5rem;
    height: .23rem;
    position: absolute;
    z-index: -1;
    top: 48%;
    left: 50%;
    background: #7cff8f;
    box-shadow: 0 0 .45rem .23rem #1eea04;
    backdrop-filter: blur(0.45rem);
    opacity: .5;
    border-radius: 1rem;
    transform: translateX(-50%) rotate(-24.85deg)
}

.solutions .btn {
    margin: 0 auto
}

.risks {
    background: url(/assets/img/hexagons-bg.7213804e.svg) repeat center top, url(/assets/img/stars.830ab98b.svg) no-repeat center top;
    background-size: auto 44rem, 84.54rem auto
}

@media screen and (max-width: 1000px) {
    .risks {
        display: flex;
        flex-direction: column-reverse;
         background-size: auto , auto;
    }

    .risks .section__content {
        position: relative;
        z-index: 10
    }
}
.risks-switch {
  position: relative;
  overflow: hidden;
}

.risks-switch__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
  min-height: 42rem;
}

.risks-switch__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 34rem;
}

.risks-switch__media {
  position: relative;
  width: 100%;
  max-width: 34rem;
  aspect-ratio: 1 / 1;
}

.risks-switch__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  filter: drop-shadow(0 0 0.8rem rgba(16, 223, 109, 0.15));
  pointer-events: none;
}

.risks-switch__img.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: drop-shadow(0 0 1.5rem rgba(16, 223, 109, 0.35));
}

.risks-switch__content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
}

.risk-row {
  position: relative;
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: 1rem;
  transition: all 0.45s ease;
  opacity: 0.45;
}

.risk-row.active {
  opacity: 1;
  background: rgba(16, 223, 109, 0.06);
  border-color: rgba(16, 223, 109, 0.35);
  box-shadow: 0 0 2rem rgba(16, 223, 109, 0.08);
}

.risk-row__dot {
  width: 1rem;
  height: 1rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: #2c2c2c;
  box-shadow: 0 0 0 0 rgba(16, 223, 109, 0.4);
  transition: all 0.4s ease;
}

.risk-row.active .risk-row__dot {
  background: #10df6d;
  box-shadow:
    0 0 0.6rem rgba(16, 223, 109, 0.95),
    0 0 1.4rem rgba(16, 223, 109, 0.55);
}

.risk-row .desc__title {
  margin: 0 0 0.55rem;
font-size: 1.1rem;
  font-weight: 700;
}

.risk-row .desc__text {
  margin: 0;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
}

@media (max-width: 1000px) {
  .risks-switch__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .risks-switch__visual {
    min-height: 20rem;
  }

  .risks-switch__media {
    max-width: 22rem;
  }

  .risks-switch__content {
    gap: 1rem;
  }

  .risk-row {
    padding: 0.9rem 1rem;
  }
}





.vx-footer__bottom {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.vx-footer__copy {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.vx-footer__links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.vx-footer__links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.vx-footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #10DF6D;
  transition: 0.3s;
}

.vx-footer__links a:hover {
  color: #10DF6D;
}

.vx-footer__links a:hover::after {
  width: 100%;
}

/* mobile */

@media (max-width: 768px) {
  .vx-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.work .section__bg {
    padding-top: 6rem
}

.work .section__video {
    height: 44rem
}

@media screen and (max-width: 1000px) {
    .work .section__video {
        width: 150%;
        height: auto
    }
}

.work__line {
    list-style-type: none;
    counter-reset: step;
    padding: 1.6rem 0 0;
    margin: 0
}

.work__line .section__desc {
    position: relative
}

@media screen and (max-width: 1000px) {
    .work__line .section__desc .desc__title {
        margin-bottom: 0;
    }
}

.work__line .section__desc:before {
    counter-increment: step;
    content: counter(step);
    font-size: 2rem;
    line-height: 1;
    font-weight: 900;
    color: #1eea04;
    text-shadow: 0 0 2.26rem #1eea04;
    position: absolute;
    top: 0
}

@media screen and (max-width: 1000px) {
    .work__line .section__desc:before {
        font-size: 3.33rem
    }

}

.work__line .section__desc:nth-of-type(1) {
    width: 20rem;
    text-align: right;
    margin-bottom: 6rem;
  
}

@media screen and (max-width: 1000px) {
    .work__line .section__desc:nth-of-type(1) {
        width: auto;
        text-align: left;
        margin-left: 2.63rem;
                margin-bottom: 2.25rem;
          border:1px solid #1eea04;
    padding: 1rem;
    border-radius: 1.35rem;
    backdrop-filter: blur(14px);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.02),
      0 0 18px rgba(30, 234, 4, 0.08);
    }
}

.work__line .section__desc:nth-of-type(1):before {
    right: -2.63rem
}

@media screen and (max-width: 1000px) {
    .work__line .section__desc:nth-of-type(1):before {
        right: unset;
        left: -2.63rem
        
    }
}

.work__line .section__desc:nth-of-type(2) {
    width: 20.6rem;
    margin-left: 72%
}

@media screen and (max-width: 1000px) {
    .work__line .section__desc:nth-of-type(2) {
        width: auto;
        text-align: right;
        margin-left: 0;
        margin-right: 3rem;
               margin-bottom: 2.25rem;
          border:1px solid #1eea04;
    padding: 1rem;
    border-radius: 1.35rem;
    backdrop-filter: blur(14px);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.02),
      0 0 18px rgba(30, 234, 4, 0.08);
    }
}

.work__line .section__desc:nth-of-type(2):before {
    left: -3rem
}

@media screen and (max-width: 1000px) {
    .work__line .section__desc:nth-of-type(2):before {
        left: unset;
        right: -3rem
    }
}

.work__line .section__desc:nth-of-type(3) {
    width: 25.68rem;
    text-align: right;
    margin-left: 6%;
    margin-bottom: 6rem
}

@media screen and (max-width: 1000px) {
    .work__line .section__desc:nth-of-type(3) {
        width: auto;
        text-align: left;
        margin-left: 10rem;
            margin-bottom: 2.25rem;
          border:1px solid #1eea04;
    padding: 1rem;
    border-radius: 1.35rem;
    backdrop-filter: blur(14px);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.02),
      0 0 18px rgba(30, 234, 4, 0.08);
    }
}

.work__line .section__desc:nth-of-type(3):before {
    right: -3rem
}

@media screen and (max-width: 1000px) {
    .work__line .section__desc:nth-of-type(3):before {
        right: unset;
        left: -3rem
    }
}

.work__line .section__desc:nth-of-type(4) {
    width: 25rem;
    margin-left: 65%
}

@media screen and (max-width: 1000px) {
    .work__line .section__desc:nth-of-type(4) {
        width: auto;
        text-align: right;
        margin-right: 8rem;
        margin-left: 0;
        margin-bottom: 2rem;
          border:1px solid #1eea04;
    padding: 1rem;
    border-radius: 1.35rem;
    backdrop-filter: blur(14px);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.02),
      0 0 18px rgba(30, 234, 4, 0.08);
    }
}

.work__line .section__desc:nth-of-type(4):before {
    left: -3rem
}

@media screen and (max-width: 1000px) {
    .work__line .section__desc:nth-of-type(4):before {
        left: unset;
        right: -3rem
    }
}



@media screen and (max-width: 1000px) {
    .work__line .section__desc:nth-of-type(5) {
        width: 100%;
        text-align: left;
        margin-left: 6rem;
          border:1px solid #1eea04;
    padding: 1rem;
    border-radius: 1.35rem;
    backdrop-filter: blur(14px);
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.02),
      0 0 18px rgba(30, 234, 4, 0.08);
    }
}

.work__line .section__desc:nth-of-type(5):before {
    right: -3rem
}

@media screen and (max-width: 1000px) {
    .work__line .section__desc:nth-of-type(5):before {
        right: unset;
        left: -3rem
    }
}
























@media screen and (max-width: 1000px) {
    .hinting .wrapper {
        flex-direction: column
    }
}

.hinting .section__video {
    width: 33rem;
    margin-right: 2.5rem
}

@media screen and (max-width: 1000px) {
    .hinting .section__video {
        width: 100%;
        height: auto;
        margin-right: 0
    }
}

.hinting .section__title {
    text-transform: none;
    margin-bottom: 1.9rem;
}

.hinting .section__desc {
    margin-bottom: 2.8rem
}

.hinting .btn-default {
    margin: 0 auto;
    display: block
}

.faq .section__title {
    margin-bottom: 3.77rem
}

.faq__question {
    margin: 0;
    position: relative;
    cursor: pointer;
        padding: 0px 25px 0px 0px;
    transition: .3s ease
}

.faq__question:after {
    content: "";
    background: url("data:image/svg+xml,<svg class='hexagon' width='81' height='74' viewBox='0 0 81 74' fill='none' xmlns='http://www.w3.org/2000/svg'> <g filter=''> <path d='M50 54H31L20 37L31 20H50L61 37L50 54Z' stroke='%231EEA04' stroke-width='3'/> </g> <defs> <filter id='filter-hexagon' x='0' y='0' width='81' height='74' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'> <feFlood flood-opacity='0' result='BackgroundImageFix'/> <feColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/> <feOffset/> <feGaussianBlur stdDeviation='10'/> <feComposite in2='hardAlpha' operator='out'/> <feColorMatrix type='matrix' values='0 0 0 0 0.117647 0 0 0 0 0.917647 0 0 0 0 0.0156863 0 0 0 1 0'/> <feBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_187_1656'/> <feBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_187_1656' result='shape'/> </filter> </defs> </svg> ") no-repeat center center;
    background-size: 100% 100%;
    width: 3.68rem;
    height: 3.36rem;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(25%, -50%);
    transition: background-image .3s ease
}

.faq__question:hover,
.faq__question:focus {
    color: #43b542;
    text-shadow: 0 0 10px 0 #1eea04
}

.faq__answer {
    margin: 0;
    padding-top: 0;
    max-height: 0;
    height: auto;
    overflow: hidden;
    opacity: 0;
    transition: .6s ease
}

.faq__list {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.faq__list-item {
    margin-bottom: 1.36rem;
    border: 2px solid hsla(0, 0%, 100%, .2);
    border-radius: 1rem;
    padding: 2.27rem
}

.faq__list-item.show .faq__question:after {
    background-image: url("data:image/svg+xml,<svg class='hexagon' width='81' height='74' viewBox='0 0 81 74' fill='none' xmlns='http://www.w3.org/2000/svg'> <g filter='url(%23filter-hexagon)'> <path d='M50 54H31L20 37L31 20H50L61 37L50 54Z' fill='%231EEA04' stroke='%231EEA04' stroke-width='3'/> </g> <defs> <filter id='filter-hexagon' x='0' y='0' width='81' height='74' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'> <feFlood flood-opacity='0' result='BackgroundImageFix'/> <feColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/> <feOffset/> <feGaussianBlur stdDeviation='10'/> <feComposite in2='hardAlpha' operator='out'/> <feColorMatrix type='matrix' values='0 0 0 0 0.117647 0 0 0 0 0.917647 0 0 0 0 0.0156863 0 0 0 1 0'/> <feBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_187_1656'/> <feBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_187_1656' result='shape'/> </filter> </defs> </svg> ")
}

.faq__list-item.show .faq__answer {
    padding-top: 1.36rem;
    max-height: 20rem;
    opacity: 1
}

.experience .section__desc {
    width: 36.63rem;
    margin: 0 auto
}

@media screen and (max-width: 1000px) {
    .experience .section__desc {
        width: 100%
    }
}

.experience .picture {
    width: 51rem;
    margin: 0 auto
}

@media screen and (max-width: 1000px) {
    .experience .picture {
        width: 100%
    }
}

.practice-axis {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.practice-axis__bg {
  position: absolute;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.practice-axis__bg--left {
  top: 2rem;
  left: -8rem;
  background: rgba(16, 223, 109, 0.12);
}

.practice-axis__bg--right {
  right: -8rem;
  bottom: 0;
  background: rgba(0, 194, 255, 0.08);
}

.practice-axis .section__content {
  position: relative;
  z-index: 2;
}

.practice-axis__head {
  max-width: 54rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.practice-axis__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 223, 109, 0.22);
  background: rgba(16, 223, 109, 0.06);
  color: #8ef7b7;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.practice-axis__lead {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.practice-axis__scene {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 170px 1fr;
  align-items: center;
  gap: 1.25rem;
  min-height: 36rem;
}

.practice-axis__core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9rem;
  height: 9rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), transparent 38%),
    radial-gradient(circle, rgba(16,223,109,0.22), rgba(16,223,109,0.06));
  border: 1px solid rgba(16,223,109,0.32);
  box-shadow:
    0 0 0 1px rgba(16,223,109,0.06),
    0 0 30px rgba(16,223,109,0.14),
    inset 0 0 24px rgba(255,255,255,0.04);
  z-index: 3;
}

.practice-axis__core-label {
  color: rgba(255,255,255,0.48);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.practice-axis__core-title {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.practice-axis__line {
  position: absolute;
  left: 50%;
  top: 5%;
  bottom: 5%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(16,223,109,0),
    rgba(16,223,109,0.4),
    rgba(16,223,109,0),
    rgba(0,194,255,0.32),
    rgba(0,194,255,0)
  );
  z-index: 1;
}

.practice-panel {
  position: relative;
  min-height: 30rem;
  padding: 1.4rem;
  border-radius: 2rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    rgba(8,10,14,0.96);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.015),
    0 20px 50px rgba(0,0,0,0.34);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.practice-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.practice-panel--access::before {
  background:
    radial-gradient(circle at top left, rgba(16,223,109,0.12), transparent 34%),
    linear-gradient(135deg, rgba(16,223,109,0.05), transparent 45%);
}

.practice-panel--wallet::before {
  background:
    radial-gradient(circle at top right, rgba(0,194,255,0.10), transparent 34%),
    linear-gradient(225deg, rgba(0,194,255,0.05), transparent 45%);
}

.practice-panel:hover {
  transform: translateY(-10px);
  border-color: rgba(16,223,109,0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.025),
    0 24px 70px rgba(0,0,0,0.44),
    0 0 24px rgba(16,223,109,0.08);
}



.practice-panel--wallet {
  grid-column: 3;

}

.practice-panel--access:hover,
.practice-panel--wallet:hover {
  transform: translateY(-8px);
}

.practice-panel__meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.practice-panel__num {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.practice-panel__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.practice-panel__content {
  position: relative;
  z-index: 2;
  max-width: 24rem;
}

.practice-panel__title {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.practice-panel__text {
  margin: 0 0 1.4rem;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.72;
}

.practice-panel__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(16,223,109,0.3);
  background: linear-gradient(180deg, rgba(16,223,109,0.16), rgba(16,223,109,0.06));
  box-shadow: 0 0 18px rgba(16,223,109,0.08);
  transition: 0.3s ease;
}

.practice-panel__button:hover {
  border-color: rgba(16,223,109,0.5);
  box-shadow: 0 0 24px rgba(16,223,109,0.14);
  transform: translateY(-2px);
}

.practice-panel__media {
  position: absolute;
  right: 0.6rem;
  bottom: 0.5rem;
  width: 52%;
  max-width: 18rem;
  z-index: 1;
  transition: transform 0.35s ease;
}

.practice-panel--wallet .practice-panel__media {
  right: 1rem;
  width: 48%;
}

.practice-panel:hover .practice-panel__media {
  transform: translateY(-6px) scale(1.03);
}

.practice-panel__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,0.44));
}

@media (max-width: 1100px) {
  .practice-axis__scene {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1rem;
  }

  .practice-axis__core,
  .practice-axis__line {
    display: none;
  }

  .practice-panel,
  .practice-panel--access,
  .practice-panel--wallet {
    grid-column: auto;
    transform: none;
    min-height: auto;
  }

  .practice-panel {
    padding: 1.25rem;
  }

  .practice-panel__media {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 15rem;
    margin: 1.4rem auto 0;
  }

  .practice-panel:hover .practice-panel__media {
    transform: translateY(-4px) scale(1.02);
  }
}

@media (max-width: 640px) {
  .practice-axis {
    padding: 4rem 0;
  }

  .practice-axis__head {
    margin-bottom: 2rem;
  }

  .practice-panel {
    border-radius: 1.45rem;
  }

  .practice-panel__title {
    font-size: 1.2rem;
  }

  .practice-panel__text,
  .practice-axis__lead {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .practice-panel__num {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 0.8rem;
  }

  .practice-panel__button {
    width: 100%;
  }
}














.danger-premium {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.danger-premium__bg-glow {
  position: absolute;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.danger-premium__bg-glow--one {
  top: 2rem;
  left: -8rem;
  background: #10df6d;
}

.danger-premium__bg-glow--two {
  right: -8rem;
  bottom: 1rem;
  background: #00c2ff;
  opacity: 0.08;
}

.danger-premium .section__content {
  position: relative;
  z-index: 2;
}

.danger-premium__head {
  max-width: 56rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.danger-premium__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(16, 223, 109, 0.28);
  border-radius: 999px;
  background: rgba(16, 223, 109, 0.06);
  color: #8ef7b7;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.danger-premium__lead {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.danger-premium__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.danger-card {
  position: relative;
  min-height: 32rem;
  padding: 1.5rem;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    rgba(7, 10, 12, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 20px 50px rgba(0,0,0,0.32);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.danger-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16, 223, 109, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 24px 70px rgba(0,0,0,0.4),
    0 0 35px rgba(16,223,109,0.08);
}

.danger-card__layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(16,223,109,0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0,194,255,0.08), transparent 30%);
  pointer-events: none;
}

.danger-card__content {
  position: relative;
  z-index: 2;
  max-width: 28rem;
}

.danger-card__badge {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, rgba(16,223,109,0.22), rgba(16,223,109,0.08));
  border: 1px solid rgba(16,223,109,0.28);
  box-shadow: 0 0 18px rgba(16,223,109,0.12);
}

.danger-card__title {
  margin: 0 0 0.9rem;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.danger-card__text {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 26rem;
}

.danger-card__media {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 48%;
  max-width: 20rem;
  z-index: 1;
  transition: transform 0.35s ease;
}

.danger-card:hover .danger-card__media {
  transform: translateY(-6px) scale(1.02);
}

.danger-card__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
}

.danger-card--left .danger-card__media {
  bottom: 0.8rem;
  right: 0.6rem;
}

.danger-card--right .danger-card__media {
  bottom: 0.2rem;
  right: 0.5rem;
  width: 46%;
}

@media (max-width: 1000px) {
  .danger-premium__grid {
    grid-template-columns: 1fr;
  }

  .danger-card {
    min-height: auto;
    padding: 1.25rem;
  }

  .danger-card__media {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 16rem;
    margin: 1.5rem auto 0;
  }

  .danger-card__content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .danger-premium {
    padding: 4rem 0;
  }

  .danger-premium__head {
    margin-bottom: 2rem;
  }

  .danger-card {
    border-radius: 1.4rem;
  }

  .danger-card__title {
    font-size: 1.2rem;
  }

  .danger-card__text,
  .danger-premium__lead {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .danger-card__badge {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.9rem;
  }
}















.seed-orbit {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.seed-orbit__bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.seed-orbit__bg--one {
  width: 28rem;
  height: 28rem;
  top: 0;
  left: -10rem;
  background: rgba(16, 223, 109, 0.14);
}

.seed-orbit__bg--two {
  width: 24rem;
  height: 24rem;
  right: -7rem;
  bottom: 1rem;
  background: rgba(0, 194, 255, 0.08);
}

.seed-orbit .section__content {
  position: relative;
  z-index: 2;
}

.seed-orbit__head {
  max-width: 56rem;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.seed-orbit__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 223, 109, 0.24);
  background: rgba(16, 223, 109, 0.06);
  color: #8ef7b7;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.seed-orbit__lead {
  margin: 1rem auto 0;
  max-width: 43rem;
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.seed-orbit__scene {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.seed-orbit__visual {
  position: relative;
  min-height: 38rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seed-orbit__rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.seed-orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(16,223,109,0.16);
  box-shadow: 0 0 20px rgba(16,223,109,0.06);
}

.seed-orbit__ring--one {
  width: 22rem;
  height: 22rem;
  animation: spinSlow 18s linear infinite;
}

.seed-orbit__ring--two {
  width: 28rem;
  height: 28rem;
  border-style: dashed;
  border-color: rgba(0,194,255,0.15);
  animation: spinReverse 24s linear infinite;
}

.seed-orbit__ring--three {
  width: 34rem;
  height: 34rem;
  opacity: 0.55;
  animation: pulseRing 4.5s ease-in-out infinite;
}

.seed-orbit__image-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 34rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: seedFloat 5s ease-in-out infinite;
}

.seed-orbit__picture {
  display: flex;
  justify-content: center;
  width: 100%;
}

.seed-orbit__picture img {
  width: 100%;
  max-width: 32rem;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.46));
}

.seed-orbit__badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.8rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  background: rgba(10, 14, 18, 0.55);
  border: 1px solid rgba(16,223,109,0.26);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 18px rgba(16,223,109,0.08);
}

.seed-orbit__badge--top {
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  animation: badgeFloatTop 4.5s ease-in-out infinite;
}

.seed-orbit__badge--left {
  left: 2%;
  top: 52%;
  transform: translateY(-50%);
  animation: badgeFloatLeft 4.8s ease-in-out infinite;
}

.seed-orbit__badge--right {
  right: 2%;
  top: 52%;
  transform: translateY(-50%);
  animation: badgeFloatRight 5.1s ease-in-out infinite;
}

.seed-orbit__content {
  position: relative;
  z-index: 2;
}

.seed-orbit__panel {
  position: relative;
  padding: 2rem;
  border-radius: 2rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
    rgba(8, 10, 14, 0.96);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.015),
    0 24px 60px rgba(0,0,0,0.34);
}

.seed-orbit__panel-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(16,223,109,0.12), transparent 34%),
    linear-gradient(145deg, rgba(16,223,109,0.06), transparent 42%);
  pointer-events: none;
}

.seed-orbit__title,
.seed-orbit__text,
.seed-orbit__actions {
  position: relative;
  z-index: 2;
}

.seed-orbit__title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.08;
}

.seed-orbit__text {
  margin: 0 0 1rem;
  color: rgba(255,255,255,0.76);
  font-size: 1rem;
  line-height: 1.75;
}

.seed-orbit__actions {
  margin-top: 1.6rem;
}

.seed-orbit__button {
  min-width: 12rem;
}

@keyframes seedFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes pulseRing {
  0%, 100% {
    transform: scale(0.98);
    opacity: 0.38;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.7;
  }
}

@keyframes badgeFloatTop {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@keyframes badgeFloatLeft {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-8px); }
}

@keyframes badgeFloatRight {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(8px); }
}

@media (max-width: 1100px) {
  .seed-orbit__scene {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .seed-orbit__visual {
    min-height: 28rem;
    order: -1;
  }

  .seed-orbit__picture img {
    max-width: 20rem;
  }

  .seed-orbit__ring--one {
    width: 16rem;
    height: 16rem;
  }

  .seed-orbit__ring--two {
    width: 21rem;
    height: 21rem;
  }

  .seed-orbit__ring--three {
    width: 26rem;
    height: 26rem;
  }
}

@media (max-width: 768px) {
  .seed-orbit {
    padding: 4rem 0;
  }

  .seed-orbit__head {
    margin-bottom: 2rem;
  }

  .seed-orbit__visual {
    min-height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .seed-orbit__image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 18rem;
    width: 100%;
    left: auto;
    right: auto;
    transform: none;
  }

  .seed-orbit__picture {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .seed-orbit__picture img {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .seed-orbit__panel {
    padding: 1.25rem;
    border-radius: 1.4rem;
  }

  .seed-orbit__title {
    font-size: 1.2rem;
  }

  .seed-orbit__text,
  .seed-orbit__lead {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .seed-orbit__ring--one {
    width: 12rem;
    height: 12rem;
  }

  .seed-orbit__ring--two {
    width: 16rem;
    height: 16rem;
  }

  .seed-orbit__ring--three {
    width: 20rem;
    height: 20rem;
  }

  .seed-orbit__badge {
    font-size: 0.75rem;
    min-width: auto;
    padding: 0.5rem 0.75rem;
  }

  .seed-orbit__badge--left {
    left: 0;
  }

  .seed-orbit__badge--right {
    right: 0;
  }

  .seed-orbit__button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .seed-orbit__visual {
    min-height: 21rem;
  }

  .seed-orbit__image-wrap {
    max-width: 15rem;
  }

  .seed-orbit__ring--one {
    width: 11rem;
    height: 11rem;
  }

  .seed-orbit__ring--two {
    width: 14rem;
    height: 14rem;
  }

  .seed-orbit__ring--three {
    width: 18rem;
    height: 18rem;
  }
}






















.why-lab {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.why-lab__noise {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 0.6px, transparent 0.6px);
  background-size: 14px 14px;
  opacity: 0.18;
  pointer-events: none;
}

.why-lab__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.why-lab__glow--1 {
  width: 26rem;
  height: 26rem;
  top: 0;
  left: -8rem;
  background: rgba(16, 223, 109, 0.12);
}

.why-lab__glow--2 {
  width: 22rem;
  height: 22rem;
  right: -6rem;
  bottom: 1rem;
  background: rgba(0, 194, 255, 0.09);
}

.why-lab .section__content {
  position: relative;
  z-index: 2;
}

.why-lab__head {
  max-width: 52rem;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.why-lab__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 223, 109, 0.22);
  background: rgba(16, 223, 109, 0.06);
  color: #8ef7b7;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.why-lab__lead {
  margin: 1rem auto 0;
  max-width: 41rem;
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.why-lab__grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1.15fr;
  gap: 1.35rem;
  align-items: stretch;
}

.why-lab-card {
  position: relative;
  min-height: 32rem;
  border-radius: 2rem;
  overflow: hidden;
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
    rgba(8, 10, 14, 0.96);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.015),
    0 20px 50px rgba(0,0,0,0.34);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-lab-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16,223,109,0.08), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0,194,255,0.08), transparent 28%);
  pointer-events: none;
}

.why-lab-card:hover {
  transform: translateY(-8px);
  border-color: rgba(16,223,109,0.24);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.025),
    0 24px 70px rgba(0,0,0,0.44),
    0 0 24px rgba(16,223,109,0.08);
}

.why-lab-card__num {
  position: relative;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(16,223,109,0.28);
  background: linear-gradient(135deg, rgba(16,223,109,0.18), rgba(16,223,109,0.05));
  box-shadow: 0 0 18px rgba(16,223,109,0.08);
}

.why-lab-card__body {
  position: relative;
  z-index: 2;
  max-width: 24rem;
}

.why-lab-card__title {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.15;
}

.why-lab-card__text {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.98rem;
  line-height: 1.72;
}

.why-lab-card__media {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
  width: 72%;
  max-width: 18rem;
  z-index: 1;
  transition: transform 0.35s ease;
}

.why-lab-card:hover .why-lab-card__media {
  transform: translateX(-50%) translateY(-6px) scale(1.03);
}

.why-lab-card__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,0.44));
}








@media (max-width: 1100px) {
  .why-lab__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-lab-card,
  .why-lab-card--a,
  .why-lab-card--b,
  .why-lab-card--c {
    transform: none;
    min-height: auto;
  }

  .why-lab-card {
    padding: 1.25rem;
  }

  .why-lab-card__media {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: 15rem;
    margin: 1.4rem auto 0;
  }

  .why-lab-card:hover .why-lab-card__media {
    transform: translateY(-4px) scale(1.02);
  }
}

@media (max-width: 640px) {
  .why-lab {
    padding: 4rem 0;
  }

  .why-lab__head {
    margin-bottom: 2rem;
  }

  .why-lab-card {
    border-radius: 1.45rem;
  }

  .why-lab-card__title {
    font-size: 1.15rem;
  }

  .why-lab-card__text,
  .why-lab__lead {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .why-lab-card__num {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.9rem;
  }
}

.process {
    border-radius: 2.24rem;
    border: 1px solid hsla(0, 0%, 100%, .2);
    margin: 0 1.36rem
}

.process .section__title {
    margin-bottom: 7rem
}

@media screen and (max-width: 1000px) {
    .process .section__title {
        margin-bottom: 3rem
    }
}

.process__steps {
    position: relative;
    width: 63.77rem;
    height: 33rem;
    margin: 0 auto 2rem
}

@media screen and (max-width: 1000px) {
    .process__steps {
        width: 25rem;
        height: 12rem
    }
}

.process__steps .list-container+.picture {
    top: 17rem;
    left: 12.1rem;
    width: 51.75rem
}

@media screen and (max-width: 1000px) {
    .process__steps .list-container+.picture {
        top: 6.6rem;
        left: 4.7rem;
        width: 20.5rem
    }
}

.process__steps .list-container>.picture:nth-of-type(1) {
    top: 6rem;
    left: 0;
    width: 21rem
}

@media screen and (max-width: 1000px) {
    .process__steps .list-container>.picture:nth-of-type(1) {
        top: 2.5rem;
        width: 8rem
    }
}

.process__steps .list-container>.picture:nth-of-type(2) {
    top: 13rem;
    left: 20rem;
    width: 21rem
}

@media screen and (max-width: 1000px) {
    .process__steps .list-container>.picture:nth-of-type(2) {
        top: 5rem;
        left: 8rem;
        width: 8rem
    }
}

.process__steps .list-container>.picture:nth-of-type(3) {
    top: 0;
    left: 39rem;
    width: 21rem
}

@media screen and (max-width: 1000px) {
    .process__steps .list-container>.picture:nth-of-type(3) {
        left: 15.5rem;
        width: 8rem
    }
}

.process__picture {
    position: absolute
}

.process .section__content {
    position: relative
}

@media screen and (max-width: 1000px) {
    .process .section__content {
        padding: 0 1.33rem
    }
}

.process .section__desc {
    position: absolute
}

@media screen and (max-width: 1000px) {
    .process .section__desc {
        position: static
    }
}

.process .section__desc:nth-of-type(1) {
    width: 14.72rem
}

@media screen and (max-width: 1000px) {
    .process .section__desc:nth-of-type(1) {
        width: 100%
    }
}

.process .section__desc:nth-of-type(1) {
    top: 11rem;
    left: 6rem
}

.process .section__desc:nth-of-type(2) {
    width: 25rem
}

@media screen and (max-width: 1000px) {
    .process .section__desc:nth-of-type(2) {
        width: 100%
    }
}

.process .section__desc:nth-of-type(2) {
    top: 38rem;
    left: 42rem
}

.process .section__desc:nth-of-type(3) {
    width: 24.63rem
}

@media screen and (max-width: 1000px) {
    .process .section__desc:nth-of-type(3) {
        width: 100%
    }
}

.process .section__desc:nth-of-type(3) {
    top: 6rem;
    left: 50rem
}


.shield-showcase {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.shield-showcase__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.shield-showcase__glow--left {
  width: 30rem;
  height: 30rem;
  top: 3rem;
  left: -12rem;
  background: rgba(16, 223, 109, 0.12);
}

.shield-showcase__glow--right {
  width: 24rem;
  height: 24rem;
  right: -8rem;
  bottom: 2rem;
  background: rgba(0, 194, 255, 0.1);
}

.shield-showcase .section__content {
  position: relative;
  z-index: 2;
}

.shield-showcase__head {
  max-width: 56rem;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.shield-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 223, 109, 0.22);
  background: rgba(16, 223, 109, 0.06);
  color: #8ef7b7;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.shield-showcase__lead {
  margin: 1rem auto 0;
  max-width: 43rem;
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.shield-showcase__stack {
  display: grid;
  gap: 2.5rem;
}

.shield-scene {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  min-height: 34rem;
  padding: 2rem;
  border-radius: 2.4rem;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    rgba(7, 10, 14, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.015),
    0 24px 60px rgba(0,0,0,0.34);
  overflow: hidden;
}

.shield-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shield-scene--business::before {
  background:
    radial-gradient(circle at left center, rgba(16,223,109,0.12), transparent 35%),
    linear-gradient(135deg, rgba(16,223,109,0.05), transparent 40%);
}



.shield-scene__visual {
  position: relative;
  z-index: 1;
}

.shield-scene__image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30rem;
}

.shield-scene__image-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 10%;
  border-radius: 2rem;
  background:
    radial-gradient(circle, rgba(16,223,109,0.16), transparent 60%);
  filter: blur(35px);
  z-index: 0;
}

.shield-scene--private .shield-scene__image-wrap::before {
  background:
    radial-gradient(circle, rgba(0,194,255,0.16), transparent 60%);
}

.shield-scene__image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 30rem;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,0.45));
  transition: transform 0.4s ease;
}

.shield-scene:hover .shield-scene__image-wrap img {
  transform: scale(1.04) translateY(-6px);
}

.shield-scene__content {
  position: relative;
  z-index: 2;
  max-width: 28rem;
}

.shield-scene__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.shield-scene__num {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
}

.shield-scene__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.shield-scene__title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
  line-height: 1.05;
}

.shield-scene__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.shield-scene__list li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 1.15rem;
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.65;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.shield-scene__list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #10df6d;
  box-shadow:
    0 0 0 6px rgba(16,223,109,0.08),
    0 0 14px rgba(16,223,109,0.24);
}

.shield-scene--private .shield-scene__list li::before {
  background: #00c2ff;
  box-shadow:
    0 0 0 6px rgba(0,194,255,0.08),
    0 0 14px rgba(0,194,255,0.24);
}

.shield-scene--private {
  grid-template-columns: 0.9fr 1.1fr;
}

@media (max-width: 1100px) {
  .shield-scene,
  .shield-scene--private {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
    padding: 1.4rem;
  }

  .shield-scene__image-wrap {
    min-height: auto;
  }


  .shield-scene__content {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .shield-showcase {
    padding: 4rem 0;
  }

  .shield-showcase__head {
    margin-bottom: 2rem;
  }

  .shield-scene {
    border-radius: 1.5rem;
  }

  .shield-scene__title {
    font-size: 1.2rem;
  }

  .shield-scene__list li,
  .shield-showcase__lead {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .shield-scene__num {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.85rem;
  }

  .shield-scene__list li {
    padding: 0.9rem 0.9rem 0.9rem 2.7rem;
  }

  .shield-scene__list li::before {
    left: 0.95rem;
    width: 0.75rem;
    height: 0.75rem;
  }
}





/* GRID */

/* =========================
   COMPATIBLE BLOCK
========================= */

.compatible__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  justify-items: center;
  padding-top: 2.5rem;
}

/* =========================
   ITEM
========================= */

.compatible .picture {
  --glow: #10df6d;

  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transform-style: preserve-3d;
  will-change: transform, filter, opacity;

  transition:
    transform 0.45s cubic-bezier(0.22, 0.9, 0.3, 1),
    filter 0.35s ease;
}

.compatible .picture::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  width: 145%;
  height: 145%;
  transform: translate(-50%, -50%);

  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--glow) 30%, transparent) 0%,
    transparent 70%
  );

  filter: blur(30px);
  opacity: 0.32;
  pointer-events: none;

  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    filter 0.45s ease;
}

.compatible .picture::after {
  content: "";
  position: absolute;
  inset: 18% 20%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--glow) 18%, transparent) 0%,
    transparent 72%
  );
  filter: blur(22px);
  opacity: 0.18;
  pointer-events: none;
  animation: compatiblePulse 4.2s ease-in-out infinite;
}

.compatible .picture img {
  width: 250px;
  max-width: 100%;
  display: block;
  position: relative;
  z-index: 2;

  transition:
    transform 0.45s cubic-bezier(0.22, 0.9, 0.3, 1),
    filter 0.35s ease;

  filter:
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 10px var(--glow));
}

/* =========================
   HOVER
========================= */

.compatible .picture:hover {
  transform: translateY(-14px) scale(1.05) rotateX(4deg) rotateY(-4deg);
}

.compatible .picture:hover::before {
  opacity: 0.78;
  transform: translate(-50%, -50%) scale(1.1);
  filter: blur(34px);
}

.compatible .picture:hover::after {
  opacity: 0.28;
}

.compatible .picture:hover img {
  transform: scale(1.11) translateZ(10px);
  filter:
    drop-shadow(0 14px 24px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 18px var(--glow))
    drop-shadow(0 0 34px var(--glow));
}


/* =========================
   FLOATING
========================= */

.float-1,
.float-2,
.float-3,
.float-4,
.float-5,
.float-6,
.float-7,
.float-8,
.float-9,
.float-10,
.float-11,
.float-12,
.float-13,
.float-14,
.float-15,
.float-16 {
  animation: compatibleFloat 5.5s ease-in-out infinite;
}

.float-1 { animation-delay: 0s; }
.float-2 { animation-delay: 0.45s; }
.float-3 { animation-delay: 0.9s; }
.float-4 { animation-delay: 1.35s; }
.float-5 { animation-delay: 1.8s; }
.float-6 { animation-delay: 2.25s; }
.float-7 { animation-delay: 2.7s; }
.float-8 { animation-delay: 3.15s; }
.float-9 { animation-delay: 3.6s; }
.float-10 { animation-delay: 4.05s; }
.float-11 { animation-delay: 4.5s; }
.float-12 { animation-delay: 4.95s; }
.float-13 { animation-delay: 5.4s; }
.float-14 { animation-delay: 5.85s; }
.float-15 { animation-delay: 6.3s; }
.float-16 { animation-delay: 6.75s; }

/* =========================
   GLOW COLORS
========================= */

.glow-binance { --glow: #f0b90b !important; }
.glow-coinbase { --glow: #0052ff !important; }
.glow-kraken { --glow: #6c3cff !important; }
.glow-gemini { --glow: #00dcff !important; }
.glow-kucoin { --glow: #75ce93 !important; }
.glow-google { --glow: #9fa8a5 !important; }
.glow-microsoft { --glow: #7fba00 !important; }
.glow-vpn { --glow: #10df6d !important; }
.glow-EntraID { --glow: #00c2ff !important; }
.glow-github { --glow: #999999 !important; }
.glow-okta { --glow: #0066cc !important; }
.glow-yandex { --glow: #ff0000 !important; }
.glow-instagram { --glow: #e1306c !important; }
.glow-google { --glow: #4285f4 !important; }
.glow-gmail { --glow: #ea4335 !important; }
.glow-duo { --glow: #00c2ff !important; } 

/* =========================
   KEYFRAMES
========================= */

@keyframes compatibleFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes compatiblePulse {
  0%   { opacity: 0.14; transform: scale(0.96); }
  50%  { opacity: 0.26; transform: scale(1.05); }
  100% { opacity: 0.14; transform: scale(0.96); }
}

/* =========================
   ADAPTIVE
========================= */

@media screen and (max-width: 1100px) {
  .compatible__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
  }

  .compatible .picture img {
    width: 220px;
  }
}

@media screen and (max-width: 800px) {
  .compatible__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }

  .compatible .picture img {
    width: 180px;
  }
}

@media screen and (max-width: 520px) {
  .compatible__grid {
 grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
  }

  .compatible .picture img {
    width: 165px;
  }

  .float-1,
  .float-2,
  .float-3,
  .float-4,
  .float-5,
  .float-6,
  .float-7,
  .float-8 {
    animation-duration: 4.8s;
  }
}
















.catalog {
  position: relative;
  padding: 6rem 0 2rem;
}

.catalog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(67, 181, 66, 0.08), transparent 35%);
  pointer-events: none;
}

.catalog__container {
  position: relative;
  z-index: 1;
}

.catalog__head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.catalog__eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: #43b542;
  font-size: 0.85rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog__title {
  margin: 0;
  color: #fff;
   font-size:3rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.catalog__desc {
  margin: 1rem auto 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
font-size: 1.1rem;
  line-height: 1.6;
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 3rem;
}

.catalog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(67, 181, 66, 0.14);
  border-radius: 1.4rem;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.78) 0%,
    rgba(8, 8, 8, 0.92) 100%
  );
  backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 34px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 0.9, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.catalog-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.catalog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(67, 181, 66, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 42px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(67, 181, 66, 0.08);
}

.catalog-card__glow {
  position: absolute;
  inset: auto 0 -30% 0;
  height: 180px;
  background: radial-gradient(circle, rgba(67, 181, 66, 0.12), transparent 70%);
  pointer-events: none;
  filter: blur(16px);
}

.catalog-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  padding: 1.5rem 1.5rem 0.75rem;
}

.catalog-card__media::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 181, 66, 0.14), transparent 72%);
  filter: blur(18px);
}

.catalog-card__media img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 250px;
  display: block;
  object-fit: contain;
  transition: transform 0.35s ease, filter 0.35s ease;
  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 14px rgba(67, 181, 66, 0.22));
}

.catalog-card:hover .catalog-card__media img {
  transform: translateY(-4px) scale(1.03);
  filter:
    drop-shadow(0 14px 28px rgba(0, 0, 0, 0.36))
    drop-shadow(0 0 18px rgba(67, 181, 66, 0.28));
}

.catalog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 1.35rem 1.35rem;
}

.catalog-card__badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.95rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(67, 181, 66, 0.22);
  border-radius: 999px;
  background: rgba(67, 181, 66, 0.08);
  color: #7ee67c;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.catalog-card__title {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
}

.catalog-card__text {
  margin: 0 0 0.95rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  line-height: 1.6;
}

.catalog-card__meta {
  margin: 0 0 1.3rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  line-height: 1.55;
}

.catalog-card__meta strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.catalog-card__button {
  margin-top: auto;
  min-height: 3.1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(67, 181, 66, 0.28);
  border-radius: 0.9rem;
  background: linear-gradient(
    180deg,
    rgba(67, 181, 66, 0.16) 0%,
    rgba(67, 181, 66, 0.1) 100%
  );
  color: #fff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 0 16px rgba(67, 181, 66, 0.04);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.catalog-card__button:hover {
  border-color: rgba(67, 181, 66, 0.55);
  background: linear-gradient(
    180deg,
    rgba(67, 181, 66, 0.22) 0%,
    rgba(67, 181, 66, 0.14) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 18px rgba(67, 181, 66, 0.08);
  transform: translateY(-1px);
}

@media (max-width: 1180px) {
  .catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .catalog {
    padding-top: 4.5rem;
  }

  .catalog__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .catalog-card__media {
    height: 210px;
  }

  .catalog-card__media img {
    max-height: 155px;
  }
}







.modal-contact-switch {
  display: grid;
  gap: 0.9rem;
}

.modal-contact-switch__item {
  display: block;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.modal-contact-switch__item label {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.2;
}

.modal-contact-switch__item input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.modal-contact-switch__item input:focus {
  outline: none;
  border-color: rgba(67, 181, 66, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.modal-contact-switch__item.is-current input {
  border-color: #43b542;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(67, 181, 66, 0.12);
}

.modal-contact-switch__item.is-hidden {
  display: none;
}


















/* =========================
   PROCESS SECTION
========================= */

.nx-process{
position:relative;
padding:10rem 0;
overflow:hidden;
}

/* background glow */

.nx-process__bg{
position:absolute;
inset:0;

background:
radial-gradient(circle at 20% 30%, rgba(67,181,66,0.22), transparent 35%),
radial-gradient(circle at 80% 70%, rgba(67,181,66,0.16), transparent 35%);
}

/* =========================
   HEADER
========================= */

.nx-process__head{
text-align:center;
max-width:52rem;
margin:0 auto 5rem;
}

.nx-process__eyebrow{
color:#8af387;
font-size:.9rem;
letter-spacing:.14em;
text-transform:uppercase;
}

.nx-process__title{
  font-size:3rem;
color:#fff;
margin:.8rem 0;
}

.nx-process__desc{
font-size:1.1rem;
color:rgba(255,255,255,.75);
line-height:1.8;
}

/* =========================
   SCENE
========================= */

.nx-process__scene{
position:relative;
max-width:1000px;
height:700px;
margin:0 auto;
perspective:1200px;
}

/* =========================
   CORE CENTER
========================= */

.nx-process__core{

position:absolute;
left:50%;
top:50%;

transform:translate(-50%,-50%);

width:190px;
height:190px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:1.15rem;
font-weight:600;

color:#fff;

background:
radial-gradient(circle, rgba(67,181,66,0.32), rgba(8,8,8,0.96));

border:1px solid rgba(67,181,66,0.45);

box-shadow:
0 0 60px rgba(67,181,66,0.35),
inset 0 0 30px rgba(67,181,66,0.15);

animation:nxPulse 4.5s ease-in-out infinite;
}

@keyframes nxPulse{

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

50%{
transform:translate(-50%,-50%) scale(1.08);
}

}

/* =========================
   NODE POSITION
========================= */

.nx-node{
position:absolute;
width:340px;
}

/* positions */

.nx-node--one{
left:-40px;
top:-20px;
}

.nx-node--two{
right:-40px;
top:-20px;
}

.nx-node--three{
left:-40px;
bottom:-20px;
}

.nx-node--four{
right:-40px;
bottom:-20px;
}

/* =========================
   CARD
========================= */

.nx-node__card{

padding:1.9rem 2rem;

border-radius:18px;

background:
linear-gradient(
180deg,
rgba(18,18,18,.95),
rgba(8,8,8,.95)
);

border:1px solid rgba(67,181,66,.25);

color:#fff;

transition:
transform .35s cubic-bezier(.22,1,.36,1),
box-shadow .35s ease,
border-color .3s ease;

transform-style:preserve-3d;

will-change:transform;

}

/* number */

.nx-node__num{
display:block;
margin-bottom:.6rem;

color:#8af387;

font-size:.9rem;
letter-spacing:.14em;
text-transform:uppercase;
}

/* title */

.nx-node__card h3{
font-size:1.5rem;
font-weight:600;
margin-bottom:.6rem;
}

/* text */

.nx-node__card p{
font-size:1.05rem;
line-height:1.7;
color:rgba(255,255,255,.72);
}

/* hover */

.nx-node__card:hover{

transform:translateY(-8px) scale(1.04);

border-color:rgba(67,181,66,.45);

box-shadow:
0 18px 60px rgba(0,0,0,.55),
0 0 40px rgba(67,181,66,.18);

}

/* =========================
   CONNECTION LINES
========================= */

.nx-lines{
position:absolute;
inset:0;
pointer-events:none;
}

.nx-lines line{

stroke:rgba(67,181,66,.28);
stroke-width:2.5;

stroke-dasharray:10 8;

animation:nxLine 14s linear infinite;

}

@keyframes nxLine{

from{
stroke-dashoffset:0;
}

to{
stroke-dashoffset:140;
}

}

/* =========================
   CTA
========================= */

.nx-process__cta{
text-align:center;
margin-top:4rem;
}

.nx-process__btn{

padding:1.1rem 2.2rem;

font-size:1rem;

border-radius:12px;

border:1px solid rgba(67,181,66,.4);

background:rgba(67,181,66,.2);

color:#fff;

cursor:pointer;

transition:.25s;
}

.nx-process__btn:hover{

background:rgba(67,181,66,.35);

box-shadow:0 0 20px rgba(67,181,66,.25);

transform:translateY(-2px);

}


@media (max-width:1024px){

.nx-process__scene{

display:flex;
flex-direction:column;
align-items:center;

height:auto;
gap:2.5rem;

}

/* центр */

.nx-process__core{

position:relative;

left:auto;
top:auto;

transform:none;

margin:2rem auto;

}

/* карточки */

.nx-node{

position:relative;

left:auto;
right:auto;
top:auto;
bottom:auto;

width:100%;
max-width:420px;

}

/* линии убираем */

.nx-lines{
display:none;
}

}


@media (max-width:600px){

.nx-process{
padding:6rem 0;
}

.nx-process__core{

width:150px;
height:150px;

}

.nx-node__card{

padding:1.6rem;

}

}



































.wallet-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1rem;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.wallet-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wallet-modal__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(67, 181, 66, 0.08), transparent 35%),
    rgba(2, 4, 3, 0.8);
  backdrop-filter: blur(8px);
}

.wallet-modal__window {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 32rem;
  max-height: calc(100vh - 2rem);

  overflow-y: auto;
  overflow-x: hidden;

  padding: 2rem;

  border: 1px solid rgba(67, 181, 66, 0.22);
  border-radius: 1rem;

  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.96) 0%,
    rgba(10, 10, 10, 0.98) 100%
  );

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(67, 181, 66, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);

  transform: translateY(18px) scale(0.98);
  transition: transform 0.25s ease;
  box-sizing: border-box;
}

.wallet-modal.is-open .wallet-modal__window {
  transform: translateY(0) scale(1);
}

.wallet-modal__window::-webkit-scrollbar {
  width: 6px;
}

.wallet-modal__window::-webkit-scrollbar-thumb {
  background: rgba(67, 181, 66, 0.3);
  border-radius: 999px;
}

.wallet-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;

  width: 2.2rem;
  height: 2.2rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.03);

  font-size: 1.25rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;

  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.wallet-modal__close:hover {
  border-color: rgba(67, 181, 66, 0.35);
  background: rgba(67, 181, 66, 0.08);
}

.wallet-modal__title {
  margin: 0 0 0.45rem;
  padding-right: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.15;
  color: #fff;
}

.wallet-modal__subtitle {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.5;
}

.wallet-form {
  display: grid;
  gap: 0.95rem;
}

.wallet-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.wallet-form__field label {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.2;
}

.wallet-form input,
.wallet-form textarea,
.wallet-form select {
  width: 100%;
  padding: 0.9rem 1rem;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.8rem;

  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  line-height: 1.4;
  box-sizing: border-box;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.wallet-form input::placeholder,
.wallet-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.wallet-form textarea {
  min-height: 6rem;
  resize: vertical;
}

.wallet-form select {
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.72) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.wallet-form input:focus,
.wallet-form textarea:focus,
.wallet-form select:focus {
  outline: none;
  border-color: #43b542;
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 3px rgba(67, 181, 66, 0.12),
    0 0 16px rgba(67, 181, 66, 0.08);
}

.wallet-form__submit {
  margin-top: 0.4rem;
  min-height: 3.15rem;
  padding: 0.9rem 1.1rem;

  border: 1px solid rgba(67, 181, 66, 0.35);
  border-radius: 0.85rem;

  background: linear-gradient(
    180deg,
    rgba(67, 181, 66, 0.2) 0%,
    rgba(67, 181, 66, 0.12) 100%
  );

  color: #fff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;

  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wallet-form__submit:hover {
  border-color: rgba(67, 181, 66, 0.55);
  background: linear-gradient(
    180deg,
    rgba(67, 181, 66, 0.26) 0%,
    rgba(67, 181, 66, 0.16) 100%
  );
  box-shadow: 0 0 18px rgba(67, 181, 66, 0.12);
  transform: translateY(-1px);
}

/* переключатель контакта */
.wallet-contact-switch {
  display: grid;
  gap: 0.9rem;
}

.wallet-contact-switch__item label {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.wallet-contact-switch__item.is-current input {
  border-color: #43b542;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(67, 181, 66, 0.12);
}

.wallet-contact-switch__item.is-hidden {
  display: none;
}

@media (max-width: 640px) {
  .wallet-modal {
    align-items: flex-start;
    padding: 0.75rem;
  }

  .wallet-modal__window {
    max-width: 100%;
    max-height: calc(100vh - 1.5rem);
    margin-top: 0.5rem;
    padding: 1.15rem;
    padding-top: 2.8rem;
  }

  .wallet-modal__title {
    font-size: 1.35rem;
  }
}
























.success-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1rem;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.success-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 3, 0.8);
  backdrop-filter: blur(8px);
}

.success-modal__window {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 28rem;

  padding: 2rem 1.5rem;
  border-radius: 1rem;

  text-align: center;

  border: 1px solid rgba(67, 181, 66, 0.22);
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.96) 0%,
    rgba(10, 10, 10, 0.98) 100%
  );

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(67, 181, 66, 0.08);
}

.success-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;

  width: 2.2rem;
  height: 2.2rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.03);

  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.success-modal__icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
}

.success-modal__icon svg {
  width: 100%;
  height: 100%;
}

.success-modal__icon circle {
  fill: rgba(67, 181, 66, 0.12);
  stroke: rgba(67, 181, 66, 0.4);
  stroke-width: 1.5;
}

.success-modal__icon path {
  fill: none;
  stroke: #43b542;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-modal__title {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
}

.success-modal__text {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.success-modal__button {
  margin-top: 1.3rem;
  min-height: 3rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(67, 181, 66, 0.35);
  border-radius: 0.85rem;
  background: rgba(67, 181, 66, 0.18);
  color: #fff;
  font: inherit;
  cursor: pointer;
}
.modal-form select,
.wallet-form select,
.ct-contact-form select,
.vx-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: none !important;
}
select::-ms-expand {
  display: none;
}



























.form-field-check,
.modal-form__field,
.wallet-form__field,
.ct-contact-form__field,
.vx-form__field,
.modal-contact-switch__item {
  position: relative;
}

.field-check {
  position: absolute;
  right: 1.2rem;
  top: calc(50% + 0.6rem);

  width: 1.25rem;
  height: 1.25rem;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateY(-50%) scale(0.82);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;

  pointer-events: none;
  z-index: 3;
}

.field-check svg {
  width: 100%;
  height: 100%;
  display: block;
}

.field-check circle {
  fill: rgba(67, 181, 66, 0.16);
  stroke: rgba(67, 181, 66, 0.35);
  stroke-width: 1.3;
}

.field-check path {
  fill: none;
  stroke: #43b542;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.is-valid .field-check {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.is-valid input,
.is-valid textarea,
.is-valid select {
  border-color: #43b542 !important;
  box-shadow: 0 0 0 3px rgba(67, 181, 66, 0.1);
}

.is-invalid input,
.is-invalid textarea,
.is-invalid select {
  border-color: rgba(255, 90, 90, 0.75) !important;
}


















































































.nx-contact-scene {
  position: relative;
  padding: 11rem 0 5rem;
  overflow: hidden;
}

.nx-contact-scene__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(16, 223, 109, 0.12), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(16, 223, 109, 0.07), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
  pointer-events: none;
}

.nx-contact-scene__bg::before,
.nx-contact-scene__bg::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(80px);
}

.nx-contact-scene__bg::before {
  width: 24rem;
  height: 24rem;
  left: -4rem;
  top: 3rem;
  background: rgba(16, 223, 109, 0.14);
}

.nx-contact-scene__bg::after {
  width: 20rem;
  height: 20rem;
  right: 4rem;
  top: 6rem;
  background: rgba(16, 223, 109, 0.08);
}

.nx-contact-scene__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.nx-contact-scene__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #7ee67c;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nx-contact-scene__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.nx-contact-scene__text {
  max-width: 46rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.75;
}

.nx-contact-scene__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.nx-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.4rem;
  border-radius: 0.95rem;
  text-decoration: none;
  font: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.nx-contact-btn--primary {
  border: 1px solid rgba(67, 181, 66, 0.38);
  background: linear-gradient(
    180deg,
    rgba(67, 181, 66, 0.24) 0%,
    rgba(67, 181, 66, 0.14) 100%
  );
  color: #fff;
  box-shadow: 0 0 22px rgba(67, 181, 66, 0.08);
  cursor: pointer;
}

.nx-contact-btn--ghost {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: #fff;
}

.nx-contact-btn:hover {
  transform: translateY(-2px);
}

.nx-contact-scene__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.nx-contact-stat {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(67, 181, 66, 0.12);
  border-radius: 1rem;
  background: rgba(10, 10, 10, 0.42);
  backdrop-filter: blur(12px);
}

.nx-contact-stat strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.nx-contact-stat span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255,255,255,0.64);
  line-height: 1.5;
}

.nx-contact-panel {
  position: relative;
}

.nx-contact-panel__glow {
  position: absolute;
  inset: 12% 8%;
  background: radial-gradient(circle, rgba(67, 181, 66, 0.18), transparent 70%);
  filter: blur(55px);
  pointer-events: none;
}

.nx-contact-panel__card {
  position: relative;
  padding: 1.8rem;
  border: 1px solid rgba(67, 181, 66, 0.16);
  border-radius: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.82) 0%,
    rgba(8, 8, 8, 0.94) 100%
  );
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 22px 48px rgba(0,0,0,0.28);
  overflow: hidden;
}

.nx-contact-panel__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(67,181,66,0.08), transparent 38%);
  pointer-events: none;
}

.nx-contact-panel__label {
  position: relative;
  display: inline-block;
  color: #7ee67c;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nx-contact-panel__title {
  position: relative;
  margin: 1rem 0 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.1;
}

.nx-contact-panel__list {
  position: relative;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.nx-contact-panel__list li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.nx-contact-panel__list li + li {
  margin-top: 0.75rem;
}

.nx-contact-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #43b542;
  box-shadow: 0 0 12px rgba(67, 181, 66, 0.45);
}

.nx-contact-hub {
  position: relative;
  padding: 1rem 0 5rem;
}

.nx-contact-hub__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.nx-contact-hub__form-wrap {
  padding: 1.6rem;
  border: 1px solid rgba(67, 181, 66, 0.14);
  border-radius: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(14,14,14,0.82) 0%,
    rgba(8,8,8,0.95) 100%
  );
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 16px 34px rgba(0,0,0,0.25);
}

.nx-contact-hub__eyebrow {
  display: inline-block;
  color: #43b542;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nx-contact-hub__title {
  margin: 0.85rem 0 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.1;
}

.nx-contact-hub__desc {
  margin: 0.9rem 0 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.nx-contact-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.nx-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.nx-contact-form__field {
  display: grid;
  gap: 0.45rem;
}

.nx-contact-form__field label {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
}

.nx-contact-form__field input,
.nx-contact-form__field select,
.nx-contact-form__field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.95rem;
  background: rgba(255,255,255,0.03);
  color: #fff;
  font: inherit;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.nx-contact-form__field textarea {
  min-height: 7rem;
  resize: vertical;
}

.nx-contact-form__field input:focus,
.nx-contact-form__field select:focus,
.nx-contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(67,181,66,0.55);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 3px rgba(67,181,66,0.1);
}

.nx-contact-form__submit {
  min-height: 3.25rem;
  border: 1px solid rgba(67,181,66,0.32);
  border-radius: 0.95rem;
  background: linear-gradient(
    180deg,
    rgba(67,181,66,0.2) 0%,
    rgba(67,181,66,0.11) 100%
  );
  color: #fff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.nx-contact-form__submit:hover {
  transform: translateY(-1px);
  border-color: rgba(67,181,66,0.52);
  box-shadow: 0 0 18px rgba(67,181,66,0.08);
}

.nx-contact-side {
  display: grid;
  gap: 1rem;
}

.nx-contact-box,
.nx-contact-note {
  padding: 1.3rem;
  border: 1px solid rgba(67,181,66,0.14);
  border-radius: 1.35rem;
  background: linear-gradient(
    180deg,
    rgba(14,14,14,0.8) 0%,
    rgba(8,8,8,0.93) 100%
  );
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 14px 28px rgba(0,0,0,0.22);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.nx-contact-box:hover {
  transform: translateY(-4px);
  border-color: rgba(67,181,66,0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 18px 32px rgba(0,0,0,0.28),
    0 0 18px rgba(67,181,66,0.06);
}

.nx-contact-box__icon {
  width: 2.9rem;
  height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  border: 1px solid rgba(67,181,66,0.22);
  background: rgba(67,181,66,0.08);
  color: #8af387;
  font-size: 1.2rem;
}

.nx-contact-box__title {
  margin: 1rem 0 0.55rem;
  color: #fff;
  font-size: 1.15rem;
}

.nx-contact-box__text {
  margin: 0 0 0.75rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

.nx-contact-box__link {
  color: #9af498;
  text-decoration: none;
  word-break: break-word;
}

.nx-contact-note__label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #43b542;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nx-contact-note p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}

.nx-contact-note p + p {
  margin-top: 0.45rem;
}

@media (max-width: 1100px) {
  .nx-contact-scene__grid,
  .nx-contact-hub__shell {
    grid-template-columns: 1fr;
  }

  .nx-contact-scene__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nx-contact-scene {
    padding-top: 9rem;
  }

  .nx-contact-scene__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nx-contact-form__row {
    grid-template-columns: 1fr;
  }

  .nx-contact-scene__title {
    font-size: 2.6rem;
  }
}















/* =========================
   CONTACT APPEAR
========================= */

.ct-anim {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.ct-anim.is-show {
  opacity: 1;
  transform: translateY(0);
}

.ct-anim--hero {
  opacity: 0;
  transform: translateY(42px);
}

.ct-anim--hero.is-show {
  opacity: 1;
  transform: translateY(0);
}

.ct-anim--panel {
  opacity: 0;
  transform: translateY(42px);
}

.ct-anim--panel.is-show {
  opacity: 1;
  transform: translateY(0);
}

.ct-anim--stat {
  opacity: 0;
  transform: translateY(24px);
}

.ct-anim--stat.is-show {
  opacity: 1;
  transform: translateY(0);
}

.ct-anim--form {
  opacity: 0;
  transform: translateY(36px);
}

.ct-anim--form.is-show {
  opacity: 1;
  transform: translateY(0);
}

.ct-anim--card {
  opacity: 0;
  transform: translateY(24px);
}

.ct-anim--card.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   HERO
========================= */

.ct-contact-hero {
  position: relative;
  padding: 11rem 0 5rem;
  overflow: hidden;
}

.ct-contact-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(16, 223, 109, 0.12), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(16, 223, 109, 0.07), transparent 22%);
  pointer-events: none;
}

.ct-contact-hero__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.ct-contact-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: #7ee67c;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ct-contact-hero__title {
  margin: 0;
  color: #fff;
  font-size:3rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.ct-contact-hero__text {
  max-width: 46rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.75;
}

.ct-contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.ct-contact-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.4rem;
  border-radius: 0.95rem;
  text-decoration: none;
  font: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.ct-contact-hero__btn--primary {
  border: 1px solid rgba(67, 181, 66, 0.38);
  background: linear-gradient(
    180deg,
    rgba(67, 181, 66, 0.24) 0%,
    rgba(67, 181, 66, 0.14) 100%
  );
  color: #fff;
  box-shadow: 0 0 22px rgba(67, 181, 66, 0.08);
  cursor: pointer;
}

.ct-contact-hero__btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.ct-contact-hero__btn:hover {
  transform: translateY(-2px);
}

.ct-contact-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.ct-contact-stat {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(67, 181, 66, 0.12);
  border-radius: 1rem;
  background: rgba(10, 10, 10, 0.42);
  backdrop-filter: blur(12px);
}

.ct-contact-stat__title {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.ct-contact-stat__text {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.5;
}

.ct-contact-hero__aside {
  position: relative;
}

.ct-contact-hero__glow {
  position: absolute;
  inset: 12% 8%;
  background: radial-gradient(circle, rgba(67, 181, 66, 0.18), transparent 70%);
  filter: blur(55px);
  pointer-events: none;
}

.ct-contact-panel {
  position: relative;
  padding: 1.8rem;
  border: 1px solid rgba(67, 181, 66, 0.16);
  border-radius: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.82) 0%,
    rgba(8, 8, 8, 0.94) 100%
  );
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 22px 48px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.ct-contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(67, 181, 66, 0.08), transparent 38%);
  pointer-events: none;
}

.ct-contact-panel__label {
  position: relative;
  display: inline-block;
  color: #7ee67c;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ct-contact-panel__title {
  position: relative;
  margin: 1rem 0 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.1;
}

.ct-contact-panel__list {
  position: relative;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.ct-contact-panel__list li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.ct-contact-panel__list li + li {
  margin-top: 0.75rem;
}

.ct-contact-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #43b542;
  box-shadow: 0 0 12px rgba(67, 181, 66, 0.45);
}

/* =========================
   HUB
========================= */

.ct-contact-hub {
  position: relative;
  padding: 1rem 0 5rem;
}

.ct-contact-hub__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.ct-contact-formbox {
  padding: 1.6rem;
  border: 1px solid rgba(67, 181, 66, 0.14);
  border-radius: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.82) 0%,
    rgba(8, 8, 8, 0.95) 100%
  );
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 16px 34px rgba(0, 0, 0, 0.25);
}

.ct-contact-formbox__eyebrow {
  display: inline-block;
  color: #43b542;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ct-contact-formbox__title {
  margin: 0.85rem 0 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.1;
}

.ct-contact-formbox__text {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.ct-contact-form {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.ct-contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.ct-contact-form__field {
  display: grid;
  gap: 0.45rem;
}

.ct-contact-form__field label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.ct-contact-form__field input,
.ct-contact-form__field select,
.ct-contact-form__field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ct-contact-form__field textarea {
  min-height: 7rem;
  resize: vertical;
}

.ct-contact-form__field input:focus,
.ct-contact-form__field select:focus,
.ct-contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(67, 181, 66, 0.55);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(67, 181, 66, 0.1);
}

.ct-contact-form__submit {
  min-height: 3.25rem;
  border: 1px solid rgba(67, 181, 66, 0.32);
  border-radius: 0.95rem;
  background: linear-gradient(
    180deg,
    rgba(67, 181, 66, 0.2) 0%,
    rgba(67, 181, 66, 0.11) 100%
  );
  color: #fff;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.ct-contact-form__submit:hover {
  transform: translateY(-1px);
  border-color: rgba(67, 181, 66, 0.52);
  box-shadow: 0 0 18px rgba(67, 181, 66, 0.08);
}

/* =========================
   CONTACT METHODS
========================= */

.ct-contact-methods {
  display: grid;
  gap: 0.9rem;
}

.ct-contact-method {
  display: block;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.ct-contact-method label {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.2;
}

.ct-contact-method input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font: inherit;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.ct-contact-method input:focus {
  outline: none;
  border-color: rgba(67, 181, 66, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.ct-contact-method.is-current input {
  border-color: #43b542;
  box-shadow: 0 0 0 3px rgba(67, 181, 66, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.ct-contact-method.is-hidden {
  display: none;
}

/* =========================
   SIDE
========================= */

.ct-contact-side {
  display: grid;
  gap: 1rem;
}

.ct-contact-card,
.ct-contact-note {
  padding: 1.3rem;
  border: 1px solid rgba(67, 181, 66, 0.14);
  border-radius: 1.35rem;
  background: linear-gradient(
    180deg,
    rgba(14, 14, 14, 0.8) 0%,
    rgba(8, 8, 8, 0.93) 100%
  );
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 28px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.ct-contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(67, 181, 66, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 32px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(67, 181, 66, 0.06);
}

.ct-contact-card__icon {
  width: 2.9rem;
  height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  border: 1px solid rgba(67, 181, 66, 0.22);
  background: rgba(67, 181, 66, 0.08);
  color: #8af387;
  font-size: 1.2rem;
}

.ct-contact-card__title {
  margin: 1rem 0 0.55rem;
  color: #fff;
  font-size: 1.15rem;
}

.ct-contact-card__text {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.ct-contact-card__link {
  color: #9af498;
  text-decoration: none;
  word-break: break-word;
}

.ct-contact-note__label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #43b542;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ct-contact-note__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.ct-contact-note__text + .ct-contact-note__text {
  margin-top: 0.45rem;
}

@media (max-width: 1100px) {
  .ct-contact-hero__wrap,
  .ct-contact-hub__grid {
    grid-template-columns: 1fr;
  }

  .ct-contact-hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .ct-contact-hero {
    padding-top: 9rem;
  }

  .ct-contact-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ct-contact-hero__title {
    font-size: 2.6rem;
  }
}



































































.form {
    margin: 0 1.36rem;
    border: 1px solid hsla(0, 0%, 100%, .2);
    border-radius: 2.75rem;
}

.form .section__content {
    width: 39rem;
}

@media screen and (max-width: 1000px) {
    .form .section__content {
        width: 100%;
        padding: 0 1.33rem;
    }
}

.form .section__desc {
    margin-bottom: 2.8rem;
}

.form .picture {
    width: 37.86rem;
    margin-right: 1.54rem;
}

@media screen and (max-width: 1000px) {
    .form .picture {
        display: none
    }
}

.form__line {
    display: block;
    margin-bottom: 1rem;
}

.form__line .input {
    border: 2px solid hsla(0, 0%, 100%, .2);
    border-radius: 2.75rem;
    padding: 1rem 2.18rem;
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    cursor: pointer;
    transition: .3s ease;
}

.form__line .input:hover,
.form__line .input:focus {
    border-color: #43b542;
    box-shadow: 0 0 10px 0 #1eea04;
}

.form__line select.input {
    appearance: none;
    background: rgba(0, 0, 0, 0) url("data:image/svg+xml,<svg width='24' height='12' viewBox='0 0 24 12' fill='none' xmlns='http://www.w3.org/2000/svg'> <g clip-path='url(%23clip0_187_2054)'> <path d='M17.4198 2.45199L18.4798 3.51299L12.7028 9.29199C12.6102 9.38514 12.5001 9.45907 12.3789 9.50952C12.2576 9.55997 12.1276 9.58594 11.9963 9.58594C11.8649 9.58594 11.7349 9.55997 11.6137 9.50952C11.4924 9.45907 11.3823 9.38514 11.2898 9.29199L5.50977 3.51299L6.56977 2.45299L11.9948 7.87699L17.4198 2.45199Z' fill='white'/> </g> <defs> <clipPath id='clip0_187_2054'> <rect width='12' height='24' fill='white' transform='translate(24 1.04907e-06) rotate(90)'/> </clipPath> </defs> </svg> ") no-repeat 96% center;
    background-size: 1.1rem auto;
}

.form__line select.input option {
    background: #0e0e0e;
    padding: 1rem 2.18rem;
    width: 100%;
}

.form__line select.input option:hover,
.form__line select.input option:focus {
    border-color: #43b542;
    box-shadow: 0 0 10px 0 #1eea04;
    background: #43b542;
}

.form__line select.input:hover,
.form__line select.input:focus {
    border-color: #43b542;
}

.form .btn {
    margin: 1.8rem auto 0;
    display: block
}

.svg-animate .animate {
    transition: 1s ease;
}

.fade-item {
    opacity: 0;
    transition: .3s ease;
}

.fade-item.show {
    opacity: 1;
}



































































/* =========================
   CHECK ALIGN FIX
========================= */

/* базово для всех полей */
.modal-form__field,
.wallet-form__field,
.ct-contact-form__field,
.vx-form__field,
.modal-contact-switch__item,
.wallet-contact-switch__item,
.ct-contact-method,
.vx-contact-switch__item {
  position: relative;
}

/* общая галочка */
.field-check {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* показываем */
.is-valid .field-check {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* для обычных input/select */
.modal-form__field input ~ .field-check,
.modal-form__field select ~ .field-check,
.wallet-form__field input ~ .field-check,
.wallet-form__field select ~ .field-check,
.ct-contact-form__field input ~ .field-check,
.ct-contact-form__field select ~ .field-check,
.vx-form__field input ~ .field-check,
.vx-form__field select ~ .field-check,
.modal-contact-switch__item input ~ .field-check,
.wallet-contact-switch__item input ~ .field-check,
.ct-contact-method input ~ .field-check,
.vx-contact-switch__item input ~ .field-check {
  top: calc(50% + 0.7rem);
  right: 1rem;
  transform: translateY(-50%);
}

/* textarea отдельно */
.modal-form__field textarea ~ .field-check,
.wallet-form__field textarea ~ .field-check,
.ct-contact-form__field textarea ~ .field-check,
.vx-form__field textarea ~ .field-check {
  top: 3.1rem;
  right: 1rem;
  transform: none;
}

/* чтобы текст не заходил под галочку */
.modal-form input,
.modal-form select,
.wallet-form input,
.wallet-form select,
.ct-contact-form input,
.ct-contact-form select,
.vx-form input,
.vx-form select,
.modal-contact-switch__item input,
.wallet-contact-switch__item input,
.ct-contact-method input,
.vx-contact-switch__item input {
  padding-right: 3rem !important;
}

/* мобильная адаптация */
@media (max-width: 640px) {
  .field-check {
    right: 0.9rem;
    width: 1.15rem;
    height: 1.15rem;
  }

  .modal-form__field input ~ .field-check,
  .modal-form__field select ~ .field-check,
  .wallet-form__field input ~ .field-check,
  .wallet-form__field select ~ .field-check,
  .ct-contact-form__field input ~ .field-check,
  .ct-contact-form__field select ~ .field-check,
  .vx-form__field input ~ .field-check,
  .vx-form__field select ~ .field-check,
  .modal-contact-switch__item input ~ .field-check,
  .wallet-contact-switch__item input ~ .field-check,
  .ct-contact-method input ~ .field-check,
  .vx-contact-switch__item input ~ .field-check {
    right: 0.9rem;
  }

  .modal-form__field textarea ~ .field-check,
  .wallet-form__field textarea ~ .field-check,
  .ct-contact-form__field textarea ~ .field-check,
  .vx-form__field textarea ~ .field-check {
    top: 2.8rem;
    right: 0.9rem;
  }
}


button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none !important;
  transform: none !important;
}

.modal-form__submit:not([disabled]),
.wallet-form__submit:not([disabled]),
.vx-form__submit:not([disabled]),
.ct-contact-form__submit:not([disabled]) {
  opacity: 1;
  pointer-events: auto;
}















































.vx-orbit--pro {
  position: relative;
  width: min(100%, 42rem);
  aspect-ratio: 1 / 1;
  margin-left: auto;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
  isolation: isolate;
}

.vx-orbit__grid {
  position: absolute;
  inset: -6%;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 88%);
  opacity: 0.28;
  pointer-events: none;
}

.vx-orbit__ring,
.vx-orbit__pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.vx-orbit__ring {
  border: 1px solid rgba(67, 181, 66, 0.14);
  box-shadow: inset 0 0 18px rgba(67, 181, 66, 0.03);
}

.vx-orbit__ring--one {
  width: 42%;
  height: 42%;
  animation: vxOrbitSpin 14s linear infinite;
}

.vx-orbit__ring--two {
  width: 68%;
  height: 68%;
  animation: vxOrbitSpinReverse 22s linear infinite;
}

.vx-orbit__ring--three {
  width: 92%;
  height: 92%;
  animation: vxOrbitSpin 30s linear infinite;
}

.vx-orbit__pulse {
  border: 1px solid rgba(67, 181, 66, 0.1);
  opacity: 0;
}

.vx-orbit__pulse--one {
  width: 42%;
  height: 42%;
  animation: vxOrbitPulse 4.2s ease-out infinite;
}

.vx-orbit__pulse--two {
  width: 42%;
  height: 42%;
  animation: vxOrbitPulse 4.2s ease-out 1.8s infinite;
}

.vx-orbit__core {
  position: relative;
  z-index: 3;
  width: 15rem;
  height: 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(67, 181, 66, 0.22);
  background:
    radial-gradient(circle at 50% 40%, rgba(67,181,66,0.18), rgba(10,10,10,0.95) 62%);
  box-shadow:
    0 0 55px rgba(67,181,66,0.14),
    inset 0 0 34px rgba(67,181,66,0.08);
  animation: vxCorePulse 4.8s ease-in-out infinite;
  transform: translateZ(30px);
}

.vx-orbit__label {
  color: #9af498;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: center;
}

.vx-orbit__brand {
  margin-top: 0.55rem;
  color: #fff;
  font-size: 2.1rem;
  letter-spacing: 0.08em;
}

.vx-orbit__node {
  position: absolute;
  z-index: 4;
  width: 5.2rem;
  height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  border: 1px solid rgba(67, 181, 66, 0.18);
  background:
    linear-gradient(180deg, rgba(14,14,14,0.92), rgba(8,8,8,0.98));
  box-shadow:
    0 14px 26px rgba(0,0,0,0.28),
    0 0 18px rgba(67,181,66,0.05),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.vx-orbit__node::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(67,181,66,0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.vx-orbit__node:hover {
  transform: translateZ(14px) scale(1.08);
  border-color: rgba(67, 181, 66, 0.34);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.34),
    0 0 24px rgba(67,181,66,0.14),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.vx-orbit__node:hover::before {
  opacity: 1;
}

.vx-orbit__node--a {
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.vx-orbit__node--b {
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}

.vx-orbit__node--c {
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
}

.vx-orbit__node--d {
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}

.vx-orbit__icon {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vx-orbit__icon img {
  width: 100%;
  height: 100%;
  stroke: #9af498;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(67,181,66,0.25));
}

@keyframes vxOrbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes vxOrbitSpinReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes vxOrbitPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.45;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.15);
    opacity: 0;
  }
}

@keyframes vxCorePulse {
  0%, 100% {
    box-shadow:
      0 0 55px rgba(67,181,66,0.14),
      inset 0 0 34px rgba(67,181,66,0.08);
  }
  50% {
    box-shadow:
      0 0 76px rgba(67,181,66,0.22),
      inset 0 0 44px rgba(67,181,66,0.12);
  }
}

@media (max-width: 760px) {
  .vx-orbit--pro {
 
    margin: 0 auto;
  }

  .vx-orbit__core {
    width: 10.5rem;
    height: 10.5rem;
  }

  .vx-orbit__label {
    font-size: 0.68rem;
  }

  .vx-orbit__brand {
    font-size: 1.55rem;
  }

  .vx-orbit__node {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
  }

  .vx-orbit__icon {
    width: 100%;
    height: 100%;
  }
}
.vx-orbit--pro {
  position: relative;
  width: min(100%, 40rem);
  aspect-ratio: 1 / 1;
  margin-left: auto;
  display: grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;
}

.vx-orbit__grid {
  position: absolute;
  inset: -6%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 88%);
  opacity: 0.28;
  pointer-events: none;
}

.vx-orbit__ring,
.vx-orbit__pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.vx-orbit__ring {
  border: 1px solid rgba(67, 181, 66, 0.14);
  box-shadow: inset 0 0 18px rgba(67, 181, 66, 0.03);
}

.vx-orbit__ring--one {
  width: 42%;
  height: 42%;
  animation: vxRingSpin 14s linear infinite;
}

.vx-orbit__ring--two {
  width: 68%;
  height: 68%;
  animation: vxRingSpinReverse 22s linear infinite;
}

.vx-orbit__ring--three {
  width: 92%;
  height: 92%;
  animation: vxRingSpin 30s linear infinite;
}

.vx-orbit__pulse {
  border: 1px solid rgba(67, 181, 66, 0.1);
  opacity: 0;
}

.vx-orbit__pulse--one {
  width: 42%;
  height: 42%;
  animation: vxPulseWave 4.2s ease-out infinite;
}

.vx-orbit__pulse--two {
  width: 42%;
  height: 42%;
  animation: vxPulseWave 4.2s ease-out 1.8s infinite;
}

.vx-orbit__core {
  position: relative;
  z-index: 4;
  width: 14.5rem;
  height: 14.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(67, 181, 66, 0.22);
  background:
    radial-gradient(circle at 50% 40%, rgba(67, 181, 66, 0.18), rgba(10, 10, 10, 0.95) 62%);
  box-shadow:
    0 0 55px rgba(67, 181, 66, 0.14),
    inset 0 0 34px rgba(67, 181, 66, 0.08);
  animation: vxCorePulse 4.8s ease-in-out infinite;
}

.vx-orbit__label {
  color: #9af498;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-align: center;
}

.vx-orbit__brand {
  margin-top: 0.55rem;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

/* обёртки орбит */
.vx-orbit__node-wrap {
  --start-angle: 0deg;
  --orbit-radius: 12rem;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-origin: center center;
  animation: vxNodeOrbit 18s linear infinite;
  z-index: 5;
}

/* одинаковая скорость, разный старт */
.vx-orbit__node-wrap--a { --start-angle: 0deg; }
.vx-orbit__node-wrap--b { --start-angle: 90deg; }
.vx-orbit__node-wrap--c { --start-angle: 180deg; }
.vx-orbit__node-wrap--d { --start-angle: 270deg; }

.vx-orbit__node {
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid rgba(67, 181, 66, 0.18);
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.92), rgba(8, 8, 8, 0.98));
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.28),
    0 0 18px rgba(67, 181, 66, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  transform: translateX(var(--orbit-radius));
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

/* чтобы иконки были всегда ровные */
.vx-orbit__node-wrap .vx-orbit__node {
  animation: vxNodeCounter 18s linear infinite;
}

.vx-orbit__node::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(67, 181, 66, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.vx-orbit__node:hover {
  border-color: rgba(67, 181, 66, 0.34);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(67, 181, 66, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.vx-orbit__node:hover::before {
  opacity: 1;
}

.vx-orbit__icon {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
      margin-top: 30px;
}

.vx-orbit__icon img {
  width: 100%;
  height: 100%;
  stroke: #9af498;
  fill: none;

  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(67, 181, 66, 0.25));
}

/* animations */
@keyframes vxRingSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes vxRingSpinReverse {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes vxPulseWave {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.45;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.15);
    opacity: 0;
  }
}

@keyframes vxCorePulse {
  0%, 100% {
    box-shadow:
      0 0 55px rgba(67, 181, 66, 0.14),
      inset 0 0 34px rgba(67, 181, 66, 0.08);
  }
  50% {
    box-shadow:
      0 0 76px rgba(67, 181, 66, 0.22),
      inset 0 0 44px rgba(67, 181, 66, 0.12);
  }
}

@keyframes vxNodeOrbit {
  from {
    transform: rotate(var(--start-angle));
  }
  to {
    transform: rotate(calc(var(--start-angle) + 360deg));
  }
}

@keyframes vxNodeCounter {
  from {
    transform: translateX(var(--orbit-radius)) rotate(calc(-1 * var(--start-angle)));
  }
  to {
    transform: translateX(var(--orbit-radius)) rotate(calc(-360deg - var(--start-angle)));
  }
}

/* mobile */
@media (max-width: 900px) {
  .vx-orbit--pro {

    margin: 0 auto;
  }

  .vx-orbit__core {
    width: 10.5rem;
    height: 10.5rem;
  }

  .vx-orbit__label {
    font-size: 0.68rem;
  }

  .vx-orbit__brand {
    font-size: 1.55rem;
  }

  .vx-orbit__node-wrap {
    --orbit-radius: 7.2rem;
  }

  .vx-orbit__node {
    width: 5rem;
    height: 5rem;
    border-radius: 100%;
  }

  .vx-orbit__icon {
    width:100%;
    height: 100%;
    margin-top: 20px;
  }
}






.pm-grid-section {
  position: relative;
  padding: 4rem 0 6rem;
  overflow: hidden;
}

.pm-grid-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(67,181,66,0.10), transparent 24%),
    radial-gradient(circle at 85% 25%, rgba(67,181,66,0.06), transparent 22%);
  pointer-events: none;
}

.pm-head {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.pm-label {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(67,181,66,0.18);
  background: rgba(255,255,255,0.03);
  color: #8af387;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pm-title {
  margin: 1rem 0 0;
  color: #fff;
  font-size:3rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.pm-text {
  margin: 1rem auto 0;
  max-width: 44rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.pm-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.pm-card {
  position: relative;
  min-height: 20rem;
  padding: 1.45rem;
  overflow: hidden;
  border-radius: 1.7rem;
  border: 1px solid rgba(67,181,66,0.14);
 background:
    linear-gradient(180deg, rgba(12,18,14,0.9) 0%, rgba(8,10,9,0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 36px rgba(0,0,0,0.24);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.pm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(67,181,66,0.08), transparent 38%);
  pointer-events: none;
  opacity: 0.75;
}

.pm-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.05) 48%, transparent 72%);
  opacity: 0;
  transform: translateX(-40%);
  transition:
    opacity 0.45s ease,
    transform 0.8s ease;
  pointer-events: none;
}

.pm-card:hover {
  transform: translateY(-8px);
  border-color: rgba(67,181,66,0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 24px 46px rgba(0,0,0,0.32),
    0 0 24px rgba(67,181,66,0.07);
}

.pm-card:hover::after {
  opacity: 1;
  transform: translateX(14%);
}

.pm-card__bg-num {
  position: absolute;
  right: 1rem;
  top: 0.4rem;
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.06em;
  pointer-events: none;
}

.pm-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pm-card__icon {
  width: 3.4rem;
  height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid rgba(67,181,66,0.18);
  
  background: rgba(80,220,180,0.18);
  box-shadow: 0 0 18px rgba(67,181,66,0.07);
}

.pm-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke: #7fffd4;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pm-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(67,181,66,0.16);
  background: rgba(80,220,180,0.18);
  color: #7fffd4;
  font-size: 0.95rem;
  font-weight: 700;
}

.pm-card__title {
  position: relative;
  z-index: 2;
  margin: 1.25rem 0 0;
  color: #fff;
     font-size: 1.5rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.pm-card__text {
  position: relative;
  z-index: 2;
  margin: 0.85rem 0 0;
  max-width: 85%;
  color: rgba(255,255,255,0.74);
  line-height: 1.72;
}

.pm-card__line {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 2.3rem;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(80,220,180,0.35), transparent);
  box-shadow: 0 0 18px rgba(80,220,180,0.08);
}

.pm-card__orb {
  position: absolute;
  right: -1.2rem;
  bottom: -1.2rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
   background:
    radial-gradient(circle, rgba(80,220,180,0.18), transparent 70%);
  filter: blur(16px);
  opacity: 0.8;
  animation: pmOrbFloat 5.6s ease-in-out infinite;
}

/* индивидуальность карточек */

/* reveal */
.pm-fade {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.8s ease,
    transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.8s ease;
}

.pm-fade.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes pmOrbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-8px, -8px) scale(1.06);
  }
}

@media (max-width: 900px) {
  .pm-grid {
    grid-template-columns: 1fr;
  }

  .pm-card {
    min-height: 17rem;
  }

  .pm-card__text {
    max-width: 100%;
  }
}










.mp-shop-section {
  position: relative;
  padding: 4rem 0 6rem;
  overflow: hidden;
}

.mp-shop-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(67,181,66,0.10), transparent 24%),
    radial-gradient(circle at 86% 24%, rgba(67,181,66,0.06), transparent 22%);
  pointer-events: none;
}

.mp-shop-head {
  position: relative;
  z-index: 2;
  max-width: 54rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.mp-shop-head__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(67,181,66,0.18);
  background: rgba(255,255,255,0.03);
  color: #8af387;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mp-shop-head__title {
  margin: 1rem 0 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.mp-shop-head__text {
  margin: 1rem auto 0;
  max-width: 44rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.mp-shop-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.mp-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(67,181,66,0.14);
  background: linear-gradient(
    180deg,
    rgba(14,14,14,0.82) 0%,
    rgba(8,8,8,0.96) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 36px rgba(0,0,0,0.24);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.mp-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(67,181,66,0.08), transparent 38%);
  pointer-events: none;
  opacity: 0.8;
}

.mp-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.05) 48%, transparent 72%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 0.45s ease, transform 0.8s ease;
  pointer-events: none;
}

.mp-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(67,181,66,0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 26px 48px rgba(0,0,0,0.32),
    0 0 22px rgba(67,181,66,0.08);
}

.mp-product-card:hover::after {
  opacity: 1;
  transform: translateX(14%);
}

.mp-product-card__media {
  position: relative;
  height: 19rem;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(67,181,66,0.12), transparent 70%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.mp-product-card__media::before {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67,181,66,0.16), transparent 70%);
  filter: blur(45px);
  opacity: 0.7;
  pointer-events: none;
}

.mp-product-card__media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease, filter 0.35s ease;
  filter:
    drop-shadow(0 18px 30px rgba(0,0,0,0.35))
    drop-shadow(0 0 18px rgba(67,181,66,0.18));
}

.mp-product-card:hover .mp-product-card__media img {
  transform: scale(1.06);
  filter:
    drop-shadow(0 20px 32px rgba(0,0,0,0.38))
    drop-shadow(0 0 22px rgba(67,181,66,0.24));
}

.mp-product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  min-height: 2.7rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(67,181,66,0.2);
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(10px);
  color: #9af498;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 0 16px rgba(67,181,66,0.08);
}

.mp-product-card__body {
  padding: 1.2rem 1.2rem 1.3rem;
}

.mp-product-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mp-product-card__title {
  margin: 0.95rem 0 0;
  color: #fff;
    font-size: 1.5rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.mp-product-card__text {
  margin: 0.8rem 0 0;
  color: rgba(255,255,255,0.74);
  line-height: 1.72;
}

/* reveal */
.mp-shop-reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.8s ease,
    transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 0.8s ease;
}

.mp-shop-reveal.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@media (max-width: 980px) {
  .mp-shop-grid {
    grid-template-columns: 1fr;
  }

  .mp-product-card__media {
    height: 16rem;
  }
}

@media (max-width: 760px) {
  .mp-shop-section {
    padding: 4rem 0 5rem;
  }

  .mp-product-card {
    border-radius: 1.25rem;
  }

  .mp-product-card__media {
    height: 14.5rem;
    padding: 1rem;
  }

  .mp-product-card__body {
    padding: 1rem 1rem 1.1rem;
  }
}

.vx-orbit__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* текст под иконкой */
.vx-orbit__text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  text-align: center;
  white-space: nowrap;

  transition: 0.3s;
}

/* эффект при наведении */
.vx-orbit__node:hover .vx-orbit__text {
  color: #7CFF8F;
  transform: translateY(-2px);
}

/* можно добавить glow */
.vx-orbit__node:hover {
  filter: drop-shadow(0 0 10px rgba(124,255,143,0.6));
}
.vx-orbit__text {
  opacity: 0.6;
  transform: translateY(4px);
}

.vx-orbit__node:hover .vx-orbit__text {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 900px) {
    .vx-orbit__text{
        margin-top: -10px;
    }
}






.vx-footer {
  margin-top: 80px;
  padding: 32px 0;
}

.vx-footer__inner {
  border: 1px solid rgba(16, 223, 109, 0.45);
  border-radius: 28px;
  background: #050505;
  box-shadow:
    0 0 0 1px rgba(16, 223, 109, 0.04) inset,
    0 0 40px rgba(16, 223, 109, 0.06);
  padding: 40px 40px 24px;
}

.vx-footer__top {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 48px;
  align-items: start;
}

.vx-footer__brand {
  max-width: 360px;
}

.vx-footer__logo {
  display: inline-block;
  margin-bottom: 22px;
}

.vx-footer__logo img {
  width: 220px;
  max-width: 100%;
  display: block;
}

.vx-footer__desc {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.vx-footer__social {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.vx-footer__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(16, 223, 109, 0.18);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  transition: 0.25s ease;
}

.vx-footer__icon:hover {
  color: #10df6d;
  border-color: rgba(16, 223, 109, 0.45);
  box-shadow: 0 0 18px rgba(16, 223, 109, 0.18);
  transform: translateY(-2px);
}

.contact_footer{
  margin-top: 30px;
  display: flex;
  flex-direction: column;

  min-height: 100%;
  padding: 10px 50px 10px;
  border: 1px solid rgba(16, 223, 109, 0.45);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.01);
}

.contact_footer_title{
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

.contact_footer_links{
  margin-top: -20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 6px;
 color: rgba(255, 255, 255, 0.72);
}
.contact_footer_text strong{
  color: white;
}

.contact_footer_link strong{
  color: white;
}

.contact_footer_link strong:hover{
  color: white;
}

.contact_footer_link:hover{
  color: #10df6d;
}

.vx-footer__navs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.vx-footer__card {
  min-height: 100%;
  padding: 28px 28px 24px;
  border: 1px solid rgba(16, 223, 109, 0.45);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.01);
}

.vx-footer__card h4 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}

.vx-footer__card a,
.vx-footer__card p {
  display: block;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.6;
  text-decoration: none;
  transition: 0.25s ease;
}

.vx-footer__card a:hover {
  color: #10df6d;
}

.vx-footer__bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.vx-footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.vx-footer__legal a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  font-size: 15px;
  transition: 0.25s ease;
}

.vx-footer__legal a:hover {
  color: #10df6d;
}

.vx-footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 15px;
}

@media (max-width: 1100px) {
  .vx-footer__top {
    grid-template-columns: 1fr;
  }

  .vx-footer__brand {
    max-width: 100%;
  }

  .vx-footer__navs {
    grid-template-columns: 1fr 1fr;
  }
  .contact_footer_links{
    flex-direction: column;
     gap: 12px;
     align-items: start;
  }
  .vx-footer {
    margin-top: 855px;
    padding: 32px 0;
}
 .contact_footer{
    padding: 22px 18px 18px;
        border-radius: 18px;
  }
  .contact_footer_title {
        margin: 0 0 22px;
  }
}
@media (max-width: 800px){
  .vx-footer {
    margin-top: 655px;
    padding: 32px 0;
  }
}
@media (max-width: 700px) {
  .vx-footer {
           margin-top: 256px;

    padding: 20px 0;
  }

  .vx-footer__inner {
    padding: 24px 18px 18px;
    border-radius: 22px;
  }

  .vx-footer__navs {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vx-footer__card {
    padding: 22px 18px 18px;
    border-radius: 18px;
  }

  .vx-footer__desc {
    font-size: 16px;
  }

  .vx-footer__card a,
  .vx-footer__card p {
    font-size: 15px;
  }

  .vx-footer__icon {
    width: 48px;
    height: 48px;
    font-size: 21px;
  }

  .vx-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .vx-footer__legal {
    gap: 14px;
    flex-direction: column;
  }
  .contact_footer_links{
    flex-direction: column;
     gap: 12px;
     align-items: start;
  }
  .contact_footer{
    padding: 22px 18px 18px;
        border-radius: 18px;
  }
   .contact_footer_title {
        margin: 0 0 22px;
  }
}





































.wallet-brands {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(16, 223, 109, 0.08), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(16, 223, 109, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}

.wallet-brands__inner {
  position: relative;
  z-index: 2;
}

.wallet-brands__head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 2.2rem;
}

.wallet-brands__eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(16, 223, 109, 0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: #8cf7b4;
  background: rgba(16, 223, 109, 0.06);
  backdrop-filter: blur(8px);
}

.wallet-brands__title {
  margin: 0 0 0.9rem;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  color: #fff;
}

.wallet-brands__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

.wallet-brands__rail {
  position: relative;
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(16, 223, 109, 0.14);
  border-bottom: 1px solid rgba(16, 223, 109, 0.14);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 12%, rgba(0,0,0,0.2) 88%, rgba(0,0,0,0.85) 100%),
    rgba(255,255,255,0.01);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow:
    inset 0 0 0 1px rgba(16, 223, 109, 0.05),
    0 0 24px rgba(16, 223, 109, 0.05);
}

.wallet-brands__track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: walletBrandsScroll 28s linear infinite;
  will-change: transform;
}

.wallet-brands__rail:hover .wallet-brands__track {
  animation-play-state: paused;
}

.wallet-brands__item {
  position: relative;
  flex: 0 0 auto;
  min-width: max-content;
  padding: 0.95rem 1.3rem;
  border: 1px solid rgba(16, 223, 109, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.02),
    0 0 12px rgba(16, 223, 109, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.wallet-brands__item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(16,223,109,0.18), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.wallet-brands__item:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 223, 109, 0.45);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(16, 223, 109, 0.08),
    0 0 18px rgba(16, 223, 109, 0.12),
    0 0 38px rgba(16, 223, 109, 0.08);
}

.wallet-brands__item:hover::before {
  opacity: 1;
}

.wallet-brands__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

.wallet-brands__glow--left {
  top: -60px;
  left: -80px;
  background: #10df6d;
}

.wallet-brands__glow--right {
  bottom: -80px;
  right: -100px;
  background: #10df6d;
}

@keyframes walletBrandsScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@media (max-width: 768px) {
  .wallet-brands {
    padding: 4rem 0 3.4rem;
  }

  .wallet-brands__head {
    margin-bottom: 1.5rem;
  }

  .wallet-brands__text {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .wallet-brands__rail {
    border-radius: 18px;
    padding: 0.9rem 0;
  }

  .wallet-brands__track {
    gap: 0.8rem;
    animation-duration: 22s;
  }

  .wallet-brands__item {
    padding: 0.8rem 1rem;
    font-size: 0.92rem;
    border-radius: 14px;
  }
}




h1{
  font-size: 3.5rem !important;
  color: #fff;
  font-weight: 700 !important;
  line-height: 1 !important;
}

h2{
  font-size: 3rem !important;
  color: #fff;
  font-weight: 700 !important;
    line-height: 1.02 !important;
}
h3{
  font-size: 1.5rem !important;
  color: #fff;
  font-weight: 700 !important; 
  line-height: 1 !important;
}
h4{
  font-size: 1.25rem !important;
  color: #fff;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}
p{
  font-size: 1.1rem !important;
  color: rgba(255,255,255,0.72) !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
}












.modal-form select,
.wallet-form select,
.ct-contact-form select {
  width: 100%;
  height: 4.5rem;
  padding: 0 1.2rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 1rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: none;
}

.modal-form select option,
.wallet-form select option,
.ct-contact-form select option {
  background-color: #0b0f12;
  color: #ffffff;
}

@media screen and (max-width: 1000px) {
    .section__title {
        
        margin-bottom: 1.67rem;
    }


h1{
  font-size: 2rem !important;
  
  font-weight: 700 !important;
  line-height: 1 !important;
}

h2{
 font-size: 2rem !important;

  font-weight: 700 !important;
    line-height: 1.02 !important;
}
h3{
  font-size: 1.25rem !important;

  font-weight: 700 !important; 
  line-height: 1 !important;
}
h4{
  font-size: 1.1rem !important;

  font-weight: 700 !important;
  line-height: 1.3 !important;
}
p{
  font-size: 1.1rem !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
}
}