.ecosystem-page,
.ecosystem-page *,
.ecosystem-page *::before,
.ecosystem-page *::after {
  box-sizing: border-box;
}

.ecosystem-page {
  overflow: hidden;
  background: var(--ntp-white);
}

.ecosystem-label {
  display: block;
  margin-bottom: 10px;
  color: var(--ntp-blue);
  font-size: 13px;
  font-weight: 700;
}

.ecosystem-section-head {
  margin-bottom: 55px;
}

.ecosystem-section-head h2,
.ecosystem-contact h2,
.ecosystem-final h2 {
  max-width: 900px;
  margin: 0;
  color: var(--ntp-black);
  font-size: 36px;
  font-family: var(--ntp-font-title);
  font-weight: 400;
  line-height: 1.15;
}

.ecosystem-section-head--light h2 {
  color: var(--ntp-white);
}

.ecosystem-rich-text {
  color: var(--ntp-text-body);
  font-size: 15px;
  line-height: 1.75;
}

.ecosystem-rich-text p {
  margin: 0 0 20px;
}

.ecosystem-rich-text--light {
  color: rgba(255, 255, 255, 0.7);
}

.ecosystem-subheading {
  margin-bottom: 35px;
  color: var(--ntp-text-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
}

/* TABS */

.ecosystem-tabs {
  position: sticky;
  z-index: 50;
  top: 0;
  padding: 17px 0;
  border-bottom: 1px solid rgba(0, 174, 239, 0.18);
  background: var(--ntp-grey);
}

.admin-bar .ecosystem-tabs {
  top: 32px;
}

.ecosystem-tabs__inner {
  display: flex;
  justify-content: center;
  gap: 35px;
}

.ecosystem-tabs a {
  min-width: 110px;
  padding: 6px 20px;
  border: 1px solid var(--ntp-blue);
  border-radius: 999px;
  color: var(--ntp-blue);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  transition:
    color 250ms ease,
    background-color 250ms ease;
}

.ecosystem-tabs a:hover,
.ecosystem-tabs a.is-active {
  color: var(--ntp-white);
  background: var(--ntp-blue);
}

/* MENTORS */

.ecosystem-mentors {
  background: var(--ntp-white);
}

.ecosystem-mentors__intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 100px;
  margin-bottom: 80px;
}

.ecosystem-quote {
  margin: 35px 0 0;
  padding: 25px 28px;
  border-left: 3px solid var(--ntp-blue);
  background: #f5f5f3;
}

.ecosystem-quote p {
  margin: 0 0 18px;
  color: var(--ntp-black);
  font-size: 18px;
  line-height: 1.55;
}

.ecosystem-quote footer strong,
.ecosystem-quote footer span {
  display: block;
}

.ecosystem-quote footer strong {
  color: var(--ntp-text-body);
  font-size: 11px;
}

.ecosystem-quote footer span {
  color: #999;
  font-size: 10px;
}

.ecosystem-feature-list {
  display: grid;
}

.ecosystem-feature-list__item {
  position: relative;
  padding: 17px 0 17px 22px;
  border-bottom: 1px solid var(--ntp-border);
}

.ecosystem-feature-list__item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ntp-blue);
}

.ecosystem-feature-list__item strong,
.ecosystem-feature-list__item span {
  display: inline;
}

.ecosystem-feature-list__item strong {
  color: var(--ntp-black);
  font-size: 13px;
}

.ecosystem-feature-list__item strong::after {
  content: " — ";
}

.ecosystem-feature-list__item span {
  color: var(--ntp-text-body);
  font-size: 12px;
  line-height: 1.55;
}

.ecosystem-mentor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ecosystem-mentor-card {
  min-height: 235px;
  padding: 30px;
  border-right: 1px solid var(--ntp-border);
}

.ecosystem-mentor-card:last-child {
  border-right: 0;
}

.ecosystem-mentor-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 50%;
  background: #f3f5f5;
  color: var(--ntp-blue);
  font-size: 13px;
  font-weight: 700;
}

.ecosystem-mentor-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem-mentor-card h3 {
  margin: 0 0 5px;
  color: var(--ntp-black);
  font-size: 15px;
}

