/* ============================================================
   HJS — Custom Hero (replaces RevSlider)
   ============================================================ */
.hjs-hero {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 60vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: "Inter", system-ui, sans-serif;
  background: #15321a;
}
.hjs-hero__slides { position: absolute; inset: 0; z-index: 0; }
.hjs-hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: hjsHeroFade 24s infinite;
}
.hjs-hero__slide:nth-child(1) { animation-delay: 0s; }
.hjs-hero__slide:nth-child(2) { animation-delay: 6s; }
.hjs-hero__slide:nth-child(3) { animation-delay: 12s; }
.hjs-hero__slide:nth-child(4) { animation-delay: 18s; }
@keyframes hjsHeroFade {
  0%      { opacity: 0; }
  4%      { opacity: 1; }
  25%     { opacity: 1; }
  29%     { opacity: 0; }
  100%    { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hjs-hero__slide { animation: none; }
  .hjs-hero__slide:nth-child(1) { opacity: 1; }
}
.hjs-hero__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(15,40,20,.92) 0%, rgba(15,40,20,.74) 42%, rgba(15,40,20,.30) 78%, rgba(15,40,20,.12) 100%);
}
.hjs-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.2rem, 4vw, 2.5rem);
  width: 100%;
}
.hjs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9fd178;
  margin-bottom: 1.1rem;
}
.hjs-hero__eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: #6cb33f;
}
.hjs-hero__title {
  font-family: "Manrope", "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 18ch;
  margin: 0 0 1.1rem;
}
.hjs-hero__title em { color: #8fd05f; font-style: normal; }
.hjs-hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: #d3e4ca;
  max-width: 46ch;
  margin: 0 0 1.9rem;
}
.hjs-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.hjs-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform .2s, box-shadow .25s, background .2s;
}
.hjs-hero__btn--primary {
  background: linear-gradient(135deg, #6cb33f, #4d8b2e);
  color: #fff;
  box-shadow: 0 6px 20px rgba(76,140,46,.35);
}
.hjs-hero__btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(76,140,46,.45); color:#fff; }
.hjs-hero__btn--ghost {
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.30);
  backdrop-filter: blur(4px);
}
.hjs-hero__btn--ghost:hover { background: rgba(255,255,255,.18); color:#fff; transform: translateY(-2px); }

/* Trust badges row */
.hjs-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.2rem;
}
.hjs-hero__badge { display: flex; align-items: center; gap: .55rem; color: #cfe0c8; font-size: 13.5px; font-weight: 500; }
.hjs-hero__badge svg { width: 18px; height: 18px; color: #8fd05f; flex-shrink: 0; }

@media (max-width: 600px) {
  .hjs-hero__cta { flex-direction: column; align-items: stretch; }
  .hjs-hero__btn { justify-content: center; }
  .hjs-hero__badges { gap: 1rem; }
}
