/* ===== HERO ===== */
#hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--green-leaf) 100%);
  color: #fff;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.hero-badge span {
  font-size: 16px;
}

.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  color: #fff;
  margin-bottom: 16px;
}

.hero-title em {
  color: #a8d97e;
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  background: rgba(255, 255, 255, .08);
  border: 2px rgba(255, 255, 255, .25);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, .6);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  text-align: center;
  padding: 0px;
}

.hero-image-wrap .foto-jamur {
  width: 505px;
  height: 450px;
  border-radius: 20px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #a8d97e;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
}