.ecosystem-mentor-card > p {
  margin: 0 0 18px;
  color: #888;
  font-size: 11px;
}

.ecosystem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ecosystem-tags span {
  padding: 4px 9px;
  border: 1px solid var(--ntp-border);
  color: var(--ntp-text-body);
  font-size: 9px;
}

/* PARTNERS */

.ecosystem-partners {
  background: var(--ntp-grey);
}

.ecosystem-partner-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 55px;
}

.ecosystem-partner-type {
  min-height: 285px;
  padding: 35px 30px;
  border: 1px solid var(--ntp-border);
  background: rgba(255, 255, 255, 0.55);
}

.ecosystem-partner-type + .ecosystem-partner-type {
  border-left: 0;
}

.ecosystem-partner-type > span {
  display: block;
  margin-bottom: 28px;
  color: rgba(0, 31, 44, 0.17);
  font-size: 38px;
  font-weight: 700;
}

.ecosystem-partner-type h3 {
  margin: 0 0 16px;
  color: var(--ntp-black);
  font-size: 17px;
}

.ecosystem-partner-type p {
  margin: 0;
  color: var(--ntp-text-body);
  font-size: 13px;
  line-height: 1.7;
}

.ecosystem-partners__bottom {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 55px;
}

.ecosystem-partner-logos__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ecosystem-partner-logos__grid > * {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 15px;
  border: 1px solid var(--ntp-border);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ntp-text-body);
  text-align: center;
  font-size: 11px;
}

.ecosystem-partner-logos__grid img {
  max-width: 100px;
  max-height: 40px;
  object-fit: contain;
}

.ecosystem-partner-benefits .ecosystem-quote {
  margin-top: 0;
  margin-bottom: 20px;
}

/* INVESTORS */

.ecosystem-investors {
  background: var(--ntp-black);
}

.ecosystem-investors__top {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}

.ecosystem-investor-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.ecosystem-investor-benefit > span {
  display: block;
  margin-bottom: 10px;
  color: var(--ntp-blue);
  font-size: 10px;
  font-weight: 700;
}

.ecosystem-investor-benefit h3 {
  margin: 0 0 13px;
  color: var(--ntp-white);
  font-size: 15px;
}

.ecosystem-investor-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.65;
}

.ecosystem-investor-stats {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 75px;
}

.ecosystem-investor-stat {
  max-width: 190px;
  text-align: center;
}

.ecosystem-investor-stat strong,
.ecosystem-investor-stat span {
  display: block;
}

.ecosystem-investor-stat strong {
  margin-bottom: 8px;
  color: var(--ntp-blue);
  font-size: 42px;
  line-height: 1;
}

.ecosystem-investor-stat span {
  color: var(--ntp-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

/* AMBASSADORS */

.ecosystem-ambassadors {
  background: var(--ntp-white);
}

.ecosystem-ambassadors__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 100px;
}

/* CONTACT */

.ecosystem-contact {
  background: var(--ntp-grey);
}

.ecosystem-contact__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: flex-start;
  gap: 90px;
}

.ecosystem-contact__content > p {
  max-width: 520px;
  margin: 20px 0 35px;
  color: var(--ntp-text-body);
  font-size: 14px;
  line-height: 1.7;
}

.ecosystem-contact__details {
  display: grid;
}

.ecosystem-contact__details > * {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ntp-border);
}

.ecosystem-contact__details span {
  color: var(--ntp-blue);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.ecosystem-contact__details strong {
  color: var(--ntp-text-body);
  font-size: 13px;
  font-weight: 400;
}

.ecosystem-form-wrap {
  padding: 35px;
  border: 1px solid var(--ntp-border);
  background: #f8f8f6;
}

.ecosystem-form__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 15px;
}

.ecosystem-form__row--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ecosystem-form__field {
  margin-bottom: 17px;
}

