/* ============================================
   FTS ECOSYSTEM PAGE
   Premium Dark + Neon Green UI
============================================ */

/* ===========================
   HERO
=========================== */

.eco-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  overflow: hidden;
  background: #071c12;
  background-size: cover;
  background-position: center top;
}

.eco-hero-bg {
  z-index: 0;
}

.eco-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(#0000000f, #02140da3 90%);
  z-index: 1;
}

.eco-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
}

.eco-hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.eco-hero-desc {
  color: #9fb3a6;
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 40px;
}

.eco-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.eco-hero-btn {
  padding: 14px 36px !important;
}

/* ===========================
   MAIN SECTIONS
=========================== */

.eco-section {
  background: #071c12;
}

.eco-section-reverse .eco-section-grid {
  flex-direction: row-reverse;
}

.eco-section-grid {
  display: flex;
  gap: 60px;
  align-items: center;
}

.eco-section-img-wrap {
  position: relative;
  flex: 1;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,255,133,0.15);
}

.eco-section-img {
  transition: transform 0.4s ease;
}

.eco-section-img-wrap:hover .eco-section-img {
  transform: scale(1.05);
}

.eco-section-content {
  flex: 1;
}

.eco-section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.eco-section-desc {
  color: #9fb3a6;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ===========================
   STATS
=========================== */

.eco-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.eco-stat {
  background: rgba(0,255,133,0.08);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0,255,133,0.2);
  min-width: 110px;
}

.eco-stat-value {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #00ff85;
}

.eco-stat-label {
  font-size: 12px;
  color: #9fb3a6;
}

/* ===========================
   FEATURES
=========================== */

.eco-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.eco-feature {
  background: #0e2a1c;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid rgba(0,255,133,0.1);
  transition: 0.3s;
}

.eco-feature:hover {
  border-color: #00ff85;
  transform: translateY(-4px);
}

.eco-feature-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.eco-feature-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.eco-feature-desc {
  font-size: 13px;
  color: #9fb3a6;
  line-height: 1.6;
}

/* ===========================
   DIAGRAM SECTION
=========================== */

.eco-diagram {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.eco-diagram-node {
  background: #0e2a1c;
  border: 1px solid rgba(0,255,133,0.2);
  border-radius: 18px;
  padding: 30px;
  width: 240px;
  text-align: center;
  position: relative;
}

.eco-node-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.eco-diagram-line {
  position: absolute;
  width: 120px;
  height: 2px;
  background: rgba(0,255,133,0.4);
  top: 50%;
}

.eco-line-app-coach {
  left: 38%;
}

.eco-line-app-community {
  right: 38%;
}

/* ===========================
   TESTIMONIALS
=========================== */

.eco-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.eco-testimonial {
  background: #0e2a1c;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(0,255,133,0.15);
}

.eco-testimonial p {
  color: #9fb3a6;
  line-height: 1.8;
  margin-bottom: 20px;
}

.eco-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eco-testimonial-avatar {
  width: 40px;
  height: 40px;
  background: #00ff85;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.eco-testimonial-name {
  font-weight: 700;
}

/* ===========================
   FINAL CTA
=========================== */

.eco-cta-box {
  background: linear-gradient(135deg, #00ff85, #00cc6a);
  padding: 70px 40px;
  border-radius: 24px;
  text-align: center;
  color: black;
}

.eco-cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.eco-cta-desc {
  margin-bottom: 32px;
}

.eco-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
  .eco-section-grid {
    flex-direction: column;
    gap: 40px;
  }

  .eco-section-reverse .eco-section-grid {
    flex-direction: column;
  }

  .eco-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .eco-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .eco-features {
    grid-template-columns: 1fr;
  }

  .eco-stats {
    flex-direction: column;
  }

  .eco-diagram {
    flex-direction: column;
    gap: 40px;
  }

  .eco-diagram-line {
    display: none;
  }
}
