/* Homepage */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-950);
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-track{position:relative;width:100%;height:100%;overflow:hidden}.hero-slide{position:absolute;inset:0;width:100%;height:100%;overflow:hidden;transform:translate3d(calc(var(--slide-offset, 1) * 100%),0,0);transition:transform .8s cubic-bezier(.65,0,.35,1);will-change:transform;z-index:1}.hero-slide.is-active{z-index:2}.hero-slide img{display:block;width:100%;height:100%;object-fit:cover;object-position:center}..hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(13, 43, 29, 0.78),
    rgba(13, 43, 29, 0.28) 65%,
    rgba(13, 43, 29, 0.08)
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 820px;
}
.hero h1 {
  margin-top: 14px;
}
.hero h1 em {
  color: #d8e8d8;
  font-style: normal;
}
.hero-content p {
  color: #e2ece4;
  max-width: 650px;
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(5, 35, 23, 0.28);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition:
    background 0.2s,
    transform 0.2s;
}
.hero-arrow:hover {
  background: rgba(5, 35, 23, 0.55);
  transform: translateY(-50%) scale(1.05);
}
.hero-prev {
  left: 24px;
}
.hero-next {
  right: 24px;
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}
.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.hero-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}
.intro {
  background: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.intro-grid p {
  font-size: 1.1rem;
}
.cta {
  background: var(--green-800);
  color: #fff;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta h2 {
  max-width: 760px;
}
.cta .eyebrow {
  color: #cfe2d3;
}
@media (max-width: 760px) {
  .hero {
    min-height: 600px;
  }
  .hero-content {
    padding-top: 30px;
  }
  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }
  .hero-prev {
    left: 12px;
  }
  .hero-next {
    right: 12px;
  }
  .hero-dots {
    bottom: 18px;
  }
  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(13, 43, 29, 0.76),
      rgba(13, 43, 29, 0.2)
    );
  }
}