.ecosystem-form__field label {
  display: block;
  margin-bottom: 7px;
  color: #8a9faa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.ecosystem-form input,
.ecosystem-form select,
.ecosystem-form textarea {
  width: 100%;
  border: 1px solid var(--ntp-border);
  outline: none;
  background: var(--ntp-white);
  color: #8a9faa;
  font-family: inherit;
  font-size: 13px;
  transition:
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.ecosystem-form input::placeholder,
.ecosystem-form select::placeholder,
.ecosystem-form textarea::placeholder {
  font-size: 13px;
  line-height: 1;
  color: #8a9faa;
}

.ecosystem-form input,
.ecosystem-form select {
  height: 44px;
  padding: 0 13px;
}

.ecosystem-form textarea {
  min-height: 130px;
  padding: 13px;
  resize: vertical;
}

.ecosystem-form input:focus,
.ecosystem-form select:focus,
.ecosystem-form textarea:focus {
  border-color: var(--ntp-blue);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

.ecosystem-form .has-error {
  border-color: #d84d4d;
}

.ecosystem-form__checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 5px 0 25px;
  color: var(--ntp-text-body);
  font-size: 11px;
  line-height: 1.5;
}

.ecosystem-form__checkbox input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.ecosystem-form__message {
  display: none;
  margin-bottom: 20px;
  padding: 12px 15px;
  font-size: 13px;
}

.ecosystem-form__message.is-visible {
  display: block;
}

.ecosystem-form__message.is-error {
  border: 1px solid #d84d4d;
  color: #a22f2f;
  background: #fff2f2;
}

.ecosystem-form__message.is-success {
  border: 1px solid #18a95b;
  color: #08783d;
  background: #effff6;
}

.ecosystem-form.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* FINAL */

.ecosystem-final {
  background: var(--ntp-white);
}

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

.ecosystem-final h2 {
  margin: 0 auto 20px;
  font-size: 46px;
}

.ecosystem-final h2 span {
  display: block;
  color: var(--ntp-blue);
  font-weight: 700;
}

.ecosystem-final p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--ntp-text-body);
  font-size: 14px;
  line-height: 1.7;
}

.ecosystem-final__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* RESPONSIVE */

@media (max-width: 1199px) {
  .ecosystem-tabs__inner {
    gap: 15px;
  }

  .ecosystem-investor-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-partner-logos__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .ecosystem-tabs__inner {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
  }

  .ecosystem-tabs__inner::-webkit-scrollbar {
    display: none;
  }

  .ecosystem-tabs a {
    flex: 0 0 auto;
  }

  .ecosystem-mentors__intro,
  .ecosystem-ambassadors__grid,
  .ecosystem-investors__top,
  .ecosystem-contact__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .ecosystem-mentor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-mentor-card:nth-child(2) {
    border-right: 0;
  }

  .ecosystem-mentor-card {
    border-bottom: 1px solid var(--ntp-border);
  }

  .ecosystem-partners__bottom {
    grid-template-columns: 1fr;
  }

  .ecosystem-partner-logos__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ecosystem-contact__content {
    max-width: 650px;
  }
}

@media (max-width: 767px) {
  .ecosystem-section-head h2,
  .ecosystem-contact h2 {
    font-size: 29px;
  }

  .ecosystem-mentors__intro {
    margin-bottom: 55px;
  }

  .ecosystem-mentor-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-mentor-card,
  .ecosystem-mentor-card:nth-child(2) {
    border-right: 0;
  }

  .ecosystem-partner-types {
    grid-template-columns: 1fr;
  }

  .ecosystem-partner-type + .ecosystem-partner-type {
    border-top: 0;
    border-left: 1px solid var(--ntp-border);
  }

  .ecosystem-partner-type {
    min-height: 0;
  }

  .ecosystem-partner-logos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-investor-benefits {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .ecosystem-investor-stats {
    gap: 35px;
  }

  .ecosystem-investor-stat strong {
    font-size: 34px;
  }

  .ecosystem-investor-stat span {
    font-size: 12px;
  }

  .ecosystem-form-wrap {
    padding: 25px 20px;
  }

  .ecosystem-form__row,
  .ecosystem-form__row--two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ecosystem-final h2 {
    font-size: 36px;
  }

  .ecosystem-final__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ecosystem-final__actions .btn {
    width: 100%;
  }
}

@media (max-width: 479px) {
  .ecosystem-investor-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ecosystem-investor-stat {
    max-width: none;
  }

  .ecosystem-contact__details > * {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-page *,
  .ecosystem-page *::before,
  .ecosystem-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
