.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(26,46,26,0.75) 0%,
      rgba(42,106,58,0.55) 50%,
      rgba(58,140,78,0.4) 100%),
    url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?w=1920&q=80') center/cover no-repeat;
  z-index: 0;
}

/* CSS-only fallback gradient (shows if image fails) */
.hero__bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #1a2e1a 0%,
    #2a6a3a 40%,
    #3a8c4e 70%,
    #8bc34a 100%);
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  padding-top: 80px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(139,195,74,0.2);
  border: 1px solid rgba(139,195,74,0.4);
  color: #c5e38a;
  font-size: var(--size-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4em 1.2em;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, var(--size-4xl));
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: normal;
  color: #a5d86a;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, var(--size-lg));
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4em;
  color: rgba(255,255,255,0.6);
  font-size: var(--size-xs);
  letter-spacing: 0.15em;
}

.hero__scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* Stats bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 1;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.2rem var(--spacing-md);
  display: flex;
  gap: 0;
}

.hero__stat {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.hero__stat:last-child { border-right: none; }

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: var(--size-xl);
  font-weight: 800;
  color: #a5d86a;
  line-height: 1;
}

.hero__stat-label {
  font-size: var(--size-xs);
  color: rgba(255,255,255,0.75);
  margin-top: 0.3em;
}
