/* KT Hero - Base styles */
.kt-hero {
  position: relative;
  width: 100%;
  min-height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #0f1410;
}

.kt-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  will-change: transform, opacity;
  z-index: -2;
}

.kt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,calc(var(--darken, .35) * .75)) 0%, rgba(0,0,0,var(--darken, .35)) 60%, rgba(0,0,0,calc(var(--darken, .35) * .85)) 100%);
  z-index: -1;
}

.kt-hero__inner {
  position: relative;
  max-width: 1100px;
  padding: 72px 20px;
  text-align: center;
  color: #f4f7f3;
}

.kt-hero__title {
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.6px;
  margin: 0 0 12px;
  font-weight: 900;
  text-shadow: 0 6px 28px rgba(0,0,0,.4);
  /* Gradient stroke/fill reveal driven by --title-gradient-progress */
  background: linear-gradient(90deg, #ffffff 0%, #b6f3c0 35%, #6ee7a9 65%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.kt-hero__subtitle {
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.6;
  opacity: .92;
  margin: 0 0 28px;
  text-shadow: 0 2px 18px rgba(0,0,0,.3);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.kt-hero__cta {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  background: #2E7D32; /* forest green */
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(46,125,50,.4);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.kt-hero__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: translateX(var(--glow-x, -150%)) skewX(-18deg);
  mix-blend-mode: screen;
  pointer-events: none;
}

.kt-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(46,125,50,.5);
  background: #2b7230;
}

/* Decorative floating shapes */
.kt-hero__decor {
  pointer-events: none;
}

.kt-hero__decor-item {
  position: absolute;
  color: #c9f6d0;
  opacity: .6;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,.32));
  will-change: transform, opacity;
  transform-style: preserve-3d;
}

[data-kt-el="decor-1"] { top: 12%; left: 8%;  }
[data-kt-el="decor-2"] { bottom: 18%; right: 12%; }
[data-kt-el="decor-3"] { top: 22%; right: 24%; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .kt-hero__bg { transform: none !important; }
  .kt-hero__cta::before { display: none !important; }
}
